diff --git a/README.md b/README.md
index bc78611..965b424 100644
--- a/README.md
+++ b/README.md
@@ -1,28 +1,26 @@
# The Qur'an
This repository contains the holy book, The Qur'an, in its original Arabic and as translations
-in English, Farsi, and Portuguese - all of which are stored in the JSON format. It is hoped that
-through this repository those working with The Qur'an in the context of software will find a resource
-that's helpful to their work.
+in English, Farsi, and Portuguese. The contents are made available in JSON, and SQL files.
-## Layout
+## `src/json/` directory
-### The `src/` directory
+This section covers the JSON files. Keep scrolling for the SQL section.
-* The [src/arabic/](src/arabic/) directory contains The Qur'an in its original Arabic.
+* The [src/json/ar/](src/json/ar/) directory contains The Qur'an in its original Arabic.
-* The [src/english/](src/english/) directory contains an English translation of The Qur'an.
+* The [src/json/en/](src/json/en/) directory contains an English translation of The Qur'an.
-* The [src/farsi/](src/farsi/) directory contains a Farsi translation of The Qur'an.
+* The [src/json/fa/](src/json/fa/) directory contains a Farsi translation of The Qur'an.
-* The [src/portuguese/](src/portuguese/) directory contains a Portuguese translation of The Qur'an.
+* The [src/json/pt/](src/json/pt/) directory contains a Portuguese translation of The Qur'an.
-#### Arabic
+### Arabic
-* [src/arabic/](src/arabic/)
+* [src/json/ar/](src/json/ar/)
Each JSON file represents a chapter, or surah - in its original Arabic.
-For example, [src/arabic/1.json](src/arabic/1.json) contains Al-Fatihah.
+For example, [src/json/ar/1.json](src/json/ar/1.json) contains Al-Fatihah.
The structure of the file can be described as an array of arrays, with
each array representing a verse, or ayah.
For example:
@@ -45,14 +43,14 @@ For example:
]
```
-#### English
+### English
-* [src/english/](src/english)
+* [src/json/en/](src/json/en/)
Each JSON file represents a chapter, or surah - as an English translation.
The structure of the file can be described as an array of arrays,
with each array representing a verse, or ayah. For example, consider
-the English translation of Al-Fatihah ([src/english/1.json](src/english/1.json)):
+the English translation of Al-Fatihah ([src/json/en/1.json](src/json/en/1.json)):
```
[
@@ -87,12 +85,12 @@ the English translation of Al-Fatihah ([src/english/1.json](src/english/1.json))
]
```
-#### Farsi
+### Farsi
-* [src/farsi/](src/farsi/)
+* [src/json/fa/](src/json/fa/)
Each JSON file represents a chapter, or surah - as a Farsi translation.
-For example, [src/farsi/1.json](src/farsi/1.json) contains Al-Fatihah.
+For example, [src/json/fa/1.json](src/json/fa/1.json) contains Al-Fatihah.
The structure of the file can be described as an array of arrays, with
each array representing a verse, or ayah.
For example:
@@ -115,12 +113,12 @@ For example:
]
```
-#### Portuguese
+### Portuguese
-* [src/portuguese/](src/portuguese/)
+* [src/json/pt/](src/json/pt/)
Each JSON file represents a chapter, or surah - as a Portuguese translation.
-For example, [src/portuguese/1.json](src/portuguese/1.json) contains Al-Fatihah.
+For example, [src/pt/1.json](src/json/pt/1.json) contains Al-Fatihah.
The structure of the file can be described as an array of arrays, with each array
representing a verse, or ayah.
For example:
@@ -143,31 +141,125 @@ For example:
]
```
+## `src/sql/` directory
+
+This section covers the SQL files.
+
+* The [src/sql/schema.sql](src/sql/schema.sql) defines the schema of the database.
+ The schema is composed of three tables: `qurans`, `chapters`, and `verses`.
+
+* The [src/sql/seed.sql](src/sql/seed.sql) populates the contents of the database.
+ The languages included are Arabic, English, Farsi, and Portuguese.
+
+### SQLite3 example
+
+The example demonstrates how the SQL files mentioned above can be used to create a
+fully populated database, and then how to query the database. It is assumed that the
+repository has been cloned or downloaded (see below), and that "sqlite3" is started
+from the root of the repository.
+
+**1. $HOME/.sqliterc**
+
+For identical results, it is recommended that the `$HOME/.sqlitrc` file has the following
+contents:
+
+```
+pragma FOREIGN_KEYS = on;
+.headers on
+.mode column
+```
+
+**2. Execute `src/sql/schema.sql`**
+
+Start SQLite3 from the command line, and then execute `.read src/sql/schema.sql`:
+
+```
+$ sqlite3
+SQLite version 3.39.0 2022-06-25 14:57:57
+Enter ".help" for usage hints.
+Connected to a transient in-memory database.
+Use ".open FILENAME" to reopen on a persistent database.
+sqlite> .read src/sql/schema.sql
+sqlite>
+```
+
+**3. Execute `src/sql/seed.sql`**
+
+Within the same sqlite session, execute `.read src/sql/seed.sql`:
+
+```
+sqlite> .read src/sql/seed.sql
+sqlite>
+```
+
+**4. Query the database**
+
+After steps two and three, the database is fully populated and exists in memory / RAM.
+We can now query the database and its contents. The SQL query we will execute fetches the
+contents of chapter 112 in the English locale (i.e: `en`):
+
+```sql
+SELECT qurans.locale,
+ chapters.number as chapter_number,
+ verses.number as verse_number,
+ verses.content from verses
+INNER JOIN qurans ON qurans.id = verses.quran_id
+INNER JOIN chapters ON chapters.id = verses.chapter_id
+WHERE qurans.locale = "en" AND chapters.number = 112;
+```
+
+The output should look like this:
+
+```
+sqlite> SELECT qurans.locale,
+ ...> chapters.number as chapter_number,
+ ...> verses.number as verse_number,
+ ...> verses.content from verses
+ ...> INNER JOIN qurans ON qurans.id = verses.quran_id
+ ...> INNER JOIN chapters ON chapters.id = verses.chapter_id
+ ...> WHERE qurans.locale = "en" AND chapters.number = 112;
+locale chapter_number verse_number content
+------ -------------- ------------ -----------------------------------------------------
+en 112 1 Say, ˹O Prophet,˺ “He is Allah—One ˹and Indivisible˺;
+en 112 2 Allah—the Sustainer ˹needed by all˺.
+en 112 3 He has never had offspring, nor was He born.
+en 112 4 And there is none comparable to Him.”
+```
+
## The `bin/` directory
-The [bin/](bin/) directory contains four scripts that generate the
+The [bin/](bin/) directory contains scripts that generate the
contents of the [src/](src/) directory:
* [bin/pull-arabic](bin/pull-arabic)
- This script is responsible for populating [src/arabic/](src/arabic/).
+ This script is responsible for populating [src/json/ar/](src/json/ar/).
* [bin/pull-english](bin/pull-english)
- This script is responsible for populating [src/english/](src/english/).
+ This script is responsible for populating [src/json/en/](src/json/en/).
* [bin/pull-farsi](bin/pull-farsi)
- This script is responsible for populating [src/farsi/](src/farsi/).
+ This script is responsible for populating [src/json/fa/](src/json/fa/).
* [bin/pull-portuguese](bin/pull-portuguese)
- This script is responsible for populating [src/portuguese/](src/portuguese/).
+ This script is responsible for populating [src/json/pt/](src/json/pt/).
-**Note**
+ * [bin/create-sql-seed-file](bin/create-sql-seed-file)
+ This script creates [src/sql/seed.sql](src/sql/seed.sql), and uses the contents of
+ [src/json/](src/json/) to do so.
+
+**Note #1**
+
+By default it is not neccessary to run these scripts because the contents of `src/` is included in
+the repository already.
+
+
+**Note #2**
The scripts are written in [Ruby v3.1.0+](https://www.ruby-lang.org).
The ["pull-english"](bin/pull-english), ["pull-farsi"](bin/pull-farsi) and
["pull-portuguese"](bin/pull-portuguese) scripts depend on the ["pull-arabic"](bin/pull-arabic)
script being run first. The script dependencies can be installed by
running `gem install -g gem.deps.rb` from the root of the repository.
-
## Download
For those of you who don't have access to, or know how to use "git",
diff --git a/bin/create-sql-seed-file b/bin/create-sql-seed-file
new file mode 100755
index 0000000..d7a9d8e
--- /dev/null
+++ b/bin/create-sql-seed-file
@@ -0,0 +1,60 @@
+#!/usr/bin/env ruby
+
+require "json"
+require "erb"
+
+module SQLUtils
+ module_function
+ def escape(str)
+ char = "'"
+ char + str.gsub(char, char * 2) + char
+ end
+end
+
+class Language
+ attr_reader :locale
+
+ def initialize(locale)
+ @locale = locale
+ end
+
+ def chapters
+ Dir.glob(File.join(
+ __dir__, "..", "src",
+ "json", @locale, "*.json"
+ )).map { Chapter.new(_1) }.sort_by(&:number)
+ end
+end
+
+class Chapter
+ def initialize(path)
+ @path = path
+ end
+
+ def number
+ File.basename(@path, '.json').to_i
+ end
+
+ def verses
+ JSON.parse(File.read(@path)).map { Verse.new(*_1) }
+ end
+end
+
+class Verse
+ attr_reader :number, :content
+
+ def initialize(number, content)
+ @number = number
+ @content = content
+ end
+end
+
+
+base_dir = File.join(__dir__, "..", "src", "sql")
+template = File.read File.join(base_dir, "seed.sql.erb")
+languages = %w(ar en pt fa).map { Language.new(_1) }
+result = ERB.new(template)
+ .result_with_hash(chapter_id: 1, languages:)
+ .each_line.map(&:strip)
+ .reject(&:empty?).join($/)
+File.write File.join(base_dir, "seed.sql"), result
diff --git a/bin/pull-arabic b/bin/pull-arabic
index e68ada1..6bb0d20 100755
--- a/bin/pull-arabic
+++ b/bin/pull-arabic
@@ -6,7 +6,7 @@
# is requested from the https://sacred-texts.com website.
#
# Each chapter is then saved in a JSON file, for example:
-# "src/arabic/.json".
+# "src/ar/.json".
##
# Dependencies
@@ -19,7 +19,9 @@ require "paint"
# Configuration variables.
base_uri = "www.sacred-texts.com"
path = "/isl/uq/%{htm_file}"
-dest_path = File.expand_path File.join(__dir__, "..", "src", "arabic", "%{chapter_num}.json")
+dest_path = File.join(
+ __dir__, "..", "src", "json", "ar", "%{chapter_num}.json"
+)
chapter_count = 114
cool_off = 5
diff --git a/bin/pull-english b/bin/pull-english
index c696387..43d9f2c 100755
--- a/bin/pull-english
+++ b/bin/pull-english
@@ -6,7 +6,7 @@
# is requested from the https://quran.com website.
#
# Each chapter is then saved in a JSON file, for example:
-# "src/english/.json"
+# "src/en/.json"
##
# Dependencies
@@ -19,8 +19,12 @@ require "paint"
# Configuration variables.
base_uri = "quran.com"
path = "/%{chapter_num}/%{verse_num}"
-dest_path = File.expand_path File.join(__dir__, "..", "src", "english", "%{chapter_num}.json")
-arab_path = File.expand_path File.join(__dir__, "..", "src", "arabic", "%{chapter_num}.json")
+dest_path = File.join(
+ __dir__, "..", "src", "json", "en", "%{chapter_num}.json"
+)
+arab_path = File.join(
+ __dir__, "..", "src", "json", "ar", "%{chapter_num}.json"
+)
chapter_count = 114
cool_off = 5
diff --git a/bin/pull-farsi b/bin/pull-farsi
index 32dea91..a6a0299 100755
--- a/bin/pull-farsi
+++ b/bin/pull-farsi
@@ -6,7 +6,7 @@
# is requested from the https://al-quran.cc website.
#
# Each chapter is then saved in a JSON file, for example:
-# "src/farsi/.json"
+# "src/fa/.json"
##
# Dependencies
@@ -54,19 +54,11 @@ ch_names = %w[
base_uri = "al-quran.cc"
path = "/quran-translation/farsi/%{ch_name}/%{verse_num}.html"
cool_off = 5
-arab_path = File.expand_path File.join(
- __dir__,
- "..",
- "src",
- "arabic",
- "%{chapter_num}.json"
+arab_path = File.join(
+ __dir__, "..", "src", "json", "ar", "%{chapter_num}.json"
)
-dest_path = File.expand_path File.join(
- __dir__,
- "..",
- "src",
- "farsi",
- "%{chapter_num}.json"
+dest_path = File.join(
+ __dir__, "..", "src", "json", "fa", "%{chapter_num}.json"
)
##
diff --git a/bin/pull-portuguese b/bin/pull-portuguese
index 31e1d5a..349559b 100755
--- a/bin/pull-portuguese
+++ b/bin/pull-portuguese
@@ -6,7 +6,7 @@
# is requested from the https://al-quran.cc website.
#
# Each chapter is then saved in a JSON file, for example:
-# "src/portuguese/.json"
+# "src/pt/.json"
##
# Dependencies
@@ -54,19 +54,11 @@ ch_names = %w[
base_uri = "al-quran.cc"
path = "/quran-translation/portuguese/%{ch_name}/%{verse_num}.html"
cool_off = 5
-arab_path = File.expand_path File.join(
- __dir__,
- "..",
- "src",
- "arabic",
- "%{chapter_num}.json"
+arab_path = File.join(
+ __dir__, "..", "src", "json", "ar", "%{chapter_num}.json"
)
-dest_path = File.expand_path File.join(
- __dir__,
- "..",
- "src",
- "portuguese",
- "%{chapter_num}.json"
+dest_path = File.join(
+ __dir__, "..", "src", "json", "pt", "%{chapter_num}.json"
)
##
diff --git a/src/arabic/1.json b/src/json/ar/1.json
similarity index 100%
rename from src/arabic/1.json
rename to src/json/ar/1.json
diff --git a/src/arabic/10.json b/src/json/ar/10.json
similarity index 100%
rename from src/arabic/10.json
rename to src/json/ar/10.json
diff --git a/src/arabic/100.json b/src/json/ar/100.json
similarity index 100%
rename from src/arabic/100.json
rename to src/json/ar/100.json
diff --git a/src/arabic/101.json b/src/json/ar/101.json
similarity index 100%
rename from src/arabic/101.json
rename to src/json/ar/101.json
diff --git a/src/arabic/102.json b/src/json/ar/102.json
similarity index 100%
rename from src/arabic/102.json
rename to src/json/ar/102.json
diff --git a/src/arabic/103.json b/src/json/ar/103.json
similarity index 100%
rename from src/arabic/103.json
rename to src/json/ar/103.json
diff --git a/src/arabic/104.json b/src/json/ar/104.json
similarity index 100%
rename from src/arabic/104.json
rename to src/json/ar/104.json
diff --git a/src/arabic/105.json b/src/json/ar/105.json
similarity index 100%
rename from src/arabic/105.json
rename to src/json/ar/105.json
diff --git a/src/arabic/106.json b/src/json/ar/106.json
similarity index 100%
rename from src/arabic/106.json
rename to src/json/ar/106.json
diff --git a/src/arabic/107.json b/src/json/ar/107.json
similarity index 100%
rename from src/arabic/107.json
rename to src/json/ar/107.json
diff --git a/src/arabic/108.json b/src/json/ar/108.json
similarity index 100%
rename from src/arabic/108.json
rename to src/json/ar/108.json
diff --git a/src/arabic/109.json b/src/json/ar/109.json
similarity index 100%
rename from src/arabic/109.json
rename to src/json/ar/109.json
diff --git a/src/arabic/11.json b/src/json/ar/11.json
similarity index 100%
rename from src/arabic/11.json
rename to src/json/ar/11.json
diff --git a/src/arabic/110.json b/src/json/ar/110.json
similarity index 100%
rename from src/arabic/110.json
rename to src/json/ar/110.json
diff --git a/src/arabic/111.json b/src/json/ar/111.json
similarity index 100%
rename from src/arabic/111.json
rename to src/json/ar/111.json
diff --git a/src/arabic/112.json b/src/json/ar/112.json
similarity index 100%
rename from src/arabic/112.json
rename to src/json/ar/112.json
diff --git a/src/arabic/113.json b/src/json/ar/113.json
similarity index 100%
rename from src/arabic/113.json
rename to src/json/ar/113.json
diff --git a/src/arabic/114.json b/src/json/ar/114.json
similarity index 100%
rename from src/arabic/114.json
rename to src/json/ar/114.json
diff --git a/src/arabic/12.json b/src/json/ar/12.json
similarity index 100%
rename from src/arabic/12.json
rename to src/json/ar/12.json
diff --git a/src/arabic/13.json b/src/json/ar/13.json
similarity index 100%
rename from src/arabic/13.json
rename to src/json/ar/13.json
diff --git a/src/arabic/14.json b/src/json/ar/14.json
similarity index 100%
rename from src/arabic/14.json
rename to src/json/ar/14.json
diff --git a/src/arabic/15.json b/src/json/ar/15.json
similarity index 100%
rename from src/arabic/15.json
rename to src/json/ar/15.json
diff --git a/src/arabic/16.json b/src/json/ar/16.json
similarity index 100%
rename from src/arabic/16.json
rename to src/json/ar/16.json
diff --git a/src/arabic/17.json b/src/json/ar/17.json
similarity index 100%
rename from src/arabic/17.json
rename to src/json/ar/17.json
diff --git a/src/arabic/18.json b/src/json/ar/18.json
similarity index 100%
rename from src/arabic/18.json
rename to src/json/ar/18.json
diff --git a/src/arabic/19.json b/src/json/ar/19.json
similarity index 100%
rename from src/arabic/19.json
rename to src/json/ar/19.json
diff --git a/src/arabic/2.json b/src/json/ar/2.json
similarity index 100%
rename from src/arabic/2.json
rename to src/json/ar/2.json
diff --git a/src/arabic/20.json b/src/json/ar/20.json
similarity index 100%
rename from src/arabic/20.json
rename to src/json/ar/20.json
diff --git a/src/arabic/21.json b/src/json/ar/21.json
similarity index 100%
rename from src/arabic/21.json
rename to src/json/ar/21.json
diff --git a/src/arabic/22.json b/src/json/ar/22.json
similarity index 100%
rename from src/arabic/22.json
rename to src/json/ar/22.json
diff --git a/src/arabic/23.json b/src/json/ar/23.json
similarity index 100%
rename from src/arabic/23.json
rename to src/json/ar/23.json
diff --git a/src/arabic/24.json b/src/json/ar/24.json
similarity index 100%
rename from src/arabic/24.json
rename to src/json/ar/24.json
diff --git a/src/arabic/25.json b/src/json/ar/25.json
similarity index 100%
rename from src/arabic/25.json
rename to src/json/ar/25.json
diff --git a/src/arabic/26.json b/src/json/ar/26.json
similarity index 100%
rename from src/arabic/26.json
rename to src/json/ar/26.json
diff --git a/src/arabic/27.json b/src/json/ar/27.json
similarity index 100%
rename from src/arabic/27.json
rename to src/json/ar/27.json
diff --git a/src/arabic/28.json b/src/json/ar/28.json
similarity index 100%
rename from src/arabic/28.json
rename to src/json/ar/28.json
diff --git a/src/arabic/29.json b/src/json/ar/29.json
similarity index 100%
rename from src/arabic/29.json
rename to src/json/ar/29.json
diff --git a/src/arabic/3.json b/src/json/ar/3.json
similarity index 100%
rename from src/arabic/3.json
rename to src/json/ar/3.json
diff --git a/src/arabic/30.json b/src/json/ar/30.json
similarity index 100%
rename from src/arabic/30.json
rename to src/json/ar/30.json
diff --git a/src/arabic/31.json b/src/json/ar/31.json
similarity index 100%
rename from src/arabic/31.json
rename to src/json/ar/31.json
diff --git a/src/arabic/32.json b/src/json/ar/32.json
similarity index 100%
rename from src/arabic/32.json
rename to src/json/ar/32.json
diff --git a/src/arabic/33.json b/src/json/ar/33.json
similarity index 100%
rename from src/arabic/33.json
rename to src/json/ar/33.json
diff --git a/src/arabic/34.json b/src/json/ar/34.json
similarity index 100%
rename from src/arabic/34.json
rename to src/json/ar/34.json
diff --git a/src/arabic/35.json b/src/json/ar/35.json
similarity index 100%
rename from src/arabic/35.json
rename to src/json/ar/35.json
diff --git a/src/arabic/36.json b/src/json/ar/36.json
similarity index 100%
rename from src/arabic/36.json
rename to src/json/ar/36.json
diff --git a/src/arabic/37.json b/src/json/ar/37.json
similarity index 100%
rename from src/arabic/37.json
rename to src/json/ar/37.json
diff --git a/src/arabic/38.json b/src/json/ar/38.json
similarity index 100%
rename from src/arabic/38.json
rename to src/json/ar/38.json
diff --git a/src/arabic/39.json b/src/json/ar/39.json
similarity index 100%
rename from src/arabic/39.json
rename to src/json/ar/39.json
diff --git a/src/arabic/4.json b/src/json/ar/4.json
similarity index 100%
rename from src/arabic/4.json
rename to src/json/ar/4.json
diff --git a/src/arabic/40.json b/src/json/ar/40.json
similarity index 100%
rename from src/arabic/40.json
rename to src/json/ar/40.json
diff --git a/src/arabic/41.json b/src/json/ar/41.json
similarity index 100%
rename from src/arabic/41.json
rename to src/json/ar/41.json
diff --git a/src/arabic/42.json b/src/json/ar/42.json
similarity index 100%
rename from src/arabic/42.json
rename to src/json/ar/42.json
diff --git a/src/arabic/43.json b/src/json/ar/43.json
similarity index 100%
rename from src/arabic/43.json
rename to src/json/ar/43.json
diff --git a/src/arabic/44.json b/src/json/ar/44.json
similarity index 100%
rename from src/arabic/44.json
rename to src/json/ar/44.json
diff --git a/src/arabic/45.json b/src/json/ar/45.json
similarity index 100%
rename from src/arabic/45.json
rename to src/json/ar/45.json
diff --git a/src/arabic/46.json b/src/json/ar/46.json
similarity index 100%
rename from src/arabic/46.json
rename to src/json/ar/46.json
diff --git a/src/arabic/47.json b/src/json/ar/47.json
similarity index 100%
rename from src/arabic/47.json
rename to src/json/ar/47.json
diff --git a/src/arabic/48.json b/src/json/ar/48.json
similarity index 100%
rename from src/arabic/48.json
rename to src/json/ar/48.json
diff --git a/src/arabic/49.json b/src/json/ar/49.json
similarity index 100%
rename from src/arabic/49.json
rename to src/json/ar/49.json
diff --git a/src/arabic/5.json b/src/json/ar/5.json
similarity index 100%
rename from src/arabic/5.json
rename to src/json/ar/5.json
diff --git a/src/arabic/50.json b/src/json/ar/50.json
similarity index 100%
rename from src/arabic/50.json
rename to src/json/ar/50.json
diff --git a/src/arabic/51.json b/src/json/ar/51.json
similarity index 100%
rename from src/arabic/51.json
rename to src/json/ar/51.json
diff --git a/src/arabic/52.json b/src/json/ar/52.json
similarity index 100%
rename from src/arabic/52.json
rename to src/json/ar/52.json
diff --git a/src/arabic/53.json b/src/json/ar/53.json
similarity index 100%
rename from src/arabic/53.json
rename to src/json/ar/53.json
diff --git a/src/arabic/54.json b/src/json/ar/54.json
similarity index 100%
rename from src/arabic/54.json
rename to src/json/ar/54.json
diff --git a/src/arabic/55.json b/src/json/ar/55.json
similarity index 100%
rename from src/arabic/55.json
rename to src/json/ar/55.json
diff --git a/src/arabic/56.json b/src/json/ar/56.json
similarity index 100%
rename from src/arabic/56.json
rename to src/json/ar/56.json
diff --git a/src/arabic/57.json b/src/json/ar/57.json
similarity index 100%
rename from src/arabic/57.json
rename to src/json/ar/57.json
diff --git a/src/arabic/58.json b/src/json/ar/58.json
similarity index 100%
rename from src/arabic/58.json
rename to src/json/ar/58.json
diff --git a/src/arabic/59.json b/src/json/ar/59.json
similarity index 100%
rename from src/arabic/59.json
rename to src/json/ar/59.json
diff --git a/src/arabic/6.json b/src/json/ar/6.json
similarity index 100%
rename from src/arabic/6.json
rename to src/json/ar/6.json
diff --git a/src/arabic/60.json b/src/json/ar/60.json
similarity index 100%
rename from src/arabic/60.json
rename to src/json/ar/60.json
diff --git a/src/arabic/61.json b/src/json/ar/61.json
similarity index 100%
rename from src/arabic/61.json
rename to src/json/ar/61.json
diff --git a/src/arabic/62.json b/src/json/ar/62.json
similarity index 100%
rename from src/arabic/62.json
rename to src/json/ar/62.json
diff --git a/src/arabic/63.json b/src/json/ar/63.json
similarity index 100%
rename from src/arabic/63.json
rename to src/json/ar/63.json
diff --git a/src/arabic/64.json b/src/json/ar/64.json
similarity index 100%
rename from src/arabic/64.json
rename to src/json/ar/64.json
diff --git a/src/arabic/65.json b/src/json/ar/65.json
similarity index 100%
rename from src/arabic/65.json
rename to src/json/ar/65.json
diff --git a/src/arabic/66.json b/src/json/ar/66.json
similarity index 100%
rename from src/arabic/66.json
rename to src/json/ar/66.json
diff --git a/src/arabic/67.json b/src/json/ar/67.json
similarity index 100%
rename from src/arabic/67.json
rename to src/json/ar/67.json
diff --git a/src/arabic/68.json b/src/json/ar/68.json
similarity index 100%
rename from src/arabic/68.json
rename to src/json/ar/68.json
diff --git a/src/arabic/69.json b/src/json/ar/69.json
similarity index 100%
rename from src/arabic/69.json
rename to src/json/ar/69.json
diff --git a/src/arabic/7.json b/src/json/ar/7.json
similarity index 100%
rename from src/arabic/7.json
rename to src/json/ar/7.json
diff --git a/src/arabic/70.json b/src/json/ar/70.json
similarity index 100%
rename from src/arabic/70.json
rename to src/json/ar/70.json
diff --git a/src/arabic/71.json b/src/json/ar/71.json
similarity index 100%
rename from src/arabic/71.json
rename to src/json/ar/71.json
diff --git a/src/arabic/72.json b/src/json/ar/72.json
similarity index 100%
rename from src/arabic/72.json
rename to src/json/ar/72.json
diff --git a/src/arabic/73.json b/src/json/ar/73.json
similarity index 100%
rename from src/arabic/73.json
rename to src/json/ar/73.json
diff --git a/src/arabic/74.json b/src/json/ar/74.json
similarity index 100%
rename from src/arabic/74.json
rename to src/json/ar/74.json
diff --git a/src/arabic/75.json b/src/json/ar/75.json
similarity index 100%
rename from src/arabic/75.json
rename to src/json/ar/75.json
diff --git a/src/arabic/76.json b/src/json/ar/76.json
similarity index 100%
rename from src/arabic/76.json
rename to src/json/ar/76.json
diff --git a/src/arabic/77.json b/src/json/ar/77.json
similarity index 100%
rename from src/arabic/77.json
rename to src/json/ar/77.json
diff --git a/src/arabic/78.json b/src/json/ar/78.json
similarity index 100%
rename from src/arabic/78.json
rename to src/json/ar/78.json
diff --git a/src/arabic/79.json b/src/json/ar/79.json
similarity index 100%
rename from src/arabic/79.json
rename to src/json/ar/79.json
diff --git a/src/arabic/8.json b/src/json/ar/8.json
similarity index 100%
rename from src/arabic/8.json
rename to src/json/ar/8.json
diff --git a/src/arabic/80.json b/src/json/ar/80.json
similarity index 100%
rename from src/arabic/80.json
rename to src/json/ar/80.json
diff --git a/src/arabic/81.json b/src/json/ar/81.json
similarity index 100%
rename from src/arabic/81.json
rename to src/json/ar/81.json
diff --git a/src/arabic/82.json b/src/json/ar/82.json
similarity index 100%
rename from src/arabic/82.json
rename to src/json/ar/82.json
diff --git a/src/arabic/83.json b/src/json/ar/83.json
similarity index 100%
rename from src/arabic/83.json
rename to src/json/ar/83.json
diff --git a/src/arabic/84.json b/src/json/ar/84.json
similarity index 100%
rename from src/arabic/84.json
rename to src/json/ar/84.json
diff --git a/src/arabic/85.json b/src/json/ar/85.json
similarity index 100%
rename from src/arabic/85.json
rename to src/json/ar/85.json
diff --git a/src/arabic/86.json b/src/json/ar/86.json
similarity index 100%
rename from src/arabic/86.json
rename to src/json/ar/86.json
diff --git a/src/arabic/87.json b/src/json/ar/87.json
similarity index 100%
rename from src/arabic/87.json
rename to src/json/ar/87.json
diff --git a/src/arabic/88.json b/src/json/ar/88.json
similarity index 100%
rename from src/arabic/88.json
rename to src/json/ar/88.json
diff --git a/src/arabic/89.json b/src/json/ar/89.json
similarity index 100%
rename from src/arabic/89.json
rename to src/json/ar/89.json
diff --git a/src/arabic/9.json b/src/json/ar/9.json
similarity index 100%
rename from src/arabic/9.json
rename to src/json/ar/9.json
diff --git a/src/arabic/90.json b/src/json/ar/90.json
similarity index 100%
rename from src/arabic/90.json
rename to src/json/ar/90.json
diff --git a/src/arabic/91.json b/src/json/ar/91.json
similarity index 100%
rename from src/arabic/91.json
rename to src/json/ar/91.json
diff --git a/src/arabic/92.json b/src/json/ar/92.json
similarity index 100%
rename from src/arabic/92.json
rename to src/json/ar/92.json
diff --git a/src/arabic/93.json b/src/json/ar/93.json
similarity index 100%
rename from src/arabic/93.json
rename to src/json/ar/93.json
diff --git a/src/arabic/94.json b/src/json/ar/94.json
similarity index 100%
rename from src/arabic/94.json
rename to src/json/ar/94.json
diff --git a/src/arabic/95.json b/src/json/ar/95.json
similarity index 100%
rename from src/arabic/95.json
rename to src/json/ar/95.json
diff --git a/src/arabic/96.json b/src/json/ar/96.json
similarity index 100%
rename from src/arabic/96.json
rename to src/json/ar/96.json
diff --git a/src/arabic/97.json b/src/json/ar/97.json
similarity index 100%
rename from src/arabic/97.json
rename to src/json/ar/97.json
diff --git a/src/arabic/98.json b/src/json/ar/98.json
similarity index 100%
rename from src/arabic/98.json
rename to src/json/ar/98.json
diff --git a/src/arabic/99.json b/src/json/ar/99.json
similarity index 100%
rename from src/arabic/99.json
rename to src/json/ar/99.json
diff --git a/src/english/1.json b/src/json/en/1.json
similarity index 100%
rename from src/english/1.json
rename to src/json/en/1.json
diff --git a/src/english/10.json b/src/json/en/10.json
similarity index 100%
rename from src/english/10.json
rename to src/json/en/10.json
diff --git a/src/english/100.json b/src/json/en/100.json
similarity index 100%
rename from src/english/100.json
rename to src/json/en/100.json
diff --git a/src/english/101.json b/src/json/en/101.json
similarity index 100%
rename from src/english/101.json
rename to src/json/en/101.json
diff --git a/src/english/102.json b/src/json/en/102.json
similarity index 100%
rename from src/english/102.json
rename to src/json/en/102.json
diff --git a/src/english/103.json b/src/json/en/103.json
similarity index 100%
rename from src/english/103.json
rename to src/json/en/103.json
diff --git a/src/english/104.json b/src/json/en/104.json
similarity index 100%
rename from src/english/104.json
rename to src/json/en/104.json
diff --git a/src/english/105.json b/src/json/en/105.json
similarity index 100%
rename from src/english/105.json
rename to src/json/en/105.json
diff --git a/src/english/106.json b/src/json/en/106.json
similarity index 100%
rename from src/english/106.json
rename to src/json/en/106.json
diff --git a/src/english/107.json b/src/json/en/107.json
similarity index 100%
rename from src/english/107.json
rename to src/json/en/107.json
diff --git a/src/english/108.json b/src/json/en/108.json
similarity index 100%
rename from src/english/108.json
rename to src/json/en/108.json
diff --git a/src/english/109.json b/src/json/en/109.json
similarity index 100%
rename from src/english/109.json
rename to src/json/en/109.json
diff --git a/src/english/11.json b/src/json/en/11.json
similarity index 100%
rename from src/english/11.json
rename to src/json/en/11.json
diff --git a/src/english/110.json b/src/json/en/110.json
similarity index 100%
rename from src/english/110.json
rename to src/json/en/110.json
diff --git a/src/english/111.json b/src/json/en/111.json
similarity index 100%
rename from src/english/111.json
rename to src/json/en/111.json
diff --git a/src/english/112.json b/src/json/en/112.json
similarity index 100%
rename from src/english/112.json
rename to src/json/en/112.json
diff --git a/src/english/113.json b/src/json/en/113.json
similarity index 100%
rename from src/english/113.json
rename to src/json/en/113.json
diff --git a/src/english/114.json b/src/json/en/114.json
similarity index 100%
rename from src/english/114.json
rename to src/json/en/114.json
diff --git a/src/english/12.json b/src/json/en/12.json
similarity index 100%
rename from src/english/12.json
rename to src/json/en/12.json
diff --git a/src/english/13.json b/src/json/en/13.json
similarity index 100%
rename from src/english/13.json
rename to src/json/en/13.json
diff --git a/src/english/14.json b/src/json/en/14.json
similarity index 100%
rename from src/english/14.json
rename to src/json/en/14.json
diff --git a/src/english/15.json b/src/json/en/15.json
similarity index 100%
rename from src/english/15.json
rename to src/json/en/15.json
diff --git a/src/english/16.json b/src/json/en/16.json
similarity index 100%
rename from src/english/16.json
rename to src/json/en/16.json
diff --git a/src/english/17.json b/src/json/en/17.json
similarity index 100%
rename from src/english/17.json
rename to src/json/en/17.json
diff --git a/src/english/18.json b/src/json/en/18.json
similarity index 100%
rename from src/english/18.json
rename to src/json/en/18.json
diff --git a/src/english/19.json b/src/json/en/19.json
similarity index 100%
rename from src/english/19.json
rename to src/json/en/19.json
diff --git a/src/english/2.json b/src/json/en/2.json
similarity index 100%
rename from src/english/2.json
rename to src/json/en/2.json
diff --git a/src/english/20.json b/src/json/en/20.json
similarity index 100%
rename from src/english/20.json
rename to src/json/en/20.json
diff --git a/src/english/21.json b/src/json/en/21.json
similarity index 100%
rename from src/english/21.json
rename to src/json/en/21.json
diff --git a/src/english/22.json b/src/json/en/22.json
similarity index 100%
rename from src/english/22.json
rename to src/json/en/22.json
diff --git a/src/english/23.json b/src/json/en/23.json
similarity index 100%
rename from src/english/23.json
rename to src/json/en/23.json
diff --git a/src/english/24.json b/src/json/en/24.json
similarity index 100%
rename from src/english/24.json
rename to src/json/en/24.json
diff --git a/src/english/25.json b/src/json/en/25.json
similarity index 100%
rename from src/english/25.json
rename to src/json/en/25.json
diff --git a/src/english/26.json b/src/json/en/26.json
similarity index 100%
rename from src/english/26.json
rename to src/json/en/26.json
diff --git a/src/english/27.json b/src/json/en/27.json
similarity index 100%
rename from src/english/27.json
rename to src/json/en/27.json
diff --git a/src/english/28.json b/src/json/en/28.json
similarity index 100%
rename from src/english/28.json
rename to src/json/en/28.json
diff --git a/src/english/29.json b/src/json/en/29.json
similarity index 100%
rename from src/english/29.json
rename to src/json/en/29.json
diff --git a/src/english/3.json b/src/json/en/3.json
similarity index 100%
rename from src/english/3.json
rename to src/json/en/3.json
diff --git a/src/english/30.json b/src/json/en/30.json
similarity index 100%
rename from src/english/30.json
rename to src/json/en/30.json
diff --git a/src/english/31.json b/src/json/en/31.json
similarity index 100%
rename from src/english/31.json
rename to src/json/en/31.json
diff --git a/src/english/32.json b/src/json/en/32.json
similarity index 100%
rename from src/english/32.json
rename to src/json/en/32.json
diff --git a/src/english/33.json b/src/json/en/33.json
similarity index 100%
rename from src/english/33.json
rename to src/json/en/33.json
diff --git a/src/english/34.json b/src/json/en/34.json
similarity index 100%
rename from src/english/34.json
rename to src/json/en/34.json
diff --git a/src/english/35.json b/src/json/en/35.json
similarity index 100%
rename from src/english/35.json
rename to src/json/en/35.json
diff --git a/src/english/36.json b/src/json/en/36.json
similarity index 100%
rename from src/english/36.json
rename to src/json/en/36.json
diff --git a/src/english/37.json b/src/json/en/37.json
similarity index 100%
rename from src/english/37.json
rename to src/json/en/37.json
diff --git a/src/english/38.json b/src/json/en/38.json
similarity index 100%
rename from src/english/38.json
rename to src/json/en/38.json
diff --git a/src/english/39.json b/src/json/en/39.json
similarity index 100%
rename from src/english/39.json
rename to src/json/en/39.json
diff --git a/src/english/4.json b/src/json/en/4.json
similarity index 100%
rename from src/english/4.json
rename to src/json/en/4.json
diff --git a/src/english/40.json b/src/json/en/40.json
similarity index 100%
rename from src/english/40.json
rename to src/json/en/40.json
diff --git a/src/english/41.json b/src/json/en/41.json
similarity index 100%
rename from src/english/41.json
rename to src/json/en/41.json
diff --git a/src/english/42.json b/src/json/en/42.json
similarity index 100%
rename from src/english/42.json
rename to src/json/en/42.json
diff --git a/src/english/43.json b/src/json/en/43.json
similarity index 100%
rename from src/english/43.json
rename to src/json/en/43.json
diff --git a/src/english/44.json b/src/json/en/44.json
similarity index 100%
rename from src/english/44.json
rename to src/json/en/44.json
diff --git a/src/english/45.json b/src/json/en/45.json
similarity index 100%
rename from src/english/45.json
rename to src/json/en/45.json
diff --git a/src/english/46.json b/src/json/en/46.json
similarity index 100%
rename from src/english/46.json
rename to src/json/en/46.json
diff --git a/src/english/47.json b/src/json/en/47.json
similarity index 100%
rename from src/english/47.json
rename to src/json/en/47.json
diff --git a/src/english/48.json b/src/json/en/48.json
similarity index 100%
rename from src/english/48.json
rename to src/json/en/48.json
diff --git a/src/english/49.json b/src/json/en/49.json
similarity index 100%
rename from src/english/49.json
rename to src/json/en/49.json
diff --git a/src/english/5.json b/src/json/en/5.json
similarity index 100%
rename from src/english/5.json
rename to src/json/en/5.json
diff --git a/src/english/50.json b/src/json/en/50.json
similarity index 100%
rename from src/english/50.json
rename to src/json/en/50.json
diff --git a/src/english/51.json b/src/json/en/51.json
similarity index 100%
rename from src/english/51.json
rename to src/json/en/51.json
diff --git a/src/english/52.json b/src/json/en/52.json
similarity index 100%
rename from src/english/52.json
rename to src/json/en/52.json
diff --git a/src/english/53.json b/src/json/en/53.json
similarity index 100%
rename from src/english/53.json
rename to src/json/en/53.json
diff --git a/src/english/54.json b/src/json/en/54.json
similarity index 100%
rename from src/english/54.json
rename to src/json/en/54.json
diff --git a/src/english/55.json b/src/json/en/55.json
similarity index 100%
rename from src/english/55.json
rename to src/json/en/55.json
diff --git a/src/english/56.json b/src/json/en/56.json
similarity index 100%
rename from src/english/56.json
rename to src/json/en/56.json
diff --git a/src/english/57.json b/src/json/en/57.json
similarity index 100%
rename from src/english/57.json
rename to src/json/en/57.json
diff --git a/src/english/58.json b/src/json/en/58.json
similarity index 100%
rename from src/english/58.json
rename to src/json/en/58.json
diff --git a/src/english/59.json b/src/json/en/59.json
similarity index 100%
rename from src/english/59.json
rename to src/json/en/59.json
diff --git a/src/english/6.json b/src/json/en/6.json
similarity index 100%
rename from src/english/6.json
rename to src/json/en/6.json
diff --git a/src/english/60.json b/src/json/en/60.json
similarity index 100%
rename from src/english/60.json
rename to src/json/en/60.json
diff --git a/src/english/61.json b/src/json/en/61.json
similarity index 100%
rename from src/english/61.json
rename to src/json/en/61.json
diff --git a/src/english/62.json b/src/json/en/62.json
similarity index 100%
rename from src/english/62.json
rename to src/json/en/62.json
diff --git a/src/english/63.json b/src/json/en/63.json
similarity index 100%
rename from src/english/63.json
rename to src/json/en/63.json
diff --git a/src/english/64.json b/src/json/en/64.json
similarity index 100%
rename from src/english/64.json
rename to src/json/en/64.json
diff --git a/src/english/65.json b/src/json/en/65.json
similarity index 100%
rename from src/english/65.json
rename to src/json/en/65.json
diff --git a/src/english/66.json b/src/json/en/66.json
similarity index 100%
rename from src/english/66.json
rename to src/json/en/66.json
diff --git a/src/english/67.json b/src/json/en/67.json
similarity index 100%
rename from src/english/67.json
rename to src/json/en/67.json
diff --git a/src/english/68.json b/src/json/en/68.json
similarity index 100%
rename from src/english/68.json
rename to src/json/en/68.json
diff --git a/src/english/69.json b/src/json/en/69.json
similarity index 100%
rename from src/english/69.json
rename to src/json/en/69.json
diff --git a/src/english/7.json b/src/json/en/7.json
similarity index 100%
rename from src/english/7.json
rename to src/json/en/7.json
diff --git a/src/english/70.json b/src/json/en/70.json
similarity index 100%
rename from src/english/70.json
rename to src/json/en/70.json
diff --git a/src/english/71.json b/src/json/en/71.json
similarity index 100%
rename from src/english/71.json
rename to src/json/en/71.json
diff --git a/src/english/72.json b/src/json/en/72.json
similarity index 100%
rename from src/english/72.json
rename to src/json/en/72.json
diff --git a/src/english/73.json b/src/json/en/73.json
similarity index 100%
rename from src/english/73.json
rename to src/json/en/73.json
diff --git a/src/english/74.json b/src/json/en/74.json
similarity index 100%
rename from src/english/74.json
rename to src/json/en/74.json
diff --git a/src/english/75.json b/src/json/en/75.json
similarity index 100%
rename from src/english/75.json
rename to src/json/en/75.json
diff --git a/src/english/76.json b/src/json/en/76.json
similarity index 100%
rename from src/english/76.json
rename to src/json/en/76.json
diff --git a/src/english/77.json b/src/json/en/77.json
similarity index 100%
rename from src/english/77.json
rename to src/json/en/77.json
diff --git a/src/english/78.json b/src/json/en/78.json
similarity index 100%
rename from src/english/78.json
rename to src/json/en/78.json
diff --git a/src/english/79.json b/src/json/en/79.json
similarity index 100%
rename from src/english/79.json
rename to src/json/en/79.json
diff --git a/src/english/8.json b/src/json/en/8.json
similarity index 100%
rename from src/english/8.json
rename to src/json/en/8.json
diff --git a/src/english/80.json b/src/json/en/80.json
similarity index 100%
rename from src/english/80.json
rename to src/json/en/80.json
diff --git a/src/english/81.json b/src/json/en/81.json
similarity index 100%
rename from src/english/81.json
rename to src/json/en/81.json
diff --git a/src/english/82.json b/src/json/en/82.json
similarity index 100%
rename from src/english/82.json
rename to src/json/en/82.json
diff --git a/src/english/83.json b/src/json/en/83.json
similarity index 100%
rename from src/english/83.json
rename to src/json/en/83.json
diff --git a/src/english/84.json b/src/json/en/84.json
similarity index 100%
rename from src/english/84.json
rename to src/json/en/84.json
diff --git a/src/english/85.json b/src/json/en/85.json
similarity index 100%
rename from src/english/85.json
rename to src/json/en/85.json
diff --git a/src/english/86.json b/src/json/en/86.json
similarity index 100%
rename from src/english/86.json
rename to src/json/en/86.json
diff --git a/src/english/87.json b/src/json/en/87.json
similarity index 100%
rename from src/english/87.json
rename to src/json/en/87.json
diff --git a/src/english/88.json b/src/json/en/88.json
similarity index 100%
rename from src/english/88.json
rename to src/json/en/88.json
diff --git a/src/english/89.json b/src/json/en/89.json
similarity index 100%
rename from src/english/89.json
rename to src/json/en/89.json
diff --git a/src/english/9.json b/src/json/en/9.json
similarity index 100%
rename from src/english/9.json
rename to src/json/en/9.json
diff --git a/src/english/90.json b/src/json/en/90.json
similarity index 100%
rename from src/english/90.json
rename to src/json/en/90.json
diff --git a/src/english/91.json b/src/json/en/91.json
similarity index 100%
rename from src/english/91.json
rename to src/json/en/91.json
diff --git a/src/english/92.json b/src/json/en/92.json
similarity index 100%
rename from src/english/92.json
rename to src/json/en/92.json
diff --git a/src/english/93.json b/src/json/en/93.json
similarity index 100%
rename from src/english/93.json
rename to src/json/en/93.json
diff --git a/src/english/94.json b/src/json/en/94.json
similarity index 100%
rename from src/english/94.json
rename to src/json/en/94.json
diff --git a/src/english/95.json b/src/json/en/95.json
similarity index 100%
rename from src/english/95.json
rename to src/json/en/95.json
diff --git a/src/english/96.json b/src/json/en/96.json
similarity index 100%
rename from src/english/96.json
rename to src/json/en/96.json
diff --git a/src/english/97.json b/src/json/en/97.json
similarity index 100%
rename from src/english/97.json
rename to src/json/en/97.json
diff --git a/src/english/98.json b/src/json/en/98.json
similarity index 100%
rename from src/english/98.json
rename to src/json/en/98.json
diff --git a/src/english/99.json b/src/json/en/99.json
similarity index 100%
rename from src/english/99.json
rename to src/json/en/99.json
diff --git a/src/farsi/1.json b/src/json/fa/1.json
similarity index 100%
rename from src/farsi/1.json
rename to src/json/fa/1.json
diff --git a/src/farsi/10.json b/src/json/fa/10.json
similarity index 100%
rename from src/farsi/10.json
rename to src/json/fa/10.json
diff --git a/src/farsi/100.json b/src/json/fa/100.json
similarity index 100%
rename from src/farsi/100.json
rename to src/json/fa/100.json
diff --git a/src/farsi/101.json b/src/json/fa/101.json
similarity index 100%
rename from src/farsi/101.json
rename to src/json/fa/101.json
diff --git a/src/farsi/102.json b/src/json/fa/102.json
similarity index 100%
rename from src/farsi/102.json
rename to src/json/fa/102.json
diff --git a/src/farsi/103.json b/src/json/fa/103.json
similarity index 100%
rename from src/farsi/103.json
rename to src/json/fa/103.json
diff --git a/src/farsi/104.json b/src/json/fa/104.json
similarity index 100%
rename from src/farsi/104.json
rename to src/json/fa/104.json
diff --git a/src/farsi/105.json b/src/json/fa/105.json
similarity index 100%
rename from src/farsi/105.json
rename to src/json/fa/105.json
diff --git a/src/farsi/106.json b/src/json/fa/106.json
similarity index 100%
rename from src/farsi/106.json
rename to src/json/fa/106.json
diff --git a/src/farsi/107.json b/src/json/fa/107.json
similarity index 100%
rename from src/farsi/107.json
rename to src/json/fa/107.json
diff --git a/src/farsi/108.json b/src/json/fa/108.json
similarity index 100%
rename from src/farsi/108.json
rename to src/json/fa/108.json
diff --git a/src/farsi/109.json b/src/json/fa/109.json
similarity index 100%
rename from src/farsi/109.json
rename to src/json/fa/109.json
diff --git a/src/farsi/11.json b/src/json/fa/11.json
similarity index 100%
rename from src/farsi/11.json
rename to src/json/fa/11.json
diff --git a/src/farsi/110.json b/src/json/fa/110.json
similarity index 100%
rename from src/farsi/110.json
rename to src/json/fa/110.json
diff --git a/src/farsi/111.json b/src/json/fa/111.json
similarity index 100%
rename from src/farsi/111.json
rename to src/json/fa/111.json
diff --git a/src/farsi/112.json b/src/json/fa/112.json
similarity index 100%
rename from src/farsi/112.json
rename to src/json/fa/112.json
diff --git a/src/farsi/113.json b/src/json/fa/113.json
similarity index 100%
rename from src/farsi/113.json
rename to src/json/fa/113.json
diff --git a/src/farsi/114.json b/src/json/fa/114.json
similarity index 100%
rename from src/farsi/114.json
rename to src/json/fa/114.json
diff --git a/src/farsi/12.json b/src/json/fa/12.json
similarity index 100%
rename from src/farsi/12.json
rename to src/json/fa/12.json
diff --git a/src/farsi/13.json b/src/json/fa/13.json
similarity index 100%
rename from src/farsi/13.json
rename to src/json/fa/13.json
diff --git a/src/farsi/14.json b/src/json/fa/14.json
similarity index 100%
rename from src/farsi/14.json
rename to src/json/fa/14.json
diff --git a/src/farsi/15.json b/src/json/fa/15.json
similarity index 100%
rename from src/farsi/15.json
rename to src/json/fa/15.json
diff --git a/src/farsi/16.json b/src/json/fa/16.json
similarity index 100%
rename from src/farsi/16.json
rename to src/json/fa/16.json
diff --git a/src/farsi/17.json b/src/json/fa/17.json
similarity index 100%
rename from src/farsi/17.json
rename to src/json/fa/17.json
diff --git a/src/farsi/18.json b/src/json/fa/18.json
similarity index 100%
rename from src/farsi/18.json
rename to src/json/fa/18.json
diff --git a/src/farsi/19.json b/src/json/fa/19.json
similarity index 100%
rename from src/farsi/19.json
rename to src/json/fa/19.json
diff --git a/src/farsi/2.json b/src/json/fa/2.json
similarity index 100%
rename from src/farsi/2.json
rename to src/json/fa/2.json
diff --git a/src/farsi/20.json b/src/json/fa/20.json
similarity index 100%
rename from src/farsi/20.json
rename to src/json/fa/20.json
diff --git a/src/farsi/21.json b/src/json/fa/21.json
similarity index 100%
rename from src/farsi/21.json
rename to src/json/fa/21.json
diff --git a/src/farsi/22.json b/src/json/fa/22.json
similarity index 100%
rename from src/farsi/22.json
rename to src/json/fa/22.json
diff --git a/src/farsi/23.json b/src/json/fa/23.json
similarity index 100%
rename from src/farsi/23.json
rename to src/json/fa/23.json
diff --git a/src/farsi/24.json b/src/json/fa/24.json
similarity index 100%
rename from src/farsi/24.json
rename to src/json/fa/24.json
diff --git a/src/farsi/25.json b/src/json/fa/25.json
similarity index 100%
rename from src/farsi/25.json
rename to src/json/fa/25.json
diff --git a/src/farsi/26.json b/src/json/fa/26.json
similarity index 100%
rename from src/farsi/26.json
rename to src/json/fa/26.json
diff --git a/src/farsi/27.json b/src/json/fa/27.json
similarity index 100%
rename from src/farsi/27.json
rename to src/json/fa/27.json
diff --git a/src/farsi/28.json b/src/json/fa/28.json
similarity index 100%
rename from src/farsi/28.json
rename to src/json/fa/28.json
diff --git a/src/farsi/29.json b/src/json/fa/29.json
similarity index 100%
rename from src/farsi/29.json
rename to src/json/fa/29.json
diff --git a/src/farsi/3.json b/src/json/fa/3.json
similarity index 100%
rename from src/farsi/3.json
rename to src/json/fa/3.json
diff --git a/src/farsi/30.json b/src/json/fa/30.json
similarity index 100%
rename from src/farsi/30.json
rename to src/json/fa/30.json
diff --git a/src/farsi/31.json b/src/json/fa/31.json
similarity index 100%
rename from src/farsi/31.json
rename to src/json/fa/31.json
diff --git a/src/farsi/32.json b/src/json/fa/32.json
similarity index 100%
rename from src/farsi/32.json
rename to src/json/fa/32.json
diff --git a/src/farsi/33.json b/src/json/fa/33.json
similarity index 100%
rename from src/farsi/33.json
rename to src/json/fa/33.json
diff --git a/src/farsi/34.json b/src/json/fa/34.json
similarity index 100%
rename from src/farsi/34.json
rename to src/json/fa/34.json
diff --git a/src/farsi/35.json b/src/json/fa/35.json
similarity index 100%
rename from src/farsi/35.json
rename to src/json/fa/35.json
diff --git a/src/farsi/36.json b/src/json/fa/36.json
similarity index 100%
rename from src/farsi/36.json
rename to src/json/fa/36.json
diff --git a/src/farsi/37.json b/src/json/fa/37.json
similarity index 100%
rename from src/farsi/37.json
rename to src/json/fa/37.json
diff --git a/src/farsi/38.json b/src/json/fa/38.json
similarity index 100%
rename from src/farsi/38.json
rename to src/json/fa/38.json
diff --git a/src/farsi/39.json b/src/json/fa/39.json
similarity index 100%
rename from src/farsi/39.json
rename to src/json/fa/39.json
diff --git a/src/farsi/4.json b/src/json/fa/4.json
similarity index 100%
rename from src/farsi/4.json
rename to src/json/fa/4.json
diff --git a/src/farsi/40.json b/src/json/fa/40.json
similarity index 100%
rename from src/farsi/40.json
rename to src/json/fa/40.json
diff --git a/src/farsi/41.json b/src/json/fa/41.json
similarity index 100%
rename from src/farsi/41.json
rename to src/json/fa/41.json
diff --git a/src/farsi/42.json b/src/json/fa/42.json
similarity index 100%
rename from src/farsi/42.json
rename to src/json/fa/42.json
diff --git a/src/farsi/43.json b/src/json/fa/43.json
similarity index 100%
rename from src/farsi/43.json
rename to src/json/fa/43.json
diff --git a/src/farsi/44.json b/src/json/fa/44.json
similarity index 100%
rename from src/farsi/44.json
rename to src/json/fa/44.json
diff --git a/src/farsi/45.json b/src/json/fa/45.json
similarity index 100%
rename from src/farsi/45.json
rename to src/json/fa/45.json
diff --git a/src/farsi/46.json b/src/json/fa/46.json
similarity index 100%
rename from src/farsi/46.json
rename to src/json/fa/46.json
diff --git a/src/farsi/47.json b/src/json/fa/47.json
similarity index 100%
rename from src/farsi/47.json
rename to src/json/fa/47.json
diff --git a/src/farsi/48.json b/src/json/fa/48.json
similarity index 100%
rename from src/farsi/48.json
rename to src/json/fa/48.json
diff --git a/src/farsi/49.json b/src/json/fa/49.json
similarity index 100%
rename from src/farsi/49.json
rename to src/json/fa/49.json
diff --git a/src/farsi/5.json b/src/json/fa/5.json
similarity index 100%
rename from src/farsi/5.json
rename to src/json/fa/5.json
diff --git a/src/farsi/50.json b/src/json/fa/50.json
similarity index 100%
rename from src/farsi/50.json
rename to src/json/fa/50.json
diff --git a/src/farsi/51.json b/src/json/fa/51.json
similarity index 100%
rename from src/farsi/51.json
rename to src/json/fa/51.json
diff --git a/src/farsi/52.json b/src/json/fa/52.json
similarity index 100%
rename from src/farsi/52.json
rename to src/json/fa/52.json
diff --git a/src/farsi/53.json b/src/json/fa/53.json
similarity index 100%
rename from src/farsi/53.json
rename to src/json/fa/53.json
diff --git a/src/farsi/54.json b/src/json/fa/54.json
similarity index 100%
rename from src/farsi/54.json
rename to src/json/fa/54.json
diff --git a/src/farsi/55.json b/src/json/fa/55.json
similarity index 100%
rename from src/farsi/55.json
rename to src/json/fa/55.json
diff --git a/src/farsi/56.json b/src/json/fa/56.json
similarity index 100%
rename from src/farsi/56.json
rename to src/json/fa/56.json
diff --git a/src/farsi/57.json b/src/json/fa/57.json
similarity index 100%
rename from src/farsi/57.json
rename to src/json/fa/57.json
diff --git a/src/farsi/58.json b/src/json/fa/58.json
similarity index 100%
rename from src/farsi/58.json
rename to src/json/fa/58.json
diff --git a/src/farsi/59.json b/src/json/fa/59.json
similarity index 100%
rename from src/farsi/59.json
rename to src/json/fa/59.json
diff --git a/src/farsi/6.json b/src/json/fa/6.json
similarity index 100%
rename from src/farsi/6.json
rename to src/json/fa/6.json
diff --git a/src/farsi/60.json b/src/json/fa/60.json
similarity index 100%
rename from src/farsi/60.json
rename to src/json/fa/60.json
diff --git a/src/farsi/61.json b/src/json/fa/61.json
similarity index 100%
rename from src/farsi/61.json
rename to src/json/fa/61.json
diff --git a/src/farsi/62.json b/src/json/fa/62.json
similarity index 100%
rename from src/farsi/62.json
rename to src/json/fa/62.json
diff --git a/src/farsi/63.json b/src/json/fa/63.json
similarity index 100%
rename from src/farsi/63.json
rename to src/json/fa/63.json
diff --git a/src/farsi/64.json b/src/json/fa/64.json
similarity index 100%
rename from src/farsi/64.json
rename to src/json/fa/64.json
diff --git a/src/farsi/65.json b/src/json/fa/65.json
similarity index 100%
rename from src/farsi/65.json
rename to src/json/fa/65.json
diff --git a/src/farsi/66.json b/src/json/fa/66.json
similarity index 100%
rename from src/farsi/66.json
rename to src/json/fa/66.json
diff --git a/src/farsi/67.json b/src/json/fa/67.json
similarity index 100%
rename from src/farsi/67.json
rename to src/json/fa/67.json
diff --git a/src/farsi/68.json b/src/json/fa/68.json
similarity index 100%
rename from src/farsi/68.json
rename to src/json/fa/68.json
diff --git a/src/farsi/69.json b/src/json/fa/69.json
similarity index 100%
rename from src/farsi/69.json
rename to src/json/fa/69.json
diff --git a/src/farsi/7.json b/src/json/fa/7.json
similarity index 100%
rename from src/farsi/7.json
rename to src/json/fa/7.json
diff --git a/src/farsi/70.json b/src/json/fa/70.json
similarity index 100%
rename from src/farsi/70.json
rename to src/json/fa/70.json
diff --git a/src/farsi/71.json b/src/json/fa/71.json
similarity index 100%
rename from src/farsi/71.json
rename to src/json/fa/71.json
diff --git a/src/farsi/72.json b/src/json/fa/72.json
similarity index 100%
rename from src/farsi/72.json
rename to src/json/fa/72.json
diff --git a/src/farsi/73.json b/src/json/fa/73.json
similarity index 100%
rename from src/farsi/73.json
rename to src/json/fa/73.json
diff --git a/src/farsi/74.json b/src/json/fa/74.json
similarity index 100%
rename from src/farsi/74.json
rename to src/json/fa/74.json
diff --git a/src/farsi/75.json b/src/json/fa/75.json
similarity index 100%
rename from src/farsi/75.json
rename to src/json/fa/75.json
diff --git a/src/farsi/76.json b/src/json/fa/76.json
similarity index 100%
rename from src/farsi/76.json
rename to src/json/fa/76.json
diff --git a/src/farsi/77.json b/src/json/fa/77.json
similarity index 100%
rename from src/farsi/77.json
rename to src/json/fa/77.json
diff --git a/src/farsi/78.json b/src/json/fa/78.json
similarity index 100%
rename from src/farsi/78.json
rename to src/json/fa/78.json
diff --git a/src/farsi/79.json b/src/json/fa/79.json
similarity index 100%
rename from src/farsi/79.json
rename to src/json/fa/79.json
diff --git a/src/farsi/8.json b/src/json/fa/8.json
similarity index 100%
rename from src/farsi/8.json
rename to src/json/fa/8.json
diff --git a/src/farsi/80.json b/src/json/fa/80.json
similarity index 100%
rename from src/farsi/80.json
rename to src/json/fa/80.json
diff --git a/src/farsi/81.json b/src/json/fa/81.json
similarity index 100%
rename from src/farsi/81.json
rename to src/json/fa/81.json
diff --git a/src/farsi/82.json b/src/json/fa/82.json
similarity index 100%
rename from src/farsi/82.json
rename to src/json/fa/82.json
diff --git a/src/farsi/83.json b/src/json/fa/83.json
similarity index 100%
rename from src/farsi/83.json
rename to src/json/fa/83.json
diff --git a/src/farsi/84.json b/src/json/fa/84.json
similarity index 100%
rename from src/farsi/84.json
rename to src/json/fa/84.json
diff --git a/src/farsi/85.json b/src/json/fa/85.json
similarity index 100%
rename from src/farsi/85.json
rename to src/json/fa/85.json
diff --git a/src/farsi/86.json b/src/json/fa/86.json
similarity index 100%
rename from src/farsi/86.json
rename to src/json/fa/86.json
diff --git a/src/farsi/87.json b/src/json/fa/87.json
similarity index 100%
rename from src/farsi/87.json
rename to src/json/fa/87.json
diff --git a/src/farsi/88.json b/src/json/fa/88.json
similarity index 100%
rename from src/farsi/88.json
rename to src/json/fa/88.json
diff --git a/src/farsi/89.json b/src/json/fa/89.json
similarity index 100%
rename from src/farsi/89.json
rename to src/json/fa/89.json
diff --git a/src/farsi/9.json b/src/json/fa/9.json
similarity index 100%
rename from src/farsi/9.json
rename to src/json/fa/9.json
diff --git a/src/farsi/90.json b/src/json/fa/90.json
similarity index 100%
rename from src/farsi/90.json
rename to src/json/fa/90.json
diff --git a/src/farsi/91.json b/src/json/fa/91.json
similarity index 100%
rename from src/farsi/91.json
rename to src/json/fa/91.json
diff --git a/src/farsi/92.json b/src/json/fa/92.json
similarity index 100%
rename from src/farsi/92.json
rename to src/json/fa/92.json
diff --git a/src/farsi/93.json b/src/json/fa/93.json
similarity index 100%
rename from src/farsi/93.json
rename to src/json/fa/93.json
diff --git a/src/farsi/94.json b/src/json/fa/94.json
similarity index 100%
rename from src/farsi/94.json
rename to src/json/fa/94.json
diff --git a/src/farsi/95.json b/src/json/fa/95.json
similarity index 100%
rename from src/farsi/95.json
rename to src/json/fa/95.json
diff --git a/src/farsi/96.json b/src/json/fa/96.json
similarity index 100%
rename from src/farsi/96.json
rename to src/json/fa/96.json
diff --git a/src/farsi/97.json b/src/json/fa/97.json
similarity index 100%
rename from src/farsi/97.json
rename to src/json/fa/97.json
diff --git a/src/farsi/98.json b/src/json/fa/98.json
similarity index 100%
rename from src/farsi/98.json
rename to src/json/fa/98.json
diff --git a/src/farsi/99.json b/src/json/fa/99.json
similarity index 100%
rename from src/farsi/99.json
rename to src/json/fa/99.json
diff --git a/src/portuguese/1.json b/src/json/pt/1.json
similarity index 100%
rename from src/portuguese/1.json
rename to src/json/pt/1.json
diff --git a/src/portuguese/10.json b/src/json/pt/10.json
similarity index 100%
rename from src/portuguese/10.json
rename to src/json/pt/10.json
diff --git a/src/portuguese/100.json b/src/json/pt/100.json
similarity index 100%
rename from src/portuguese/100.json
rename to src/json/pt/100.json
diff --git a/src/portuguese/101.json b/src/json/pt/101.json
similarity index 100%
rename from src/portuguese/101.json
rename to src/json/pt/101.json
diff --git a/src/portuguese/102.json b/src/json/pt/102.json
similarity index 100%
rename from src/portuguese/102.json
rename to src/json/pt/102.json
diff --git a/src/portuguese/103.json b/src/json/pt/103.json
similarity index 100%
rename from src/portuguese/103.json
rename to src/json/pt/103.json
diff --git a/src/portuguese/104.json b/src/json/pt/104.json
similarity index 100%
rename from src/portuguese/104.json
rename to src/json/pt/104.json
diff --git a/src/portuguese/105.json b/src/json/pt/105.json
similarity index 100%
rename from src/portuguese/105.json
rename to src/json/pt/105.json
diff --git a/src/portuguese/106.json b/src/json/pt/106.json
similarity index 100%
rename from src/portuguese/106.json
rename to src/json/pt/106.json
diff --git a/src/portuguese/107.json b/src/json/pt/107.json
similarity index 100%
rename from src/portuguese/107.json
rename to src/json/pt/107.json
diff --git a/src/portuguese/108.json b/src/json/pt/108.json
similarity index 100%
rename from src/portuguese/108.json
rename to src/json/pt/108.json
diff --git a/src/portuguese/109.json b/src/json/pt/109.json
similarity index 100%
rename from src/portuguese/109.json
rename to src/json/pt/109.json
diff --git a/src/portuguese/11.json b/src/json/pt/11.json
similarity index 100%
rename from src/portuguese/11.json
rename to src/json/pt/11.json
diff --git a/src/portuguese/110.json b/src/json/pt/110.json
similarity index 100%
rename from src/portuguese/110.json
rename to src/json/pt/110.json
diff --git a/src/portuguese/111.json b/src/json/pt/111.json
similarity index 100%
rename from src/portuguese/111.json
rename to src/json/pt/111.json
diff --git a/src/portuguese/112.json b/src/json/pt/112.json
similarity index 100%
rename from src/portuguese/112.json
rename to src/json/pt/112.json
diff --git a/src/portuguese/113.json b/src/json/pt/113.json
similarity index 100%
rename from src/portuguese/113.json
rename to src/json/pt/113.json
diff --git a/src/portuguese/114.json b/src/json/pt/114.json
similarity index 100%
rename from src/portuguese/114.json
rename to src/json/pt/114.json
diff --git a/src/portuguese/12.json b/src/json/pt/12.json
similarity index 100%
rename from src/portuguese/12.json
rename to src/json/pt/12.json
diff --git a/src/portuguese/13.json b/src/json/pt/13.json
similarity index 100%
rename from src/portuguese/13.json
rename to src/json/pt/13.json
diff --git a/src/portuguese/14.json b/src/json/pt/14.json
similarity index 100%
rename from src/portuguese/14.json
rename to src/json/pt/14.json
diff --git a/src/portuguese/15.json b/src/json/pt/15.json
similarity index 100%
rename from src/portuguese/15.json
rename to src/json/pt/15.json
diff --git a/src/portuguese/16.json b/src/json/pt/16.json
similarity index 100%
rename from src/portuguese/16.json
rename to src/json/pt/16.json
diff --git a/src/portuguese/17.json b/src/json/pt/17.json
similarity index 100%
rename from src/portuguese/17.json
rename to src/json/pt/17.json
diff --git a/src/portuguese/18.json b/src/json/pt/18.json
similarity index 100%
rename from src/portuguese/18.json
rename to src/json/pt/18.json
diff --git a/src/portuguese/19.json b/src/json/pt/19.json
similarity index 100%
rename from src/portuguese/19.json
rename to src/json/pt/19.json
diff --git a/src/portuguese/2.json b/src/json/pt/2.json
similarity index 100%
rename from src/portuguese/2.json
rename to src/json/pt/2.json
diff --git a/src/portuguese/20.json b/src/json/pt/20.json
similarity index 100%
rename from src/portuguese/20.json
rename to src/json/pt/20.json
diff --git a/src/portuguese/21.json b/src/json/pt/21.json
similarity index 100%
rename from src/portuguese/21.json
rename to src/json/pt/21.json
diff --git a/src/portuguese/22.json b/src/json/pt/22.json
similarity index 100%
rename from src/portuguese/22.json
rename to src/json/pt/22.json
diff --git a/src/portuguese/23.json b/src/json/pt/23.json
similarity index 100%
rename from src/portuguese/23.json
rename to src/json/pt/23.json
diff --git a/src/portuguese/24.json b/src/json/pt/24.json
similarity index 100%
rename from src/portuguese/24.json
rename to src/json/pt/24.json
diff --git a/src/portuguese/25.json b/src/json/pt/25.json
similarity index 100%
rename from src/portuguese/25.json
rename to src/json/pt/25.json
diff --git a/src/portuguese/26.json b/src/json/pt/26.json
similarity index 100%
rename from src/portuguese/26.json
rename to src/json/pt/26.json
diff --git a/src/portuguese/27.json b/src/json/pt/27.json
similarity index 100%
rename from src/portuguese/27.json
rename to src/json/pt/27.json
diff --git a/src/portuguese/28.json b/src/json/pt/28.json
similarity index 100%
rename from src/portuguese/28.json
rename to src/json/pt/28.json
diff --git a/src/portuguese/29.json b/src/json/pt/29.json
similarity index 100%
rename from src/portuguese/29.json
rename to src/json/pt/29.json
diff --git a/src/portuguese/3.json b/src/json/pt/3.json
similarity index 100%
rename from src/portuguese/3.json
rename to src/json/pt/3.json
diff --git a/src/portuguese/30.json b/src/json/pt/30.json
similarity index 100%
rename from src/portuguese/30.json
rename to src/json/pt/30.json
diff --git a/src/portuguese/31.json b/src/json/pt/31.json
similarity index 100%
rename from src/portuguese/31.json
rename to src/json/pt/31.json
diff --git a/src/portuguese/32.json b/src/json/pt/32.json
similarity index 100%
rename from src/portuguese/32.json
rename to src/json/pt/32.json
diff --git a/src/portuguese/33.json b/src/json/pt/33.json
similarity index 100%
rename from src/portuguese/33.json
rename to src/json/pt/33.json
diff --git a/src/portuguese/34.json b/src/json/pt/34.json
similarity index 100%
rename from src/portuguese/34.json
rename to src/json/pt/34.json
diff --git a/src/portuguese/35.json b/src/json/pt/35.json
similarity index 100%
rename from src/portuguese/35.json
rename to src/json/pt/35.json
diff --git a/src/portuguese/36.json b/src/json/pt/36.json
similarity index 100%
rename from src/portuguese/36.json
rename to src/json/pt/36.json
diff --git a/src/portuguese/37.json b/src/json/pt/37.json
similarity index 100%
rename from src/portuguese/37.json
rename to src/json/pt/37.json
diff --git a/src/portuguese/38.json b/src/json/pt/38.json
similarity index 100%
rename from src/portuguese/38.json
rename to src/json/pt/38.json
diff --git a/src/portuguese/39.json b/src/json/pt/39.json
similarity index 100%
rename from src/portuguese/39.json
rename to src/json/pt/39.json
diff --git a/src/portuguese/4.json b/src/json/pt/4.json
similarity index 100%
rename from src/portuguese/4.json
rename to src/json/pt/4.json
diff --git a/src/portuguese/40.json b/src/json/pt/40.json
similarity index 100%
rename from src/portuguese/40.json
rename to src/json/pt/40.json
diff --git a/src/portuguese/41.json b/src/json/pt/41.json
similarity index 100%
rename from src/portuguese/41.json
rename to src/json/pt/41.json
diff --git a/src/portuguese/42.json b/src/json/pt/42.json
similarity index 100%
rename from src/portuguese/42.json
rename to src/json/pt/42.json
diff --git a/src/portuguese/43.json b/src/json/pt/43.json
similarity index 100%
rename from src/portuguese/43.json
rename to src/json/pt/43.json
diff --git a/src/portuguese/44.json b/src/json/pt/44.json
similarity index 100%
rename from src/portuguese/44.json
rename to src/json/pt/44.json
diff --git a/src/portuguese/45.json b/src/json/pt/45.json
similarity index 100%
rename from src/portuguese/45.json
rename to src/json/pt/45.json
diff --git a/src/portuguese/46.json b/src/json/pt/46.json
similarity index 100%
rename from src/portuguese/46.json
rename to src/json/pt/46.json
diff --git a/src/portuguese/47.json b/src/json/pt/47.json
similarity index 100%
rename from src/portuguese/47.json
rename to src/json/pt/47.json
diff --git a/src/portuguese/48.json b/src/json/pt/48.json
similarity index 100%
rename from src/portuguese/48.json
rename to src/json/pt/48.json
diff --git a/src/portuguese/49.json b/src/json/pt/49.json
similarity index 100%
rename from src/portuguese/49.json
rename to src/json/pt/49.json
diff --git a/src/portuguese/5.json b/src/json/pt/5.json
similarity index 100%
rename from src/portuguese/5.json
rename to src/json/pt/5.json
diff --git a/src/portuguese/50.json b/src/json/pt/50.json
similarity index 100%
rename from src/portuguese/50.json
rename to src/json/pt/50.json
diff --git a/src/portuguese/51.json b/src/json/pt/51.json
similarity index 100%
rename from src/portuguese/51.json
rename to src/json/pt/51.json
diff --git a/src/portuguese/52.json b/src/json/pt/52.json
similarity index 100%
rename from src/portuguese/52.json
rename to src/json/pt/52.json
diff --git a/src/portuguese/53.json b/src/json/pt/53.json
similarity index 100%
rename from src/portuguese/53.json
rename to src/json/pt/53.json
diff --git a/src/portuguese/54.json b/src/json/pt/54.json
similarity index 100%
rename from src/portuguese/54.json
rename to src/json/pt/54.json
diff --git a/src/portuguese/55.json b/src/json/pt/55.json
similarity index 100%
rename from src/portuguese/55.json
rename to src/json/pt/55.json
diff --git a/src/portuguese/56.json b/src/json/pt/56.json
similarity index 100%
rename from src/portuguese/56.json
rename to src/json/pt/56.json
diff --git a/src/portuguese/57.json b/src/json/pt/57.json
similarity index 100%
rename from src/portuguese/57.json
rename to src/json/pt/57.json
diff --git a/src/portuguese/58.json b/src/json/pt/58.json
similarity index 100%
rename from src/portuguese/58.json
rename to src/json/pt/58.json
diff --git a/src/portuguese/59.json b/src/json/pt/59.json
similarity index 100%
rename from src/portuguese/59.json
rename to src/json/pt/59.json
diff --git a/src/portuguese/6.json b/src/json/pt/6.json
similarity index 100%
rename from src/portuguese/6.json
rename to src/json/pt/6.json
diff --git a/src/portuguese/60.json b/src/json/pt/60.json
similarity index 100%
rename from src/portuguese/60.json
rename to src/json/pt/60.json
diff --git a/src/portuguese/61.json b/src/json/pt/61.json
similarity index 100%
rename from src/portuguese/61.json
rename to src/json/pt/61.json
diff --git a/src/portuguese/62.json b/src/json/pt/62.json
similarity index 100%
rename from src/portuguese/62.json
rename to src/json/pt/62.json
diff --git a/src/portuguese/63.json b/src/json/pt/63.json
similarity index 100%
rename from src/portuguese/63.json
rename to src/json/pt/63.json
diff --git a/src/portuguese/64.json b/src/json/pt/64.json
similarity index 100%
rename from src/portuguese/64.json
rename to src/json/pt/64.json
diff --git a/src/portuguese/65.json b/src/json/pt/65.json
similarity index 100%
rename from src/portuguese/65.json
rename to src/json/pt/65.json
diff --git a/src/portuguese/66.json b/src/json/pt/66.json
similarity index 100%
rename from src/portuguese/66.json
rename to src/json/pt/66.json
diff --git a/src/portuguese/67.json b/src/json/pt/67.json
similarity index 100%
rename from src/portuguese/67.json
rename to src/json/pt/67.json
diff --git a/src/portuguese/68.json b/src/json/pt/68.json
similarity index 100%
rename from src/portuguese/68.json
rename to src/json/pt/68.json
diff --git a/src/portuguese/69.json b/src/json/pt/69.json
similarity index 100%
rename from src/portuguese/69.json
rename to src/json/pt/69.json
diff --git a/src/portuguese/7.json b/src/json/pt/7.json
similarity index 100%
rename from src/portuguese/7.json
rename to src/json/pt/7.json
diff --git a/src/portuguese/70.json b/src/json/pt/70.json
similarity index 100%
rename from src/portuguese/70.json
rename to src/json/pt/70.json
diff --git a/src/portuguese/71.json b/src/json/pt/71.json
similarity index 100%
rename from src/portuguese/71.json
rename to src/json/pt/71.json
diff --git a/src/portuguese/72.json b/src/json/pt/72.json
similarity index 100%
rename from src/portuguese/72.json
rename to src/json/pt/72.json
diff --git a/src/portuguese/73.json b/src/json/pt/73.json
similarity index 100%
rename from src/portuguese/73.json
rename to src/json/pt/73.json
diff --git a/src/portuguese/74.json b/src/json/pt/74.json
similarity index 100%
rename from src/portuguese/74.json
rename to src/json/pt/74.json
diff --git a/src/portuguese/75.json b/src/json/pt/75.json
similarity index 100%
rename from src/portuguese/75.json
rename to src/json/pt/75.json
diff --git a/src/portuguese/76.json b/src/json/pt/76.json
similarity index 100%
rename from src/portuguese/76.json
rename to src/json/pt/76.json
diff --git a/src/portuguese/77.json b/src/json/pt/77.json
similarity index 100%
rename from src/portuguese/77.json
rename to src/json/pt/77.json
diff --git a/src/portuguese/78.json b/src/json/pt/78.json
similarity index 100%
rename from src/portuguese/78.json
rename to src/json/pt/78.json
diff --git a/src/portuguese/79.json b/src/json/pt/79.json
similarity index 100%
rename from src/portuguese/79.json
rename to src/json/pt/79.json
diff --git a/src/portuguese/8.json b/src/json/pt/8.json
similarity index 100%
rename from src/portuguese/8.json
rename to src/json/pt/8.json
diff --git a/src/portuguese/80.json b/src/json/pt/80.json
similarity index 100%
rename from src/portuguese/80.json
rename to src/json/pt/80.json
diff --git a/src/portuguese/81.json b/src/json/pt/81.json
similarity index 100%
rename from src/portuguese/81.json
rename to src/json/pt/81.json
diff --git a/src/portuguese/82.json b/src/json/pt/82.json
similarity index 100%
rename from src/portuguese/82.json
rename to src/json/pt/82.json
diff --git a/src/portuguese/83.json b/src/json/pt/83.json
similarity index 100%
rename from src/portuguese/83.json
rename to src/json/pt/83.json
diff --git a/src/portuguese/84.json b/src/json/pt/84.json
similarity index 100%
rename from src/portuguese/84.json
rename to src/json/pt/84.json
diff --git a/src/portuguese/85.json b/src/json/pt/85.json
similarity index 100%
rename from src/portuguese/85.json
rename to src/json/pt/85.json
diff --git a/src/portuguese/86.json b/src/json/pt/86.json
similarity index 100%
rename from src/portuguese/86.json
rename to src/json/pt/86.json
diff --git a/src/portuguese/87.json b/src/json/pt/87.json
similarity index 100%
rename from src/portuguese/87.json
rename to src/json/pt/87.json
diff --git a/src/portuguese/88.json b/src/json/pt/88.json
similarity index 100%
rename from src/portuguese/88.json
rename to src/json/pt/88.json
diff --git a/src/portuguese/89.json b/src/json/pt/89.json
similarity index 100%
rename from src/portuguese/89.json
rename to src/json/pt/89.json
diff --git a/src/portuguese/9.json b/src/json/pt/9.json
similarity index 100%
rename from src/portuguese/9.json
rename to src/json/pt/9.json
diff --git a/src/portuguese/90.json b/src/json/pt/90.json
similarity index 100%
rename from src/portuguese/90.json
rename to src/json/pt/90.json
diff --git a/src/portuguese/91.json b/src/json/pt/91.json
similarity index 100%
rename from src/portuguese/91.json
rename to src/json/pt/91.json
diff --git a/src/portuguese/92.json b/src/json/pt/92.json
similarity index 100%
rename from src/portuguese/92.json
rename to src/json/pt/92.json
diff --git a/src/portuguese/93.json b/src/json/pt/93.json
similarity index 100%
rename from src/portuguese/93.json
rename to src/json/pt/93.json
diff --git a/src/portuguese/94.json b/src/json/pt/94.json
similarity index 100%
rename from src/portuguese/94.json
rename to src/json/pt/94.json
diff --git a/src/portuguese/95.json b/src/json/pt/95.json
similarity index 100%
rename from src/portuguese/95.json
rename to src/json/pt/95.json
diff --git a/src/portuguese/96.json b/src/json/pt/96.json
similarity index 100%
rename from src/portuguese/96.json
rename to src/json/pt/96.json
diff --git a/src/portuguese/97.json b/src/json/pt/97.json
similarity index 100%
rename from src/portuguese/97.json
rename to src/json/pt/97.json
diff --git a/src/portuguese/98.json b/src/json/pt/98.json
similarity index 100%
rename from src/portuguese/98.json
rename to src/json/pt/98.json
diff --git a/src/portuguese/99.json b/src/json/pt/99.json
similarity index 100%
rename from src/portuguese/99.json
rename to src/json/pt/99.json
diff --git a/src/sql/schema.sql b/src/sql/schema.sql
new file mode 100644
index 0000000..faf7215
--- /dev/null
+++ b/src/sql/schema.sql
@@ -0,0 +1,21 @@
+CREATE TABLE qurans(
+ id integer primary key autoincrement,
+ locale char(2) NOT NULL
+);
+
+CREATE TABLE chapters(
+ id integer primary key autoincrement,
+ number tinyint NOT NULL,
+ quran_id tinyint NOT NULL,
+ CONSTRAINT chapters_quran_fk FOREIGN KEY (quran_id) REFERENCES qurans (id)
+);
+
+CREATE TABLE verses(
+ id integer primary key autoincrement,
+ number smallint NOT NULL,
+ content text NOT NULL,
+ chapter_id smallint NOT NULL,
+ quran_id tinyint NOT NULL,
+ CONSTRAINT verses_quran_fk FOREIGN KEY (quran_id) REFERENCES qurans (id),
+ CONSTRAINT verses_chapter_fk FOREIGN KEY (chapter_id) REFERENCES chapters (id)
+);
diff --git a/src/sql/seed.sql b/src/sql/seed.sql
new file mode 100644
index 0000000..782af1b
--- /dev/null
+++ b/src/sql/seed.sql
@@ -0,0 +1,25474 @@
+INSERT INTO qurans (locale) VALUES('ar');
+INSERT INTO chapters (id, number, quran_id) VALUES(1,1,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,1,' بِسْمِ ٱللَّهِ ٱلرَّحْمَنِ ٱلرَّحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,1,' ٱلْحَمْدُ لِلَّهِ رَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,1,' ٱلرَّحْمَنِ ٱلرَّحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,1,' مَلِكِ يَوْمِ ٱلدِّينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,1,' إِيَّاكَ نَعْبُدُ وَإِيَّاكَ نَسْتَعِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,1,' ٱهْدِنَا ٱلصِّرَطَ ٱلْمُسْتَقِيمَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,1,' صِرَطَ ٱلَّذِينَ أَنْعَمْتَ عَلَيْهِمْ غَيْرِ ٱلْمَغْضُوبِ عَلَيْهِمْ وَلَا ٱلضَّآلِّينَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(2,2,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,2,' الٓمٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,2,' ذَلِكَ ٱلْكِتَبُ لَا رَيْبَ ۛ فِيهِ ۛ هُدًۭى لِّلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,2,' ٱلَّذِينَ يُؤْمِنُونَ بِٱلْغَيْبِ وَيُقِيمُونَ ٱلصَّلَوٰةَ وَمِمَّا رَزَقْنَهُمْ يُنفِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,2,' وَٱلَّذِينَ يُؤْمِنُونَ بِمَآ أُنزِلَ إِلَيْكَ وَمَآ أُنزِلَ مِن قَبْلِكَ وَبِٱلْءَاخِرَةِ هُمْ يُوقِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,2,' أُو۟لَٓئِكَ عَلَىٰ هُدًۭى مِّن رَّبِّهِمْ ۖ وَأُو۟لَٓئِكَ هُمُ ٱلْمُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,2,' إِنَّ ٱلَّذِينَ كَفَرُوا۟ سَوَآءٌ عَلَيْهِمْ ءَأَنذَرْتَهُمْ أَمْ لَمْ تُنذِرْهُمْ لَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,2,' خَتَمَ ٱللَّهُ عَلَىٰ قُلُوبِهِمْ وَعَلَىٰ سَمْعِهِمْ ۖ وَعَلَىٰٓ أَبْصَرِهِمْ غِشَوَةٌۭ ۖ وَلَهُمْ عَذَابٌ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,2,' وَمِنَ ٱلنَّاسِ مَن يَقُولُ ءَامَنَّا بِٱللَّهِ وَبِٱلْيَوْمِ ٱلْءَاخِرِ وَمَا هُم بِمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,2,' يُخَدِعُونَ ٱللَّهَ وَٱلَّذِينَ ءَامَنُوا۟ وَمَا يَخْدَعُونَ إِلَّآ أَنفُسَهُمْ وَمَا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,2,' فِى قُلُوبِهِم مَّرَضٌۭ فَزَادَهُمُ ٱللَّهُ مَرَضًۭا ۖ وَلَهُمْ عَذَابٌ أَلِيمٌۢ بِمَا كَانُوا۟ يَكْذِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,2,' وَإِذَا قِيلَ لَهُمْ لَا تُفْسِدُوا۟ فِى ٱلْأَرْضِ قَالُوٓا۟ إِنَّمَا نَحْنُ مُصْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,2,' أَلَآ إِنَّهُمْ هُمُ ٱلْمُفْسِدُونَ وَلَكِن لَّا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,2,' وَإِذَا قِيلَ لَهُمْ ءَامِنُوا۟ كَمَآ ءَامَنَ ٱلنَّاسُ قَالُوٓا۟ أَنُؤْمِنُ كَمَآ ءَامَنَ ٱلسُّفَهَآءُ ۗ أَلَآ إِنَّهُمْ هُمُ ٱلسُّفَهَآءُ وَلَكِن لَّا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,2,' وَإِذَا لَقُوا۟ ٱلَّذِينَ ءَامَنُوا۟ قَالُوٓا۟ ءَامَنَّا وَإِذَا خَلَوْا۟ إِلَىٰ شَيَطِينِهِمْ قَالُوٓا۟ إِنَّا مَعَكُمْ إِنَّمَا نَحْنُ مُسْتَهْزِءُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,2,' ٱللَّهُ يَسْتَهْزِئُ بِهِمْ وَيَمُدُّهُمْ فِى طُغْيَنِهِمْ يَعْمَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,2,' أُو۟لَٓئِكَ ٱلَّذِينَ ٱشْتَرَوُا۟ ٱلضَّلَلَةَ بِٱلْهُدَىٰ فَمَا رَبِحَت تِّجَرَتُهُمْ وَمَا كَانُوا۟ مُهْتَدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,2,' مَثَلُهُمْ كَمَثَلِ ٱلَّذِى ٱسْتَوْقَدَ نَارًۭا فَلَمَّآ أَضَآءَتْ مَا حَوْلَهُۥ ذَهَبَ ٱللَّهُ بِنُورِهِمْ وَتَرَكَهُمْ فِى ظُلُمَتٍۢ لَّا يُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,2,' صُمٌّۢ بُكْمٌ عُمْىٌۭ فَهُمْ لَا يَرْجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,2,' أَوْ كَصَيِّبٍۢ مِّنَ ٱلسَّمَآءِ فِيهِ ظُلُمَتٌۭ وَرَعْدٌۭ وَبَرْقٌۭ يَجْعَلُونَ أَصَبِعَهُمْ فِىٓ ءَاذَانِهِم مِّنَ ٱلصَّوَعِقِ حَذَرَ ٱلْمَوْتِ ۚ وَٱللَّهُ مُحِيطٌۢ بِٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,2,' يَكَادُ ٱلْبَرْقُ يَخْطَفُ أَبْصَرَهُمْ ۖ كُلَّمَآ أَضَآءَ لَهُم مَّشَوْا۟ فِيهِ وَإِذَآ أَظْلَمَ عَلَيْهِمْ قَامُوا۟ ۚ وَلَوْ شَآءَ ٱللَّهُ لَذَهَبَ بِسَمْعِهِمْ وَأَبْصَرِهِمْ ۚ إِنَّ ٱللَّهَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,2,' يَٓأَيُّهَا ٱلنَّاسُ ٱعْبُدُوا۟ رَبَّكُمُ ٱلَّذِى خَلَقَكُمْ وَٱلَّذِينَ مِن قَبْلِكُمْ لَعَلَّكُمْ تَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,2,' ٱلَّذِى جَعَلَ لَكُمُ ٱلْأَرْضَ فِرَشًۭا وَٱلسَّمَآءَ بِنَآءًۭ وَأَنزَلَ مِنَ ٱلسَّمَآءِ مَآءًۭ فَأَخْرَجَ بِهِۦ مِنَ ٱلثَّمَرَتِ رِزْقًۭا لَّكُمْ ۖ فَلَا تَجْعَلُوا۟ لِلَّهِ أَندَادًۭا وَأَنتُمْ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,2,' وَإِن كُنتُمْ فِى رَيْبٍۢ مِّمَّا نَزَّلْنَا عَلَىٰ عَبْدِنَا فَأْتُوا۟ بِسُورَةٍۢ مِّن مِّثْلِهِۦ وَٱدْعُوا۟ شُهَدَآءَكُم مِّن دُونِ ٱللَّهِ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,2,' فَإِن لَّمْ تَفْعَلُوا۟ وَلَن تَفْعَلُوا۟ فَٱتَّقُوا۟ ٱلنَّارَ ٱلَّتِى وَقُودُهَا ٱلنَّاسُ وَٱلْحِجَارَةُ ۖ أُعِدَّتْ لِلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,2,' وَبَشِّرِ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ أَنَّ لَهُمْ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ ۖ كُلَّمَا رُزِقُوا۟ مِنْهَا مِن ثَمَرَةٍۢ رِّزْقًۭا ۙ قَالُوا۟ هَذَا ٱلَّذِى رُزِقْنَا مِن قَبْلُ ۖ وَأُتُوا۟ بِهِۦ مُتَشَبِهًۭا ۖ وَلَهُمْ فِيهَآ أَزْوَجٌۭ مُّطَهَّرَةٌۭ ۖ وَهُمْ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,2,' إِنَّ ٱللَّهَ لَا يَسْتَحْىِۦٓ أَن يَضْرِبَ مَثَلًۭا مَّا بَعُوضَةًۭ فَمَا فَوْقَهَا ۚ فَأَمَّا ٱلَّذِينَ ءَامَنُوا۟ فَيَعْلَمُونَ أَنَّهُ ٱلْحَقُّ مِن رَّبِّهِمْ ۖ وَأَمَّا ٱلَّذِينَ كَفَرُوا۟ فَيَقُولُونَ مَاذَآ أَرَادَ ٱللَّهُ بِهَذَا مَثَلًۭا ۘ يُضِلُّ بِهِۦ كَثِيرًۭا وَيَهْدِى بِهِۦ كَثِيرًۭا ۚ وَمَا يُضِلُّ بِهِۦٓ إِلَّا ٱلْفَسِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,2,' ٱلَّذِينَ يَنقُضُونَ عَهْدَ ٱللَّهِ مِنۢ بَعْدِ مِيثَقِهِۦ وَيَقْطَعُونَ مَآ أَمَرَ ٱللَّهُ بِهِۦٓ أَن يُوصَلَ وَيُفْسِدُونَ فِى ٱلْأَرْضِ ۚ أُو۟لَٓئِكَ هُمُ ٱلْخَسِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,2,' كَيْفَ تَكْفُرُونَ بِٱللَّهِ وَكُنتُمْ أَمْوَتًۭا فَأَحْيَكُمْ ۖ ثُمَّ يُمِيتُكُمْ ثُمَّ يُحْيِيكُمْ ثُمَّ إِلَيْهِ تُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,2,' هُوَ ٱلَّذِى خَلَقَ لَكُم مَّا فِى ٱلْأَرْضِ جَمِيعًۭا ثُمَّ ٱسْتَوَىٰٓ إِلَى ٱلسَّمَآءِ فَسَوَّىٰهُنَّ سَبْعَ سَمَوَتٍۢ ۚ وَهُوَ بِكُلِّ شَىْءٍ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,2,' وَإِذْ قَالَ رَبُّكَ لِلْمَلَٓئِكَةِ إِنِّى جَاعِلٌۭ فِى ٱلْأَرْضِ خَلِيفَةًۭ ۖ قَالُوٓا۟ أَتَجْعَلُ فِيهَا مَن يُفْسِدُ فِيهَا وَيَسْفِكُ ٱلدِّمَآءَ وَنَحْنُ نُسَبِّحُ بِحَمْدِكَ وَنُقَدِّسُ لَكَ ۖ قَالَ إِنِّىٓ أَعْلَمُ مَا لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,2,' وَعَلَّمَ ءَادَمَ ٱلْأَسْمَآءَ كُلَّهَا ثُمَّ عَرَضَهُمْ عَلَى ٱلْمَلَٓئِكَةِ فَقَالَ أَنۢبِـُٔونِى بِأَسْمَآءِ هَٓؤُلَآءِ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,2,' قَالُوا۟ سُبْحَنَكَ لَا عِلْمَ لَنَآ إِلَّا مَا عَلَّمْتَنَآ ۖ إِنَّكَ أَنتَ ٱلْعَلِيمُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,2,' قَالَ يَٓـَٔادَمُ أَنۢبِئْهُم بِأَسْمَآئِهِمْ ۖ فَلَمَّآ أَنۢبَأَهُم بِأَسْمَآئِهِمْ قَالَ أَلَمْ أَقُل لَّكُمْ إِنِّىٓ أَعْلَمُ غَيْبَ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَأَعْلَمُ مَا تُبْدُونَ وَمَا كُنتُمْ تَكْتُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,2,' وَإِذْ قُلْنَا لِلْمَلَٓئِكَةِ ٱسْجُدُوا۟ لِءَادَمَ فَسَجَدُوٓا۟ إِلَّآ إِبْلِيسَ أَبَىٰ وَٱسْتَكْبَرَ وَكَانَ مِنَ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,2,' وَقُلْنَا يَٓـَٔادَمُ ٱسْكُنْ أَنتَ وَزَوْجُكَ ٱلْجَنَّةَ وَكُلَا مِنْهَا رَغَدًا حَيْثُ شِئْتُمَا وَلَا تَقْرَبَا هَذِهِ ٱلشَّجَرَةَ فَتَكُونَا مِنَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,2,' فَأَزَلَّهُمَا ٱلشَّيْطَنُ عَنْهَا فَأَخْرَجَهُمَا مِمَّا كَانَا فِيهِ ۖ وَقُلْنَا ٱهْبِطُوا۟ بَعْضُكُمْ لِبَعْضٍ عَدُوٌّۭ ۖ وَلَكُمْ فِى ٱلْأَرْضِ مُسْتَقَرٌّۭ وَمَتَعٌ إِلَىٰ حِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,2,' فَتَلَقَّىٰٓ ءَادَمُ مِن رَّبِّهِۦ كَلِمَتٍۢ فَتَابَ عَلَيْهِ ۚ إِنَّهُۥ هُوَ ٱلتَّوَّابُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,2,' قُلْنَا ٱهْبِطُوا۟ مِنْهَا جَمِيعًۭا ۖ فَإِمَّا يَأْتِيَنَّكُم مِّنِّى هُدًۭى فَمَن تَبِعَ هُدَاىَ فَلَا خَوْفٌ عَلَيْهِمْ وَلَا هُمْ يَحْزَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,2,' وَٱلَّذِينَ كَفَرُوا۟ وَكَذَّبُوا۟ بِـَٔايَتِنَآ أُو۟لَٓئِكَ أَصْحَبُ ٱلنَّارِ ۖ هُمْ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,2,' يَبَنِىٓ إِسْرَٓءِيلَ ٱذْكُرُوا۟ نِعْمَتِىَ ٱلَّتِىٓ أَنْعَمْتُ عَلَيْكُمْ وَأَوْفُوا۟ بِعَهْدِىٓ أُوفِ بِعَهْدِكُمْ وَإِيَّىَ فَٱرْهَبُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,2,' وَءَامِنُوا۟ بِمَآ أَنزَلْتُ مُصَدِّقًۭا لِّمَا مَعَكُمْ وَلَا تَكُونُوٓا۟ أَوَّلَ كَافِرٍۭ بِهِۦ ۖ وَلَا تَشْتَرُوا۟ بِـَٔايَتِى ثَمَنًۭا قَلِيلًۭا وَإِيَّىَ فَٱتَّقُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,2,' وَلَا تَلْبِسُوا۟ ٱلْحَقَّ بِٱلْبَطِلِ وَتَكْتُمُوا۟ ٱلْحَقَّ وَأَنتُمْ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,2,' وَأَقِيمُوا۟ ٱلصَّلَوٰةَ وَءَاتُوا۟ ٱلزَّكَوٰةَ وَٱرْكَعُوا۟ مَعَ ٱلرَّكِعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,2,' أَتَأْمُرُونَ ٱلنَّاسَ بِٱلْبِرِّ وَتَنسَوْنَ أَنفُسَكُمْ وَأَنتُمْ تَتْلُونَ ٱلْكِتَبَ ۚ أَفَلَا تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,2,' وَٱسْتَعِينُوا۟ بِٱلصَّبْرِ وَٱلصَّلَوٰةِ ۚ وَإِنَّهَا لَكَبِيرَةٌ إِلَّا عَلَى ٱلْخَشِعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,2,' ٱلَّذِينَ يَظُنُّونَ أَنَّهُم مُّلَقُوا۟ رَبِّهِمْ وَأَنَّهُمْ إِلَيْهِ رَجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,2,' يَبَنِىٓ إِسْرَٓءِيلَ ٱذْكُرُوا۟ نِعْمَتِىَ ٱلَّتِىٓ أَنْعَمْتُ عَلَيْكُمْ وَأَنِّى فَضَّلْتُكُمْ عَلَى ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,2,' وَٱتَّقُوا۟ يَوْمًۭا لَّا تَجْزِى نَفْسٌ عَن نَّفْسٍۢ شَيْـًۭٔا وَلَا يُقْبَلُ مِنْهَا شَفَعَةٌۭ وَلَا يُؤْخَذُ مِنْهَا عَدْلٌۭ وَلَا هُمْ يُنصَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,2,' وَإِذْ نَجَّيْنَكُم مِّنْ ءَالِ فِرْعَوْنَ يَسُومُونَكُمْ سُوٓءَ ٱلْعَذَابِ يُذَبِّحُونَ أَبْنَآءَكُمْ وَيَسْتَحْيُونَ نِسَآءَكُمْ ۚ وَفِى ذَلِكُم بَلَآءٌۭ مِّن رَّبِّكُمْ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,2,' وَإِذْ فَرَقْنَا بِكُمُ ٱلْبَحْرَ فَأَنجَيْنَكُمْ وَأَغْرَقْنَآ ءَالَ فِرْعَوْنَ وَأَنتُمْ تَنظُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,2,' وَإِذْ وَعَدْنَا مُوسَىٰٓ أَرْبَعِينَ لَيْلَةًۭ ثُمَّ ٱتَّخَذْتُمُ ٱلْعِجْلَ مِنۢ بَعْدِهِۦ وَأَنتُمْ ظَلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,2,' ثُمَّ عَفَوْنَا عَنكُم مِّنۢ بَعْدِ ذَلِكَ لَعَلَّكُمْ تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,2,' وَإِذْ ءَاتَيْنَا مُوسَى ٱلْكِتَبَ وَٱلْفُرْقَانَ لَعَلَّكُمْ تَهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,2,' وَإِذْ قَالَ مُوسَىٰ لِقَوْمِهِۦ يَقَوْمِ إِنَّكُمْ ظَلَمْتُمْ أَنفُسَكُم بِٱتِّخَاذِكُمُ ٱلْعِجْلَ فَتُوبُوٓا۟ إِلَىٰ بَارِئِكُمْ فَٱقْتُلُوٓا۟ أَنفُسَكُمْ ذَلِكُمْ خَيْرٌۭ لَّكُمْ عِندَ بَارِئِكُمْ فَتَابَ عَلَيْكُمْ ۚ إِنَّهُۥ هُوَ ٱلتَّوَّابُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,2,' وَإِذْ قُلْتُمْ يَمُوسَىٰ لَن نُّؤْمِنَ لَكَ حَتَّىٰ نَرَى ٱللَّهَ جَهْرَةًۭ فَأَخَذَتْكُمُ ٱلصَّعِقَةُ وَأَنتُمْ تَنظُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,2,' ثُمَّ بَعَثْنَكُم مِّنۢ بَعْدِ مَوْتِكُمْ لَعَلَّكُمْ تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,2,' وَظَلَّلْنَا عَلَيْكُمُ ٱلْغَمَامَ وَأَنزَلْنَا عَلَيْكُمُ ٱلْمَنَّ وَٱلسَّلْوَىٰ ۖ كُلُوا۟ مِن طَيِّبَتِ مَا رَزَقْنَكُمْ ۖ وَمَا ظَلَمُونَا وَلَكِن كَانُوٓا۟ أَنفُسَهُمْ يَظْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,2,' وَإِذْ قُلْنَا ٱدْخُلُوا۟ هَذِهِ ٱلْقَرْيَةَ فَكُلُوا۟ مِنْهَا حَيْثُ شِئْتُمْ رَغَدًۭا وَٱدْخُلُوا۟ ٱلْبَابَ سُجَّدًۭا وَقُولُوا۟ حِطَّةٌۭ نَّغْفِرْ لَكُمْ خَطَيَكُمْ ۚ وَسَنَزِيدُ ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,2,' فَبَدَّلَ ٱلَّذِينَ ظَلَمُوا۟ قَوْلًا غَيْرَ ٱلَّذِى قِيلَ لَهُمْ فَأَنزَلْنَا عَلَى ٱلَّذِينَ ظَلَمُوا۟ رِجْزًۭا مِّنَ ٱلسَّمَآءِ بِمَا كَانُوا۟ يَفْسُقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,2,' وَإِذِ ٱسْتَسْقَىٰ مُوسَىٰ لِقَوْمِهِۦ فَقُلْنَا ٱضْرِب بِّعَصَاكَ ٱلْحَجَرَ ۖ فَٱنفَجَرَتْ مِنْهُ ٱثْنَتَا عَشْرَةَ عَيْنًۭا ۖ قَدْ عَلِمَ كُلُّ أُنَاسٍۢ مَّشْرَبَهُمْ ۖ كُلُوا۟ وَٱشْرَبُوا۟ مِن رِّزْقِ ٱللَّهِ وَلَا تَعْثَوْا۟ فِى ٱلْأَرْضِ مُفْسِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,2,' وَإِذْ قُلْتُمْ يَمُوسَىٰ لَن نَّصْبِرَ عَلَىٰ طَعَامٍۢ وَحِدٍۢ فَٱدْعُ لَنَا رَبَّكَ يُخْرِجْ لَنَا مِمَّا تُنۢبِتُ ٱلْأَرْضُ مِنۢ بَقْلِهَا وَقِثَّآئِهَا وَفُومِهَا وَعَدَسِهَا وَبَصَلِهَا ۖ قَالَ أَتَسْتَبْدِلُونَ ٱلَّذِى هُوَ أَدْنَىٰ بِٱلَّذِى هُوَ خَيْرٌ ۚ ٱهْبِطُوا۟ مِصْرًۭا فَإِنَّ لَكُم مَّا سَأَلْتُمْ ۗ وَضُرِبَتْ عَلَيْهِمُ ٱلذِّلَّةُ وَٱلْمَسْكَنَةُ وَبَآءُو بِغَضَبٍۢ مِّنَ ٱللَّهِ ۗ ذَلِكَ بِأَنَّهُمْ كَانُوا۟ يَكْفُرُونَ بِـَٔايَتِ ٱللَّهِ وَيَقْتُلُونَ ٱلنَّبِيِّۦنَ بِغَيْرِ ٱلْحَقِّ ۗ ذَلِكَ بِمَا عَصَوا۟ وَّكَانُوا۟ يَعْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,2,' إِنَّ ٱلَّذِينَ ءَامَنُوا۟ وَٱلَّذِينَ هَادُوا۟ وَٱلنَّصَرَىٰ وَٱلصَّبِـِٔينَ مَنْ ءَامَنَ بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ وَعَمِلَ صَلِحًۭا فَلَهُمْ أَجْرُهُمْ عِندَ رَبِّهِمْ وَلَا خَوْفٌ عَلَيْهِمْ وَلَا هُمْ يَحْزَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,2,' وَإِذْ أَخَذْنَا مِيثَقَكُمْ وَرَفَعْنَا فَوْقَكُمُ ٱلطُّورَ خُذُوا۟ مَآ ءَاتَيْنَكُم بِقُوَّةٍۢ وَٱذْكُرُوا۟ مَا فِيهِ لَعَلَّكُمْ تَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,2,' ثُمَّ تَوَلَّيْتُم مِّنۢ بَعْدِ ذَلِكَ ۖ فَلَوْلَا فَضْلُ ٱللَّهِ عَلَيْكُمْ وَرَحْمَتُهُۥ لَكُنتُم مِّنَ ٱلْخَسِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,2,' وَلَقَدْ عَلِمْتُمُ ٱلَّذِينَ ٱعْتَدَوْا۟ مِنكُمْ فِى ٱلسَّبْتِ فَقُلْنَا لَهُمْ كُونُوا۟ قِرَدَةً خَسِـِٔينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,2,' فَجَعَلْنَهَا نَكَلًۭا لِّمَا بَيْنَ يَدَيْهَا وَمَا خَلْفَهَا وَمَوْعِظَةًۭ لِّلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,2,' وَإِذْ قَالَ مُوسَىٰ لِقَوْمِهِۦٓ إِنَّ ٱللَّهَ يَأْمُرُكُمْ أَن تَذْبَحُوا۟ بَقَرَةًۭ ۖ قَالُوٓا۟ أَتَتَّخِذُنَا هُزُوًۭا ۖ قَالَ أَعُوذُ بِٱللَّهِ أَنْ أَكُونَ مِنَ ٱلْجَهِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,2,' قَالُوا۟ ٱدْعُ لَنَا رَبَّكَ يُبَيِّن لَّنَا مَا هِىَ ۚ قَالَ إِنَّهُۥ يَقُولُ إِنَّهَا بَقَرَةٌۭ لَّا فَارِضٌۭ وَلَا بِكْرٌ عَوَانٌۢ بَيْنَ ذَلِكَ ۖ فَٱفْعَلُوا۟ مَا تُؤْمَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,2,' قَالُوا۟ ٱدْعُ لَنَا رَبَّكَ يُبَيِّن لَّنَا مَا لَوْنُهَا ۚ قَالَ إِنَّهُۥ يَقُولُ إِنَّهَا بَقَرَةٌۭ صَفْرَآءُ فَاقِعٌۭ لَّوْنُهَا تَسُرُّ ٱلنَّظِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,2,' قَالُوا۟ ٱدْعُ لَنَا رَبَّكَ يُبَيِّن لَّنَا مَا هِىَ إِنَّ ٱلْبَقَرَ تَشَبَهَ عَلَيْنَا وَإِنَّآ إِن شَآءَ ٱللَّهُ لَمُهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,2,' قَالَ إِنَّهُۥ يَقُولُ إِنَّهَا بَقَرَةٌۭ لَّا ذَلُولٌۭ تُثِيرُ ٱلْأَرْضَ وَلَا تَسْقِى ٱلْحَرْثَ مُسَلَّمَةٌۭ لَّا شِيَةَ فِيهَا ۚ قَالُوا۟ ٱلْـَٔنَ جِئْتَ بِٱلْحَقِّ ۚ فَذَبَحُوهَا وَمَا كَادُوا۟ يَفْعَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,2,' وَإِذْ قَتَلْتُمْ نَفْسًۭا فَٱدَّرَْٔتُمْ فِيهَا ۖ وَٱللَّهُ مُخْرِجٌۭ مَّا كُنتُمْ تَكْتُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,2,' فَقُلْنَا ٱضْرِبُوهُ بِبَعْضِهَا ۚ كَذَلِكَ يُحْىِ ٱللَّهُ ٱلْمَوْتَىٰ وَيُرِيكُمْ ءَايَتِهِۦ لَعَلَّكُمْ تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,2,' ثُمَّ قَسَتْ قُلُوبُكُم مِّنۢ بَعْدِ ذَلِكَ فَهِىَ كَٱلْحِجَارَةِ أَوْ أَشَدُّ قَسْوَةًۭ ۚ وَإِنَّ مِنَ ٱلْحِجَارَةِ لَمَا يَتَفَجَّرُ مِنْهُ ٱلْأَنْهَرُ ۚ وَإِنَّ مِنْهَا لَمَا يَشَّقَّقُ فَيَخْرُجُ مِنْهُ ٱلْمَآءُ ۚ وَإِنَّ مِنْهَا لَمَا يَهْبِطُ مِنْ خَشْيَةِ ٱللَّهِ ۗ وَمَا ٱللَّهُ بِغَفِلٍ عَمَّا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,2,' أَفَتَطْمَعُونَ أَن يُؤْمِنُوا۟ لَكُمْ وَقَدْ كَانَ فَرِيقٌۭ مِّنْهُمْ يَسْمَعُونَ كَلَمَ ٱللَّهِ ثُمَّ يُحَرِّفُونَهُۥ مِنۢ بَعْدِ مَا عَقَلُوهُ وَهُمْ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,2,' وَإِذَا لَقُوا۟ ٱلَّذِينَ ءَامَنُوا۟ قَالُوٓا۟ ءَامَنَّا وَإِذَا خَلَا بَعْضُهُمْ إِلَىٰ بَعْضٍۢ قَالُوٓا۟ أَتُحَدِّثُونَهُم بِمَا فَتَحَ ٱللَّهُ عَلَيْكُمْ لِيُحَآجُّوكُم بِهِۦ عِندَ رَبِّكُمْ ۚ أَفَلَا تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,2,' أَوَلَا يَعْلَمُونَ أَنَّ ٱللَّهَ يَعْلَمُ مَا يُسِرُّونَ وَمَا يُعْلِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,2,' وَمِنْهُمْ أُمِّيُّونَ لَا يَعْلَمُونَ ٱلْكِتَبَ إِلَّآ أَمَانِىَّ وَإِنْ هُمْ إِلَّا يَظُنُّونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,2,' فَوَيْلٌۭ لِّلَّذِينَ يَكْتُبُونَ ٱلْكِتَبَ بِأَيْدِيهِمْ ثُمَّ يَقُولُونَ هَذَا مِنْ عِندِ ٱللَّهِ لِيَشْتَرُوا۟ بِهِۦ ثَمَنًۭا قَلِيلًۭا ۖ فَوَيْلٌۭ لَّهُم مِّمَّا كَتَبَتْ أَيْدِيهِمْ وَوَيْلٌۭ لَّهُم مِّمَّا يَكْسِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,2,' وَقَالُوا۟ لَن تَمَسَّنَا ٱلنَّارُ إِلَّآ أَيَّامًۭا مَّعْدُودَةًۭ ۚ قُلْ أَتَّخَذْتُمْ عِندَ ٱللَّهِ عَهْدًۭا فَلَن يُخْلِفَ ٱللَّهُ عَهْدَهُۥٓ ۖ أَمْ تَقُولُونَ عَلَى ٱللَّهِ مَا لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,2,' بَلَىٰ مَن كَسَبَ سَيِّئَةًۭ وَأَحَطَتْ بِهِۦ خَطِيٓـَٔتُهُۥ فَأُو۟لَٓئِكَ أَصْحَبُ ٱلنَّارِ ۖ هُمْ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,2,' وَٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ أُو۟لَٓئِكَ أَصْحَبُ ٱلْجَنَّةِ ۖ هُمْ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,2,' وَإِذْ أَخَذْنَا مِيثَقَ بَنِىٓ إِسْرَٓءِيلَ لَا تَعْبُدُونَ إِلَّا ٱللَّهَ وَبِٱلْوَلِدَيْنِ إِحْسَانًۭا وَذِى ٱلْقُرْبَىٰ وَٱلْيَتَمَىٰ وَٱلْمَسَكِينِ وَقُولُوا۟ لِلنَّاسِ حُسْنًۭا وَأَقِيمُوا۟ ٱلصَّلَوٰةَ وَءَاتُوا۟ ٱلزَّكَوٰةَ ثُمَّ تَوَلَّيْتُمْ إِلَّا قَلِيلًۭا مِّنكُمْ وَأَنتُم مُّعْرِضُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,2,' وَإِذْ أَخَذْنَا مِيثَقَكُمْ لَا تَسْفِكُونَ دِمَآءَكُمْ وَلَا تُخْرِجُونَ أَنفُسَكُم مِّن دِيَرِكُمْ ثُمَّ أَقْرَرْتُمْ وَأَنتُمْ تَشْهَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,2,' ثُمَّ أَنتُمْ هَٓؤُلَآءِ تَقْتُلُونَ أَنفُسَكُمْ وَتُخْرِجُونَ فَرِيقًۭا مِّنكُم مِّن دِيَرِهِمْ تَظَهَرُونَ عَلَيْهِم بِٱلْإِثْمِ وَٱلْعُدْوَنِ وَإِن يَأْتُوكُمْ أُسَرَىٰ تُفَدُوهُمْ وَهُوَ مُحَرَّمٌ عَلَيْكُمْ إِخْرَاجُهُمْ ۚ أَفَتُؤْمِنُونَ بِبَعْضِ ٱلْكِتَبِ وَتَكْفُرُونَ بِبَعْضٍۢ ۚ فَمَا جَزَآءُ مَن يَفْعَلُ ذَلِكَ مِنكُمْ إِلَّا خِزْىٌۭ فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا ۖ وَيَوْمَ ٱلْقِيَمَةِ يُرَدُّونَ إِلَىٰٓ أَشَدِّ ٱلْعَذَابِ ۗ وَمَا ٱللَّهُ بِغَفِلٍ عَمَّا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,2,' أُو۟لَٓئِكَ ٱلَّذِينَ ٱشْتَرَوُا۟ ٱلْحَيَوٰةَ ٱلدُّنْيَا بِٱلْءَاخِرَةِ ۖ فَلَا يُخَفَّفُ عَنْهُمُ ٱلْعَذَابُ وَلَا هُمْ يُنصَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,2,' وَلَقَدْ ءَاتَيْنَا مُوسَى ٱلْكِتَبَ وَقَفَّيْنَا مِنۢ بَعْدِهِۦ بِٱلرُّسُلِ ۖ وَءَاتَيْنَا عِيسَى ٱبْنَ مَرْيَمَ ٱلْبَيِّنَتِ وَأَيَّدْنَهُ بِرُوحِ ٱلْقُدُسِ ۗ أَفَكُلَّمَا جَآءَكُمْ رَسُولٌۢ بِمَا لَا تَهْوَىٰٓ أَنفُسُكُمُ ٱسْتَكْبَرْتُمْ فَفَرِيقًۭا كَذَّبْتُمْ وَفَرِيقًۭا تَقْتُلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,2,' وَقَالُوا۟ قُلُوبُنَا غُلْفٌۢ ۚ بَل لَّعَنَهُمُ ٱللَّهُ بِكُفْرِهِمْ فَقَلِيلًۭا مَّا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,2,' وَلَمَّا جَآءَهُمْ كِتَبٌۭ مِّنْ عِندِ ٱللَّهِ مُصَدِّقٌۭ لِّمَا مَعَهُمْ وَكَانُوا۟ مِن قَبْلُ يَسْتَفْتِحُونَ عَلَى ٱلَّذِينَ كَفَرُوا۟ فَلَمَّا جَآءَهُم مَّا عَرَفُوا۟ كَفَرُوا۟ بِهِۦ ۚ فَلَعْنَةُ ٱللَّهِ عَلَى ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,2,' بِئْسَمَا ٱشْتَرَوْا۟ بِهِۦٓ أَنفُسَهُمْ أَن يَكْفُرُوا۟ بِمَآ أَنزَلَ ٱللَّهُ بَغْيًا أَن يُنَزِّلَ ٱللَّهُ مِن فَضْلِهِۦ عَلَىٰ مَن يَشَآءُ مِنْ عِبَادِهِۦ ۖ فَبَآءُو بِغَضَبٍ عَلَىٰ غَضَبٍۢ ۚ وَلِلْكَفِرِينَ عَذَابٌۭ مُّهِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,2,' وَإِذَا قِيلَ لَهُمْ ءَامِنُوا۟ بِمَآ أَنزَلَ ٱللَّهُ قَالُوا۟ نُؤْمِنُ بِمَآ أُنزِلَ عَلَيْنَا وَيَكْفُرُونَ بِمَا وَرَآءَهُۥ وَهُوَ ٱلْحَقُّ مُصَدِّقًۭا لِّمَا مَعَهُمْ ۗ قُلْ فَلِمَ تَقْتُلُونَ أَنۢبِيَآءَ ٱللَّهِ مِن قَبْلُ إِن كُنتُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,2,' وَلَقَدْ جَآءَكُم مُّوسَىٰ بِٱلْبَيِّنَتِ ثُمَّ ٱتَّخَذْتُمُ ٱلْعِجْلَ مِنۢ بَعْدِهِۦ وَأَنتُمْ ظَلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,2,' وَإِذْ أَخَذْنَا مِيثَقَكُمْ وَرَفَعْنَا فَوْقَكُمُ ٱلطُّورَ خُذُوا۟ مَآ ءَاتَيْنَكُم بِقُوَّةٍۢ وَٱسْمَعُوا۟ ۖ قَالُوا۟ سَمِعْنَا وَعَصَيْنَا وَأُشْرِبُوا۟ فِى قُلُوبِهِمُ ٱلْعِجْلَ بِكُفْرِهِمْ ۚ قُلْ بِئْسَمَا يَأْمُرُكُم بِهِۦٓ إِيمَنُكُمْ إِن كُنتُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,2,' قُلْ إِن كَانَتْ لَكُمُ ٱلدَّارُ ٱلْءَاخِرَةُ عِندَ ٱللَّهِ خَالِصَةًۭ مِّن دُونِ ٱلنَّاسِ فَتَمَنَّوُا۟ ٱلْمَوْتَ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,2,' وَلَن يَتَمَنَّوْهُ أَبَدًۢا بِمَا قَدَّمَتْ أَيْدِيهِمْ ۗ وَٱللَّهُ عَلِيمٌۢ بِٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,2,' وَلَتَجِدَنَّهُمْ أَحْرَصَ ٱلنَّاسِ عَلَىٰ حَيَوٰةٍۢ وَمِنَ ٱلَّذِينَ أَشْرَكُوا۟ ۚ يَوَدُّ أَحَدُهُمْ لَوْ يُعَمَّرُ أَلْفَ سَنَةٍۢ وَمَا هُوَ بِمُزَحْزِحِهِۦ مِنَ ٱلْعَذَابِ أَن يُعَمَّرَ ۗ وَٱللَّهُ بَصِيرٌۢ بِمَا يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,2,' قُلْ مَن كَانَ عَدُوًّۭا لِّجِبْرِيلَ فَإِنَّهُۥ نَزَّلَهُۥ عَلَىٰ قَلْبِكَ بِإِذْنِ ٱللَّهِ مُصَدِّقًۭا لِّمَا بَيْنَ يَدَيْهِ وَهُدًۭى وَبُشْرَىٰ لِلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,2,' مَن كَانَ عَدُوًّۭا لِّلَّهِ وَمَلَٓئِكَتِهِۦ وَرُسُلِهِۦ وَجِبْرِيلَ وَمِيكَىٰلَ فَإِنَّ ٱللَّهَ عَدُوٌّۭ لِّلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,2,' وَلَقَدْ أَنزَلْنَآ إِلَيْكَ ءَايَتٍۭ بَيِّنَتٍۢ ۖ وَمَا يَكْفُرُ بِهَآ إِلَّا ٱلْفَسِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,1,2,' أَوَكُلَّمَا عَهَدُوا۟ عَهْدًۭا نَّبَذَهُۥ فَرِيقٌۭ مِّنْهُم ۚ بَلْ أَكْثَرُهُمْ لَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,1,2,' وَلَمَّا جَآءَهُمْ رَسُولٌۭ مِّنْ عِندِ ٱللَّهِ مُصَدِّقٌۭ لِّمَا مَعَهُمْ نَبَذَ فَرِيقٌۭ مِّنَ ٱلَّذِينَ أُوتُوا۟ ٱلْكِتَبَ كِتَبَ ٱللَّهِ وَرَآءَ ظُهُورِهِمْ كَأَنَّهُمْ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,1,2,' وَٱتَّبَعُوا۟ مَا تَتْلُوا۟ ٱلشَّيَطِينُ عَلَىٰ مُلْكِ سُلَيْمَنَ ۖ وَمَا كَفَرَ سُلَيْمَنُ وَلَكِنَّ ٱلشَّيَطِينَ كَفَرُوا۟ يُعَلِّمُونَ ٱلنَّاسَ ٱلسِّحْرَ وَمَآ أُنزِلَ عَلَى ٱلْمَلَكَيْنِ بِبَابِلَ هَرُوتَ وَمَرُوتَ ۚ وَمَا يُعَلِّمَانِ مِنْ أَحَدٍ حَتَّىٰ يَقُولَآ إِنَّمَا نَحْنُ فِتْنَةٌۭ فَلَا تَكْفُرْ ۖ فَيَتَعَلَّمُونَ مِنْهُمَا مَا يُفَرِّقُونَ بِهِۦ بَيْنَ ٱلْمَرْءِ وَزَوْجِهِۦ ۚ وَمَا هُم بِضَآرِّينَ بِهِۦ مِنْ أَحَدٍ إِلَّا بِإِذْنِ ٱللَّهِ ۚ وَيَتَعَلَّمُونَ مَا يَضُرُّهُمْ وَلَا يَنفَعُهُمْ ۚ وَلَقَدْ عَلِمُوا۟ لَمَنِ ٱشْتَرَىٰهُ مَا لَهُۥ فِى ٱلْءَاخِرَةِ مِنْ خَلَقٍۢ ۚ وَلَبِئْسَ مَا شَرَوْا۟ بِهِۦٓ أَنفُسَهُمْ ۚ لَوْ كَانُوا۟ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,1,2,' وَلَوْ أَنَّهُمْ ءَامَنُوا۟ وَٱتَّقَوْا۟ لَمَثُوبَةٌۭ مِّنْ عِندِ ٱللَّهِ خَيْرٌۭ ۖ لَّوْ كَانُوا۟ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,1,2,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَقُولُوا۟ رَعِنَا وَقُولُوا۟ ٱنظُرْنَا وَٱسْمَعُوا۟ ۗ وَلِلْكَفِرِينَ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,1,2,' مَّا يَوَدُّ ٱلَّذِينَ كَفَرُوا۟ مِنْ أَهْلِ ٱلْكِتَبِ وَلَا ٱلْمُشْرِكِينَ أَن يُنَزَّلَ عَلَيْكُم مِّنْ خَيْرٍۢ مِّن رَّبِّكُمْ ۗ وَٱللَّهُ يَخْتَصُّ بِرَحْمَتِهِۦ مَن يَشَآءُ ۚ وَٱللَّهُ ذُو ٱلْفَضْلِ ٱلْعَظِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,1,2,' مَا نَنسَخْ مِنْ ءَايَةٍ أَوْ نُنسِهَا نَأْتِ بِخَيْرٍۢ مِّنْهَآ أَوْ مِثْلِهَآ ۗ أَلَمْ تَعْلَمْ أَنَّ ٱللَّهَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,1,2,' أَلَمْ تَعْلَمْ أَنَّ ٱللَّهَ لَهُۥ مُلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۗ وَمَا لَكُم مِّن دُونِ ٱللَّهِ مِن وَلِىٍّۢ وَلَا نَصِيرٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,1,2,' أَمْ تُرِيدُونَ أَن تَسْـَٔلُوا۟ رَسُولَكُمْ كَمَا سُئِلَ مُوسَىٰ مِن قَبْلُ ۗ وَمَن يَتَبَدَّلِ ٱلْكُفْرَ بِٱلْإِيمَنِ فَقَدْ ضَلَّ سَوَآءَ ٱلسَّبِيلِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,1,2,' وَدَّ كَثِيرٌۭ مِّنْ أَهْلِ ٱلْكِتَبِ لَوْ يَرُدُّونَكُم مِّنۢ بَعْدِ إِيمَنِكُمْ كُفَّارًا حَسَدًۭا مِّنْ عِندِ أَنفُسِهِم مِّنۢ بَعْدِ مَا تَبَيَّنَ لَهُمُ ٱلْحَقُّ ۖ فَٱعْفُوا۟ وَٱصْفَحُوا۟ حَتَّىٰ يَأْتِىَ ٱللَّهُ بِأَمْرِهِۦٓ ۗ إِنَّ ٱللَّهَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,1,2,' وَأَقِيمُوا۟ ٱلصَّلَوٰةَ وَءَاتُوا۟ ٱلزَّكَوٰةَ ۚ وَمَا تُقَدِّمُوا۟ لِأَنفُسِكُم مِّنْ خَيْرٍۢ تَجِدُوهُ عِندَ ٱللَّهِ ۗ إِنَّ ٱللَّهَ بِمَا تَعْمَلُونَ بَصِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,1,2,' وَقَالُوا۟ لَن يَدْخُلَ ٱلْجَنَّةَ إِلَّا مَن كَانَ هُودًا أَوْ نَصَرَىٰ ۗ تِلْكَ أَمَانِيُّهُمْ ۗ قُلْ هَاتُوا۟ بُرْهَنَكُمْ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,1,2,' بَلَىٰ مَنْ أَسْلَمَ وَجْهَهُۥ لِلَّهِ وَهُوَ مُحْسِنٌۭ فَلَهُۥٓ أَجْرُهُۥ عِندَ رَبِّهِۦ وَلَا خَوْفٌ عَلَيْهِمْ وَلَا هُمْ يَحْزَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,1,2,' وَقَالَتِ ٱلْيَهُودُ لَيْسَتِ ٱلنَّصَرَىٰ عَلَىٰ شَىْءٍۢ وَقَالَتِ ٱلنَّصَرَىٰ لَيْسَتِ ٱلْيَهُودُ عَلَىٰ شَىْءٍۢ وَهُمْ يَتْلُونَ ٱلْكِتَبَ ۗ كَذَلِكَ قَالَ ٱلَّذِينَ لَا يَعْلَمُونَ مِثْلَ قَوْلِهِمْ ۚ فَٱللَّهُ يَحْكُمُ بَيْنَهُمْ يَوْمَ ٱلْقِيَمَةِ فِيمَا كَانُوا۟ فِيهِ يَخْتَلِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,1,2,' وَمَنْ أَظْلَمُ مِمَّن مَّنَعَ مَسَجِدَ ٱللَّهِ أَن يُذْكَرَ فِيهَا ٱسْمُهُۥ وَسَعَىٰ فِى خَرَابِهَآ ۚ أُو۟لَٓئِكَ مَا كَانَ لَهُمْ أَن يَدْخُلُوهَآ إِلَّا خَآئِفِينَ ۚ لَهُمْ فِى ٱلدُّنْيَا خِزْىٌۭ وَلَهُمْ فِى ٱلْءَاخِرَةِ عَذَابٌ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,1,2,' وَلِلَّهِ ٱلْمَشْرِقُ وَٱلْمَغْرِبُ ۚ فَأَيْنَمَا تُوَلُّوا۟ فَثَمَّ وَجْهُ ٱللَّهِ ۚ إِنَّ ٱللَّهَ وَسِعٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,1,2,' وَقَالُوا۟ ٱتَّخَذَ ٱللَّهُ وَلَدًۭا ۗ سُبْحَنَهُۥ ۖ بَل لَّهُۥ مَا فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ۖ كُلٌّۭ لَّهُۥ قَنِتُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,1,2,' بَدِيعُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۖ وَإِذَا قَضَىٰٓ أَمْرًۭا فَإِنَّمَا يَقُولُ لَهُۥ كُن فَيَكُونُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,1,2,' وَقَالَ ٱلَّذِينَ لَا يَعْلَمُونَ لَوْلَا يُكَلِّمُنَا ٱللَّهُ أَوْ تَأْتِينَآ ءَايَةٌۭ ۗ كَذَلِكَ قَالَ ٱلَّذِينَ مِن قَبْلِهِم مِّثْلَ قَوْلِهِمْ ۘ تَشَبَهَتْ قُلُوبُهُمْ ۗ قَدْ بَيَّنَّا ٱلْءَايَتِ لِقَوْمٍۢ يُوقِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,1,2,' إِنَّآ أَرْسَلْنَكَ بِٱلْحَقِّ بَشِيرًۭا وَنَذِيرًۭا ۖ وَلَا تُسْـَٔلُ عَنْ أَصْحَبِ ٱلْجَحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,1,2,' وَلَن تَرْضَىٰ عَنكَ ٱلْيَهُودُ وَلَا ٱلنَّصَرَىٰ حَتَّىٰ تَتَّبِعَ مِلَّتَهُمْ ۗ قُلْ إِنَّ هُدَى ٱللَّهِ هُوَ ٱلْهُدَىٰ ۗ وَلَىِٕنِ ٱتَّبَعْتَ أَهْوَآءَهُم بَعْدَ ٱلَّذِى جَآءَكَ مِنَ ٱلْعِلْمِ ۙ مَا لَكَ مِنَ ٱللَّهِ مِن وَلِىٍّۢ وَلَا نَصِيرٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,1,2,' ٱلَّذِينَ ءَاتَيْنَهُمُ ٱلْكِتَبَ يَتْلُونَهُۥ حَقَّ تِلَاوَتِهِۦٓ أُو۟لَٓئِكَ يُؤْمِنُونَ بِهِۦ ۗ وَمَن يَكْفُرْ بِهِۦ فَأُو۟لَٓئِكَ هُمُ ٱلْخَسِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,1,2,' يَبَنِىٓ إِسْرَٓءِيلَ ٱذْكُرُوا۟ نِعْمَتِىَ ٱلَّتِىٓ أَنْعَمْتُ عَلَيْكُمْ وَأَنِّى فَضَّلْتُكُمْ عَلَى ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,1,2,' وَٱتَّقُوا۟ يَوْمًۭا لَّا تَجْزِى نَفْسٌ عَن نَّفْسٍۢ شَيْـًۭٔا وَلَا يُقْبَلُ مِنْهَا عَدْلٌۭ وَلَا تَنفَعُهَا شَفَعَةٌۭ وَلَا هُمْ يُنصَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,1,2,' وَإِذِ ٱبْتَلَىٰٓ إِبْرَهِۦمَ رَبُّهُۥ بِكَلِمَتٍۢ فَأَتَمَّهُنَّ ۖ قَالَ إِنِّى جَاعِلُكَ لِلنَّاسِ إِمَامًۭا ۖ قَالَ وَمِن ذُرِّيَّتِى ۖ قَالَ لَا يَنَالُ عَهْدِى ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,1,2,' وَإِذْ جَعَلْنَا ٱلْبَيْتَ مَثَابَةًۭ لِّلنَّاسِ وَأَمْنًۭا وَٱتَّخِذُوا۟ مِن مَّقَامِ إِبْرَهِۦمَ مُصَلًّۭى ۖ وَعَهِدْنَآ إِلَىٰٓ إِبْرَهِۦمَ وَإِسْمَعِيلَ أَن طَهِّرَا بَيْتِىَ لِلطَّآئِفِينَ وَٱلْعَكِفِينَ وَٱلرُّكَّعِ ٱلسُّجُودِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,1,2,' وَإِذْ قَالَ إِبْرَهِۦمُ رَبِّ ٱجْعَلْ هَذَا بَلَدًا ءَامِنًۭا وَٱرْزُقْ أَهْلَهُۥ مِنَ ٱلثَّمَرَتِ مَنْ ءَامَنَ مِنْهُم بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ ۖ قَالَ وَمَن كَفَرَ فَأُمَتِّعُهُۥ قَلِيلًۭا ثُمَّ أَضْطَرُّهُۥٓ إِلَىٰ عَذَابِ ٱلنَّارِ ۖ وَبِئْسَ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,1,2,' وَإِذْ يَرْفَعُ إِبْرَهِۦمُ ٱلْقَوَاعِدَ مِنَ ٱلْبَيْتِ وَإِسْمَعِيلُ رَبَّنَا تَقَبَّلْ مِنَّآ ۖ إِنَّكَ أَنتَ ٱلسَّمِيعُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,1,2,' رَبَّنَا وَٱجْعَلْنَا مُسْلِمَيْنِ لَكَ وَمِن ذُرِّيَّتِنَآ أُمَّةًۭ مُّسْلِمَةًۭ لَّكَ وَأَرِنَا مَنَاسِكَنَا وَتُبْ عَلَيْنَآ ۖ إِنَّكَ أَنتَ ٱلتَّوَّابُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,1,2,' رَبَّنَا وَٱبْعَثْ فِيهِمْ رَسُولًۭا مِّنْهُمْ يَتْلُوا۟ عَلَيْهِمْ ءَايَتِكَ وَيُعَلِّمُهُمُ ٱلْكِتَبَ وَٱلْحِكْمَةَ وَيُزَكِّيهِمْ ۚ إِنَّكَ أَنتَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,1,2,' وَمَن يَرْغَبُ عَن مِّلَّةِ إِبْرَهِۦمَ إِلَّا مَن سَفِهَ نَفْسَهُۥ ۚ وَلَقَدِ ٱصْطَفَيْنَهُ فِى ٱلدُّنْيَا ۖ وَإِنَّهُۥ فِى ٱلْءَاخِرَةِ لَمِنَ ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,1,2,' إِذْ قَالَ لَهُۥ رَبُّهُۥٓ أَسْلِمْ ۖ قَالَ أَسْلَمْتُ لِرَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,1,2,' وَوَصَّىٰ بِهَآ إِبْرَهِۦمُ بَنِيهِ وَيَعْقُوبُ يَبَنِىَّ إِنَّ ٱللَّهَ ٱصْطَفَىٰ لَكُمُ ٱلدِّينَ فَلَا تَمُوتُنَّ إِلَّا وَأَنتُم مُّسْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,1,2,' أَمْ كُنتُمْ شُهَدَآءَ إِذْ حَضَرَ يَعْقُوبَ ٱلْمَوْتُ إِذْ قَالَ لِبَنِيهِ مَا تَعْبُدُونَ مِنۢ بَعْدِى قَالُوا۟ نَعْبُدُ إِلَهَكَ وَإِلَهَ ءَابَآئِكَ إِبْرَهِۦمَ وَإِسْمَعِيلَ وَإِسْحَقَ إِلَهًۭا وَحِدًۭا وَنَحْنُ لَهُۥ مُسْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,1,2,' تِلْكَ أُمَّةٌۭ قَدْ خَلَتْ ۖ لَهَا مَا كَسَبَتْ وَلَكُم مَّا كَسَبْتُمْ ۖ وَلَا تُسْـَٔلُونَ عَمَّا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,1,2,' وَقَالُوا۟ كُونُوا۟ هُودًا أَوْ نَصَرَىٰ تَهْتَدُوا۟ ۗ قُلْ بَلْ مِلَّةَ إِبْرَهِۦمَ حَنِيفًۭا ۖ وَمَا كَانَ مِنَ ٱلْمُشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,1,2,' قُولُوٓا۟ ءَامَنَّا بِٱللَّهِ وَمَآ أُنزِلَ إِلَيْنَا وَمَآ أُنزِلَ إِلَىٰٓ إِبْرَهِۦمَ وَإِسْمَعِيلَ وَإِسْحَقَ وَيَعْقُوبَ وَٱلْأَسْبَاطِ وَمَآ أُوتِىَ مُوسَىٰ وَعِيسَىٰ وَمَآ أُوتِىَ ٱلنَّبِيُّونَ مِن رَّبِّهِمْ لَا نُفَرِّقُ بَيْنَ أَحَدٍۢ مِّنْهُمْ وَنَحْنُ لَهُۥ مُسْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,1,2,' فَإِنْ ءَامَنُوا۟ بِمِثْلِ مَآ ءَامَنتُم بِهِۦ فَقَدِ ٱهْتَدَوا۟ ۖ وَّإِن تَوَلَّوْا۟ فَإِنَّمَا هُمْ فِى شِقَاقٍۢ ۖ فَسَيَكْفِيكَهُمُ ٱللَّهُ ۚ وَهُوَ ٱلسَّمِيعُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,1,2,' صِبْغَةَ ٱللَّهِ ۖ وَمَنْ أَحْسَنُ مِنَ ٱللَّهِ صِبْغَةًۭ ۖ وَنَحْنُ لَهُۥ عَبِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,1,2,' قُلْ أَتُحَآجُّونَنَا فِى ٱللَّهِ وَهُوَ رَبُّنَا وَرَبُّكُمْ وَلَنَآ أَعْمَلُنَا وَلَكُمْ أَعْمَلُكُمْ وَنَحْنُ لَهُۥ مُخْلِصُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,1,2,' أَمْ تَقُولُونَ إِنَّ إِبْرَهِۦمَ وَإِسْمَعِيلَ وَإِسْحَقَ وَيَعْقُوبَ وَٱلْأَسْبَاطَ كَانُوا۟ هُودًا أَوْ نَصَرَىٰ ۗ قُلْ ءَأَنتُمْ أَعْلَمُ أَمِ ٱللَّهُ ۗ وَمَنْ أَظْلَمُ مِمَّن كَتَمَ شَهَدَةً عِندَهُۥ مِنَ ٱللَّهِ ۗ وَمَا ٱللَّهُ بِغَفِلٍ عَمَّا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,1,2,' تِلْكَ أُمَّةٌۭ قَدْ خَلَتْ ۖ لَهَا مَا كَسَبَتْ وَلَكُم مَّا كَسَبْتُمْ ۖ وَلَا تُسْـَٔلُونَ عَمَّا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,1,2,' سَيَقُولُ ٱلسُّفَهَآءُ مِنَ ٱلنَّاسِ مَا وَلَّىٰهُمْ عَن قِبْلَتِهِمُ ٱلَّتِى كَانُوا۟ عَلَيْهَا ۚ قُل لِّلَّهِ ٱلْمَشْرِقُ وَٱلْمَغْرِبُ ۚ يَهْدِى مَن يَشَآءُ إِلَىٰ صِرَطٍۢ مُّسْتَقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,1,2,' وَكَذَلِكَ جَعَلْنَكُمْ أُمَّةًۭ وَسَطًۭا لِّتَكُونُوا۟ شُهَدَآءَ عَلَى ٱلنَّاسِ وَيَكُونَ ٱلرَّسُولُ عَلَيْكُمْ شَهِيدًۭا ۗ وَمَا جَعَلْنَا ٱلْقِبْلَةَ ٱلَّتِى كُنتَ عَلَيْهَآ إِلَّا لِنَعْلَمَ مَن يَتَّبِعُ ٱلرَّسُولَ مِمَّن يَنقَلِبُ عَلَىٰ عَقِبَيْهِ ۚ وَإِن كَانَتْ لَكَبِيرَةً إِلَّا عَلَى ٱلَّذِينَ هَدَى ٱللَّهُ ۗ وَمَا كَانَ ٱللَّهُ لِيُضِيعَ إِيمَنَكُمْ ۚ إِنَّ ٱللَّهَ بِٱلنَّاسِ لَرَءُوفٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,1,2,' قَدْ نَرَىٰ تَقَلُّبَ وَجْهِكَ فِى ٱلسَّمَآءِ ۖ فَلَنُوَلِّيَنَّكَ قِبْلَةًۭ تَرْضَىٰهَا ۚ فَوَلِّ وَجْهَكَ شَطْرَ ٱلْمَسْجِدِ ٱلْحَرَامِ ۚ وَحَيْثُ مَا كُنتُمْ فَوَلُّوا۟ وُجُوهَكُمْ شَطْرَهُۥ ۗ وَإِنَّ ٱلَّذِينَ أُوتُوا۟ ٱلْكِتَبَ لَيَعْلَمُونَ أَنَّهُ ٱلْحَقُّ مِن رَّبِّهِمْ ۗ وَمَا ٱللَّهُ بِغَفِلٍ عَمَّا يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,1,2,' وَلَىِٕنْ أَتَيْتَ ٱلَّذِينَ أُوتُوا۟ ٱلْكِتَبَ بِكُلِّ ءَايَةٍۢ مَّا تَبِعُوا۟ قِبْلَتَكَ ۚ وَمَآ أَنتَ بِتَابِعٍۢ قِبْلَتَهُمْ ۚ وَمَا بَعْضُهُم بِتَابِعٍۢ قِبْلَةَ بَعْضٍۢ ۚ وَلَىِٕنِ ٱتَّبَعْتَ أَهْوَآءَهُم مِّنۢ بَعْدِ مَا جَآءَكَ مِنَ ٱلْعِلْمِ ۙ إِنَّكَ إِذًۭا لَّمِنَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,1,2,' ٱلَّذِينَ ءَاتَيْنَهُمُ ٱلْكِتَبَ يَعْرِفُونَهُۥ كَمَا يَعْرِفُونَ أَبْنَآءَهُمْ ۖ وَإِنَّ فَرِيقًۭا مِّنْهُمْ لَيَكْتُمُونَ ٱلْحَقَّ وَهُمْ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,1,2,' ٱلْحَقُّ مِن رَّبِّكَ ۖ فَلَا تَكُونَنَّ مِنَ ٱلْمُمْتَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,1,2,' وَلِكُلٍّۢ وِجْهَةٌ هُوَ مُوَلِّيهَا ۖ فَٱسْتَبِقُوا۟ ٱلْخَيْرَتِ ۚ أَيْنَ مَا تَكُونُوا۟ يَأْتِ بِكُمُ ٱللَّهُ جَمِيعًا ۚ إِنَّ ٱللَّهَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,1,2,' وَمِنْ حَيْثُ خَرَجْتَ فَوَلِّ وَجْهَكَ شَطْرَ ٱلْمَسْجِدِ ٱلْحَرَامِ ۖ وَإِنَّهُۥ لَلْحَقُّ مِن رَّبِّكَ ۗ وَمَا ٱللَّهُ بِغَفِلٍ عَمَّا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,1,2,' وَمِنْ حَيْثُ خَرَجْتَ فَوَلِّ وَجْهَكَ شَطْرَ ٱلْمَسْجِدِ ٱلْحَرَامِ ۚ وَحَيْثُ مَا كُنتُمْ فَوَلُّوا۟ وُجُوهَكُمْ شَطْرَهُۥ لِئَلَّا يَكُونَ لِلنَّاسِ عَلَيْكُمْ حُجَّةٌ إِلَّا ٱلَّذِينَ ظَلَمُوا۟ مِنْهُمْ فَلَا تَخْشَوْهُمْ وَٱخْشَوْنِى وَلِأُتِمَّ نِعْمَتِى عَلَيْكُمْ وَلَعَلَّكُمْ تَهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,1,2,' كَمَآ أَرْسَلْنَا فِيكُمْ رَسُولًۭا مِّنكُمْ يَتْلُوا۟ عَلَيْكُمْ ءَايَتِنَا وَيُزَكِّيكُمْ وَيُعَلِّمُكُمُ ٱلْكِتَبَ وَٱلْحِكْمَةَ وَيُعَلِّمُكُم مَّا لَمْ تَكُونُوا۟ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,1,2,' فَٱذْكُرُونِىٓ أَذْكُرْكُمْ وَٱشْكُرُوا۟ لِى وَلَا تَكْفُرُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,1,2,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ ٱسْتَعِينُوا۟ بِٱلصَّبْرِ وَٱلصَّلَوٰةِ ۚ إِنَّ ٱللَّهَ مَعَ ٱلصَّبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,1,2,' وَلَا تَقُولُوا۟ لِمَن يُقْتَلُ فِى سَبِيلِ ٱللَّهِ أَمْوَتٌۢ ۚ بَلْ أَحْيَآءٌۭ وَلَكِن لَّا تَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,1,2,' وَلَنَبْلُوَنَّكُم بِشَىْءٍۢ مِّنَ ٱلْخَوْفِ وَٱلْجُوعِ وَنَقْصٍۢ مِّنَ ٱلْأَمْوَلِ وَٱلْأَنفُسِ وَٱلثَّمَرَتِ ۗ وَبَشِّرِ ٱلصَّبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,1,2,' ٱلَّذِينَ إِذَآ أَصَبَتْهُم مُّصِيبَةٌۭ قَالُوٓا۟ إِنَّا لِلَّهِ وَإِنَّآ إِلَيْهِ رَجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,1,2,' أُو۟لَٓئِكَ عَلَيْهِمْ صَلَوَتٌۭ مِّن رَّبِّهِمْ وَرَحْمَةٌۭ ۖ وَأُو۟لَٓئِكَ هُمُ ٱلْمُهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,1,2,' إِنَّ ٱلصَّفَا وَٱلْمَرْوَةَ مِن شَعَآئِرِ ٱللَّهِ ۖ فَمَنْ حَجَّ ٱلْبَيْتَ أَوِ ٱعْتَمَرَ فَلَا جُنَاحَ عَلَيْهِ أَن يَطَّوَّفَ بِهِمَا ۚ وَمَن تَطَوَّعَ خَيْرًۭا فَإِنَّ ٱللَّهَ شَاكِرٌ عَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,1,2,' إِنَّ ٱلَّذِينَ يَكْتُمُونَ مَآ أَنزَلْنَا مِنَ ٱلْبَيِّنَتِ وَٱلْهُدَىٰ مِنۢ بَعْدِ مَا بَيَّنَّهُ لِلنَّاسِ فِى ٱلْكِتَبِ ۙ أُو۟لَٓئِكَ يَلْعَنُهُمُ ٱللَّهُ وَيَلْعَنُهُمُ ٱللَّعِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,1,2,' إِلَّا ٱلَّذِينَ تَابُوا۟ وَأَصْلَحُوا۟ وَبَيَّنُوا۟ فَأُو۟لَٓئِكَ أَتُوبُ عَلَيْهِمْ ۚ وَأَنَا ٱلتَّوَّابُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,1,2,' إِنَّ ٱلَّذِينَ كَفَرُوا۟ وَمَاتُوا۟ وَهُمْ كُفَّارٌ أُو۟لَٓئِكَ عَلَيْهِمْ لَعْنَةُ ٱللَّهِ وَٱلْمَلَٓئِكَةِ وَٱلنَّاسِ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,1,2,' خَلِدِينَ فِيهَا ۖ لَا يُخَفَّفُ عَنْهُمُ ٱلْعَذَابُ وَلَا هُمْ يُنظَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,1,2,' وَإِلَهُكُمْ إِلَهٌۭ وَحِدٌۭ ۖ لَّآ إِلَهَ إِلَّا هُوَ ٱلرَّحْمَنُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,1,2,' إِنَّ فِى خَلْقِ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَٱخْتِلَفِ ٱلَّيْلِ وَٱلنَّهَارِ وَٱلْفُلْكِ ٱلَّتِى تَجْرِى فِى ٱلْبَحْرِ بِمَا يَنفَعُ ٱلنَّاسَ وَمَآ أَنزَلَ ٱللَّهُ مِنَ ٱلسَّمَآءِ مِن مَّآءٍۢ فَأَحْيَا بِهِ ٱلْأَرْضَ بَعْدَ مَوْتِهَا وَبَثَّ فِيهَا مِن كُلِّ دَآبَّةٍۢ وَتَصْرِيفِ ٱلرِّيَحِ وَٱلسَّحَابِ ٱلْمُسَخَّرِ بَيْنَ ٱلسَّمَآءِ وَٱلْأَرْضِ لَءَايَتٍۢ لِّقَوْمٍۢ يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,1,2,' وَمِنَ ٱلنَّاسِ مَن يَتَّخِذُ مِن دُونِ ٱللَّهِ أَندَادًۭا يُحِبُّونَهُمْ كَحُبِّ ٱللَّهِ ۖ وَٱلَّذِينَ ءَامَنُوٓا۟ أَشَدُّ حُبًّۭا لِّلَّهِ ۗ وَلَوْ يَرَى ٱلَّذِينَ ظَلَمُوٓا۟ إِذْ يَرَوْنَ ٱلْعَذَابَ أَنَّ ٱلْقُوَّةَ لِلَّهِ جَمِيعًۭا وَأَنَّ ٱللَّهَ شَدِيدُ ٱلْعَذَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,1,2,' إِذْ تَبَرَّأَ ٱلَّذِينَ ٱتُّبِعُوا۟ مِنَ ٱلَّذِينَ ٱتَّبَعُوا۟ وَرَأَوُا۟ ٱلْعَذَابَ وَتَقَطَّعَتْ بِهِمُ ٱلْأَسْبَابُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,1,2,' وَقَالَ ٱلَّذِينَ ٱتَّبَعُوا۟ لَوْ أَنَّ لَنَا كَرَّةًۭ فَنَتَبَرَّأَ مِنْهُمْ كَمَا تَبَرَّءُوا۟ مِنَّا ۗ كَذَلِكَ يُرِيهِمُ ٱللَّهُ أَعْمَلَهُمْ حَسَرَتٍ عَلَيْهِمْ ۖ وَمَا هُم بِخَرِجِينَ مِنَ ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,1,2,' يَٓأَيُّهَا ٱلنَّاسُ كُلُوا۟ مِمَّا فِى ٱلْأَرْضِ حَلَلًۭا طَيِّبًۭا وَلَا تَتَّبِعُوا۟ خُطُوَتِ ٱلشَّيْطَنِ ۚ إِنَّهُۥ لَكُمْ عَدُوٌّۭ مُّبِينٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,1,2,' إِنَّمَا يَأْمُرُكُم بِٱلسُّوٓءِ وَٱلْفَحْشَآءِ وَأَن تَقُولُوا۟ عَلَى ٱللَّهِ مَا لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,1,2,' وَإِذَا قِيلَ لَهُمُ ٱتَّبِعُوا۟ مَآ أَنزَلَ ٱللَّهُ قَالُوا۟ بَلْ نَتَّبِعُ مَآ أَلْفَيْنَا عَلَيْهِ ءَابَآءَنَآ ۗ أَوَلَوْ كَانَ ءَابَآؤُهُمْ لَا يَعْقِلُونَ شَيْـًۭٔا وَلَا يَهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,1,2,' وَمَثَلُ ٱلَّذِينَ كَفَرُوا۟ كَمَثَلِ ٱلَّذِى يَنْعِقُ بِمَا لَا يَسْمَعُ إِلَّا دُعَآءًۭ وَنِدَآءًۭ ۚ صُمٌّۢ بُكْمٌ عُمْىٌۭ فَهُمْ لَا يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,1,2,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ كُلُوا۟ مِن طَيِّبَتِ مَا رَزَقْنَكُمْ وَٱشْكُرُوا۟ لِلَّهِ إِن كُنتُمْ إِيَّاهُ تَعْبُدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,1,2,' إِنَّمَا حَرَّمَ عَلَيْكُمُ ٱلْمَيْتَةَ وَٱلدَّمَ وَلَحْمَ ٱلْخِنزِيرِ وَمَآ أُهِلَّ بِهِۦ لِغَيْرِ ٱللَّهِ ۖ فَمَنِ ٱضْطُرَّ غَيْرَ بَاغٍۢ وَلَا عَادٍۢ فَلَآ إِثْمَ عَلَيْهِ ۚ إِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,1,2,' إِنَّ ٱلَّذِينَ يَكْتُمُونَ مَآ أَنزَلَ ٱللَّهُ مِنَ ٱلْكِتَبِ وَيَشْتَرُونَ بِهِۦ ثَمَنًۭا قَلِيلًا ۙ أُو۟لَٓئِكَ مَا يَأْكُلُونَ فِى بُطُونِهِمْ إِلَّا ٱلنَّارَ وَلَا يُكَلِّمُهُمُ ٱللَّهُ يَوْمَ ٱلْقِيَمَةِ وَلَا يُزَكِّيهِمْ وَلَهُمْ عَذَابٌ أَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,1,2,' أُو۟لَٓئِكَ ٱلَّذِينَ ٱشْتَرَوُا۟ ٱلضَّلَلَةَ بِٱلْهُدَىٰ وَٱلْعَذَابَ بِٱلْمَغْفِرَةِ ۚ فَمَآ أَصْبَرَهُمْ عَلَى ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,1,2,' ذَلِكَ بِأَنَّ ٱللَّهَ نَزَّلَ ٱلْكِتَبَ بِٱلْحَقِّ ۗ وَإِنَّ ٱلَّذِينَ ٱخْتَلَفُوا۟ فِى ٱلْكِتَبِ لَفِى شِقَاقٍۭ بَعِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,1,2,' لَّيْسَ ٱلْبِرَّ أَن تُوَلُّوا۟ وُجُوهَكُمْ قِبَلَ ٱلْمَشْرِقِ وَٱلْمَغْرِبِ وَلَكِنَّ ٱلْبِرَّ مَنْ ءَامَنَ بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ وَٱلْمَلَٓئِكَةِ وَٱلْكِتَبِ وَٱلنَّبِيِّۦنَ وَءَاتَى ٱلْمَالَ عَلَىٰ حُبِّهِۦ ذَوِى ٱلْقُرْبَىٰ وَٱلْيَتَمَىٰ وَٱلْمَسَكِينَ وَٱبْنَ ٱلسَّبِيلِ وَٱلسَّآئِلِينَ وَفِى ٱلرِّقَابِ وَأَقَامَ ٱلصَّلَوٰةَ وَءَاتَى ٱلزَّكَوٰةَ وَٱلْمُوفُونَ بِعَهْدِهِمْ إِذَا عَهَدُوا۟ ۖ وَٱلصَّبِرِينَ فِى ٱلْبَأْسَآءِ وَٱلضَّرَّآءِ وَحِينَ ٱلْبَأْسِ ۗ أُو۟لَٓئِكَ ٱلَّذِينَ صَدَقُوا۟ ۖ وَأُو۟لَٓئِكَ هُمُ ٱلْمُتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,1,2,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ كُتِبَ عَلَيْكُمُ ٱلْقِصَاصُ فِى ٱلْقَتْلَى ۖ ٱلْحُرُّ بِٱلْحُرِّ وَٱلْعَبْدُ بِٱلْعَبْدِ وَٱلْأُنثَىٰ بِٱلْأُنثَىٰ ۚ فَمَنْ عُفِىَ لَهُۥ مِنْ أَخِيهِ شَىْءٌۭ فَٱتِّبَاعٌۢ بِٱلْمَعْرُوفِ وَأَدَآءٌ إِلَيْهِ بِإِحْسَنٍۢ ۗ ذَلِكَ تَخْفِيفٌۭ مِّن رَّبِّكُمْ وَرَحْمَةٌۭ ۗ فَمَنِ ٱعْتَدَىٰ بَعْدَ ذَلِكَ فَلَهُۥ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,1,2,' وَلَكُمْ فِى ٱلْقِصَاصِ حَيَوٰةٌۭ يَٓأُو۟لِى ٱلْأَلْبَبِ لَعَلَّكُمْ تَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,1,2,' كُتِبَ عَلَيْكُمْ إِذَا حَضَرَ أَحَدَكُمُ ٱلْمَوْتُ إِن تَرَكَ خَيْرًا ٱلْوَصِيَّةُ لِلْوَلِدَيْنِ وَٱلْأَقْرَبِينَ بِٱلْمَعْرُوفِ ۖ حَقًّا عَلَى ٱلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,1,2,' فَمَنۢ بَدَّلَهُۥ بَعْدَمَا سَمِعَهُۥ فَإِنَّمَآ إِثْمُهُۥ عَلَى ٱلَّذِينَ يُبَدِّلُونَهُۥٓ ۚ إِنَّ ٱللَّهَ سَمِيعٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,1,2,' فَمَنْ خَافَ مِن مُّوصٍۢ جَنَفًا أَوْ إِثْمًۭا فَأَصْلَحَ بَيْنَهُمْ فَلَآ إِثْمَ عَلَيْهِ ۚ إِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(183,1,2,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ كُتِبَ عَلَيْكُمُ ٱلصِّيَامُ كَمَا كُتِبَ عَلَى ٱلَّذِينَ مِن قَبْلِكُمْ لَعَلَّكُمْ تَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(184,1,2,' أَيَّامًۭا مَّعْدُودَتٍۢ ۚ فَمَن كَانَ مِنكُم مَّرِيضًا أَوْ عَلَىٰ سَفَرٍۢ فَعِدَّةٌۭ مِّنْ أَيَّامٍ أُخَرَ ۚ وَعَلَى ٱلَّذِينَ يُطِيقُونَهُۥ فِدْيَةٌۭ طَعَامُ مِسْكِينٍۢ ۖ فَمَن تَطَوَّعَ خَيْرًۭا فَهُوَ خَيْرٌۭ لَّهُۥ ۚ وَأَن تَصُومُوا۟ خَيْرٌۭ لَّكُمْ ۖ إِن كُنتُمْ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(185,1,2,' شَهْرُ رَمَضَانَ ٱلَّذِىٓ أُنزِلَ فِيهِ ٱلْقُرْءَانُ هُدًۭى لِّلنَّاسِ وَبَيِّنَتٍۢ مِّنَ ٱلْهُدَىٰ وَٱلْفُرْقَانِ ۚ فَمَن شَهِدَ مِنكُمُ ٱلشَّهْرَ فَلْيَصُمْهُ ۖ وَمَن كَانَ مَرِيضًا أَوْ عَلَىٰ سَفَرٍۢ فَعِدَّةٌۭ مِّنْ أَيَّامٍ أُخَرَ ۗ يُرِيدُ ٱللَّهُ بِكُمُ ٱلْيُسْرَ وَلَا يُرِيدُ بِكُمُ ٱلْعُسْرَ وَلِتُكْمِلُوا۟ ٱلْعِدَّةَ وَلِتُكَبِّرُوا۟ ٱللَّهَ عَلَىٰ مَا هَدَىٰكُمْ وَلَعَلَّكُمْ تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(186,1,2,' وَإِذَا سَأَلَكَ عِبَادِى عَنِّى فَإِنِّى قَرِيبٌ ۖ أُجِيبُ دَعْوَةَ ٱلدَّاعِ إِذَا دَعَانِ ۖ فَلْيَسْتَجِيبُوا۟ لِى وَلْيُؤْمِنُوا۟ بِى لَعَلَّهُمْ يَرْشُدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(187,1,2,' أُحِلَّ لَكُمْ لَيْلَةَ ٱلصِّيَامِ ٱلرَّفَثُ إِلَىٰ نِسَآئِكُمْ ۚ هُنَّ لِبَاسٌۭ لَّكُمْ وَأَنتُمْ لِبَاسٌۭ لَّهُنَّ ۗ عَلِمَ ٱللَّهُ أَنَّكُمْ كُنتُمْ تَخْتَانُونَ أَنفُسَكُمْ فَتَابَ عَلَيْكُمْ وَعَفَا عَنكُمْ ۖ فَٱلْـَٔنَ بَشِرُوهُنَّ وَٱبْتَغُوا۟ مَا كَتَبَ ٱللَّهُ لَكُمْ ۚ وَكُلُوا۟ وَٱشْرَبُوا۟ حَتَّىٰ يَتَبَيَّنَ لَكُمُ ٱلْخَيْطُ ٱلْأَبْيَضُ مِنَ ٱلْخَيْطِ ٱلْأَسْوَدِ مِنَ ٱلْفَجْرِ ۖ ثُمَّ أَتِمُّوا۟ ٱلصِّيَامَ إِلَى ٱلَّيْلِ ۚ وَلَا تُبَشِرُوهُنَّ وَأَنتُمْ عَكِفُونَ فِى ٱلْمَسَجِدِ ۗ تِلْكَ حُدُودُ ٱللَّهِ فَلَا تَقْرَبُوهَا ۗ كَذَلِكَ يُبَيِّنُ ٱللَّهُ ءَايَتِهِۦ لِلنَّاسِ لَعَلَّهُمْ يَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(188,1,2,' وَلَا تَأْكُلُوٓا۟ أَمْوَلَكُم بَيْنَكُم بِٱلْبَطِلِ وَتُدْلُوا۟ بِهَآ إِلَى ٱلْحُكَّامِ لِتَأْكُلُوا۟ فَرِيقًۭا مِّنْ أَمْوَلِ ٱلنَّاسِ بِٱلْإِثْمِ وَأَنتُمْ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(189,1,2,' يَسْـَٔلُونَكَ عَنِ ٱلْأَهِلَّةِ ۖ قُلْ هِىَ مَوَقِيتُ لِلنَّاسِ وَٱلْحَجِّ ۗ وَلَيْسَ ٱلْبِرُّ بِأَن تَأْتُوا۟ ٱلْبُيُوتَ مِن ظُهُورِهَا وَلَكِنَّ ٱلْبِرَّ مَنِ ٱتَّقَىٰ ۗ وَأْتُوا۟ ٱلْبُيُوتَ مِنْ أَبْوَبِهَا ۚ وَٱتَّقُوا۟ ٱللَّهَ لَعَلَّكُمْ تُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(190,1,2,' وَقَتِلُوا۟ فِى سَبِيلِ ٱللَّهِ ٱلَّذِينَ يُقَتِلُونَكُمْ وَلَا تَعْتَدُوٓا۟ ۚ إِنَّ ٱللَّهَ لَا يُحِبُّ ٱلْمُعْتَدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(191,1,2,' وَٱقْتُلُوهُمْ حَيْثُ ثَقِفْتُمُوهُمْ وَأَخْرِجُوهُم مِّنْ حَيْثُ أَخْرَجُوكُمْ ۚ وَٱلْفِتْنَةُ أَشَدُّ مِنَ ٱلْقَتْلِ ۚ وَلَا تُقَتِلُوهُمْ عِندَ ٱلْمَسْجِدِ ٱلْحَرَامِ حَتَّىٰ يُقَتِلُوكُمْ فِيهِ ۖ فَإِن قَتَلُوكُمْ فَٱقْتُلُوهُمْ ۗ كَذَلِكَ جَزَآءُ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(192,1,2,' فَإِنِ ٱنتَهَوْا۟ فَإِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(193,1,2,' وَقَتِلُوهُمْ حَتَّىٰ لَا تَكُونَ فِتْنَةٌۭ وَيَكُونَ ٱلدِّينُ لِلَّهِ ۖ فَإِنِ ٱنتَهَوْا۟ فَلَا عُدْوَنَ إِلَّا عَلَى ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(194,1,2,' ٱلشَّهْرُ ٱلْحَرَامُ بِٱلشَّهْرِ ٱلْحَرَامِ وَٱلْحُرُمَتُ قِصَاصٌۭ ۚ فَمَنِ ٱعْتَدَىٰ عَلَيْكُمْ فَٱعْتَدُوا۟ عَلَيْهِ بِمِثْلِ مَا ٱعْتَدَىٰ عَلَيْكُمْ ۚ وَٱتَّقُوا۟ ٱللَّهَ وَٱعْلَمُوٓا۟ أَنَّ ٱللَّهَ مَعَ ٱلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(195,1,2,' وَأَنفِقُوا۟ فِى سَبِيلِ ٱللَّهِ وَلَا تُلْقُوا۟ بِأَيْدِيكُمْ إِلَى ٱلتَّهْلُكَةِ ۛ وَأَحْسِنُوٓا۟ ۛ إِنَّ ٱللَّهَ يُحِبُّ ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(196,1,2,' وَأَتِمُّوا۟ ٱلْحَجَّ وَٱلْعُمْرَةَ لِلَّهِ ۚ فَإِنْ أُحْصِرْتُمْ فَمَا ٱسْتَيْسَرَ مِنَ ٱلْهَدْىِ ۖ وَلَا تَحْلِقُوا۟ رُءُوسَكُمْ حَتَّىٰ يَبْلُغَ ٱلْهَدْىُ مَحِلَّهُۥ ۚ فَمَن كَانَ مِنكُم مَّرِيضًا أَوْ بِهِۦٓ أَذًۭى مِّن رَّأْسِهِۦ فَفِدْيَةٌۭ مِّن صِيَامٍ أَوْ صَدَقَةٍ أَوْ نُسُكٍۢ ۚ فَإِذَآ أَمِنتُمْ فَمَن تَمَتَّعَ بِٱلْعُمْرَةِ إِلَى ٱلْحَجِّ فَمَا ٱسْتَيْسَرَ مِنَ ٱلْهَدْىِ ۚ فَمَن لَّمْ يَجِدْ فَصِيَامُ ثَلَثَةِ أَيَّامٍۢ فِى ٱلْحَجِّ وَسَبْعَةٍ إِذَا رَجَعْتُمْ ۗ تِلْكَ عَشَرَةٌۭ كَامِلَةٌۭ ۗ ذَلِكَ لِمَن لَّمْ يَكُنْ أَهْلُهُۥ حَاضِرِى ٱلْمَسْجِدِ ٱلْحَرَامِ ۚ وَٱتَّقُوا۟ ٱللَّهَ وَٱعْلَمُوٓا۟ أَنَّ ٱللَّهَ شَدِيدُ ٱلْعِقَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(197,1,2,' ٱلْحَجُّ أَشْهُرٌۭ مَّعْلُومَتٌۭ ۚ فَمَن فَرَضَ فِيهِنَّ ٱلْحَجَّ فَلَا رَفَثَ وَلَا فُسُوقَ وَلَا جِدَالَ فِى ٱلْحَجِّ ۗ وَمَا تَفْعَلُوا۟ مِنْ خَيْرٍۢ يَعْلَمْهُ ٱللَّهُ ۗ وَتَزَوَّدُوا۟ فَإِنَّ خَيْرَ ٱلزَّادِ ٱلتَّقْوَىٰ ۚ وَٱتَّقُونِ يَٓأُو۟لِى ٱلْأَلْبَبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(198,1,2,' لَيْسَ عَلَيْكُمْ جُنَاحٌ أَن تَبْتَغُوا۟ فَضْلًۭا مِّن رَّبِّكُمْ ۚ فَإِذَآ أَفَضْتُم مِّنْ عَرَفَتٍۢ فَٱذْكُرُوا۟ ٱللَّهَ عِندَ ٱلْمَشْعَرِ ٱلْحَرَامِ ۖ وَٱذْكُرُوهُ كَمَا هَدَىٰكُمْ وَإِن كُنتُم مِّن قَبْلِهِۦ لَمِنَ ٱلضَّآلِّينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(199,1,2,' ثُمَّ أَفِيضُوا۟ مِنْ حَيْثُ أَفَاضَ ٱلنَّاسُ وَٱسْتَغْفِرُوا۟ ٱللَّهَ ۚ إِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(200,1,2,' فَإِذَا قَضَيْتُم مَّنَسِكَكُمْ فَٱذْكُرُوا۟ ٱللَّهَ كَذِكْرِكُمْ ءَابَآءَكُمْ أَوْ أَشَدَّ ذِكْرًۭا ۗ فَمِنَ ٱلنَّاسِ مَن يَقُولُ رَبَّنَآ ءَاتِنَا فِى ٱلدُّنْيَا وَمَا لَهُۥ فِى ٱلْءَاخِرَةِ مِنْ خَلَقٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(201,1,2,' وَمِنْهُم مَّن يَقُولُ رَبَّنَآ ءَاتِنَا فِى ٱلدُّنْيَا حَسَنَةًۭ وَفِى ٱلْءَاخِرَةِ حَسَنَةًۭ وَقِنَا عَذَابَ ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(202,1,2,' أُو۟لَٓئِكَ لَهُمْ نَصِيبٌۭ مِّمَّا كَسَبُوا۟ ۚ وَٱللَّهُ سَرِيعُ ٱلْحِسَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(203,1,2,' وَٱذْكُرُوا۟ ٱللَّهَ فِىٓ أَيَّامٍۢ مَّعْدُودَتٍۢ ۚ فَمَن تَعَجَّلَ فِى يَوْمَيْنِ فَلَآ إِثْمَ عَلَيْهِ وَمَن تَأَخَّرَ فَلَآ إِثْمَ عَلَيْهِ ۚ لِمَنِ ٱتَّقَىٰ ۗ وَٱتَّقُوا۟ ٱللَّهَ وَٱعْلَمُوٓا۟ أَنَّكُمْ إِلَيْهِ تُحْشَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(204,1,2,' وَمِنَ ٱلنَّاسِ مَن يُعْجِبُكَ قَوْلُهُۥ فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا وَيُشْهِدُ ٱللَّهَ عَلَىٰ مَا فِى قَلْبِهِۦ وَهُوَ أَلَدُّ ٱلْخِصَامِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(205,1,2,' وَإِذَا تَوَلَّىٰ سَعَىٰ فِى ٱلْأَرْضِ لِيُفْسِدَ فِيهَا وَيُهْلِكَ ٱلْحَرْثَ وَٱلنَّسْلَ ۗ وَٱللَّهُ لَا يُحِبُّ ٱلْفَسَادَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(206,1,2,' وَإِذَا قِيلَ لَهُ ٱتَّقِ ٱللَّهَ أَخَذَتْهُ ٱلْعِزَّةُ بِٱلْإِثْمِ ۚ فَحَسْبُهُۥ جَهَنَّمُ ۚ وَلَبِئْسَ ٱلْمِهَادُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(207,1,2,' وَمِنَ ٱلنَّاسِ مَن يَشْرِى نَفْسَهُ ٱبْتِغَآءَ مَرْضَاتِ ٱللَّهِ ۗ وَٱللَّهُ رَءُوفٌۢ بِٱلْعِبَادِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(208,1,2,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ ٱدْخُلُوا۟ فِى ٱلسِّلْمِ كَآفَّةًۭ وَلَا تَتَّبِعُوا۟ خُطُوَتِ ٱلشَّيْطَنِ ۚ إِنَّهُۥ لَكُمْ عَدُوٌّۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(209,1,2,' فَإِن زَلَلْتُم مِّنۢ بَعْدِ مَا جَآءَتْكُمُ ٱلْبَيِّنَتُ فَٱعْلَمُوٓا۟ أَنَّ ٱللَّهَ عَزِيزٌ حَكِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(210,1,2,' هَلْ يَنظُرُونَ إِلَّآ أَن يَأْتِيَهُمُ ٱللَّهُ فِى ظُلَلٍۢ مِّنَ ٱلْغَمَامِ وَٱلْمَلَٓئِكَةُ وَقُضِىَ ٱلْأَمْرُ ۚ وَإِلَى ٱللَّهِ تُرْجَعُ ٱلْأُمُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(211,1,2,' سَلْ بَنِىٓ إِسْرَٓءِيلَ كَمْ ءَاتَيْنَهُم مِّنْ ءَايَةٍۭ بَيِّنَةٍۢ ۗ وَمَن يُبَدِّلْ نِعْمَةَ ٱللَّهِ مِنۢ بَعْدِ مَا جَآءَتْهُ فَإِنَّ ٱللَّهَ شَدِيدُ ٱلْعِقَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(212,1,2,' زُيِّنَ لِلَّذِينَ كَفَرُوا۟ ٱلْحَيَوٰةُ ٱلدُّنْيَا وَيَسْخَرُونَ مِنَ ٱلَّذِينَ ءَامَنُوا۟ ۘ وَٱلَّذِينَ ٱتَّقَوْا۟ فَوْقَهُمْ يَوْمَ ٱلْقِيَمَةِ ۗ وَٱللَّهُ يَرْزُقُ مَن يَشَآءُ بِغَيْرِ حِسَابٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(213,1,2,' كَانَ ٱلنَّاسُ أُمَّةًۭ وَحِدَةًۭ فَبَعَثَ ٱللَّهُ ٱلنَّبِيِّۦنَ مُبَشِّرِينَ وَمُنذِرِينَ وَأَنزَلَ مَعَهُمُ ٱلْكِتَبَ بِٱلْحَقِّ لِيَحْكُمَ بَيْنَ ٱلنَّاسِ فِيمَا ٱخْتَلَفُوا۟ فِيهِ ۚ وَمَا ٱخْتَلَفَ فِيهِ إِلَّا ٱلَّذِينَ أُوتُوهُ مِنۢ بَعْدِ مَا جَآءَتْهُمُ ٱلْبَيِّنَتُ بَغْيًۢا بَيْنَهُمْ ۖ فَهَدَى ٱللَّهُ ٱلَّذِينَ ءَامَنُوا۟ لِمَا ٱخْتَلَفُوا۟ فِيهِ مِنَ ٱلْحَقِّ بِإِذْنِهِۦ ۗ وَٱللَّهُ يَهْدِى مَن يَشَآءُ إِلَىٰ صِرَطٍۢ مُّسْتَقِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(214,1,2,' أَمْ حَسِبْتُمْ أَن تَدْخُلُوا۟ ٱلْجَنَّةَ وَلَمَّا يَأْتِكُم مَّثَلُ ٱلَّذِينَ خَلَوْا۟ مِن قَبْلِكُم ۖ مَّسَّتْهُمُ ٱلْبَأْسَآءُ وَٱلضَّرَّآءُ وَزُلْزِلُوا۟ حَتَّىٰ يَقُولَ ٱلرَّسُولُ وَٱلَّذِينَ ءَامَنُوا۟ مَعَهُۥ مَتَىٰ نَصْرُ ٱللَّهِ ۗ أَلَآ إِنَّ نَصْرَ ٱللَّهِ قَرِيبٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(215,1,2,' يَسْـَٔلُونَكَ مَاذَا يُنفِقُونَ ۖ قُلْ مَآ أَنفَقْتُم مِّنْ خَيْرٍۢ فَلِلْوَلِدَيْنِ وَٱلْأَقْرَبِينَ وَٱلْيَتَمَىٰ وَٱلْمَسَكِينِ وَٱبْنِ ٱلسَّبِيلِ ۗ وَمَا تَفْعَلُوا۟ مِنْ خَيْرٍۢ فَإِنَّ ٱللَّهَ بِهِۦ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(216,1,2,' كُتِبَ عَلَيْكُمُ ٱلْقِتَالُ وَهُوَ كُرْهٌۭ لَّكُمْ ۖ وَعَسَىٰٓ أَن تَكْرَهُوا۟ شَيْـًۭٔا وَهُوَ خَيْرٌۭ لَّكُمْ ۖ وَعَسَىٰٓ أَن تُحِبُّوا۟ شَيْـًۭٔا وَهُوَ شَرٌّۭ لَّكُمْ ۗ وَٱللَّهُ يَعْلَمُ وَأَنتُمْ لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(217,1,2,' يَسْـَٔلُونَكَ عَنِ ٱلشَّهْرِ ٱلْحَرَامِ قِتَالٍۢ فِيهِ ۖ قُلْ قِتَالٌۭ فِيهِ كَبِيرٌۭ ۖ وَصَدٌّ عَن سَبِيلِ ٱللَّهِ وَكُفْرٌۢ بِهِۦ وَٱلْمَسْجِدِ ٱلْحَرَامِ وَإِخْرَاجُ أَهْلِهِۦ مِنْهُ أَكْبَرُ عِندَ ٱللَّهِ ۚ وَٱلْفِتْنَةُ أَكْبَرُ مِنَ ٱلْقَتْلِ ۗ وَلَا يَزَالُونَ يُقَتِلُونَكُمْ حَتَّىٰ يَرُدُّوكُمْ عَن دِينِكُمْ إِنِ ٱسْتَطَعُوا۟ ۚ وَمَن يَرْتَدِدْ مِنكُمْ عَن دِينِهِۦ فَيَمُتْ وَهُوَ كَافِرٌۭ فَأُو۟لَٓئِكَ حَبِطَتْ أَعْمَلُهُمْ فِى ٱلدُّنْيَا وَٱلْءَاخِرَةِ ۖ وَأُو۟لَٓئِكَ أَصْحَبُ ٱلنَّارِ ۖ هُمْ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(218,1,2,' إِنَّ ٱلَّذِينَ ءَامَنُوا۟ وَٱلَّذِينَ هَاجَرُوا۟ وَجَهَدُوا۟ فِى سَبِيلِ ٱللَّهِ أُو۟لَٓئِكَ يَرْجُونَ رَحْمَتَ ٱللَّهِ ۚ وَٱللَّهُ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(219,1,2,' ئ يَسْـَٔلُونَكَ عَنِ ٱلْخَمْرِ وَٱلْمَيْسِرِ ۖ قُلْ فِيهِمَآ إِثْمٌۭ كَبِيرٌۭ وَمَنَفِعُ لِلنَّاسِ وَإِثْمُهُمَآ أَكْبَرُ مِن نَّفْعِهِمَا ۗ وَيَسْـَٔلُونَكَ مَاذَا يُنفِقُونَ قُلِ ٱلْعَفْوَ ۗ كَذَلِكَ يُبَيِّنُ ٱللَّهُ لَكُمُ ٱلْءَايَتِ لَعَلَّكُمْ تَتَفَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(220,1,2,' فِى ٱلدُّنْيَا وَٱلْءَاخِرَةِ ۗ وَيَسْـَٔلُونَكَ عَنِ ٱلْيَتَمَىٰ ۖ قُلْ إِصْلَاحٌۭ لَّهُمْ خَيْرٌۭ ۖ وَإِن تُخَالِطُوهُمْ فَإِخْوَنُكُمْ ۚ وَٱللَّهُ يَعْلَمُ ٱلْمُفْسِدَ مِنَ ٱلْمُصْلِحِ ۚ وَلَوْ شَآءَ ٱللَّهُ لَأَعْنَتَكُمْ ۚ إِنَّ ٱللَّهَ عَزِيزٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(221,1,2,' وَلَا تَنكِحُوا۟ ٱلْمُشْرِكَتِ حَتَّىٰ يُؤْمِنَّ ۚ وَلَأَمَةٌۭ مُّؤْمِنَةٌ خَيْرٌۭ مِّن مُّشْرِكَةٍۢ وَلَوْ أَعْجَبَتْكُمْ ۗ وَلَا تُنكِحُوا۟ ٱلْمُشْرِكِينَ حَتَّىٰ يُؤْمِنُوا۟ ۚ وَلَعَبْدٌۭ مُّؤْمِنٌ خَيْرٌۭ مِّن مُّشْرِكٍۢ وَلَوْ أَعْجَبَكُمْ ۗ أُو۟لَٓئِكَ يَدْعُونَ إِلَى ٱلنَّارِ ۖ وَٱللَّهُ يَدْعُوٓا۟ إِلَى ٱلْجَنَّةِ وَٱلْمَغْفِرَةِ بِإِذْنِهِۦ ۖ وَيُبَيِّنُ ءَايَتِهِۦ لِلنَّاسِ لَعَلَّهُمْ يَتَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(222,1,2,' وَيَسْـَٔلُونَكَ عَنِ ٱلْمَحِيضِ ۖ قُلْ هُوَ أَذًۭى فَٱعْتَزِلُوا۟ ٱلنِّسَآءَ فِى ٱلْمَحِيضِ ۖ وَلَا تَقْرَبُوهُنَّ حَتَّىٰ يَطْهُرْنَ ۖ فَإِذَا تَطَهَّرْنَ فَأْتُوهُنَّ مِنْ حَيْثُ أَمَرَكُمُ ٱللَّهُ ۚ إِنَّ ٱللَّهَ يُحِبُّ ٱلتَّوَّبِينَ وَيُحِبُّ ٱلْمُتَطَهِّرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(223,1,2,' نِسَآؤُكُمْ حَرْثٌۭ لَّكُمْ فَأْتُوا۟ حَرْثَكُمْ أَنَّىٰ شِئْتُمْ ۖ وَقَدِّمُوا۟ لِأَنفُسِكُمْ ۚ وَٱتَّقُوا۟ ٱللَّهَ وَٱعْلَمُوٓا۟ أَنَّكُم مُّلَقُوهُ ۗ وَبَشِّرِ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(224,1,2,' وَلَا تَجْعَلُوا۟ ٱللَّهَ عُرْضَةًۭ لِأَيْمَنِكُمْ أَن تَبَرُّوا۟ وَتَتَّقُوا۟ وَتُصْلِحُوا۟ بَيْنَ ٱلنَّاسِ ۗ وَٱللَّهُ سَمِيعٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(225,1,2,' لَّا يُؤَاخِذُكُمُ ٱللَّهُ بِٱللَّغْوِ فِىٓ أَيْمَنِكُمْ وَلَكِن يُؤَاخِذُكُم بِمَا كَسَبَتْ قُلُوبُكُمْ ۗ وَٱللَّهُ غَفُورٌ حَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(226,1,2,' لِّلَّذِينَ يُؤْلُونَ مِن نِّسَآئِهِمْ تَرَبُّصُ أَرْبَعَةِ أَشْهُرٍۢ ۖ فَإِن فَآءُو فَإِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(227,1,2,' وَإِنْ عَزَمُوا۟ ٱلطَّلَقَ فَإِنَّ ٱللَّهَ سَمِيعٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(228,1,2,' وَٱلْمُطَلَّقَتُ يَتَرَبَّصْنَ بِأَنفُسِهِنَّ ثَلَثَةَ قُرُوٓءٍۢ ۚ وَلَا يَحِلُّ لَهُنَّ أَن يَكْتُمْنَ مَا خَلَقَ ٱللَّهُ فِىٓ أَرْحَامِهِنَّ إِن كُنَّ يُؤْمِنَّ بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ ۚ وَبُعُولَتُهُنَّ أَحَقُّ بِرَدِّهِنَّ فِى ذَلِكَ إِنْ أَرَادُوٓا۟ إِصْلَحًۭا ۚ وَلَهُنَّ مِثْلُ ٱلَّذِى عَلَيْهِنَّ بِٱلْمَعْرُوفِ ۚ وَلِلرِّجَالِ عَلَيْهِنَّ دَرَجَةٌۭ ۗ وَٱللَّهُ عَزِيزٌ حَكِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(229,1,2,' ٱلطَّلَقُ مَرَّتَانِ ۖ فَإِمْسَاكٌۢ بِمَعْرُوفٍ أَوْ تَسْرِيحٌۢ بِإِحْسَنٍۢ ۗ وَلَا يَحِلُّ لَكُمْ أَن تَأْخُذُوا۟ مِمَّآ ءَاتَيْتُمُوهُنَّ شَيْـًٔا إِلَّآ أَن يَخَافَآ أَلَّا يُقِيمَا حُدُودَ ٱللَّهِ ۖ فَإِنْ خِفْتُمْ أَلَّا يُقِيمَا حُدُودَ ٱللَّهِ فَلَا جُنَاحَ عَلَيْهِمَا فِيمَا ٱفْتَدَتْ بِهِۦ ۗ تِلْكَ حُدُودُ ٱللَّهِ فَلَا تَعْتَدُوهَا ۚ وَمَن يَتَعَدَّ حُدُودَ ٱللَّهِ فَأُو۟لَٓئِكَ هُمُ ٱلظَّلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(230,1,2,' فَإِن طَلَّقَهَا فَلَا تَحِلُّ لَهُۥ مِنۢ بَعْدُ حَتَّىٰ تَنكِحَ زَوْجًا غَيْرَهُۥ ۗ فَإِن طَلَّقَهَا فَلَا جُنَاحَ عَلَيْهِمَآ أَن يَتَرَاجَعَآ إِن ظَنَّآ أَن يُقِيمَا حُدُودَ ٱللَّهِ ۗ وَتِلْكَ حُدُودُ ٱللَّهِ يُبَيِّنُهَا لِقَوْمٍۢ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(231,1,2,' وَإِذَا طَلَّقْتُمُ ٱلنِّسَآءَ فَبَلَغْنَ أَجَلَهُنَّ فَأَمْسِكُوهُنَّ بِمَعْرُوفٍ أَوْ سَرِّحُوهُنَّ بِمَعْرُوفٍۢ ۚ وَلَا تُمْسِكُوهُنَّ ضِرَارًۭا لِّتَعْتَدُوا۟ ۚ وَمَن يَفْعَلْ ذَلِكَ فَقَدْ ظَلَمَ نَفْسَهُۥ ۚ وَلَا تَتَّخِذُوٓا۟ ءَايَتِ ٱللَّهِ هُزُوًۭا ۚ وَٱذْكُرُوا۟ نِعْمَتَ ٱللَّهِ عَلَيْكُمْ وَمَآ أَنزَلَ عَلَيْكُم مِّنَ ٱلْكِتَبِ وَٱلْحِكْمَةِ يَعِظُكُم بِهِۦ ۚ وَٱتَّقُوا۟ ٱللَّهَ وَٱعْلَمُوٓا۟ أَنَّ ٱللَّهَ بِكُلِّ شَىْءٍ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(232,1,2,' وَإِذَا طَلَّقْتُمُ ٱلنِّسَآءَ فَبَلَغْنَ أَجَلَهُنَّ فَلَا تَعْضُلُوهُنَّ أَن يَنكِحْنَ أَزْوَجَهُنَّ إِذَا تَرَضَوْا۟ بَيْنَهُم بِٱلْمَعْرُوفِ ۗ ذَلِكَ يُوعَظُ بِهِۦ مَن كَانَ مِنكُمْ يُؤْمِنُ بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ ۗ ذَلِكُمْ أَزْكَىٰ لَكُمْ وَأَطْهَرُ ۗ وَٱللَّهُ يَعْلَمُ وَأَنتُمْ لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(233,1,2,' وَٱلْوَلِدَتُ يُرْضِعْنَ أَوْلَدَهُنَّ حَوْلَيْنِ كَامِلَيْنِ ۖ لِمَنْ أَرَادَ أَن يُتِمَّ ٱلرَّضَاعَةَ ۚ وَعَلَى ٱلْمَوْلُودِ لَهُۥ رِزْقُهُنَّ وَكِسْوَتُهُنَّ بِٱلْمَعْرُوفِ ۚ لَا تُكَلَّفُ نَفْسٌ إِلَّا وُسْعَهَا ۚ لَا تُضَآرَّ وَلِدَةٌۢ بِوَلَدِهَا وَلَا مَوْلُودٌۭ لَّهُۥ بِوَلَدِهِۦ ۚ وَعَلَى ٱلْوَارِثِ مِثْلُ ذَلِكَ ۗ فَإِنْ أَرَادَا فِصَالًا عَن تَرَاضٍۢ مِّنْهُمَا وَتَشَاوُرٍۢ فَلَا جُنَاحَ عَلَيْهِمَا ۗ وَإِنْ أَرَدتُّمْ أَن تَسْتَرْضِعُوٓا۟ أَوْلَدَكُمْ فَلَا جُنَاحَ عَلَيْكُمْ إِذَا سَلَّمْتُم مَّآ ءَاتَيْتُم بِٱلْمَعْرُوفِ ۗ وَٱتَّقُوا۟ ٱللَّهَ وَٱعْلَمُوٓا۟ أَنَّ ٱللَّهَ بِمَا تَعْمَلُونَ بَصِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(234,1,2,' وَٱلَّذِينَ يُتَوَفَّوْنَ مِنكُمْ وَيَذَرُونَ أَزْوَجًۭا يَتَرَبَّصْنَ بِأَنفُسِهِنَّ أَرْبَعَةَ أَشْهُرٍۢ وَعَشْرًۭا ۖ فَإِذَا بَلَغْنَ أَجَلَهُنَّ فَلَا جُنَاحَ عَلَيْكُمْ فِيمَا فَعَلْنَ فِىٓ أَنفُسِهِنَّ بِٱلْمَعْرُوفِ ۗ وَٱللَّهُ بِمَا تَعْمَلُونَ خَبِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(235,1,2,' وَلَا جُنَاحَ عَلَيْكُمْ فِيمَا عَرَّضْتُم بِهِۦ مِنْ خِطْبَةِ ٱلنِّسَآءِ أَوْ أَكْنَنتُمْ فِىٓ أَنفُسِكُمْ ۚ عَلِمَ ٱللَّهُ أَنَّكُمْ سَتَذْكُرُونَهُنَّ وَلَكِن لَّا تُوَاعِدُوهُنَّ سِرًّا إِلَّآ أَن تَقُولُوا۟ قَوْلًۭا مَّعْرُوفًۭا ۚ وَلَا تَعْزِمُوا۟ عُقْدَةَ ٱلنِّكَاحِ حَتَّىٰ يَبْلُغَ ٱلْكِتَبُ أَجَلَهُۥ ۚ وَٱعْلَمُوٓا۟ أَنَّ ٱللَّهَ يَعْلَمُ مَا فِىٓ أَنفُسِكُمْ فَٱحْذَرُوهُ ۚ وَٱعْلَمُوٓا۟ أَنَّ ٱللَّهَ غَفُورٌ حَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(236,1,2,' لَّا جُنَاحَ عَلَيْكُمْ إِن طَلَّقْتُمُ ٱلنِّسَآءَ مَا لَمْ تَمَسُّوهُنَّ أَوْ تَفْرِضُوا۟ لَهُنَّ فَرِيضَةًۭ ۚ وَمَتِّعُوهُنَّ عَلَى ٱلْمُوسِعِ قَدَرُهُۥ وَعَلَى ٱلْمُقْتِرِ قَدَرُهُۥ مَتَعًۢا بِٱلْمَعْرُوفِ ۖ حَقًّا عَلَى ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(237,1,2,' وَإِن طَلَّقْتُمُوهُنَّ مِن قَبْلِ أَن تَمَسُّوهُنَّ وَقَدْ فَرَضْتُمْ لَهُنَّ فَرِيضَةًۭ فَنِصْفُ مَا فَرَضْتُمْ إِلَّآ أَن يَعْفُونَ أَوْ يَعْفُوَا۟ ٱلَّذِى بِيَدِهِۦ عُقْدَةُ ٱلنِّكَاحِ ۚ وَأَن تَعْفُوٓا۟ أَقْرَبُ لِلتَّقْوَىٰ ۚ وَلَا تَنسَوُا۟ ٱلْفَضْلَ بَيْنَكُمْ ۚ إِنَّ ٱللَّهَ بِمَا تَعْمَلُونَ بَصِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(238,1,2,' حَفِظُوا۟ عَلَى ٱلصَّلَوَتِ وَٱلصَّلَوٰةِ ٱلْوُسْطَىٰ وَقُومُوا۟ لِلَّهِ قَنِتِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(239,1,2,' فَإِنْ خِفْتُمْ فَرِجَالًا أَوْ رُكْبَانًۭا ۖ فَإِذَآ أَمِنتُمْ فَٱذْكُرُوا۟ ٱللَّهَ كَمَا عَلَّمَكُم مَّا لَمْ تَكُونُوا۟ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(240,1,2,' وَٱلَّذِينَ يُتَوَفَّوْنَ مِنكُمْ وَيَذَرُونَ أَزْوَجًۭا وَصِيَّةًۭ لِأَزْوَجِهِم مَّتَعًا إِلَى ٱلْحَوْلِ غَيْرَ إِخْرَاجٍۢ ۚ فَإِنْ خَرَجْنَ فَلَا جُنَاحَ عَلَيْكُمْ فِى مَا فَعَلْنَ فِىٓ أَنفُسِهِنَّ مِن مَّعْرُوفٍۢ ۗ وَٱللَّهُ عَزِيزٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(241,1,2,' وَلِلْمُطَلَّقَتِ مَتَعٌۢ بِٱلْمَعْرُوفِ ۖ حَقًّا عَلَى ٱلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(242,1,2,' كَذَلِكَ يُبَيِّنُ ٱللَّهُ لَكُمْ ءَايَتِهِۦ لَعَلَّكُمْ تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(243,1,2,' أَلَمْ تَرَ إِلَى ٱلَّذِينَ خَرَجُوا۟ مِن دِيَرِهِمْ وَهُمْ أُلُوفٌ حَذَرَ ٱلْمَوْتِ فَقَالَ لَهُمُ ٱللَّهُ مُوتُوا۟ ثُمَّ أَحْيَهُمْ ۚ إِنَّ ٱللَّهَ لَذُو فَضْلٍ عَلَى ٱلنَّاسِ وَلَكِنَّ أَكْثَرَ ٱلنَّاسِ لَا يَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(244,1,2,' وَقَتِلُوا۟ فِى سَبِيلِ ٱللَّهِ وَٱعْلَمُوٓا۟ أَنَّ ٱللَّهَ سَمِيعٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(245,1,2,' مَّن ذَا ٱلَّذِى يُقْرِضُ ٱللَّهَ قَرْضًا حَسَنًۭا فَيُضَعِفَهُۥ لَهُۥٓ أَضْعَافًۭا كَثِيرَةًۭ ۚ وَٱللَّهُ يَقْبِضُ وَيَبْصُۣطُ وَإِلَيْهِ تُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(246,1,2,' أَلَمْ تَرَ إِلَى ٱلْمَلَإِ مِنۢ بَنِىٓ إِسْرَٓءِيلَ مِنۢ بَعْدِ مُوسَىٰٓ إِذْ قَالُوا۟ لِنَبِىٍّۢ لَّهُمُ ٱبْعَثْ لَنَا مَلِكًۭا نُّقَتِلْ فِى سَبِيلِ ٱللَّهِ ۖ قَالَ هَلْ عَسَيْتُمْ إِن كُتِبَ عَلَيْكُمُ ٱلْقِتَالُ أَلَّا تُقَتِلُوا۟ ۖ قَالُوا۟ وَمَا لَنَآ أَلَّا نُقَتِلَ فِى سَبِيلِ ٱللَّهِ وَقَدْ أُخْرِجْنَا مِن دِيَرِنَا وَأَبْنَآئِنَا ۖ فَلَمَّا كُتِبَ عَلَيْهِمُ ٱلْقِتَالُ تَوَلَّوْا۟ إِلَّا قَلِيلًۭا مِّنْهُمْ ۗ وَٱللَّهُ عَلِيمٌۢ بِٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(247,1,2,' وَقَالَ لَهُمْ نَبِيُّهُمْ إِنَّ ٱللَّهَ قَدْ بَعَثَ لَكُمْ طَالُوتَ مَلِكًۭا ۚ قَالُوٓا۟ أَنَّىٰ يَكُونُ لَهُ ٱلْمُلْكُ عَلَيْنَا وَنَحْنُ أَحَقُّ بِٱلْمُلْكِ مِنْهُ وَلَمْ يُؤْتَ سَعَةًۭ مِّنَ ٱلْمَالِ ۚ قَالَ إِنَّ ٱللَّهَ ٱصْطَفَىٰهُ عَلَيْكُمْ وَزَادَهُۥ بَسْطَةًۭ فِى ٱلْعِلْمِ وَٱلْجِسْمِ ۖ وَٱللَّهُ يُؤْتِى مُلْكَهُۥ مَن يَشَآءُ ۚ وَٱللَّهُ وَسِعٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(248,1,2,' وَقَالَ لَهُمْ نَبِيُّهُمْ إِنَّ ءَايَةَ مُلْكِهِۦٓ أَن يَأْتِيَكُمُ ٱلتَّابُوتُ فِيهِ سَكِينَةٌۭ مِّن رَّبِّكُمْ وَبَقِيَّةٌۭ مِّمَّا تَرَكَ ءَالُ مُوسَىٰ وَءَالُ هَرُونَ تَحْمِلُهُ ٱلْمَلَٓئِكَةُ ۚ إِنَّ فِى ذَلِكَ لَءَايَةًۭ لَّكُمْ إِن كُنتُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(249,1,2,' فَلَمَّا فَصَلَ طَالُوتُ بِٱلْجُنُودِ قَالَ إِنَّ ٱللَّهَ مُبْتَلِيكُم بِنَهَرٍۢ فَمَن شَرِبَ مِنْهُ فَلَيْسَ مِنِّى وَمَن لَّمْ يَطْعَمْهُ فَإِنَّهُۥ مِنِّىٓ إِلَّا مَنِ ٱغْتَرَفَ غُرْفَةًۢ بِيَدِهِۦ ۚ فَشَرِبُوا۟ مِنْهُ إِلَّا قَلِيلًۭا مِّنْهُمْ ۚ فَلَمَّا جَاوَزَهُۥ هُوَ وَٱلَّذِينَ ءَامَنُوا۟ مَعَهُۥ قَالُوا۟ لَا طَاقَةَ لَنَا ٱلْيَوْمَ بِجَالُوتَ وَجُنُودِهِۦ ۚ قَالَ ٱلَّذِينَ يَظُنُّونَ أَنَّهُم مُّلَقُوا۟ ٱللَّهِ كَم مِّن فِئَةٍۢ قَلِيلَةٍ غَلَبَتْ فِئَةًۭ كَثِيرَةًۢ بِإِذْنِ ٱللَّهِ ۗ وَٱللَّهُ مَعَ ٱلصَّبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(250,1,2,' وَلَمَّا بَرَزُوا۟ لِجَالُوتَ وَجُنُودِهِۦ قَالُوا۟ رَبَّنَآ أَفْرِغْ عَلَيْنَا صَبْرًۭا وَثَبِّتْ أَقْدَامَنَا وَٱنصُرْنَا عَلَى ٱلْقَوْمِ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(251,1,2,' فَهَزَمُوهُم بِإِذْنِ ٱللَّهِ وَقَتَلَ دَاوُۥدُ جَالُوتَ وَءَاتَىٰهُ ٱللَّهُ ٱلْمُلْكَ وَٱلْحِكْمَةَ وَعَلَّمَهُۥ مِمَّا يَشَآءُ ۗ وَلَوْلَا دَفْعُ ٱللَّهِ ٱلنَّاسَ بَعْضَهُم بِبَعْضٍۢ لَّفَسَدَتِ ٱلْأَرْضُ وَلَكِنَّ ٱللَّهَ ذُو فَضْلٍ عَلَى ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(252,1,2,' تِلْكَ ءَايَتُ ٱللَّهِ نَتْلُوهَا عَلَيْكَ بِٱلْحَقِّ ۚ وَإِنَّكَ لَمِنَ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(253,1,2,' تِلْكَ ٱلرُّسُلُ فَضَّلْنَا بَعْضَهُمْ عَلَىٰ بَعْضٍۢ ۘ مِّنْهُم مَّن كَلَّمَ ٱللَّهُ ۖ وَرَفَعَ بَعْضَهُمْ دَرَجَتٍۢ ۚ وَءَاتَيْنَا عِيسَى ٱبْنَ مَرْيَمَ ٱلْبَيِّنَتِ وَأَيَّدْنَهُ بِرُوحِ ٱلْقُدُسِ ۗ وَلَوْ شَآءَ ٱللَّهُ مَا ٱقْتَتَلَ ٱلَّذِينَ مِنۢ بَعْدِهِم مِّنۢ بَعْدِ مَا جَآءَتْهُمُ ٱلْبَيِّنَتُ وَلَكِنِ ٱخْتَلَفُوا۟ فَمِنْهُم مَّنْ ءَامَنَ وَمِنْهُم مَّن كَفَرَ ۚ وَلَوْ شَآءَ ٱللَّهُ مَا ٱقْتَتَلُوا۟ وَلَكِنَّ ٱللَّهَ يَفْعَلُ مَا يُرِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(254,1,2,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ أَنفِقُوا۟ مِمَّا رَزَقْنَكُم مِّن قَبْلِ أَن يَأْتِىَ يَوْمٌۭ لَّا بَيْعٌۭ فِيهِ وَلَا خُلَّةٌۭ وَلَا شَفَعَةٌۭ ۗ وَٱلْكَفِرُونَ هُمُ ٱلظَّلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(255,1,2,' ٱللَّهُ لَآ إِلَهَ إِلَّا هُوَ ٱلْحَىُّ ٱلْقَيُّومُ ۚ لَا تَأْخُذُهُۥ سِنَةٌۭ وَلَا نَوْمٌۭ ۚ لَّهُۥ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۗ مَن ذَا ٱلَّذِى يَشْفَعُ عِندَهُۥٓ إِلَّا بِإِذْنِهِۦ ۚ يَعْلَمُ مَا بَيْنَ أَيْدِيهِمْ وَمَا خَلْفَهُمْ ۖ وَلَا يُحِيطُونَ بِشَىْءٍۢ مِّنْ عِلْمِهِۦٓ إِلَّا بِمَا شَآءَ ۚ وَسِعَ كُرْسِيُّهُ ٱلسَّمَوَتِ وَٱلْأَرْضَ ۖ وَلَا يَـُٔودُهُۥ حِفْظُهُمَا ۚ وَهُوَ ٱلْعَلِىُّ ٱلْعَظِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(256,1,2,' لَآ إِكْرَاهَ فِى ٱلدِّينِ ۖ قَد تَّبَيَّنَ ٱلرُّشْدُ مِنَ ٱلْغَىِّ ۚ فَمَن يَكْفُرْ بِٱلطَّغُوتِ وَيُؤْمِنۢ بِٱللَّهِ فَقَدِ ٱسْتَمْسَكَ بِٱلْعُرْوَةِ ٱلْوُثْقَىٰ لَا ٱنفِصَامَ لَهَا ۗ وَٱللَّهُ سَمِيعٌ عَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(257,1,2,' ٱللَّهُ وَلِىُّ ٱلَّذِينَ ءَامَنُوا۟ يُخْرِجُهُم مِّنَ ٱلظُّلُمَتِ إِلَى ٱلنُّورِ ۖ وَٱلَّذِينَ كَفَرُوٓا۟ أَوْلِيَآؤُهُمُ ٱلطَّغُوتُ يُخْرِجُونَهُم مِّنَ ٱلنُّورِ إِلَى ٱلظُّلُمَتِ ۗ أُو۟لَٓئِكَ أَصْحَبُ ٱلنَّارِ ۖ هُمْ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(258,1,2,' أَلَمْ تَرَ إِلَى ٱلَّذِى حَآجَّ إِبْرَهِۦمَ فِى رَبِّهِۦٓ أَنْ ءَاتَىٰهُ ٱللَّهُ ٱلْمُلْكَ إِذْ قَالَ إِبْرَهِۦمُ رَبِّىَ ٱلَّذِى يُحْىِۦ وَيُمِيتُ قَالَ أَنَا۠ أُحْىِۦ وَأُمِيتُ ۖ قَالَ إِبْرَهِۦمُ فَإِنَّ ٱللَّهَ يَأْتِى بِٱلشَّمْسِ مِنَ ٱلْمَشْرِقِ فَأْتِ بِهَا مِنَ ٱلْمَغْرِبِ فَبُهِتَ ٱلَّذِى كَفَرَ ۗ وَٱللَّهُ لَا يَهْدِى ٱلْقَوْمَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(259,1,2,' أَوْ كَٱلَّذِى مَرَّ عَلَىٰ قَرْيَةٍۢ وَهِىَ خَاوِيَةٌ عَلَىٰ عُرُوشِهَا قَالَ أَنَّىٰ يُحْىِۦ هَذِهِ ٱللَّهُ بَعْدَ مَوْتِهَا ۖ فَأَمَاتَهُ ٱللَّهُ مِا۟ئَةَ عَامٍۢ ثُمَّ بَعَثَهُۥ ۖ قَالَ كَمْ لَبِثْتَ ۖ قَالَ لَبِثْتُ يَوْمًا أَوْ بَعْضَ يَوْمٍۢ ۖ قَالَ بَل لَّبِثْتَ مِا۟ئَةَ عَامٍۢ فَٱنظُرْ إِلَىٰ طَعَامِكَ وَشَرَابِكَ لَمْ يَتَسَنَّهْ ۖ وَٱنظُرْ إِلَىٰ حِمَارِكَ وَلِنَجْعَلَكَ ءَايَةًۭ لِّلنَّاسِ ۖ وَٱنظُرْ إِلَى ٱلْعِظَامِ كَيْفَ نُنشِزُهَا ثُمَّ نَكْسُوهَا لَحْمًۭا ۚ فَلَمَّا تَبَيَّنَ لَهُۥ قَالَ أَعْلَمُ أَنَّ ٱللَّهَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(260,1,2,' وَإِذْ قَالَ إِبْرَهِۦمُ رَبِّ أَرِنِى كَيْفَ تُحْىِ ٱلْمَوْتَىٰ ۖ قَالَ أَوَلَمْ تُؤْمِن ۖ قَالَ بَلَىٰ وَلَكِن لِّيَطْمَئِنَّ قَلْبِى ۖ قَالَ فَخُذْ أَرْبَعَةًۭ مِّنَ ٱلطَّيْرِ فَصُرْهُنَّ إِلَيْكَ ثُمَّ ٱجْعَلْ عَلَىٰ كُلِّ جَبَلٍۢ مِّنْهُنَّ جُزْءًۭا ثُمَّ ٱدْعُهُنَّ يَأْتِينَكَ سَعْيًۭا ۚ وَٱعْلَمْ أَنَّ ٱللَّهَ عَزِيزٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(261,1,2,' مَّثَلُ ٱلَّذِينَ يُنفِقُونَ أَمْوَلَهُمْ فِى سَبِيلِ ٱللَّهِ كَمَثَلِ حَبَّةٍ أَنۢبَتَتْ سَبْعَ سَنَابِلَ فِى كُلِّ سُنۢبُلَةٍۢ مِّا۟ئَةُ حَبَّةٍۢ ۗ وَٱللَّهُ يُضَعِفُ لِمَن يَشَآءُ ۗ وَٱللَّهُ وَسِعٌ عَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(262,1,2,' ٱلَّذِينَ يُنفِقُونَ أَمْوَلَهُمْ فِى سَبِيلِ ٱللَّهِ ثُمَّ لَا يُتْبِعُونَ مَآ أَنفَقُوا۟ مَنًّۭا وَلَآ أَذًۭى ۙ لَّهُمْ أَجْرُهُمْ عِندَ رَبِّهِمْ وَلَا خَوْفٌ عَلَيْهِمْ وَلَا هُمْ يَحْزَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(263,1,2,' قَوْلٌۭ مَّعْرُوفٌۭ وَمَغْفِرَةٌ خَيْرٌۭ مِّن صَدَقَةٍۢ يَتْبَعُهَآ أَذًۭى ۗ وَٱللَّهُ غَنِىٌّ حَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(264,1,2,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تُبْطِلُوا۟ صَدَقَتِكُم بِٱلْمَنِّ وَٱلْأَذَىٰ كَٱلَّذِى يُنفِقُ مَالَهُۥ رِئَآءَ ٱلنَّاسِ وَلَا يُؤْمِنُ بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ ۖ فَمَثَلُهُۥ كَمَثَلِ صَفْوَانٍ عَلَيْهِ تُرَابٌۭ فَأَصَابَهُۥ وَابِلٌۭ فَتَرَكَهُۥ صَلْدًۭا ۖ لَّا يَقْدِرُونَ عَلَىٰ شَىْءٍۢ مِّمَّا كَسَبُوا۟ ۗ وَٱللَّهُ لَا يَهْدِى ٱلْقَوْمَ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(265,1,2,' وَمَثَلُ ٱلَّذِينَ يُنفِقُونَ أَمْوَلَهُمُ ٱبْتِغَآءَ مَرْضَاتِ ٱللَّهِ وَتَثْبِيتًۭا مِّنْ أَنفُسِهِمْ كَمَثَلِ جَنَّةٍۭ بِرَبْوَةٍ أَصَابَهَا وَابِلٌۭ فَـَٔاتَتْ أُكُلَهَا ضِعْفَيْنِ فَإِن لَّمْ يُصِبْهَا وَابِلٌۭ فَطَلٌّۭ ۗ وَٱللَّهُ بِمَا تَعْمَلُونَ بَصِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(266,1,2,' أَيَوَدُّ أَحَدُكُمْ أَن تَكُونَ لَهُۥ جَنَّةٌۭ مِّن نَّخِيلٍۢ وَأَعْنَابٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ لَهُۥ فِيهَا مِن كُلِّ ٱلثَّمَرَتِ وَأَصَابَهُ ٱلْكِبَرُ وَلَهُۥ ذُرِّيَّةٌۭ ضُعَفَآءُ فَأَصَابَهَآ إِعْصَارٌۭ فِيهِ نَارٌۭ فَٱحْتَرَقَتْ ۗ كَذَلِكَ يُبَيِّنُ ٱللَّهُ لَكُمُ ٱلْءَايَتِ لَعَلَّكُمْ تَتَفَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(267,1,2,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ أَنفِقُوا۟ مِن طَيِّبَتِ مَا كَسَبْتُمْ وَمِمَّآ أَخْرَجْنَا لَكُم مِّنَ ٱلْأَرْضِ ۖ وَلَا تَيَمَّمُوا۟ ٱلْخَبِيثَ مِنْهُ تُنفِقُونَ وَلَسْتُم بِـَٔاخِذِيهِ إِلَّآ أَن تُغْمِضُوا۟ فِيهِ ۚ وَٱعْلَمُوٓا۟ أَنَّ ٱللَّهَ غَنِىٌّ حَمِيدٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(268,1,2,' ٱلشَّيْطَنُ يَعِدُكُمُ ٱلْفَقْرَ وَيَأْمُرُكُم بِٱلْفَحْشَآءِ ۖ وَٱللَّهُ يَعِدُكُم مَّغْفِرَةًۭ مِّنْهُ وَفَضْلًۭا ۗ وَٱللَّهُ وَسِعٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(269,1,2,' يُؤْتِى ٱلْحِكْمَةَ مَن يَشَآءُ ۚ وَمَن يُؤْتَ ٱلْحِكْمَةَ فَقَدْ أُوتِىَ خَيْرًۭا كَثِيرًۭا ۗ وَمَا يَذَّكَّرُ إِلَّآ أُو۟لُوا۟ ٱلْأَلْبَبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(270,1,2,' وَمَآ أَنفَقْتُم مِّن نَّفَقَةٍ أَوْ نَذَرْتُم مِّن نَّذْرٍۢ فَإِنَّ ٱللَّهَ يَعْلَمُهُۥ ۗ وَمَا لِلظَّلِمِينَ مِنْ أَنصَارٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(271,1,2,' إِن تُبْدُوا۟ ٱلصَّدَقَتِ فَنِعِمَّا هِىَ ۖ وَإِن تُخْفُوهَا وَتُؤْتُوهَا ٱلْفُقَرَآءَ فَهُوَ خَيْرٌۭ لَّكُمْ ۚ وَيُكَفِّرُ عَنكُم مِّن سَيِّـَٔاتِكُمْ ۗ وَٱللَّهُ بِمَا تَعْمَلُونَ خَبِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(272,1,2,' لَّيْسَ عَلَيْكَ هُدَىٰهُمْ وَلَكِنَّ ٱللَّهَ يَهْدِى مَن يَشَآءُ ۗ وَمَا تُنفِقُوا۟ مِنْ خَيْرٍۢ فَلِأَنفُسِكُمْ ۚ وَمَا تُنفِقُونَ إِلَّا ٱبْتِغَآءَ وَجْهِ ٱللَّهِ ۚ وَمَا تُنفِقُوا۟ مِنْ خَيْرٍۢ يُوَفَّ إِلَيْكُمْ وَأَنتُمْ لَا تُظْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(273,1,2,' لِلْفُقَرَآءِ ٱلَّذِينَ أُحْصِرُوا۟ فِى سَبِيلِ ٱللَّهِ لَا يَسْتَطِيعُونَ ضَرْبًۭا فِى ٱلْأَرْضِ يَحْسَبُهُمُ ٱلْجَاهِلُ أَغْنِيَآءَ مِنَ ٱلتَّعَفُّفِ تَعْرِفُهُم بِسِيمَهُمْ لَا يَسْـَٔلُونَ ٱلنَّاسَ إِلْحَافًۭا ۗ وَمَا تُنفِقُوا۟ مِنْ خَيْرٍۢ فَإِنَّ ٱللَّهَ بِهِۦ عَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(274,1,2,' ٱلَّذِينَ يُنفِقُونَ أَمْوَلَهُم بِٱلَّيْلِ وَٱلنَّهَارِ سِرًّۭا وَعَلَانِيَةًۭ فَلَهُمْ أَجْرُهُمْ عِندَ رَبِّهِمْ وَلَا خَوْفٌ عَلَيْهِمْ وَلَا هُمْ يَحْزَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(275,1,2,' ٱلَّذِينَ يَأْكُلُونَ ٱلرِّبَوٰا۟ لَا يَقُومُونَ إِلَّا كَمَا يَقُومُ ٱلَّذِى يَتَخَبَّطُهُ ٱلشَّيْطَنُ مِنَ ٱلْمَسِّ ۚ ذَلِكَ بِأَنَّهُمْ قَالُوٓا۟ إِنَّمَا ٱلْبَيْعُ مِثْلُ ٱلرِّبَوٰا۟ ۗ وَأَحَلَّ ٱللَّهُ ٱلْبَيْعَ وَحَرَّمَ ٱلرِّبَوٰا۟ ۚ فَمَن جَآءَهُۥ مَوْعِظَةٌۭ مِّن رَّبِّهِۦ فَٱنتَهَىٰ فَلَهُۥ مَا سَلَفَ وَأَمْرُهُۥٓ إِلَى ٱللَّهِ ۖ وَمَنْ عَادَ فَأُو۟لَٓئِكَ أَصْحَبُ ٱلنَّارِ ۖ هُمْ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(276,1,2,' يَمْحَقُ ٱللَّهُ ٱلرِّبَوٰا۟ وَيُرْبِى ٱلصَّدَقَتِ ۗ وَٱللَّهُ لَا يُحِبُّ كُلَّ كَفَّارٍ أَثِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(277,1,2,' إِنَّ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ وَأَقَامُوا۟ ٱلصَّلَوٰةَ وَءَاتَوُا۟ ٱلزَّكَوٰةَ لَهُمْ أَجْرُهُمْ عِندَ رَبِّهِمْ وَلَا خَوْفٌ عَلَيْهِمْ وَلَا هُمْ يَحْزَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(278,1,2,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ ٱتَّقُوا۟ ٱللَّهَ وَذَرُوا۟ مَا بَقِىَ مِنَ ٱلرِّبَوٰٓا۟ إِن كُنتُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(279,1,2,' فَإِن لَّمْ تَفْعَلُوا۟ فَأْذَنُوا۟ بِحَرْبٍۢ مِّنَ ٱللَّهِ وَرَسُولِهِۦ ۖ وَإِن تُبْتُمْ فَلَكُمْ رُءُوسُ أَمْوَلِكُمْ لَا تَظْلِمُونَ وَلَا تُظْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(280,1,2,' وَإِن كَانَ ذُو عُسْرَةٍۢ فَنَظِرَةٌ إِلَىٰ مَيْسَرَةٍۢ ۚ وَأَن تَصَدَّقُوا۟ خَيْرٌۭ لَّكُمْ ۖ إِن كُنتُمْ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(281,1,2,' وَٱتَّقُوا۟ يَوْمًۭا تُرْجَعُونَ فِيهِ إِلَى ٱللَّهِ ۖ ثُمَّ تُوَفَّىٰ كُلُّ نَفْسٍۢ مَّا كَسَبَتْ وَهُمْ لَا يُظْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(282,1,2,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِذَا تَدَايَنتُم بِدَيْنٍ إِلَىٰٓ أَجَلٍۢ مُّسَمًّۭى فَٱكْتُبُوهُ ۚ وَلْيَكْتُب بَّيْنَكُمْ كَاتِبٌۢ بِٱلْعَدْلِ ۚ وَلَا يَأْبَ كَاتِبٌ أَن يَكْتُبَ كَمَا عَلَّمَهُ ٱللَّهُ ۚ فَلْيَكْتُبْ وَلْيُمْلِلِ ٱلَّذِى عَلَيْهِ ٱلْحَقُّ وَلْيَتَّقِ ٱللَّهَ رَبَّهُۥ وَلَا يَبْخَسْ مِنْهُ شَيْـًۭٔا ۚ فَإِن كَانَ ٱلَّذِى عَلَيْهِ ٱلْحَقُّ سَفِيهًا أَوْ ضَعِيفًا أَوْ لَا يَسْتَطِيعُ أَن يُمِلَّ هُوَ فَلْيُمْلِلْ وَلِيُّهُۥ بِٱلْعَدْلِ ۚ وَٱسْتَشْهِدُوا۟ شَهِيدَيْنِ مِن رِّجَالِكُمْ ۖ فَإِن لَّمْ يَكُونَا رَجُلَيْنِ فَرَجُلٌۭ وَٱمْرَأَتَانِ مِمَّن تَرْضَوْنَ مِنَ ٱلشُّهَدَآءِ أَن تَضِلَّ إِحْدَىٰهُمَا فَتُذَكِّرَ إِحْدَىٰهُمَا ٱلْأُخْرَىٰ ۚ وَلَا يَأْبَ ٱلشُّهَدَآءُ إِذَا مَا دُعُوا۟ ۚ وَلَا تَسْـَٔمُوٓا۟ أَن تَكْتُبُوهُ صَغِيرًا أَوْ كَبِيرًا إِلَىٰٓ أَجَلِهِۦ ۚ ذَلِكُمْ أَقْسَطُ عِندَ ٱللَّهِ وَأَقْوَمُ لِلشَّهَدَةِ وَأَدْنَىٰٓ أَلَّا تَرْتَابُوٓا۟ ۖ إِلَّآ أَن تَكُونَ تِجَرَةً حَاضِرَةًۭ تُدِيرُونَهَا بَيْنَكُمْ فَلَيْسَ عَلَيْكُمْ جُنَاحٌ أَلَّا تَكْتُبُوهَا ۗ وَأَشْهِدُوٓا۟ إِذَا تَبَايَعْتُمْ ۚ وَلَا يُضَآرَّ كَاتِبٌۭ وَلَا شَهِيدٌۭ ۚ وَإِن تَفْعَلُوا۟ فَإِنَّهُۥ فُسُوقٌۢ بِكُمْ ۗ وَٱتَّقُوا۟ ٱللَّهَ ۖ وَيُعَلِّمُكُمُ ٱللَّهُ ۗ وَٱللَّهُ بِكُلِّ شَىْءٍ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(283,1,2,' وَإِن كُنتُمْ عَلَىٰ سَفَرٍۢ وَلَمْ تَجِدُوا۟ كَاتِبًۭا فَرِهَنٌۭ مَّقْبُوضَةٌۭ ۖ فَإِنْ أَمِنَ بَعْضُكُم بَعْضًۭا فَلْيُؤَدِّ ٱلَّذِى ٱؤْتُمِنَ أَمَنَتَهُۥ وَلْيَتَّقِ ٱللَّهَ رَبَّهُۥ ۗ وَلَا تَكْتُمُوا۟ ٱلشَّهَدَةَ ۚ وَمَن يَكْتُمْهَا فَإِنَّهُۥٓ ءَاثِمٌۭ قَلْبُهُۥ ۗ وَٱللَّهُ بِمَا تَعْمَلُونَ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(284,1,2,' لِّلَّهِ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۗ وَإِن تُبْدُوا۟ مَا فِىٓ أَنفُسِكُمْ أَوْ تُخْفُوهُ يُحَاسِبْكُم بِهِ ٱللَّهُ ۖ فَيَغْفِرُ لِمَن يَشَآءُ وَيُعَذِّبُ مَن يَشَآءُ ۗ وَٱللَّهُ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(285,1,2,' ءَامَنَ ٱلرَّسُولُ بِمَآ أُنزِلَ إِلَيْهِ مِن رَّبِّهِۦ وَٱلْمُؤْمِنُونَ ۚ كُلٌّ ءَامَنَ بِٱللَّهِ وَمَلَٓئِكَتِهِۦ وَكُتُبِهِۦ وَرُسُلِهِۦ لَا نُفَرِّقُ بَيْنَ أَحَدٍۢ مِّن رُّسُلِهِۦ ۚ وَقَالُوا۟ سَمِعْنَا وَأَطَعْنَا ۖ غُفْرَانَكَ رَبَّنَا وَإِلَيْكَ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(286,1,2,' لَا يُكَلِّفُ ٱللَّهُ نَفْسًا إِلَّا وُسْعَهَا ۚ لَهَا مَا كَسَبَتْ وَعَلَيْهَا مَا ٱكْتَسَبَتْ ۗ رَبَّنَا لَا تُؤَاخِذْنَآ إِن نَّسِينَآ أَوْ أَخْطَأْنَا ۚ رَبَّنَا وَلَا تَحْمِلْ عَلَيْنَآ إِصْرًۭا كَمَا حَمَلْتَهُۥ عَلَى ٱلَّذِينَ مِن قَبْلِنَا ۚ رَبَّنَا وَلَا تُحَمِّلْنَا مَا لَا طَاقَةَ لَنَا بِهِۦ ۖ وَٱعْفُ عَنَّا وَٱغْفِرْ لَنَا وَٱرْحَمْنَآ ۚ أَنتَ مَوْلَىٰنَا فَٱنصُرْنَا عَلَى ٱلْقَوْمِ ٱلْكَفِرِينَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(3,3,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,3,' الٓمٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,3,' ٱللَّهُ لَآ إِلَهَ إِلَّا هُوَ ٱلْحَىُّ ٱلْقَيُّومُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,3,' نَزَّلَ عَلَيْكَ ٱلْكِتَبَ بِٱلْحَقِّ مُصَدِّقًۭا لِّمَا بَيْنَ يَدَيْهِ وَأَنزَلَ ٱلتَّوْرَىٰةَ وَٱلْإِنجِيلَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,3,' مِن قَبْلُ هُدًۭى لِّلنَّاسِ وَأَنزَلَ ٱلْفُرْقَانَ ۗ إِنَّ ٱلَّذِينَ كَفَرُوا۟ بِـَٔايَتِ ٱللَّهِ لَهُمْ عَذَابٌۭ شَدِيدٌۭ ۗ وَٱللَّهُ عَزِيزٌۭ ذُو ٱنتِقَامٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,3,' إِنَّ ٱللَّهَ لَا يَخْفَىٰ عَلَيْهِ شَىْءٌۭ فِى ٱلْأَرْضِ وَلَا فِى ٱلسَّمَآءِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,3,' هُوَ ٱلَّذِى يُصَوِّرُكُمْ فِى ٱلْأَرْحَامِ كَيْفَ يَشَآءُ ۚ لَآ إِلَهَ إِلَّا هُوَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,3,' هُوَ ٱلَّذِىٓ أَنزَلَ عَلَيْكَ ٱلْكِتَبَ مِنْهُ ءَايَتٌۭ مُّحْكَمَتٌ هُنَّ أُمُّ ٱلْكِتَبِ وَأُخَرُ مُتَشَبِهَتٌۭ ۖ فَأَمَّا ٱلَّذِينَ فِى قُلُوبِهِمْ زَيْغٌۭ فَيَتَّبِعُونَ مَا تَشَبَهَ مِنْهُ ٱبْتِغَآءَ ٱلْفِتْنَةِ وَٱبْتِغَآءَ تَأْوِيلِهِۦ ۗ وَمَا يَعْلَمُ تَأْوِيلَهُۥٓ إِلَّا ٱللَّهُ ۗ وَٱلرَّسِخُونَ فِى ٱلْعِلْمِ يَقُولُونَ ءَامَنَّا بِهِۦ كُلٌّۭ مِّنْ عِندِ رَبِّنَا ۗ وَمَا يَذَّكَّرُ إِلَّآ أُو۟لُوا۟ ٱلْأَلْبَبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,3,' رَبَّنَا لَا تُزِغْ قُلُوبَنَا بَعْدَ إِذْ هَدَيْتَنَا وَهَبْ لَنَا مِن لَّدُنكَ رَحْمَةً ۚ إِنَّكَ أَنتَ ٱلْوَهَّابُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,3,' رَبَّنَآ إِنَّكَ جَامِعُ ٱلنَّاسِ لِيَوْمٍۢ لَّا رَيْبَ فِيهِ ۚ إِنَّ ٱللَّهَ لَا يُخْلِفُ ٱلْمِيعَادَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,3,' إِنَّ ٱلَّذِينَ كَفَرُوا۟ لَن تُغْنِىَ عَنْهُمْ أَمْوَلُهُمْ وَلَآ أَوْلَدُهُم مِّنَ ٱللَّهِ شَيْـًۭٔا ۖ وَأُو۟لَٓئِكَ هُمْ وَقُودُ ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,3,' كَدَأْبِ ءَالِ فِرْعَوْنَ وَٱلَّذِينَ مِن قَبْلِهِمْ ۚ كَذَّبُوا۟ بِـَٔايَتِنَا فَأَخَذَهُمُ ٱللَّهُ بِذُنُوبِهِمْ ۗ وَٱللَّهُ شَدِيدُ ٱلْعِقَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,3,' قُل لِّلَّذِينَ كَفَرُوا۟ سَتُغْلَبُونَ وَتُحْشَرُونَ إِلَىٰ جَهَنَّمَ ۚ وَبِئْسَ ٱلْمِهَادُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,3,' قَدْ كَانَ لَكُمْ ءَايَةٌۭ فِى فِئَتَيْنِ ٱلْتَقَتَا ۖ فِئَةٌۭ تُقَتِلُ فِى سَبِيلِ ٱللَّهِ وَأُخْرَىٰ كَافِرَةٌۭ يَرَوْنَهُم مِّثْلَيْهِمْ رَأْىَ ٱلْعَيْنِ ۚ وَٱللَّهُ يُؤَيِّدُ بِنَصْرِهِۦ مَن يَشَآءُ ۗ إِنَّ فِى ذَلِكَ لَعِبْرَةًۭ لِّأُو۟لِى ٱلْأَبْصَرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,3,' زُيِّنَ لِلنَّاسِ حُبُّ ٱلشَّهَوَتِ مِنَ ٱلنِّسَآءِ وَٱلْبَنِينَ وَٱلْقَنَطِيرِ ٱلْمُقَنطَرَةِ مِنَ ٱلذَّهَبِ وَٱلْفِضَّةِ وَٱلْخَيْلِ ٱلْمُسَوَّمَةِ وَٱلْأَنْعَمِ وَٱلْحَرْثِ ۗ ذَلِكَ مَتَعُ ٱلْحَيَوٰةِ ٱلدُّنْيَا ۖ وَٱللَّهُ عِندَهُۥ حُسْنُ ٱلْمَـَٔابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,3,' قُلْ أَؤُنَبِّئُكُم بِخَيْرٍۢ مِّن ذَلِكُمْ ۚ لِلَّذِينَ ٱتَّقَوْا۟ عِندَ رَبِّهِمْ جَنَّتٌۭ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَا وَأَزْوَجٌۭ مُّطَهَّرَةٌۭ وَرِضْوَنٌۭ مِّنَ ٱللَّهِ ۗ وَٱللَّهُ بَصِيرٌۢ بِٱلْعِبَادِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,3,' ٱلَّذِينَ يَقُولُونَ رَبَّنَآ إِنَّنَآ ءَامَنَّا فَٱغْفِرْ لَنَا ذُنُوبَنَا وَقِنَا عَذَابَ ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,3,' ٱلصَّبِرِينَ وَٱلصَّدِقِينَ وَٱلْقَنِتِينَ وَٱلْمُنفِقِينَ وَٱلْمُسْتَغْفِرِينَ بِٱلْأَسْحَارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,3,' شَهِدَ ٱللَّهُ أَنَّهُۥ لَآ إِلَهَ إِلَّا هُوَ وَٱلْمَلَٓئِكَةُ وَأُو۟لُوا۟ ٱلْعِلْمِ قَآئِمًۢا بِٱلْقِسْطِ ۚ لَآ إِلَهَ إِلَّا هُوَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,3,' إِنَّ ٱلدِّينَ عِندَ ٱللَّهِ ٱلْإِسْلَمُ ۗ وَمَا ٱخْتَلَفَ ٱلَّذِينَ أُوتُوا۟ ٱلْكِتَبَ إِلَّا مِنۢ بَعْدِ مَا جَآءَهُمُ ٱلْعِلْمُ بَغْيًۢا بَيْنَهُمْ ۗ وَمَن يَكْفُرْ بِـَٔايَتِ ٱللَّهِ فَإِنَّ ٱللَّهَ سَرِيعُ ٱلْحِسَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,3,' فَإِنْ حَآجُّوكَ فَقُلْ أَسْلَمْتُ وَجْهِىَ لِلَّهِ وَمَنِ ٱتَّبَعَنِ ۗ وَقُل لِّلَّذِينَ أُوتُوا۟ ٱلْكِتَبَ وَٱلْأُمِّيِّۦنَ ءَأَسْلَمْتُمْ ۚ فَإِنْ أَسْلَمُوا۟ فَقَدِ ٱهْتَدَوا۟ ۖ وَّإِن تَوَلَّوْا۟ فَإِنَّمَا عَلَيْكَ ٱلْبَلَغُ ۗ وَٱللَّهُ بَصِيرٌۢ بِٱلْعِبَادِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,3,' إِنَّ ٱلَّذِينَ يَكْفُرُونَ بِـَٔايَتِ ٱللَّهِ وَيَقْتُلُونَ ٱلنَّبِيِّۦنَ بِغَيْرِ حَقٍّۢ وَيَقْتُلُونَ ٱلَّذِينَ يَأْمُرُونَ بِٱلْقِسْطِ مِنَ ٱلنَّاسِ فَبَشِّرْهُم بِعَذَابٍ أَلِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,3,' أُو۟لَٓئِكَ ٱلَّذِينَ حَبِطَتْ أَعْمَلُهُمْ فِى ٱلدُّنْيَا وَٱلْءَاخِرَةِ وَمَا لَهُم مِّن نَّصِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,3,' أَلَمْ تَرَ إِلَى ٱلَّذِينَ أُوتُوا۟ نَصِيبًۭا مِّنَ ٱلْكِتَبِ يُدْعَوْنَ إِلَىٰ كِتَبِ ٱللَّهِ لِيَحْكُمَ بَيْنَهُمْ ثُمَّ يَتَوَلَّىٰ فَرِيقٌۭ مِّنْهُمْ وَهُم مُّعْرِضُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,3,' ذَلِكَ بِأَنَّهُمْ قَالُوا۟ لَن تَمَسَّنَا ٱلنَّارُ إِلَّآ أَيَّامًۭا مَّعْدُودَتٍۢ ۖ وَغَرَّهُمْ فِى دِينِهِم مَّا كَانُوا۟ يَفْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,3,' فَكَيْفَ إِذَا جَمَعْنَهُمْ لِيَوْمٍۢ لَّا رَيْبَ فِيهِ وَوُفِّيَتْ كُلُّ نَفْسٍۢ مَّا كَسَبَتْ وَهُمْ لَا يُظْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,3,' قُلِ ٱللَّهُمَّ مَلِكَ ٱلْمُلْكِ تُؤْتِى ٱلْمُلْكَ مَن تَشَآءُ وَتَنزِعُ ٱلْمُلْكَ مِمَّن تَشَآءُ وَتُعِزُّ مَن تَشَآءُ وَتُذِلُّ مَن تَشَآءُ ۖ بِيَدِكَ ٱلْخَيْرُ ۖ إِنَّكَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,3,' تُولِجُ ٱلَّيْلَ فِى ٱلنَّهَارِ وَتُولِجُ ٱلنَّهَارَ فِى ٱلَّيْلِ ۖ وَتُخْرِجُ ٱلْحَىَّ مِنَ ٱلْمَيِّتِ وَتُخْرِجُ ٱلْمَيِّتَ مِنَ ٱلْحَىِّ ۖ وَتَرْزُقُ مَن تَشَآءُ بِغَيْرِ حِسَابٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,3,' لَّا يَتَّخِذِ ٱلْمُؤْمِنُونَ ٱلْكَفِرِينَ أَوْلِيَآءَ مِن دُونِ ٱلْمُؤْمِنِينَ ۖ وَمَن يَفْعَلْ ذَلِكَ فَلَيْسَ مِنَ ٱللَّهِ فِى شَىْءٍ إِلَّآ أَن تَتَّقُوا۟ مِنْهُمْ تُقَىٰةًۭ ۗ وَيُحَذِّرُكُمُ ٱللَّهُ نَفْسَهُۥ ۗ وَإِلَى ٱللَّهِ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,3,' قُلْ إِن تُخْفُوا۟ مَا فِى صُدُورِكُمْ أَوْ تُبْدُوهُ يَعْلَمْهُ ٱللَّهُ ۗ وَيَعْلَمُ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۗ وَٱللَّهُ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,3,' يَوْمَ تَجِدُ كُلُّ نَفْسٍۢ مَّا عَمِلَتْ مِنْ خَيْرٍۢ مُّحْضَرًۭا وَمَا عَمِلَتْ مِن سُوٓءٍۢ تَوَدُّ لَوْ أَنَّ بَيْنَهَا وَبَيْنَهُۥٓ أَمَدًۢا بَعِيدًۭا ۗ وَيُحَذِّرُكُمُ ٱللَّهُ نَفْسَهُۥ ۗ وَٱللَّهُ رَءُوفٌۢ بِٱلْعِبَادِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,3,' قُلْ إِن كُنتُمْ تُحِبُّونَ ٱللَّهَ فَٱتَّبِعُونِى يُحْبِبْكُمُ ٱللَّهُ وَيَغْفِرْ لَكُمْ ذُنُوبَكُمْ ۗ وَٱللَّهُ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,3,' قُلْ أَطِيعُوا۟ ٱللَّهَ وَٱلرَّسُولَ ۖ فَإِن تَوَلَّوْا۟ فَإِنَّ ٱللَّهَ لَا يُحِبُّ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,3,' إِنَّ ٱللَّهَ ٱصْطَفَىٰٓ ءَادَمَ وَنُوحًۭا وَءَالَ إِبْرَهِيمَ وَءَالَ عِمْرَنَ عَلَى ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,3,' ذُرِّيَّةًۢ بَعْضُهَا مِنۢ بَعْضٍۢ ۗ وَٱللَّهُ سَمِيعٌ عَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,3,' إِذْ قَالَتِ ٱمْرَأَتُ عِمْرَنَ رَبِّ إِنِّى نَذَرْتُ لَكَ مَا فِى بَطْنِى مُحَرَّرًۭا فَتَقَبَّلْ مِنِّىٓ ۖ إِنَّكَ أَنتَ ٱلسَّمِيعُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,3,' فَلَمَّا وَضَعَتْهَا قَالَتْ رَبِّ إِنِّى وَضَعْتُهَآ أُنثَىٰ وَٱللَّهُ أَعْلَمُ بِمَا وَضَعَتْ وَلَيْسَ ٱلذَّكَرُ كَٱلْأُنثَىٰ ۖ وَإِنِّى سَمَّيْتُهَا مَرْيَمَ وَإِنِّىٓ أُعِيذُهَا بِكَ وَذُرِّيَّتَهَا مِنَ ٱلشَّيْطَنِ ٱلرَّجِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,3,' فَتَقَبَّلَهَا رَبُّهَا بِقَبُولٍ حَسَنٍۢ وَأَنۢبَتَهَا نَبَاتًا حَسَنًۭا وَكَفَّلَهَا زَكَرِيَّا ۖ كُلَّمَا دَخَلَ عَلَيْهَا زَكَرِيَّا ٱلْمِحْرَابَ وَجَدَ عِندَهَا رِزْقًۭا ۖ قَالَ يَمَرْيَمُ أَنَّىٰ لَكِ هَذَا ۖ قَالَتْ هُوَ مِنْ عِندِ ٱللَّهِ ۖ إِنَّ ٱللَّهَ يَرْزُقُ مَن يَشَآءُ بِغَيْرِ حِسَابٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,3,' هُنَالِكَ دَعَا زَكَرِيَّا رَبَّهُۥ ۖ قَالَ رَبِّ هَبْ لِى مِن لَّدُنكَ ذُرِّيَّةًۭ طَيِّبَةً ۖ إِنَّكَ سَمِيعُ ٱلدُّعَآءِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,3,' فَنَادَتْهُ ٱلْمَلَٓئِكَةُ وَهُوَ قَآئِمٌۭ يُصَلِّى فِى ٱلْمِحْرَابِ أَنَّ ٱللَّهَ يُبَشِّرُكَ بِيَحْيَىٰ مُصَدِّقًۢا بِكَلِمَةٍۢ مِّنَ ٱللَّهِ وَسَيِّدًۭا وَحَصُورًۭا وَنَبِيًّۭا مِّنَ ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,3,' قَالَ رَبِّ أَنَّىٰ يَكُونُ لِى غُلَمٌۭ وَقَدْ بَلَغَنِىَ ٱلْكِبَرُ وَٱمْرَأَتِى عَاقِرٌۭ ۖ قَالَ كَذَلِكَ ٱللَّهُ يَفْعَلُ مَا يَشَآءُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,3,' قَالَ رَبِّ ٱجْعَل لِّىٓ ءَايَةًۭ ۖ قَالَ ءَايَتُكَ أَلَّا تُكَلِّمَ ٱلنَّاسَ ثَلَثَةَ أَيَّامٍ إِلَّا رَمْزًۭا ۗ وَٱذْكُر رَّبَّكَ كَثِيرًۭا وَسَبِّحْ بِٱلْعَشِىِّ وَٱلْإِبْكَرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,3,' وَإِذْ قَالَتِ ٱلْمَلَٓئِكَةُ يَمَرْيَمُ إِنَّ ٱللَّهَ ٱصْطَفَىٰكِ وَطَهَّرَكِ وَٱصْطَفَىٰكِ عَلَىٰ نِسَآءِ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,3,' يَمَرْيَمُ ٱقْنُتِى لِرَبِّكِ وَٱسْجُدِى وَٱرْكَعِى مَعَ ٱلرَّكِعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,3,' ذَلِكَ مِنْ أَنۢبَآءِ ٱلْغَيْبِ نُوحِيهِ إِلَيْكَ ۚ وَمَا كُنتَ لَدَيْهِمْ إِذْ يُلْقُونَ أَقْلَمَهُمْ أَيُّهُمْ يَكْفُلُ مَرْيَمَ وَمَا كُنتَ لَدَيْهِمْ إِذْ يَخْتَصِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,3,' إِذْ قَالَتِ ٱلْمَلَٓئِكَةُ يَمَرْيَمُ إِنَّ ٱللَّهَ يُبَشِّرُكِ بِكَلِمَةٍۢ مِّنْهُ ٱسْمُهُ ٱلْمَسِيحُ عِيسَى ٱبْنُ مَرْيَمَ وَجِيهًۭا فِى ٱلدُّنْيَا وَٱلْءَاخِرَةِ وَمِنَ ٱلْمُقَرَّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,3,' وَيُكَلِّمُ ٱلنَّاسَ فِى ٱلْمَهْدِ وَكَهْلًۭا وَمِنَ ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,3,' قَالَتْ رَبِّ أَنَّىٰ يَكُونُ لِى وَلَدٌۭ وَلَمْ يَمْسَسْنِى بَشَرٌۭ ۖ قَالَ كَذَلِكِ ٱللَّهُ يَخْلُقُ مَا يَشَآءُ ۚ إِذَا قَضَىٰٓ أَمْرًۭا فَإِنَّمَا يَقُولُ لَهُۥ كُن فَيَكُونُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,3,' وَيُعَلِّمُهُ ٱلْكِتَبَ وَٱلْحِكْمَةَ وَٱلتَّوْرَىٰةَ وَٱلْإِنجِيلَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,3,' وَرَسُولًا إِلَىٰ بَنِىٓ إِسْرَٓءِيلَ أَنِّى قَدْ جِئْتُكُم بِـَٔايَةٍۢ مِّن رَّبِّكُمْ ۖ أَنِّىٓ أَخْلُقُ لَكُم مِّنَ ٱلطِّينِ كَهَيْـَٔةِ ٱلطَّيْرِ فَأَنفُخُ فِيهِ فَيَكُونُ طَيْرًۢا بِإِذْنِ ٱللَّهِ ۖ وَأُبْرِئُ ٱلْأَكْمَهَ وَٱلْأَبْرَصَ وَأُحْىِ ٱلْمَوْتَىٰ بِإِذْنِ ٱللَّهِ ۖ وَأُنَبِّئُكُم بِمَا تَأْكُلُونَ وَمَا تَدَّخِرُونَ فِى بُيُوتِكُمْ ۚ إِنَّ فِى ذَلِكَ لَءَايَةًۭ لَّكُمْ إِن كُنتُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,3,' وَمُصَدِّقًۭا لِّمَا بَيْنَ يَدَىَّ مِنَ ٱلتَّوْرَىٰةِ وَلِأُحِلَّ لَكُم بَعْضَ ٱلَّذِى حُرِّمَ عَلَيْكُمْ ۚ وَجِئْتُكُم بِـَٔايَةٍۢ مِّن رَّبِّكُمْ فَٱتَّقُوا۟ ٱللَّهَ وَأَطِيعُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,3,' إِنَّ ٱللَّهَ رَبِّى وَرَبُّكُمْ فَٱعْبُدُوهُ ۗ هَذَا صِرَطٌۭ مُّسْتَقِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,3,' فَلَمَّآ أَحَسَّ عِيسَىٰ مِنْهُمُ ٱلْكُفْرَ قَالَ مَنْ أَنصَارِىٓ إِلَى ٱللَّهِ ۖ قَالَ ٱلْحَوَارِيُّونَ نَحْنُ أَنصَارُ ٱللَّهِ ءَامَنَّا بِٱللَّهِ وَٱشْهَدْ بِأَنَّا مُسْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,3,' رَبَّنَآ ءَامَنَّا بِمَآ أَنزَلْتَ وَٱتَّبَعْنَا ٱلرَّسُولَ فَٱكْتُبْنَا مَعَ ٱلشَّهِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,3,' وَمَكَرُوا۟ وَمَكَرَ ٱللَّهُ ۖ وَٱللَّهُ خَيْرُ ٱلْمَكِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,3,' إِذْ قَالَ ٱللَّهُ يَعِيسَىٰٓ إِنِّى مُتَوَفِّيكَ وَرَافِعُكَ إِلَىَّ وَمُطَهِّرُكَ مِنَ ٱلَّذِينَ كَفَرُوا۟ وَجَاعِلُ ٱلَّذِينَ ٱتَّبَعُوكَ فَوْقَ ٱلَّذِينَ كَفَرُوٓا۟ إِلَىٰ يَوْمِ ٱلْقِيَمَةِ ۖ ثُمَّ إِلَىَّ مَرْجِعُكُمْ فَأَحْكُمُ بَيْنَكُمْ فِيمَا كُنتُمْ فِيهِ تَخْتَلِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,3,' فَأَمَّا ٱلَّذِينَ كَفَرُوا۟ فَأُعَذِّبُهُمْ عَذَابًۭا شَدِيدًۭا فِى ٱلدُّنْيَا وَٱلْءَاخِرَةِ وَمَا لَهُم مِّن نَّصِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,3,' وَأَمَّا ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ فَيُوَفِّيهِمْ أُجُورَهُمْ ۗ وَٱللَّهُ لَا يُحِبُّ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,3,' ذَلِكَ نَتْلُوهُ عَلَيْكَ مِنَ ٱلْءَايَتِ وَٱلذِّكْرِ ٱلْحَكِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,3,' إِنَّ مَثَلَ عِيسَىٰ عِندَ ٱللَّهِ كَمَثَلِ ءَادَمَ ۖ خَلَقَهُۥ مِن تُرَابٍۢ ثُمَّ قَالَ لَهُۥ كُن فَيَكُونُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,3,' ٱلْحَقُّ مِن رَّبِّكَ فَلَا تَكُن مِّنَ ٱلْمُمْتَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,3,' فَمَنْ حَآجَّكَ فِيهِ مِنۢ بَعْدِ مَا جَآءَكَ مِنَ ٱلْعِلْمِ فَقُلْ تَعَالَوْا۟ نَدْعُ أَبْنَآءَنَا وَأَبْنَآءَكُمْ وَنِسَآءَنَا وَنِسَآءَكُمْ وَأَنفُسَنَا وَأَنفُسَكُمْ ثُمَّ نَبْتَهِلْ فَنَجْعَل لَّعْنَتَ ٱللَّهِ عَلَى ٱلْكَذِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,3,' إِنَّ هَذَا لَهُوَ ٱلْقَصَصُ ٱلْحَقُّ ۚ وَمَا مِنْ إِلَهٍ إِلَّا ٱللَّهُ ۚ وَإِنَّ ٱللَّهَ لَهُوَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,3,' فَإِن تَوَلَّوْا۟ فَإِنَّ ٱللَّهَ عَلِيمٌۢ بِٱلْمُفْسِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,3,' قُلْ يَٓأَهْلَ ٱلْكِتَبِ تَعَالَوْا۟ إِلَىٰ كَلِمَةٍۢ سَوَآءٍۭ بَيْنَنَا وَبَيْنَكُمْ أَلَّا نَعْبُدَ إِلَّا ٱللَّهَ وَلَا نُشْرِكَ بِهِۦ شَيْـًۭٔا وَلَا يَتَّخِذَ بَعْضُنَا بَعْضًا أَرْبَابًۭا مِّن دُونِ ٱللَّهِ ۚ فَإِن تَوَلَّوْا۟ فَقُولُوا۟ ٱشْهَدُوا۟ بِأَنَّا مُسْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,3,' يَٓأَهْلَ ٱلْكِتَبِ لِمَ تُحَآجُّونَ فِىٓ إِبْرَهِيمَ وَمَآ أُنزِلَتِ ٱلتَّوْرَىٰةُ وَٱلْإِنجِيلُ إِلَّا مِنۢ بَعْدِهِۦٓ ۚ أَفَلَا تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,3,' هَٓأَنتُمْ هَٓؤُلَآءِ حَجَجْتُمْ فِيمَا لَكُم بِهِۦ عِلْمٌۭ فَلِمَ تُحَآجُّونَ فِيمَا لَيْسَ لَكُم بِهِۦ عِلْمٌۭ ۚ وَٱللَّهُ يَعْلَمُ وَأَنتُمْ لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,3,' مَا كَانَ إِبْرَهِيمُ يَهُودِيًّۭا وَلَا نَصْرَانِيًّۭا وَلَكِن كَانَ حَنِيفًۭا مُّسْلِمًۭا وَمَا كَانَ مِنَ ٱلْمُشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,3,' إِنَّ أَوْلَى ٱلنَّاسِ بِإِبْرَهِيمَ لَلَّذِينَ ٱتَّبَعُوهُ وَهَذَا ٱلنَّبِىُّ وَٱلَّذِينَ ءَامَنُوا۟ ۗ وَٱللَّهُ وَلِىُّ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,3,' وَدَّت طَّآئِفَةٌۭ مِّنْ أَهْلِ ٱلْكِتَبِ لَوْ يُضِلُّونَكُمْ وَمَا يُضِلُّونَ إِلَّآ أَنفُسَهُمْ وَمَا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,3,' يَٓأَهْلَ ٱلْكِتَبِ لِمَ تَكْفُرُونَ بِـَٔايَتِ ٱللَّهِ وَأَنتُمْ تَشْهَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,3,' يَٓأَهْلَ ٱلْكِتَبِ لِمَ تَلْبِسُونَ ٱلْحَقَّ بِٱلْبَطِلِ وَتَكْتُمُونَ ٱلْحَقَّ وَأَنتُمْ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,3,' وَقَالَت طَّآئِفَةٌۭ مِّنْ أَهْلِ ٱلْكِتَبِ ءَامِنُوا۟ بِٱلَّذِىٓ أُنزِلَ عَلَى ٱلَّذِينَ ءَامَنُوا۟ وَجْهَ ٱلنَّهَارِ وَٱكْفُرُوٓا۟ ءَاخِرَهُۥ لَعَلَّهُمْ يَرْجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,3,' وَلَا تُؤْمِنُوٓا۟ إِلَّا لِمَن تَبِعَ دِينَكُمْ قُلْ إِنَّ ٱلْهُدَىٰ هُدَى ٱللَّهِ أَن يُؤْتَىٰٓ أَحَدٌۭ مِّثْلَ مَآ أُوتِيتُمْ أَوْ يُحَآجُّوكُمْ عِندَ رَبِّكُمْ ۗ قُلْ إِنَّ ٱلْفَضْلَ بِيَدِ ٱللَّهِ يُؤْتِيهِ مَن يَشَآءُ ۗ وَٱللَّهُ وَسِعٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,3,' يَخْتَصُّ بِرَحْمَتِهِۦ مَن يَشَآءُ ۗ وَٱللَّهُ ذُو ٱلْفَضْلِ ٱلْعَظِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,3,' وَمِنْ أَهْلِ ٱلْكِتَبِ مَنْ إِن تَأْمَنْهُ بِقِنطَارٍۢ يُؤَدِّهِۦٓ إِلَيْكَ وَمِنْهُم مَّنْ إِن تَأْمَنْهُ بِدِينَارٍۢ لَّا يُؤَدِّهِۦٓ إِلَيْكَ إِلَّا مَا دُمْتَ عَلَيْهِ قَآئِمًۭا ۗ ذَلِكَ بِأَنَّهُمْ قَالُوا۟ لَيْسَ عَلَيْنَا فِى ٱلْأُمِّيِّۦنَ سَبِيلٌۭ وَيَقُولُونَ عَلَى ٱللَّهِ ٱلْكَذِبَ وَهُمْ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,3,' بَلَىٰ مَنْ أَوْفَىٰ بِعَهْدِهِۦ وَٱتَّقَىٰ فَإِنَّ ٱللَّهَ يُحِبُّ ٱلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,3,' إِنَّ ٱلَّذِينَ يَشْتَرُونَ بِعَهْدِ ٱللَّهِ وَأَيْمَنِهِمْ ثَمَنًۭا قَلِيلًا أُو۟لَٓئِكَ لَا خَلَقَ لَهُمْ فِى ٱلْءَاخِرَةِ وَلَا يُكَلِّمُهُمُ ٱللَّهُ وَلَا يَنظُرُ إِلَيْهِمْ يَوْمَ ٱلْقِيَمَةِ وَلَا يُزَكِّيهِمْ وَلَهُمْ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,3,' وَإِنَّ مِنْهُمْ لَفَرِيقًۭا يَلْوُۥنَ أَلْسِنَتَهُم بِٱلْكِتَبِ لِتَحْسَبُوهُ مِنَ ٱلْكِتَبِ وَمَا هُوَ مِنَ ٱلْكِتَبِ وَيَقُولُونَ هُوَ مِنْ عِندِ ٱللَّهِ وَمَا هُوَ مِنْ عِندِ ٱللَّهِ وَيَقُولُونَ عَلَى ٱللَّهِ ٱلْكَذِبَ وَهُمْ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,3,' مَا كَانَ لِبَشَرٍ أَن يُؤْتِيَهُ ٱللَّهُ ٱلْكِتَبَ وَٱلْحُكْمَ وَٱلنُّبُوَّةَ ثُمَّ يَقُولَ لِلنَّاسِ كُونُوا۟ عِبَادًۭا لِّى مِن دُونِ ٱللَّهِ وَلَكِن كُونُوا۟ رَبَّنِيِّۦنَ بِمَا كُنتُمْ تُعَلِّمُونَ ٱلْكِتَبَ وَبِمَا كُنتُمْ تَدْرُسُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,3,' وَلَا يَأْمُرَكُمْ أَن تَتَّخِذُوا۟ ٱلْمَلَٓئِكَةَ وَٱلنَّبِيِّۦنَ أَرْبَابًا ۗ أَيَأْمُرُكُم بِٱلْكُفْرِ بَعْدَ إِذْ أَنتُم مُّسْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,3,' وَإِذْ أَخَذَ ٱللَّهُ مِيثَقَ ٱلنَّبِيِّۦنَ لَمَآ ءَاتَيْتُكُم مِّن كِتَبٍۢ وَحِكْمَةٍۢ ثُمَّ جَآءَكُمْ رَسُولٌۭ مُّصَدِّقٌۭ لِّمَا مَعَكُمْ لَتُؤْمِنُنَّ بِهِۦ وَلَتَنصُرُنَّهُۥ ۚ قَالَ ءَأَقْرَرْتُمْ وَأَخَذْتُمْ عَلَىٰ ذَلِكُمْ إِصْرِى ۖ قَالُوٓا۟ أَقْرَرْنَا ۚ قَالَ فَٱشْهَدُوا۟ وَأَنَا۠ مَعَكُم مِّنَ ٱلشَّهِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,3,' فَمَن تَوَلَّىٰ بَعْدَ ذَلِكَ فَأُو۟لَٓئِكَ هُمُ ٱلْفَسِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,3,' أَفَغَيْرَ دِينِ ٱللَّهِ يَبْغُونَ وَلَهُۥٓ أَسْلَمَ مَن فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ طَوْعًۭا وَكَرْهًۭا وَإِلَيْهِ يُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,3,' قُلْ ءَامَنَّا بِٱللَّهِ وَمَآ أُنزِلَ عَلَيْنَا وَمَآ أُنزِلَ عَلَىٰٓ إِبْرَهِيمَ وَإِسْمَعِيلَ وَإِسْحَقَ وَيَعْقُوبَ وَٱلْأَسْبَاطِ وَمَآ أُوتِىَ مُوسَىٰ وَعِيسَىٰ وَٱلنَّبِيُّونَ مِن رَّبِّهِمْ لَا نُفَرِّقُ بَيْنَ أَحَدٍۢ مِّنْهُمْ وَنَحْنُ لَهُۥ مُسْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,3,' وَمَن يَبْتَغِ غَيْرَ ٱلْإِسْلَمِ دِينًۭا فَلَن يُقْبَلَ مِنْهُ وَهُوَ فِى ٱلْءَاخِرَةِ مِنَ ٱلْخَسِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,3,' كَيْفَ يَهْدِى ٱللَّهُ قَوْمًۭا كَفَرُوا۟ بَعْدَ إِيمَنِهِمْ وَشَهِدُوٓا۟ أَنَّ ٱلرَّسُولَ حَقٌّۭ وَجَآءَهُمُ ٱلْبَيِّنَتُ ۚ وَٱللَّهُ لَا يَهْدِى ٱلْقَوْمَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,3,' أُو۟لَٓئِكَ جَزَآؤُهُمْ أَنَّ عَلَيْهِمْ لَعْنَةَ ٱللَّهِ وَٱلْمَلَٓئِكَةِ وَٱلنَّاسِ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,3,' خَلِدِينَ فِيهَا لَا يُخَفَّفُ عَنْهُمُ ٱلْعَذَابُ وَلَا هُمْ يُنظَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,3,' إِلَّا ٱلَّذِينَ تَابُوا۟ مِنۢ بَعْدِ ذَلِكَ وَأَصْلَحُوا۟ فَإِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,3,' إِنَّ ٱلَّذِينَ كَفَرُوا۟ بَعْدَ إِيمَنِهِمْ ثُمَّ ٱزْدَادُوا۟ كُفْرًۭا لَّن تُقْبَلَ تَوْبَتُهُمْ وَأُو۟لَٓئِكَ هُمُ ٱلضَّآلُّونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,3,' إِنَّ ٱلَّذِينَ كَفَرُوا۟ وَمَاتُوا۟ وَهُمْ كُفَّارٌۭ فَلَن يُقْبَلَ مِنْ أَحَدِهِم مِّلْءُ ٱلْأَرْضِ ذَهَبًۭا وَلَوِ ٱفْتَدَىٰ بِهِۦٓ ۗ أُو۟لَٓئِكَ لَهُمْ عَذَابٌ أَلِيمٌۭ وَمَا لَهُم مِّن نَّصِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,3,' لَن تَنَالُوا۟ ٱلْبِرَّ حَتَّىٰ تُنفِقُوا۟ مِمَّا تُحِبُّونَ ۚ وَمَا تُنفِقُوا۟ مِن شَىْءٍۢ فَإِنَّ ٱللَّهَ بِهِۦ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,3,' كُلُّ ٱلطَّعَامِ كَانَ حِلًّۭا لِّبَنِىٓ إِسْرَٓءِيلَ إِلَّا مَا حَرَّمَ إِسْرَٓءِيلُ عَلَىٰ نَفْسِهِۦ مِن قَبْلِ أَن تُنَزَّلَ ٱلتَّوْرَىٰةُ ۗ قُلْ فَأْتُوا۟ بِٱلتَّوْرَىٰةِ فَٱتْلُوهَآ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,3,' فَمَنِ ٱفْتَرَىٰ عَلَى ٱللَّهِ ٱلْكَذِبَ مِنۢ بَعْدِ ذَلِكَ فَأُو۟لَٓئِكَ هُمُ ٱلظَّلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,3,' قُلْ صَدَقَ ٱللَّهُ ۗ فَٱتَّبِعُوا۟ مِلَّةَ إِبْرَهِيمَ حَنِيفًۭا وَمَا كَانَ مِنَ ٱلْمُشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,3,' إِنَّ أَوَّلَ بَيْتٍۢ وُضِعَ لِلنَّاسِ لَلَّذِى بِبَكَّةَ مُبَارَكًۭا وَهُدًۭى لِّلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,3,' فِيهِ ءَايَتٌۢ بَيِّنَتٌۭ مَّقَامُ إِبْرَهِيمَ ۖ وَمَن دَخَلَهُۥ كَانَ ءَامِنًۭا ۗ وَلِلَّهِ عَلَى ٱلنَّاسِ حِجُّ ٱلْبَيْتِ مَنِ ٱسْتَطَاعَ إِلَيْهِ سَبِيلًۭا ۚ وَمَن كَفَرَ فَإِنَّ ٱللَّهَ غَنِىٌّ عَنِ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,3,' قُلْ يَٓأَهْلَ ٱلْكِتَبِ لِمَ تَكْفُرُونَ بِـَٔايَتِ ٱللَّهِ وَٱللَّهُ شَهِيدٌ عَلَىٰ مَا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,3,' قُلْ يَٓأَهْلَ ٱلْكِتَبِ لِمَ تَصُدُّونَ عَن سَبِيلِ ٱللَّهِ مَنْ ءَامَنَ تَبْغُونَهَا عِوَجًۭا وَأَنتُمْ شُهَدَآءُ ۗ وَمَا ٱللَّهُ بِغَفِلٍ عَمَّا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,1,3,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِن تُطِيعُوا۟ فَرِيقًۭا مِّنَ ٱلَّذِينَ أُوتُوا۟ ٱلْكِتَبَ يَرُدُّوكُم بَعْدَ إِيمَنِكُمْ كَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,1,3,' وَكَيْفَ تَكْفُرُونَ وَأَنتُمْ تُتْلَىٰ عَلَيْكُمْ ءَايَتُ ٱللَّهِ وَفِيكُمْ رَسُولُهُۥ ۗ وَمَن يَعْتَصِم بِٱللَّهِ فَقَدْ هُدِىَ إِلَىٰ صِرَطٍۢ مُّسْتَقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,1,3,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ ٱتَّقُوا۟ ٱللَّهَ حَقَّ تُقَاتِهِۦ وَلَا تَمُوتُنَّ إِلَّا وَأَنتُم مُّسْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,1,3,' وَٱعْتَصِمُوا۟ بِحَبْلِ ٱللَّهِ جَمِيعًۭا وَلَا تَفَرَّقُوا۟ ۚ وَٱذْكُرُوا۟ نِعْمَتَ ٱللَّهِ عَلَيْكُمْ إِذْ كُنتُمْ أَعْدَآءًۭ فَأَلَّفَ بَيْنَ قُلُوبِكُمْ فَأَصْبَحْتُم بِنِعْمَتِهِۦٓ إِخْوَنًۭا وَكُنتُمْ عَلَىٰ شَفَا حُفْرَةٍۢ مِّنَ ٱلنَّارِ فَأَنقَذَكُم مِّنْهَا ۗ كَذَلِكَ يُبَيِّنُ ٱللَّهُ لَكُمْ ءَايَتِهِۦ لَعَلَّكُمْ تَهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,1,3,' وَلْتَكُن مِّنكُمْ أُمَّةٌۭ يَدْعُونَ إِلَى ٱلْخَيْرِ وَيَأْمُرُونَ بِٱلْمَعْرُوفِ وَيَنْهَوْنَ عَنِ ٱلْمُنكَرِ ۚ وَأُو۟لَٓئِكَ هُمُ ٱلْمُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,1,3,' وَلَا تَكُونُوا۟ كَٱلَّذِينَ تَفَرَّقُوا۟ وَٱخْتَلَفُوا۟ مِنۢ بَعْدِ مَا جَآءَهُمُ ٱلْبَيِّنَتُ ۚ وَأُو۟لَٓئِكَ لَهُمْ عَذَابٌ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,1,3,' يَوْمَ تَبْيَضُّ وُجُوهٌۭ وَتَسْوَدُّ وُجُوهٌۭ ۚ فَأَمَّا ٱلَّذِينَ ٱسْوَدَّتْ وُجُوهُهُمْ أَكَفَرْتُم بَعْدَ إِيمَنِكُمْ فَذُوقُوا۟ ٱلْعَذَابَ بِمَا كُنتُمْ تَكْفُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,1,3,' وَأَمَّا ٱلَّذِينَ ٱبْيَضَّتْ وُجُوهُهُمْ فَفِى رَحْمَةِ ٱللَّهِ هُمْ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,1,3,' تِلْكَ ءَايَتُ ٱللَّهِ نَتْلُوهَا عَلَيْكَ بِٱلْحَقِّ ۗ وَمَا ٱللَّهُ يُرِيدُ ظُلْمًۭا لِّلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,1,3,' وَلِلَّهِ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۚ وَإِلَى ٱللَّهِ تُرْجَعُ ٱلْأُمُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,1,3,' كُنتُمْ خَيْرَ أُمَّةٍ أُخْرِجَتْ لِلنَّاسِ تَأْمُرُونَ بِٱلْمَعْرُوفِ وَتَنْهَوْنَ عَنِ ٱلْمُنكَرِ وَتُؤْمِنُونَ بِٱللَّهِ ۗ وَلَوْ ءَامَنَ أَهْلُ ٱلْكِتَبِ لَكَانَ خَيْرًۭا لَّهُم ۚ مِّنْهُمُ ٱلْمُؤْمِنُونَ وَأَكْثَرُهُمُ ٱلْفَسِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,1,3,' لَن يَضُرُّوكُمْ إِلَّآ أَذًۭى ۖ وَإِن يُقَتِلُوكُمْ يُوَلُّوكُمُ ٱلْأَدْبَارَ ثُمَّ لَا يُنصَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,1,3,' ضُرِبَتْ عَلَيْهِمُ ٱلذِّلَّةُ أَيْنَ مَا ثُقِفُوٓا۟ إِلَّا بِحَبْلٍۢ مِّنَ ٱللَّهِ وَحَبْلٍۢ مِّنَ ٱلنَّاسِ وَبَآءُو بِغَضَبٍۢ مِّنَ ٱللَّهِ وَضُرِبَتْ عَلَيْهِمُ ٱلْمَسْكَنَةُ ۚ ذَلِكَ بِأَنَّهُمْ كَانُوا۟ يَكْفُرُونَ بِـَٔايَتِ ٱللَّهِ وَيَقْتُلُونَ ٱلْأَنۢبِيَآءَ بِغَيْرِ حَقٍّۢ ۚ ذَلِكَ بِمَا عَصَوا۟ وَّكَانُوا۟ يَعْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,1,3,' لَيْسُوا۟ سَوَآءًۭ ۗ مِّنْ أَهْلِ ٱلْكِتَبِ أُمَّةٌۭ قَآئِمَةٌۭ يَتْلُونَ ءَايَتِ ٱللَّهِ ءَانَآءَ ٱلَّيْلِ وَهُمْ يَسْجُدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,1,3,' يُؤْمِنُونَ بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ وَيَأْمُرُونَ بِٱلْمَعْرُوفِ وَيَنْهَوْنَ عَنِ ٱلْمُنكَرِ وَيُسَرِعُونَ فِى ٱلْخَيْرَتِ وَأُو۟لَٓئِكَ مِنَ ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,1,3,' وَمَا يَفْعَلُوا۟ مِنْ خَيْرٍۢ فَلَن يُكْفَرُوهُ ۗ وَٱللَّهُ عَلِيمٌۢ بِٱلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,1,3,' إِنَّ ٱلَّذِينَ كَفَرُوا۟ لَن تُغْنِىَ عَنْهُمْ أَمْوَلُهُمْ وَلَآ أَوْلَدُهُم مِّنَ ٱللَّهِ شَيْـًۭٔا ۖ وَأُو۟لَٓئِكَ أَصْحَبُ ٱلنَّارِ ۚ هُمْ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,1,3,' مَثَلُ مَا يُنفِقُونَ فِى هَذِهِ ٱلْحَيَوٰةِ ٱلدُّنْيَا كَمَثَلِ رِيحٍۢ فِيهَا صِرٌّ أَصَابَتْ حَرْثَ قَوْمٍۢ ظَلَمُوٓا۟ أَنفُسَهُمْ فَأَهْلَكَتْهُ ۚ وَمَا ظَلَمَهُمُ ٱللَّهُ وَلَكِنْ أَنفُسَهُمْ يَظْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,1,3,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَتَّخِذُوا۟ بِطَانَةًۭ مِّن دُونِكُمْ لَا يَأْلُونَكُمْ خَبَالًۭا وَدُّوا۟ مَا عَنِتُّمْ قَدْ بَدَتِ ٱلْبَغْضَآءُ مِنْ أَفْوَهِهِمْ وَمَا تُخْفِى صُدُورُهُمْ أَكْبَرُ ۚ قَدْ بَيَّنَّا لَكُمُ ٱلْءَايَتِ ۖ إِن كُنتُمْ تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,1,3,' هَٓأَنتُمْ أُو۟لَآءِ تُحِبُّونَهُمْ وَلَا يُحِبُّونَكُمْ وَتُؤْمِنُونَ بِٱلْكِتَبِ كُلِّهِۦ وَإِذَا لَقُوكُمْ قَالُوٓا۟ ءَامَنَّا وَإِذَا خَلَوْا۟ عَضُّوا۟ عَلَيْكُمُ ٱلْأَنَامِلَ مِنَ ٱلْغَيْظِ ۚ قُلْ مُوتُوا۟ بِغَيْظِكُمْ ۗ إِنَّ ٱللَّهَ عَلِيمٌۢ بِذَاتِ ٱلصُّدُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,1,3,' إِن تَمْسَسْكُمْ حَسَنَةٌۭ تَسُؤْهُمْ وَإِن تُصِبْكُمْ سَيِّئَةٌۭ يَفْرَحُوا۟ بِهَا ۖ وَإِن تَصْبِرُوا۟ وَتَتَّقُوا۟ لَا يَضُرُّكُمْ كَيْدُهُمْ شَيْـًٔا ۗ إِنَّ ٱللَّهَ بِمَا يَعْمَلُونَ مُحِيطٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,1,3,' وَإِذْ غَدَوْتَ مِنْ أَهْلِكَ تُبَوِّئُ ٱلْمُؤْمِنِينَ مَقَعِدَ لِلْقِتَالِ ۗ وَٱللَّهُ سَمِيعٌ عَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,1,3,' إِذْ هَمَّت طَّآئِفَتَانِ مِنكُمْ أَن تَفْشَلَا وَٱللَّهُ وَلِيُّهُمَا ۗ وَعَلَى ٱللَّهِ فَلْيَتَوَكَّلِ ٱلْمُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,1,3,' وَلَقَدْ نَصَرَكُمُ ٱللَّهُ بِبَدْرٍۢ وَأَنتُمْ أَذِلَّةٌۭ ۖ فَٱتَّقُوا۟ ٱللَّهَ لَعَلَّكُمْ تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,1,3,' إِذْ تَقُولُ لِلْمُؤْمِنِينَ أَلَن يَكْفِيَكُمْ أَن يُمِدَّكُمْ رَبُّكُم بِثَلَثَةِ ءَالَفٍۢ مِّنَ ٱلْمَلَٓئِكَةِ مُنزَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,1,3,' بَلَىٰٓ ۚ إِن تَصْبِرُوا۟ وَتَتَّقُوا۟ وَيَأْتُوكُم مِّن فَوْرِهِمْ هَذَا يُمْدِدْكُمْ رَبُّكُم بِخَمْسَةِ ءَالَفٍۢ مِّنَ ٱلْمَلَٓئِكَةِ مُسَوِّمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,1,3,' وَمَا جَعَلَهُ ٱللَّهُ إِلَّا بُشْرَىٰ لَكُمْ وَلِتَطْمَىِٕنَّ قُلُوبُكُم بِهِۦ ۗ وَمَا ٱلنَّصْرُ إِلَّا مِنْ عِندِ ٱللَّهِ ٱلْعَزِيزِ ٱلْحَكِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,1,3,' لِيَقْطَعَ طَرَفًۭا مِّنَ ٱلَّذِينَ كَفَرُوٓا۟ أَوْ يَكْبِتَهُمْ فَيَنقَلِبُوا۟ خَآئِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,1,3,' لَيْسَ لَكَ مِنَ ٱلْأَمْرِ شَىْءٌ أَوْ يَتُوبَ عَلَيْهِمْ أَوْ يُعَذِّبَهُمْ فَإِنَّهُمْ ظَلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,1,3,' وَلِلَّهِ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۚ يَغْفِرُ لِمَن يَشَآءُ وَيُعَذِّبُ مَن يَشَآءُ ۚ وَٱللَّهُ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,1,3,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَأْكُلُوا۟ ٱلرِّبَوٰٓا۟ أَضْعَفًۭا مُّضَعَفَةًۭ ۖ وَٱتَّقُوا۟ ٱللَّهَ لَعَلَّكُمْ تُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,1,3,' وَٱتَّقُوا۟ ٱلنَّارَ ٱلَّتِىٓ أُعِدَّتْ لِلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,1,3,' وَأَطِيعُوا۟ ٱللَّهَ وَٱلرَّسُولَ لَعَلَّكُمْ تُرْحَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,1,3,' وَسَارِعُوٓا۟ إِلَىٰ مَغْفِرَةٍۢ مِّن رَّبِّكُمْ وَجَنَّةٍ عَرْضُهَا ٱلسَّمَوَتُ وَٱلْأَرْضُ أُعِدَّتْ لِلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,1,3,' ٱلَّذِينَ يُنفِقُونَ فِى ٱلسَّرَّآءِ وَٱلضَّرَّآءِ وَٱلْكَظِمِينَ ٱلْغَيْظَ وَٱلْعَافِينَ عَنِ ٱلنَّاسِ ۗ وَٱللَّهُ يُحِبُّ ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,1,3,' وَٱلَّذِينَ إِذَا فَعَلُوا۟ فَحِشَةً أَوْ ظَلَمُوٓا۟ أَنفُسَهُمْ ذَكَرُوا۟ ٱللَّهَ فَٱسْتَغْفَرُوا۟ لِذُنُوبِهِمْ وَمَن يَغْفِرُ ٱلذُّنُوبَ إِلَّا ٱللَّهُ وَلَمْ يُصِرُّوا۟ عَلَىٰ مَا فَعَلُوا۟ وَهُمْ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,1,3,' أُو۟لَٓئِكَ جَزَآؤُهُم مَّغْفِرَةٌۭ مِّن رَّبِّهِمْ وَجَنَّتٌۭ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَا ۚ وَنِعْمَ أَجْرُ ٱلْعَمِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,1,3,' قَدْ خَلَتْ مِن قَبْلِكُمْ سُنَنٌۭ فَسِيرُوا۟ فِى ٱلْأَرْضِ فَٱنظُرُوا۟ كَيْفَ كَانَ عَقِبَةُ ٱلْمُكَذِّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,1,3,' هَذَا بَيَانٌۭ لِّلنَّاسِ وَهُدًۭى وَمَوْعِظَةٌۭ لِّلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,1,3,' وَلَا تَهِنُوا۟ وَلَا تَحْزَنُوا۟ وَأَنتُمُ ٱلْأَعْلَوْنَ إِن كُنتُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,1,3,' إِن يَمْسَسْكُمْ قَرْحٌۭ فَقَدْ مَسَّ ٱلْقَوْمَ قَرْحٌۭ مِّثْلُهُۥ ۚ وَتِلْكَ ٱلْأَيَّامُ نُدَاوِلُهَا بَيْنَ ٱلنَّاسِ وَلِيَعْلَمَ ٱللَّهُ ٱلَّذِينَ ءَامَنُوا۟ وَيَتَّخِذَ مِنكُمْ شُهَدَآءَ ۗ وَٱللَّهُ لَا يُحِبُّ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,1,3,' وَلِيُمَحِّصَ ٱللَّهُ ٱلَّذِينَ ءَامَنُوا۟ وَيَمْحَقَ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,1,3,' أَمْ حَسِبْتُمْ أَن تَدْخُلُوا۟ ٱلْجَنَّةَ وَلَمَّا يَعْلَمِ ٱللَّهُ ٱلَّذِينَ جَهَدُوا۟ مِنكُمْ وَيَعْلَمَ ٱلصَّبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,1,3,' وَلَقَدْ كُنتُمْ تَمَنَّوْنَ ٱلْمَوْتَ مِن قَبْلِ أَن تَلْقَوْهُ فَقَدْ رَأَيْتُمُوهُ وَأَنتُمْ تَنظُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,1,3,' وَمَا مُحَمَّدٌ إِلَّا رَسُولٌۭ قَدْ خَلَتْ مِن قَبْلِهِ ٱلرُّسُلُ ۚ أَفَإِي۟ن مَّاتَ أَوْ قُتِلَ ٱنقَلَبْتُمْ عَلَىٰٓ أَعْقَبِكُمْ ۚ وَمَن يَنقَلِبْ عَلَىٰ عَقِبَيْهِ فَلَن يَضُرَّ ٱللَّهَ شَيْـًۭٔا ۗ وَسَيَجْزِى ٱللَّهُ ٱلشَّكِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,1,3,' وَمَا كَانَ لِنَفْسٍ أَن تَمُوتَ إِلَّا بِإِذْنِ ٱللَّهِ كِتَبًۭا مُّؤَجَّلًۭا ۗ وَمَن يُرِدْ ثَوَابَ ٱلدُّنْيَا نُؤْتِهِۦ مِنْهَا وَمَن يُرِدْ ثَوَابَ ٱلْءَاخِرَةِ نُؤْتِهِۦ مِنْهَا ۚ وَسَنَجْزِى ٱلشَّكِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,1,3,' وَكَأَيِّن مِّن نَّبِىٍّۢ قَتَلَ مَعَهُۥ رِبِّيُّونَ كَثِيرٌۭ فَمَا وَهَنُوا۟ لِمَآ أَصَابَهُمْ فِى سَبِيلِ ٱللَّهِ وَمَا ضَعُفُوا۟ وَمَا ٱسْتَكَانُوا۟ ۗ وَٱللَّهُ يُحِبُّ ٱلصَّبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,1,3,' وَمَا كَانَ قَوْلَهُمْ إِلَّآ أَن قَالُوا۟ رَبَّنَا ٱغْفِرْ لَنَا ذُنُوبَنَا وَإِسْرَافَنَا فِىٓ أَمْرِنَا وَثَبِّتْ أَقْدَامَنَا وَٱنصُرْنَا عَلَى ٱلْقَوْمِ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,1,3,' فَـَٔاتَىٰهُمُ ٱللَّهُ ثَوَابَ ٱلدُّنْيَا وَحُسْنَ ثَوَابِ ٱلْءَاخِرَةِ ۗ وَٱللَّهُ يُحِبُّ ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,1,3,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِن تُطِيعُوا۟ ٱلَّذِينَ كَفَرُوا۟ يَرُدُّوكُمْ عَلَىٰٓ أَعْقَبِكُمْ فَتَنقَلِبُوا۟ خَسِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,1,3,' بَلِ ٱللَّهُ مَوْلَىٰكُمْ ۖ وَهُوَ خَيْرُ ٱلنَّصِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,1,3,' سَنُلْقِى فِى قُلُوبِ ٱلَّذِينَ كَفَرُوا۟ ٱلرُّعْبَ بِمَآ أَشْرَكُوا۟ بِٱللَّهِ مَا لَمْ يُنَزِّلْ بِهِۦ سُلْطَنًۭا ۖ وَمَأْوَىٰهُمُ ٱلنَّارُ ۚ وَبِئْسَ مَثْوَى ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,1,3,' وَلَقَدْ صَدَقَكُمُ ٱللَّهُ وَعْدَهُۥٓ إِذْ تَحُسُّونَهُم بِإِذْنِهِۦ ۖ حَتَّىٰٓ إِذَا فَشِلْتُمْ وَتَنَزَعْتُمْ فِى ٱلْأَمْرِ وَعَصَيْتُم مِّنۢ بَعْدِ مَآ أَرَىٰكُم مَّا تُحِبُّونَ ۚ مِنكُم مَّن يُرِيدُ ٱلدُّنْيَا وَمِنكُم مَّن يُرِيدُ ٱلْءَاخِرَةَ ۚ ثُمَّ صَرَفَكُمْ عَنْهُمْ لِيَبْتَلِيَكُمْ ۖ وَلَقَدْ عَفَا عَنكُمْ ۗ وَٱللَّهُ ذُو فَضْلٍ عَلَى ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,1,3,' إِذْ تُصْعِدُونَ وَلَا تَلْوُۥنَ عَلَىٰٓ أَحَدٍۢ وَٱلرَّسُولُ يَدْعُوكُمْ فِىٓ أُخْرَىٰكُمْ فَأَثَبَكُمْ غَمًّۢا بِغَمٍّۢ لِّكَيْلَا تَحْزَنُوا۟ عَلَىٰ مَا فَاتَكُمْ وَلَا مَآ أَصَبَكُمْ ۗ وَٱللَّهُ خَبِيرٌۢ بِمَا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,1,3,' ثُمَّ أَنزَلَ عَلَيْكُم مِّنۢ بَعْدِ ٱلْغَمِّ أَمَنَةًۭ نُّعَاسًۭا يَغْشَىٰ طَآئِفَةًۭ مِّنكُمْ ۖ وَطَآئِفَةٌۭ قَدْ أَهَمَّتْهُمْ أَنفُسُهُمْ يَظُنُّونَ بِٱللَّهِ غَيْرَ ٱلْحَقِّ ظَنَّ ٱلْجَهِلِيَّةِ ۖ يَقُولُونَ هَل لَّنَا مِنَ ٱلْأَمْرِ مِن شَىْءٍۢ ۗ قُلْ إِنَّ ٱلْأَمْرَ كُلَّهُۥ لِلَّهِ ۗ يُخْفُونَ فِىٓ أَنفُسِهِم مَّا لَا يُبْدُونَ لَكَ ۖ يَقُولُونَ لَوْ كَانَ لَنَا مِنَ ٱلْأَمْرِ شَىْءٌۭ مَّا قُتِلْنَا هَهُنَا ۗ قُل لَّوْ كُنتُمْ فِى بُيُوتِكُمْ لَبَرَزَ ٱلَّذِينَ كُتِبَ عَلَيْهِمُ ٱلْقَتْلُ إِلَىٰ مَضَاجِعِهِمْ ۖ وَلِيَبْتَلِىَ ٱللَّهُ مَا فِى صُدُورِكُمْ وَلِيُمَحِّصَ مَا فِى قُلُوبِكُمْ ۗ وَٱللَّهُ عَلِيمٌۢ بِذَاتِ ٱلصُّدُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,1,3,' إِنَّ ٱلَّذِينَ تَوَلَّوْا۟ مِنكُمْ يَوْمَ ٱلْتَقَى ٱلْجَمْعَانِ إِنَّمَا ٱسْتَزَلَّهُمُ ٱلشَّيْطَنُ بِبَعْضِ مَا كَسَبُوا۟ ۖ وَلَقَدْ عَفَا ٱللَّهُ عَنْهُمْ ۗ إِنَّ ٱللَّهَ غَفُورٌ حَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,1,3,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَكُونُوا۟ كَٱلَّذِينَ كَفَرُوا۟ وَقَالُوا۟ لِإِخْوَنِهِمْ إِذَا ضَرَبُوا۟ فِى ٱلْأَرْضِ أَوْ كَانُوا۟ غُزًّۭى لَّوْ كَانُوا۟ عِندَنَا مَا مَاتُوا۟ وَمَا قُتِلُوا۟ لِيَجْعَلَ ٱللَّهُ ذَلِكَ حَسْرَةًۭ فِى قُلُوبِهِمْ ۗ وَٱللَّهُ يُحْىِۦ وَيُمِيتُ ۗ وَٱللَّهُ بِمَا تَعْمَلُونَ بَصِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,1,3,' وَلَىِٕن قُتِلْتُمْ فِى سَبِيلِ ٱللَّهِ أَوْ مُتُّمْ لَمَغْفِرَةٌۭ مِّنَ ٱللَّهِ وَرَحْمَةٌ خَيْرٌۭ مِّمَّا يَجْمَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,1,3,' وَلَىِٕن مُّتُّمْ أَوْ قُتِلْتُمْ لَإِلَى ٱللَّهِ تُحْشَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,1,3,' فَبِمَا رَحْمَةٍۢ مِّنَ ٱللَّهِ لِنتَ لَهُمْ ۖ وَلَوْ كُنتَ فَظًّا غَلِيظَ ٱلْقَلْبِ لَٱنفَضُّوا۟ مِنْ حَوْلِكَ ۖ فَٱعْفُ عَنْهُمْ وَٱسْتَغْفِرْ لَهُمْ وَشَاوِرْهُمْ فِى ٱلْأَمْرِ ۖ فَإِذَا عَزَمْتَ فَتَوَكَّلْ عَلَى ٱللَّهِ ۚ إِنَّ ٱللَّهَ يُحِبُّ ٱلْمُتَوَكِّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,1,3,' إِن يَنصُرْكُمُ ٱللَّهُ فَلَا غَالِبَ لَكُمْ ۖ وَإِن يَخْذُلْكُمْ فَمَن ذَا ٱلَّذِى يَنصُرُكُم مِّنۢ بَعْدِهِۦ ۗ وَعَلَى ٱللَّهِ فَلْيَتَوَكَّلِ ٱلْمُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,1,3,' وَمَا كَانَ لِنَبِىٍّ أَن يَغُلَّ ۚ وَمَن يَغْلُلْ يَأْتِ بِمَا غَلَّ يَوْمَ ٱلْقِيَمَةِ ۚ ثُمَّ تُوَفَّىٰ كُلُّ نَفْسٍۢ مَّا كَسَبَتْ وَهُمْ لَا يُظْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,1,3,' أَفَمَنِ ٱتَّبَعَ رِضْوَنَ ٱللَّهِ كَمَنۢ بَآءَ بِسَخَطٍۢ مِّنَ ٱللَّهِ وَمَأْوَىٰهُ جَهَنَّمُ ۚ وَبِئْسَ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,1,3,' هُمْ دَرَجَتٌ عِندَ ٱللَّهِ ۗ وَٱللَّهُ بَصِيرٌۢ بِمَا يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,1,3,' لَقَدْ مَنَّ ٱللَّهُ عَلَى ٱلْمُؤْمِنِينَ إِذْ بَعَثَ فِيهِمْ رَسُولًۭا مِّنْ أَنفُسِهِمْ يَتْلُوا۟ عَلَيْهِمْ ءَايَتِهِۦ وَيُزَكِّيهِمْ وَيُعَلِّمُهُمُ ٱلْكِتَبَ وَٱلْحِكْمَةَ وَإِن كَانُوا۟ مِن قَبْلُ لَفِى ضَلَلٍۢ مُّبِينٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,1,3,' أَوَلَمَّآ أَصَبَتْكُم مُّصِيبَةٌۭ قَدْ أَصَبْتُم مِّثْلَيْهَا قُلْتُمْ أَنَّىٰ هَذَا ۖ قُلْ هُوَ مِنْ عِندِ أَنفُسِكُمْ ۗ إِنَّ ٱللَّهَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,1,3,' وَمَآ أَصَبَكُمْ يَوْمَ ٱلْتَقَى ٱلْجَمْعَانِ فَبِإِذْنِ ٱللَّهِ وَلِيَعْلَمَ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,1,3,' وَلِيَعْلَمَ ٱلَّذِينَ نَافَقُوا۟ ۚ وَقِيلَ لَهُمْ تَعَالَوْا۟ قَتِلُوا۟ فِى سَبِيلِ ٱللَّهِ أَوِ ٱدْفَعُوا۟ ۖ قَالُوا۟ لَوْ نَعْلَمُ قِتَالًۭا لَّٱتَّبَعْنَكُمْ ۗ هُمْ لِلْكُفْرِ يَوْمَئِذٍ أَقْرَبُ مِنْهُمْ لِلْإِيمَنِ ۚ يَقُولُونَ بِأَفْوَهِهِم مَّا لَيْسَ فِى قُلُوبِهِمْ ۗ وَٱللَّهُ أَعْلَمُ بِمَا يَكْتُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,1,3,' ٱلَّذِينَ قَالُوا۟ لِإِخْوَنِهِمْ وَقَعَدُوا۟ لَوْ أَطَاعُونَا مَا قُتِلُوا۟ ۗ قُلْ فَٱدْرَءُوا۟ عَنْ أَنفُسِكُمُ ٱلْمَوْتَ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,1,3,' وَلَا تَحْسَبَنَّ ٱلَّذِينَ قُتِلُوا۟ فِى سَبِيلِ ٱللَّهِ أَمْوَتًۢا ۚ بَلْ أَحْيَآءٌ عِندَ رَبِّهِمْ يُرْزَقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,1,3,' فَرِحِينَ بِمَآ ءَاتَىٰهُمُ ٱللَّهُ مِن فَضْلِهِۦ وَيَسْتَبْشِرُونَ بِٱلَّذِينَ لَمْ يَلْحَقُوا۟ بِهِم مِّنْ خَلْفِهِمْ أَلَّا خَوْفٌ عَلَيْهِمْ وَلَا هُمْ يَحْزَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,1,3,' يَسْتَبْشِرُونَ بِنِعْمَةٍۢ مِّنَ ٱللَّهِ وَفَضْلٍۢ وَأَنَّ ٱللَّهَ لَا يُضِيعُ أَجْرَ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,1,3,' ٱلَّذِينَ ٱسْتَجَابُوا۟ لِلَّهِ وَٱلرَّسُولِ مِنۢ بَعْدِ مَآ أَصَابَهُمُ ٱلْقَرْحُ ۚ لِلَّذِينَ أَحْسَنُوا۟ مِنْهُمْ وَٱتَّقَوْا۟ أَجْرٌ عَظِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,1,3,' ٱلَّذِينَ قَالَ لَهُمُ ٱلنَّاسُ إِنَّ ٱلنَّاسَ قَدْ جَمَعُوا۟ لَكُمْ فَٱخْشَوْهُمْ فَزَادَهُمْ إِيمَنًۭا وَقَالُوا۟ حَسْبُنَا ٱللَّهُ وَنِعْمَ ٱلْوَكِيلُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,1,3,' فَٱنقَلَبُوا۟ بِنِعْمَةٍۢ مِّنَ ٱللَّهِ وَفَضْلٍۢ لَّمْ يَمْسَسْهُمْ سُوٓءٌۭ وَٱتَّبَعُوا۟ رِضْوَنَ ٱللَّهِ ۗ وَٱللَّهُ ذُو فَضْلٍ عَظِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,1,3,' إِنَّمَا ذَلِكُمُ ٱلشَّيْطَنُ يُخَوِّفُ أَوْلِيَآءَهُۥ فَلَا تَخَافُوهُمْ وَخَافُونِ إِن كُنتُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,1,3,' وَلَا يَحْزُنكَ ٱلَّذِينَ يُسَرِعُونَ فِى ٱلْكُفْرِ ۚ إِنَّهُمْ لَن يَضُرُّوا۟ ٱللَّهَ شَيْـًۭٔا ۗ يُرِيدُ ٱللَّهُ أَلَّا يَجْعَلَ لَهُمْ حَظًّۭا فِى ٱلْءَاخِرَةِ ۖ وَلَهُمْ عَذَابٌ عَظِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,1,3,' إِنَّ ٱلَّذِينَ ٱشْتَرَوُا۟ ٱلْكُفْرَ بِٱلْإِيمَنِ لَن يَضُرُّوا۟ ٱللَّهَ شَيْـًۭٔا وَلَهُمْ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,1,3,' وَلَا يَحْسَبَنَّ ٱلَّذِينَ كَفَرُوٓا۟ أَنَّمَا نُمْلِى لَهُمْ خَيْرٌۭ لِأَنفُسِهِمْ ۚ إِنَّمَا نُمْلِى لَهُمْ لِيَزْدَادُوٓا۟ إِثْمًۭا ۚ وَلَهُمْ عَذَابٌۭ مُّهِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,1,3,' مَّا كَانَ ٱللَّهُ لِيَذَرَ ٱلْمُؤْمِنِينَ عَلَىٰ مَآ أَنتُمْ عَلَيْهِ حَتَّىٰ يَمِيزَ ٱلْخَبِيثَ مِنَ ٱلطَّيِّبِ ۗ وَمَا كَانَ ٱللَّهُ لِيُطْلِعَكُمْ عَلَى ٱلْغَيْبِ وَلَكِنَّ ٱللَّهَ يَجْتَبِى مِن رُّسُلِهِۦ مَن يَشَآءُ ۖ فَـَٔامِنُوا۟ بِٱللَّهِ وَرُسُلِهِۦ ۚ وَإِن تُؤْمِنُوا۟ وَتَتَّقُوا۟ فَلَكُمْ أَجْرٌ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,1,3,' وَلَا يَحْسَبَنَّ ٱلَّذِينَ يَبْخَلُونَ بِمَآ ءَاتَىٰهُمُ ٱللَّهُ مِن فَضْلِهِۦ هُوَ خَيْرًۭا لَّهُم ۖ بَلْ هُوَ شَرٌّۭ لَّهُمْ ۖ سَيُطَوَّقُونَ مَا بَخِلُوا۟ بِهِۦ يَوْمَ ٱلْقِيَمَةِ ۗ وَلِلَّهِ مِيرَثُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۗ وَٱللَّهُ بِمَا تَعْمَلُونَ خَبِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,1,3,' لَّقَدْ سَمِعَ ٱللَّهُ قَوْلَ ٱلَّذِينَ قَالُوٓا۟ إِنَّ ٱللَّهَ فَقِيرٌۭ وَنَحْنُ أَغْنِيَآءُ ۘ سَنَكْتُبُ مَا قَالُوا۟ وَقَتْلَهُمُ ٱلْأَنۢبِيَآءَ بِغَيْرِ حَقٍّۢ وَنَقُولُ ذُوقُوا۟ عَذَابَ ٱلْحَرِيقِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,1,3,' ذَلِكَ بِمَا قَدَّمَتْ أَيْدِيكُمْ وَأَنَّ ٱللَّهَ لَيْسَ بِظَلَّامٍۢ لِّلْعَبِيدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(183,1,3,' ٱلَّذِينَ قَالُوٓا۟ إِنَّ ٱللَّهَ عَهِدَ إِلَيْنَآ أَلَّا نُؤْمِنَ لِرَسُولٍ حَتَّىٰ يَأْتِيَنَا بِقُرْبَانٍۢ تَأْكُلُهُ ٱلنَّارُ ۗ قُلْ قَدْ جَآءَكُمْ رُسُلٌۭ مِّن قَبْلِى بِٱلْبَيِّنَتِ وَبِٱلَّذِى قُلْتُمْ فَلِمَ قَتَلْتُمُوهُمْ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(184,1,3,' فَإِن كَذَّبُوكَ فَقَدْ كُذِّبَ رُسُلٌۭ مِّن قَبْلِكَ جَآءُو بِٱلْبَيِّنَتِ وَٱلزُّبُرِ وَٱلْكِتَبِ ٱلْمُنِيرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(185,1,3,' كُلُّ نَفْسٍۢ ذَآئِقَةُ ٱلْمَوْتِ ۗ وَإِنَّمَا تُوَفَّوْنَ أُجُورَكُمْ يَوْمَ ٱلْقِيَمَةِ ۖ فَمَن زُحْزِحَ عَنِ ٱلنَّارِ وَأُدْخِلَ ٱلْجَنَّةَ فَقَدْ فَازَ ۗ وَمَا ٱلْحَيَوٰةُ ٱلدُّنْيَآ إِلَّا مَتَعُ ٱلْغُرُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(186,1,3,' لَتُبْلَوُنَّ فِىٓ أَمْوَلِكُمْ وَأَنفُسِكُمْ وَلَتَسْمَعُنَّ مِنَ ٱلَّذِينَ أُوتُوا۟ ٱلْكِتَبَ مِن قَبْلِكُمْ وَمِنَ ٱلَّذِينَ أَشْرَكُوٓا۟ أَذًۭى كَثِيرًۭا ۚ وَإِن تَصْبِرُوا۟ وَتَتَّقُوا۟ فَإِنَّ ذَلِكَ مِنْ عَزْمِ ٱلْأُمُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(187,1,3,' وَإِذْ أَخَذَ ٱللَّهُ مِيثَقَ ٱلَّذِينَ أُوتُوا۟ ٱلْكِتَبَ لَتُبَيِّنُنَّهُۥ لِلنَّاسِ وَلَا تَكْتُمُونَهُۥ فَنَبَذُوهُ وَرَآءَ ظُهُورِهِمْ وَٱشْتَرَوْا۟ بِهِۦ ثَمَنًۭا قَلِيلًۭا ۖ فَبِئْسَ مَا يَشْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(188,1,3,' لَا تَحْسَبَنَّ ٱلَّذِينَ يَفْرَحُونَ بِمَآ أَتَوا۟ وَّيُحِبُّونَ أَن يُحْمَدُوا۟ بِمَا لَمْ يَفْعَلُوا۟ فَلَا تَحْسَبَنَّهُم بِمَفَازَةٍۢ مِّنَ ٱلْعَذَابِ ۖ وَلَهُمْ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(189,1,3,' وَلِلَّهِ مُلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۗ وَٱللَّهُ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(190,1,3,' إِنَّ فِى خَلْقِ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَٱخْتِلَفِ ٱلَّيْلِ وَٱلنَّهَارِ لَءَايَتٍۢ لِّأُو۟لِى ٱلْأَلْبَبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(191,1,3,' ٱلَّذِينَ يَذْكُرُونَ ٱللَّهَ قِيَمًۭا وَقُعُودًۭا وَعَلَىٰ جُنُوبِهِمْ وَيَتَفَكَّرُونَ فِى خَلْقِ ٱلسَّمَوَتِ وَٱلْأَرْضِ رَبَّنَا مَا خَلَقْتَ هَذَا بَطِلًۭا سُبْحَنَكَ فَقِنَا عَذَابَ ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(192,1,3,' رَبَّنَآ إِنَّكَ مَن تُدْخِلِ ٱلنَّارَ فَقَدْ أَخْزَيْتَهُۥ ۖ وَمَا لِلظَّلِمِينَ مِنْ أَنصَارٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(193,1,3,' رَّبَّنَآ إِنَّنَا سَمِعْنَا مُنَادِيًۭا يُنَادِى لِلْإِيمَنِ أَنْ ءَامِنُوا۟ بِرَبِّكُمْ فَـَٔامَنَّا ۚ رَبَّنَا فَٱغْفِرْ لَنَا ذُنُوبَنَا وَكَفِّرْ عَنَّا سَيِّـَٔاتِنَا وَتَوَفَّنَا مَعَ ٱلْأَبْرَارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(194,1,3,' رَبَّنَا وَءَاتِنَا مَا وَعَدتَّنَا عَلَىٰ رُسُلِكَ وَلَا تُخْزِنَا يَوْمَ ٱلْقِيَمَةِ ۗ إِنَّكَ لَا تُخْلِفُ ٱلْمِيعَادَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(195,1,3,' فَٱسْتَجَابَ لَهُمْ رَبُّهُمْ أَنِّى لَآ أُضِيعُ عَمَلَ عَمِلٍۢ مِّنكُم مِّن ذَكَرٍ أَوْ أُنثَىٰ ۖ بَعْضُكُم مِّنۢ بَعْضٍۢ ۖ فَٱلَّذِينَ هَاجَرُوا۟ وَأُخْرِجُوا۟ مِن دِيَرِهِمْ وَأُوذُوا۟ فِى سَبِيلِى وَقَتَلُوا۟ وَقُتِلُوا۟ لَأُكَفِّرَنَّ عَنْهُمْ سَيِّـَٔاتِهِمْ وَلَأُدْخِلَنَّهُمْ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ ثَوَابًۭا مِّنْ عِندِ ٱللَّهِ ۗ وَٱللَّهُ عِندَهُۥ حُسْنُ ٱلثَّوَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(196,1,3,' لَا يَغُرَّنَّكَ تَقَلُّبُ ٱلَّذِينَ كَفَرُوا۟ فِى ٱلْبِلَدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(197,1,3,' مَتَعٌۭ قَلِيلٌۭ ثُمَّ مَأْوَىٰهُمْ جَهَنَّمُ ۚ وَبِئْسَ ٱلْمِهَادُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(198,1,3,' لَكِنِ ٱلَّذِينَ ٱتَّقَوْا۟ رَبَّهُمْ لَهُمْ جَنَّتٌۭ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَا نُزُلًۭا مِّنْ عِندِ ٱللَّهِ ۗ وَمَا عِندَ ٱللَّهِ خَيْرٌۭ لِّلْأَبْرَارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(199,1,3,' وَإِنَّ مِنْ أَهْلِ ٱلْكِتَبِ لَمَن يُؤْمِنُ بِٱللَّهِ وَمَآ أُنزِلَ إِلَيْكُمْ وَمَآ أُنزِلَ إِلَيْهِمْ خَشِعِينَ لِلَّهِ لَا يَشْتَرُونَ بِـَٔايَتِ ٱللَّهِ ثَمَنًۭا قَلِيلًا ۗ أُو۟لَٓئِكَ لَهُمْ أَجْرُهُمْ عِندَ رَبِّهِمْ ۗ إِنَّ ٱللَّهَ سَرِيعُ ٱلْحِسَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(200,1,3,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ ٱصْبِرُوا۟ وَصَابِرُوا۟ وَرَابِطُوا۟ وَٱتَّقُوا۟ ٱللَّهَ لَعَلَّكُمْ تُفْلِحُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(4,4,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,4,' يَٓأَيُّهَا ٱلنَّاسُ ٱتَّقُوا۟ رَبَّكُمُ ٱلَّذِى خَلَقَكُم مِّن نَّفْسٍۢ وَحِدَةٍۢ وَخَلَقَ مِنْهَا زَوْجَهَا وَبَثَّ مِنْهُمَا رِجَالًۭا كَثِيرًۭا وَنِسَآءًۭ ۚ وَٱتَّقُوا۟ ٱللَّهَ ٱلَّذِى تَسَآءَلُونَ بِهِۦ وَٱلْأَرْحَامَ ۚ إِنَّ ٱللَّهَ كَانَ عَلَيْكُمْ رَقِيبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,4,' وَءَاتُوا۟ ٱلْيَتَمَىٰٓ أَمْوَلَهُمْ ۖ وَلَا تَتَبَدَّلُوا۟ ٱلْخَبِيثَ بِٱلطَّيِّبِ ۖ وَلَا تَأْكُلُوٓا۟ أَمْوَلَهُمْ إِلَىٰٓ أَمْوَلِكُمْ ۚ إِنَّهُۥ كَانَ حُوبًۭا كَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,4,' وَإِنْ خِفْتُمْ أَلَّا تُقْسِطُوا۟ فِى ٱلْيَتَمَىٰ فَٱنكِحُوا۟ مَا طَابَ لَكُم مِّنَ ٱلنِّسَآءِ مَثْنَىٰ وَثُلَثَ وَرُبَعَ ۖ فَإِنْ خِفْتُمْ أَلَّا تَعْدِلُوا۟ فَوَحِدَةً أَوْ مَا مَلَكَتْ أَيْمَنُكُمْ ۚ ذَلِكَ أَدْنَىٰٓ أَلَّا تَعُولُوا۟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,4,' وَءَاتُوا۟ ٱلنِّسَآءَ صَدُقَتِهِنَّ نِحْلَةًۭ ۚ فَإِن طِبْنَ لَكُمْ عَن شَىْءٍۢ مِّنْهُ نَفْسًۭا فَكُلُوهُ هَنِيٓـًۭٔا مَّرِيٓـًۭٔا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,4,' وَلَا تُؤْتُوا۟ ٱلسُّفَهَآءَ أَمْوَلَكُمُ ٱلَّتِى جَعَلَ ٱللَّهُ لَكُمْ قِيَمًۭا وَٱرْزُقُوهُمْ فِيهَا وَٱكْسُوهُمْ وَقُولُوا۟ لَهُمْ قَوْلًۭا مَّعْرُوفًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,4,' وَٱبْتَلُوا۟ ٱلْيَتَمَىٰ حَتَّىٰٓ إِذَا بَلَغُوا۟ ٱلنِّكَاحَ فَإِنْ ءَانَسْتُم مِّنْهُمْ رُشْدًۭا فَٱدْفَعُوٓا۟ إِلَيْهِمْ أَمْوَلَهُمْ ۖ وَلَا تَأْكُلُوهَآ إِسْرَافًۭا وَبِدَارًا أَن يَكْبَرُوا۟ ۚ وَمَن كَانَ غَنِيًّۭا فَلْيَسْتَعْفِفْ ۖ وَمَن كَانَ فَقِيرًۭا فَلْيَأْكُلْ بِٱلْمَعْرُوفِ ۚ فَإِذَا دَفَعْتُمْ إِلَيْهِمْ أَمْوَلَهُمْ فَأَشْهِدُوا۟ عَلَيْهِمْ ۚ وَكَفَىٰ بِٱللَّهِ حَسِيبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,4,' لِّلرِّجَالِ نَصِيبٌۭ مِّمَّا تَرَكَ ٱلْوَلِدَانِ وَٱلْأَقْرَبُونَ وَلِلنِّسَآءِ نَصِيبٌۭ مِّمَّا تَرَكَ ٱلْوَلِدَانِ وَٱلْأَقْرَبُونَ مِمَّا قَلَّ مِنْهُ أَوْ كَثُرَ ۚ نَصِيبًۭا مَّفْرُوضًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,4,' وَإِذَا حَضَرَ ٱلْقِسْمَةَ أُو۟لُوا۟ ٱلْقُرْبَىٰ وَٱلْيَتَمَىٰ وَٱلْمَسَكِينُ فَٱرْزُقُوهُم مِّنْهُ وَقُولُوا۟ لَهُمْ قَوْلًۭا مَّعْرُوفًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,4,' وَلْيَخْشَ ٱلَّذِينَ لَوْ تَرَكُوا۟ مِنْ خَلْفِهِمْ ذُرِّيَّةًۭ ضِعَفًا خَافُوا۟ عَلَيْهِمْ فَلْيَتَّقُوا۟ ٱللَّهَ وَلْيَقُولُوا۟ قَوْلًۭا سَدِيدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,4,' إِنَّ ٱلَّذِينَ يَأْكُلُونَ أَمْوَلَ ٱلْيَتَمَىٰ ظُلْمًا إِنَّمَا يَأْكُلُونَ فِى بُطُونِهِمْ نَارًۭا ۖ وَسَيَصْلَوْنَ سَعِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,4,' يُوصِيكُمُ ٱللَّهُ فِىٓ أَوْلَدِكُمْ ۖ لِلذَّكَرِ مِثْلُ حَظِّ ٱلْأُنثَيَيْنِ ۚ فَإِن كُنَّ نِسَآءًۭ فَوْقَ ٱثْنَتَيْنِ فَلَهُنَّ ثُلُثَا مَا تَرَكَ ۖ وَإِن كَانَتْ وَحِدَةًۭ فَلَهَا ٱلنِّصْفُ ۚ وَلِأَبَوَيْهِ لِكُلِّ وَحِدٍۢ مِّنْهُمَا ٱلسُّدُسُ مِمَّا تَرَكَ إِن كَانَ لَهُۥ وَلَدٌۭ ۚ فَإِن لَّمْ يَكُن لَّهُۥ وَلَدٌۭ وَوَرِثَهُۥٓ أَبَوَاهُ فَلِأُمِّهِ ٱلثُّلُثُ ۚ فَإِن كَانَ لَهُۥٓ إِخْوَةٌۭ فَلِأُمِّهِ ٱلسُّدُسُ ۚ مِنۢ بَعْدِ وَصِيَّةٍۢ يُوصِى بِهَآ أَوْ دَيْنٍ ۗ ءَابَآؤُكُمْ وَأَبْنَآؤُكُمْ لَا تَدْرُونَ أَيُّهُمْ أَقْرَبُ لَكُمْ نَفْعًۭا ۚ فَرِيضَةًۭ مِّنَ ٱللَّهِ ۗ إِنَّ ٱللَّهَ كَانَ عَلِيمًا حَكِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,4,' وَلَكُمْ نِصْفُ مَا تَرَكَ أَزْوَجُكُمْ إِن لَّمْ يَكُن لَّهُنَّ وَلَدٌۭ ۚ فَإِن كَانَ لَهُنَّ وَلَدٌۭ فَلَكُمُ ٱلرُّبُعُ مِمَّا تَرَكْنَ ۚ مِنۢ بَعْدِ وَصِيَّةٍۢ يُوصِينَ بِهَآ أَوْ دَيْنٍۢ ۚ وَلَهُنَّ ٱلرُّبُعُ مِمَّا تَرَكْتُمْ إِن لَّمْ يَكُن لَّكُمْ وَلَدٌۭ ۚ فَإِن كَانَ لَكُمْ وَلَدٌۭ فَلَهُنَّ ٱلثُّمُنُ مِمَّا تَرَكْتُم ۚ مِّنۢ بَعْدِ وَصِيَّةٍۢ تُوصُونَ بِهَآ أَوْ دَيْنٍۢ ۗ وَإِن كَانَ رَجُلٌۭ يُورَثُ كَلَلَةً أَوِ ٱمْرَأَةٌۭ وَلَهُۥٓ أَخٌ أَوْ أُخْتٌۭ فَلِكُلِّ وَحِدٍۢ مِّنْهُمَا ٱلسُّدُسُ ۚ فَإِن كَانُوٓا۟ أَكْثَرَ مِن ذَلِكَ فَهُمْ شُرَكَآءُ فِى ٱلثُّلُثِ ۚ مِنۢ بَعْدِ وَصِيَّةٍۢ يُوصَىٰ بِهَآ أَوْ دَيْنٍ غَيْرَ مُضَآرٍّۢ ۚ وَصِيَّةًۭ مِّنَ ٱللَّهِ ۗ وَٱللَّهُ عَلِيمٌ حَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,4,' تِلْكَ حُدُودُ ٱللَّهِ ۚ وَمَن يُطِعِ ٱللَّهَ وَرَسُولَهُۥ يُدْخِلْهُ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَا ۚ وَذَلِكَ ٱلْفَوْزُ ٱلْعَظِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,4,' وَمَن يَعْصِ ٱللَّهَ وَرَسُولَهُۥ وَيَتَعَدَّ حُدُودَهُۥ يُدْخِلْهُ نَارًا خَلِدًۭا فِيهَا وَلَهُۥ عَذَابٌۭ مُّهِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,4,' وَٱلَّتِى يَأْتِينَ ٱلْفَحِشَةَ مِن نِّسَآئِكُمْ فَٱسْتَشْهِدُوا۟ عَلَيْهِنَّ أَرْبَعَةًۭ مِّنكُمْ ۖ فَإِن شَهِدُوا۟ فَأَمْسِكُوهُنَّ فِى ٱلْبُيُوتِ حَتَّىٰ يَتَوَفَّىٰهُنَّ ٱلْمَوْتُ أَوْ يَجْعَلَ ٱللَّهُ لَهُنَّ سَبِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,4,' وَٱلَّذَانِ يَأْتِيَنِهَا مِنكُمْ فَـَٔاذُوهُمَا ۖ فَإِن تَابَا وَأَصْلَحَا فَأَعْرِضُوا۟ عَنْهُمَآ ۗ إِنَّ ٱللَّهَ كَانَ تَوَّابًۭا رَّحِيمًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,4,' إِنَّمَا ٱلتَّوْبَةُ عَلَى ٱللَّهِ لِلَّذِينَ يَعْمَلُونَ ٱلسُّوٓءَ بِجَهَلَةٍۢ ثُمَّ يَتُوبُونَ مِن قَرِيبٍۢ فَأُو۟لَٓئِكَ يَتُوبُ ٱللَّهُ عَلَيْهِمْ ۗ وَكَانَ ٱللَّهُ عَلِيمًا حَكِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,4,' وَلَيْسَتِ ٱلتَّوْبَةُ لِلَّذِينَ يَعْمَلُونَ ٱلسَّيِّـَٔاتِ حَتَّىٰٓ إِذَا حَضَرَ أَحَدَهُمُ ٱلْمَوْتُ قَالَ إِنِّى تُبْتُ ٱلْـَٔنَ وَلَا ٱلَّذِينَ يَمُوتُونَ وَهُمْ كُفَّارٌ ۚ أُو۟لَٓئِكَ أَعْتَدْنَا لَهُمْ عَذَابًا أَلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,4,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا يَحِلُّ لَكُمْ أَن تَرِثُوا۟ ٱلنِّسَآءَ كَرْهًۭا ۖ وَلَا تَعْضُلُوهُنَّ لِتَذْهَبُوا۟ بِبَعْضِ مَآ ءَاتَيْتُمُوهُنَّ إِلَّآ أَن يَأْتِينَ بِفَحِشَةٍۢ مُّبَيِّنَةٍۢ ۚ وَعَاشِرُوهُنَّ بِٱلْمَعْرُوفِ ۚ فَإِن كَرِهْتُمُوهُنَّ فَعَسَىٰٓ أَن تَكْرَهُوا۟ شَيْـًۭٔا وَيَجْعَلَ ٱللَّهُ فِيهِ خَيْرًۭا كَثِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,4,' وَإِنْ أَرَدتُّمُ ٱسْتِبْدَالَ زَوْجٍۢ مَّكَانَ زَوْجٍۢ وَءَاتَيْتُمْ إِحْدَىٰهُنَّ قِنطَارًۭا فَلَا تَأْخُذُوا۟ مِنْهُ شَيْـًٔا ۚ أَتَأْخُذُونَهُۥ بُهْتَنًۭا وَإِثْمًۭا مُّبِينًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,4,' وَكَيْفَ تَأْخُذُونَهُۥ وَقَدْ أَفْضَىٰ بَعْضُكُمْ إِلَىٰ بَعْضٍۢ وَأَخَذْنَ مِنكُم مِّيثَقًا غَلِيظًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,4,' وَلَا تَنكِحُوا۟ مَا نَكَحَ ءَابَآؤُكُم مِّنَ ٱلنِّسَآءِ إِلَّا مَا قَدْ سَلَفَ ۚ إِنَّهُۥ كَانَ فَحِشَةًۭ وَمَقْتًۭا وَسَآءَ سَبِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,4,' حُرِّمَتْ عَلَيْكُمْ أُمَّهَتُكُمْ وَبَنَاتُكُمْ وَأَخَوَتُكُمْ وَعَمَّتُكُمْ وَخَلَتُكُمْ وَبَنَاتُ ٱلْأَخِ وَبَنَاتُ ٱلْأُخْتِ وَأُمَّهَتُكُمُ ٱلَّتِىٓ أَرْضَعْنَكُمْ وَأَخَوَتُكُم مِّنَ ٱلرَّضَعَةِ وَأُمَّهَتُ نِسَآئِكُمْ وَرَبَٓئِبُكُمُ ٱلَّتِى فِى حُجُورِكُم مِّن نِّسَآئِكُمُ ٱلَّتِى دَخَلْتُم بِهِنَّ فَإِن لَّمْ تَكُونُوا۟ دَخَلْتُم بِهِنَّ فَلَا جُنَاحَ عَلَيْكُمْ وَحَلَٓئِلُ أَبْنَآئِكُمُ ٱلَّذِينَ مِنْ أَصْلَبِكُمْ وَأَن تَجْمَعُوا۟ بَيْنَ ٱلْأُخْتَيْنِ إِلَّا مَا قَدْ سَلَفَ ۗ إِنَّ ٱللَّهَ كَانَ غَفُورًۭا رَّحِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,4,' وَٱلْمُحْصَنَتُ مِنَ ٱلنِّسَآءِ إِلَّا مَا مَلَكَتْ أَيْمَنُكُمْ ۖ كِتَبَ ٱللَّهِ عَلَيْكُمْ ۚ وَأُحِلَّ لَكُم مَّا وَرَآءَ ذَلِكُمْ أَن تَبْتَغُوا۟ بِأَمْوَلِكُم مُّحْصِنِينَ غَيْرَ مُسَفِحِينَ ۚ فَمَا ٱسْتَمْتَعْتُم بِهِۦ مِنْهُنَّ فَـَٔاتُوهُنَّ أُجُورَهُنَّ فَرِيضَةًۭ ۚ وَلَا جُنَاحَ عَلَيْكُمْ فِيمَا تَرَضَيْتُم بِهِۦ مِنۢ بَعْدِ ٱلْفَرِيضَةِ ۚ إِنَّ ٱللَّهَ كَانَ عَلِيمًا حَكِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,4,' وَمَن لَّمْ يَسْتَطِعْ مِنكُمْ طَوْلًا أَن يَنكِحَ ٱلْمُحْصَنَتِ ٱلْمُؤْمِنَتِ فَمِن مَّا مَلَكَتْ أَيْمَنُكُم مِّن فَتَيَتِكُمُ ٱلْمُؤْمِنَتِ ۚ وَٱللَّهُ أَعْلَمُ بِإِيمَنِكُم ۚ بَعْضُكُم مِّنۢ بَعْضٍۢ ۚ فَٱنكِحُوهُنَّ بِإِذْنِ أَهْلِهِنَّ وَءَاتُوهُنَّ أُجُورَهُنَّ بِٱلْمَعْرُوفِ مُحْصَنَتٍ غَيْرَ مُسَفِحَتٍۢ وَلَا مُتَّخِذَتِ أَخْدَانٍۢ ۚ فَإِذَآ أُحْصِنَّ فَإِنْ أَتَيْنَ بِفَحِشَةٍۢ فَعَلَيْهِنَّ نِصْفُ مَا عَلَى ٱلْمُحْصَنَتِ مِنَ ٱلْعَذَابِ ۚ ذَلِكَ لِمَنْ خَشِىَ ٱلْعَنَتَ مِنكُمْ ۚ وَأَن تَصْبِرُوا۟ خَيْرٌۭ لَّكُمْ ۗ وَٱللَّهُ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,4,' يُرِيدُ ٱللَّهُ لِيُبَيِّنَ لَكُمْ وَيَهْدِيَكُمْ سُنَنَ ٱلَّذِينَ مِن قَبْلِكُمْ وَيَتُوبَ عَلَيْكُمْ ۗ وَٱللَّهُ عَلِيمٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,4,' وَٱللَّهُ يُرِيدُ أَن يَتُوبَ عَلَيْكُمْ وَيُرِيدُ ٱلَّذِينَ يَتَّبِعُونَ ٱلشَّهَوَتِ أَن تَمِيلُوا۟ مَيْلًا عَظِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,4,' يُرِيدُ ٱللَّهُ أَن يُخَفِّفَ عَنكُمْ ۚ وَخُلِقَ ٱلْإِنسَنُ ضَعِيفًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,4,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَأْكُلُوٓا۟ أَمْوَلَكُم بَيْنَكُم بِٱلْبَطِلِ إِلَّآ أَن تَكُونَ تِجَرَةً عَن تَرَاضٍۢ مِّنكُمْ ۚ وَلَا تَقْتُلُوٓا۟ أَنفُسَكُمْ ۚ إِنَّ ٱللَّهَ كَانَ بِكُمْ رَحِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,4,' وَمَن يَفْعَلْ ذَلِكَ عُدْوَنًۭا وَظُلْمًۭا فَسَوْفَ نُصْلِيهِ نَارًۭا ۚ وَكَانَ ذَلِكَ عَلَى ٱللَّهِ يَسِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,4,' إِن تَجْتَنِبُوا۟ كَبَآئِرَ مَا تُنْهَوْنَ عَنْهُ نُكَفِّرْ عَنكُمْ سَيِّـَٔاتِكُمْ وَنُدْخِلْكُم مُّدْخَلًۭا كَرِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,4,' وَلَا تَتَمَنَّوْا۟ مَا فَضَّلَ ٱللَّهُ بِهِۦ بَعْضَكُمْ عَلَىٰ بَعْضٍۢ ۚ لِّلرِّجَالِ نَصِيبٌۭ مِّمَّا ٱكْتَسَبُوا۟ ۖ وَلِلنِّسَآءِ نَصِيبٌۭ مِّمَّا ٱكْتَسَبْنَ ۚ وَسْـَٔلُوا۟ ٱللَّهَ مِن فَضْلِهِۦٓ ۗ إِنَّ ٱللَّهَ كَانَ بِكُلِّ شَىْءٍ عَلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,4,' وَلِكُلٍّۢ جَعَلْنَا مَوَلِىَ مِمَّا تَرَكَ ٱلْوَلِدَانِ وَٱلْأَقْرَبُونَ ۚ وَٱلَّذِينَ عَقَدَتْ أَيْمَنُكُمْ فَـَٔاتُوهُمْ نَصِيبَهُمْ ۚ إِنَّ ٱللَّهَ كَانَ عَلَىٰ كُلِّ شَىْءٍۢ شَهِيدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,4,' ٱلرِّجَالُ قَوَّمُونَ عَلَى ٱلنِّسَآءِ بِمَا فَضَّلَ ٱللَّهُ بَعْضَهُمْ عَلَىٰ بَعْضٍۢ وَبِمَآ أَنفَقُوا۟ مِنْ أَمْوَلِهِمْ ۚ فَٱلصَّلِحَتُ قَنِتَتٌ حَفِظَتٌۭ لِّلْغَيْبِ بِمَا حَفِظَ ٱللَّهُ ۚ وَٱلَّتِى تَخَافُونَ نُشُوزَهُنَّ فَعِظُوهُنَّ وَٱهْجُرُوهُنَّ فِى ٱلْمَضَاجِعِ وَٱضْرِبُوهُنَّ ۖ فَإِنْ أَطَعْنَكُمْ فَلَا تَبْغُوا۟ عَلَيْهِنَّ سَبِيلًا ۗ إِنَّ ٱللَّهَ كَانَ عَلِيًّۭا كَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,4,' وَإِنْ خِفْتُمْ شِقَاقَ بَيْنِهِمَا فَٱبْعَثُوا۟ حَكَمًۭا مِّنْ أَهْلِهِۦ وَحَكَمًۭا مِّنْ أَهْلِهَآ إِن يُرِيدَآ إِصْلَحًۭا يُوَفِّقِ ٱللَّهُ بَيْنَهُمَآ ۗ إِنَّ ٱللَّهَ كَانَ عَلِيمًا خَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,4,' وَٱعْبُدُوا۟ ٱللَّهَ وَلَا تُشْرِكُوا۟ بِهِۦ شَيْـًۭٔا ۖ وَبِٱلْوَلِدَيْنِ إِحْسَنًۭا وَبِذِى ٱلْقُرْبَىٰ وَٱلْيَتَمَىٰ وَٱلْمَسَكِينِ وَٱلْجَارِ ذِى ٱلْقُرْبَىٰ وَٱلْجَارِ ٱلْجُنُبِ وَٱلصَّاحِبِ بِٱلْجَنۢبِ وَٱبْنِ ٱلسَّبِيلِ وَمَا مَلَكَتْ أَيْمَنُكُمْ ۗ إِنَّ ٱللَّهَ لَا يُحِبُّ مَن كَانَ مُخْتَالًۭا فَخُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,4,' ٱلَّذِينَ يَبْخَلُونَ وَيَأْمُرُونَ ٱلنَّاسَ بِٱلْبُخْلِ وَيَكْتُمُونَ مَآ ءَاتَىٰهُمُ ٱللَّهُ مِن فَضْلِهِۦ ۗ وَأَعْتَدْنَا لِلْكَفِرِينَ عَذَابًۭا مُّهِينًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,4,' وَٱلَّذِينَ يُنفِقُونَ أَمْوَلَهُمْ رِئَآءَ ٱلنَّاسِ وَلَا يُؤْمِنُونَ بِٱللَّهِ وَلَا بِٱلْيَوْمِ ٱلْءَاخِرِ ۗ وَمَن يَكُنِ ٱلشَّيْطَنُ لَهُۥ قَرِينًۭا فَسَآءَ قَرِينًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,4,' وَمَاذَا عَلَيْهِمْ لَوْ ءَامَنُوا۟ بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ وَأَنفَقُوا۟ مِمَّا رَزَقَهُمُ ٱللَّهُ ۚ وَكَانَ ٱللَّهُ بِهِمْ عَلِيمًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,4,' إِنَّ ٱللَّهَ لَا يَظْلِمُ مِثْقَالَ ذَرَّةٍۢ ۖ وَإِن تَكُ حَسَنَةًۭ يُضَعِفْهَا وَيُؤْتِ مِن لَّدُنْهُ أَجْرًا عَظِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,4,' فَكَيْفَ إِذَا جِئْنَا مِن كُلِّ أُمَّةٍۭ بِشَهِيدٍۢ وَجِئْنَا بِكَ عَلَىٰ هَٓؤُلَآءِ شَهِيدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,4,' يَوْمَئِذٍۢ يَوَدُّ ٱلَّذِينَ كَفَرُوا۟ وَعَصَوُا۟ ٱلرَّسُولَ لَوْ تُسَوَّىٰ بِهِمُ ٱلْأَرْضُ وَلَا يَكْتُمُونَ ٱللَّهَ حَدِيثًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,4,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَقْرَبُوا۟ ٱلصَّلَوٰةَ وَأَنتُمْ سُكَرَىٰ حَتَّىٰ تَعْلَمُوا۟ مَا تَقُولُونَ وَلَا جُنُبًا إِلَّا عَابِرِى سَبِيلٍ حَتَّىٰ تَغْتَسِلُوا۟ ۚ وَإِن كُنتُم مَّرْضَىٰٓ أَوْ عَلَىٰ سَفَرٍ أَوْ جَآءَ أَحَدٌۭ مِّنكُم مِّنَ ٱلْغَآئِطِ أَوْ لَمَسْتُمُ ٱلنِّسَآءَ فَلَمْ تَجِدُوا۟ مَآءًۭ فَتَيَمَّمُوا۟ صَعِيدًۭا طَيِّبًۭا فَٱمْسَحُوا۟ بِوُجُوهِكُمْ وَأَيْدِيكُمْ ۗ إِنَّ ٱللَّهَ كَانَ عَفُوًّا غَفُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,4,' أَلَمْ تَرَ إِلَى ٱلَّذِينَ أُوتُوا۟ نَصِيبًۭا مِّنَ ٱلْكِتَبِ يَشْتَرُونَ ٱلضَّلَلَةَ وَيُرِيدُونَ أَن تَضِلُّوا۟ ٱلسَّبِيلَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,4,' وَٱللَّهُ أَعْلَمُ بِأَعْدَآئِكُمْ ۚ وَكَفَىٰ بِٱللَّهِ وَلِيًّۭا وَكَفَىٰ بِٱللَّهِ نَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,4,' مِّنَ ٱلَّذِينَ هَادُوا۟ يُحَرِّفُونَ ٱلْكَلِمَ عَن مَّوَاضِعِهِۦ وَيَقُولُونَ سَمِعْنَا وَعَصَيْنَا وَٱسْمَعْ غَيْرَ مُسْمَعٍۢ وَرَعِنَا لَيًّۢا بِأَلْسِنَتِهِمْ وَطَعْنًۭا فِى ٱلدِّينِ ۚ وَلَوْ أَنَّهُمْ قَالُوا۟ سَمِعْنَا وَأَطَعْنَا وَٱسْمَعْ وَٱنظُرْنَا لَكَانَ خَيْرًۭا لَّهُمْ وَأَقْوَمَ وَلَكِن لَّعَنَهُمُ ٱللَّهُ بِكُفْرِهِمْ فَلَا يُؤْمِنُونَ إِلَّا قَلِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,4,' يَٓأَيُّهَا ٱلَّذِينَ أُوتُوا۟ ٱلْكِتَبَ ءَامِنُوا۟ بِمَا نَزَّلْنَا مُصَدِّقًۭا لِّمَا مَعَكُم مِّن قَبْلِ أَن نَّطْمِسَ وُجُوهًۭا فَنَرُدَّهَا عَلَىٰٓ أَدْبَارِهَآ أَوْ نَلْعَنَهُمْ كَمَا لَعَنَّآ أَصْحَبَ ٱلسَّبْتِ ۚ وَكَانَ أَمْرُ ٱللَّهِ مَفْعُولًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,4,' إِنَّ ٱللَّهَ لَا يَغْفِرُ أَن يُشْرَكَ بِهِۦ وَيَغْفِرُ مَا دُونَ ذَلِكَ لِمَن يَشَآءُ ۚ وَمَن يُشْرِكْ بِٱللَّهِ فَقَدِ ٱفْتَرَىٰٓ إِثْمًا عَظِيمًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,4,' أَلَمْ تَرَ إِلَى ٱلَّذِينَ يُزَكُّونَ أَنفُسَهُم ۚ بَلِ ٱللَّهُ يُزَكِّى مَن يَشَآءُ وَلَا يُظْلَمُونَ فَتِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,4,' ٱنظُرْ كَيْفَ يَفْتَرُونَ عَلَى ٱللَّهِ ٱلْكَذِبَ ۖ وَكَفَىٰ بِهِۦٓ إِثْمًۭا مُّبِينًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,4,' أَلَمْ تَرَ إِلَى ٱلَّذِينَ أُوتُوا۟ نَصِيبًۭا مِّنَ ٱلْكِتَبِ يُؤْمِنُونَ بِٱلْجِبْتِ وَٱلطَّغُوتِ وَيَقُولُونَ لِلَّذِينَ كَفَرُوا۟ هَٓؤُلَآءِ أَهْدَىٰ مِنَ ٱلَّذِينَ ءَامَنُوا۟ سَبِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,4,' أُو۟لَٓئِكَ ٱلَّذِينَ لَعَنَهُمُ ٱللَّهُ ۖ وَمَن يَلْعَنِ ٱللَّهُ فَلَن تَجِدَ لَهُۥ نَصِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,4,' أَمْ لَهُمْ نَصِيبٌۭ مِّنَ ٱلْمُلْكِ فَإِذًۭا لَّا يُؤْتُونَ ٱلنَّاسَ نَقِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,4,' أَمْ يَحْسُدُونَ ٱلنَّاسَ عَلَىٰ مَآ ءَاتَىٰهُمُ ٱللَّهُ مِن فَضْلِهِۦ ۖ فَقَدْ ءَاتَيْنَآ ءَالَ إِبْرَهِيمَ ٱلْكِتَبَ وَٱلْحِكْمَةَ وَءَاتَيْنَهُم مُّلْكًا عَظِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,4,' فَمِنْهُم مَّنْ ءَامَنَ بِهِۦ وَمِنْهُم مَّن صَدَّ عَنْهُ ۚ وَكَفَىٰ بِجَهَنَّمَ سَعِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,4,' إِنَّ ٱلَّذِينَ كَفَرُوا۟ بِـَٔايَتِنَا سَوْفَ نُصْلِيهِمْ نَارًۭا كُلَّمَا نَضِجَتْ جُلُودُهُم بَدَّلْنَهُمْ جُلُودًا غَيْرَهَا لِيَذُوقُوا۟ ٱلْعَذَابَ ۗ إِنَّ ٱللَّهَ كَانَ عَزِيزًا حَكِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,4,' وَٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ سَنُدْخِلُهُمْ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَآ أَبَدًۭا ۖ لَّهُمْ فِيهَآ أَزْوَجٌۭ مُّطَهَّرَةٌۭ ۖ وَنُدْخِلُهُمْ ظِلًّۭا ظَلِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,4,' إِنَّ ٱللَّهَ يَأْمُرُكُمْ أَن تُؤَدُّوا۟ ٱلْأَمَنَتِ إِلَىٰٓ أَهْلِهَا وَإِذَا حَكَمْتُم بَيْنَ ٱلنَّاسِ أَن تَحْكُمُوا۟ بِٱلْعَدْلِ ۚ إِنَّ ٱللَّهَ نِعِمَّا يَعِظُكُم بِهِۦٓ ۗ إِنَّ ٱللَّهَ كَانَ سَمِيعًۢا بَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,4,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ أَطِيعُوا۟ ٱللَّهَ وَأَطِيعُوا۟ ٱلرَّسُولَ وَأُو۟لِى ٱلْأَمْرِ مِنكُمْ ۖ فَإِن تَنَزَعْتُمْ فِى شَىْءٍۢ فَرُدُّوهُ إِلَى ٱللَّهِ وَٱلرَّسُولِ إِن كُنتُمْ تُؤْمِنُونَ بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ ۚ ذَلِكَ خَيْرٌۭ وَأَحْسَنُ تَأْوِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,4,' أَلَمْ تَرَ إِلَى ٱلَّذِينَ يَزْعُمُونَ أَنَّهُمْ ءَامَنُوا۟ بِمَآ أُنزِلَ إِلَيْكَ وَمَآ أُنزِلَ مِن قَبْلِكَ يُرِيدُونَ أَن يَتَحَاكَمُوٓا۟ إِلَى ٱلطَّغُوتِ وَقَدْ أُمِرُوٓا۟ أَن يَكْفُرُوا۟ بِهِۦ وَيُرِيدُ ٱلشَّيْطَنُ أَن يُضِلَّهُمْ ضَلَلًۢا بَعِيدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,4,' وَإِذَا قِيلَ لَهُمْ تَعَالَوْا۟ إِلَىٰ مَآ أَنزَلَ ٱللَّهُ وَإِلَى ٱلرَّسُولِ رَأَيْتَ ٱلْمُنَفِقِينَ يَصُدُّونَ عَنكَ صُدُودًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,4,' فَكَيْفَ إِذَآ أَصَبَتْهُم مُّصِيبَةٌۢ بِمَا قَدَّمَتْ أَيْدِيهِمْ ثُمَّ جَآءُوكَ يَحْلِفُونَ بِٱللَّهِ إِنْ أَرَدْنَآ إِلَّآ إِحْسَنًۭا وَتَوْفِيقًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,4,' أُو۟لَٓئِكَ ٱلَّذِينَ يَعْلَمُ ٱللَّهُ مَا فِى قُلُوبِهِمْ فَأَعْرِضْ عَنْهُمْ وَعِظْهُمْ وَقُل لَّهُمْ فِىٓ أَنفُسِهِمْ قَوْلًۢا بَلِيغًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,4,' وَمَآ أَرْسَلْنَا مِن رَّسُولٍ إِلَّا لِيُطَاعَ بِإِذْنِ ٱللَّهِ ۚ وَلَوْ أَنَّهُمْ إِذ ظَّلَمُوٓا۟ أَنفُسَهُمْ جَآءُوكَ فَٱسْتَغْفَرُوا۟ ٱللَّهَ وَٱسْتَغْفَرَ لَهُمُ ٱلرَّسُولُ لَوَجَدُوا۟ ٱللَّهَ تَوَّابًۭا رَّحِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,4,' فَلَا وَرَبِّكَ لَا يُؤْمِنُونَ حَتَّىٰ يُحَكِّمُوكَ فِيمَا شَجَرَ بَيْنَهُمْ ثُمَّ لَا يَجِدُوا۟ فِىٓ أَنفُسِهِمْ حَرَجًۭا مِّمَّا قَضَيْتَ وَيُسَلِّمُوا۟ تَسْلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,4,' وَلَوْ أَنَّا كَتَبْنَا عَلَيْهِمْ أَنِ ٱقْتُلُوٓا۟ أَنفُسَكُمْ أَوِ ٱخْرُجُوا۟ مِن دِيَرِكُم مَّا فَعَلُوهُ إِلَّا قَلِيلٌۭ مِّنْهُمْ ۖ وَلَوْ أَنَّهُمْ فَعَلُوا۟ مَا يُوعَظُونَ بِهِۦ لَكَانَ خَيْرًۭا لَّهُمْ وَأَشَدَّ تَثْبِيتًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,4,' وَإِذًۭا لَّءَاتَيْنَهُم مِّن لَّدُنَّآ أَجْرًا عَظِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,4,' وَلَهَدَيْنَهُمْ صِرَطًۭا مُّسْتَقِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,4,' وَمَن يُطِعِ ٱللَّهَ وَٱلرَّسُولَ فَأُو۟لَٓئِكَ مَعَ ٱلَّذِينَ أَنْعَمَ ٱللَّهُ عَلَيْهِم مِّنَ ٱلنَّبِيِّۦنَ وَٱلصِّدِّيقِينَ وَٱلشُّهَدَآءِ وَٱلصَّلِحِينَ ۚ وَحَسُنَ أُو۟لَٓئِكَ رَفِيقًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,4,' ذَلِكَ ٱلْفَضْلُ مِنَ ٱللَّهِ ۚ وَكَفَىٰ بِٱللَّهِ عَلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,4,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ خُذُوا۟ حِذْرَكُمْ فَٱنفِرُوا۟ ثُبَاتٍ أَوِ ٱنفِرُوا۟ جَمِيعًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,4,' وَإِنَّ مِنكُمْ لَمَن لَّيُبَطِّئَنَّ فَإِنْ أَصَبَتْكُم مُّصِيبَةٌۭ قَالَ قَدْ أَنْعَمَ ٱللَّهُ عَلَىَّ إِذْ لَمْ أَكُن مَّعَهُمْ شَهِيدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,4,' وَلَىِٕنْ أَصَبَكُمْ فَضْلٌۭ مِّنَ ٱللَّهِ لَيَقُولَنَّ كَأَن لَّمْ تَكُنۢ بَيْنَكُمْ وَبَيْنَهُۥ مَوَدَّةٌۭ يَلَيْتَنِى كُنتُ مَعَهُمْ فَأَفُوزَ فَوْزًا عَظِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,4,' فَلْيُقَتِلْ فِى سَبِيلِ ٱللَّهِ ٱلَّذِينَ يَشْرُونَ ٱلْحَيَوٰةَ ٱلدُّنْيَا بِٱلْءَاخِرَةِ ۚ وَمَن يُقَتِلْ فِى سَبِيلِ ٱللَّهِ فَيُقْتَلْ أَوْ يَغْلِبْ فَسَوْفَ نُؤْتِيهِ أَجْرًا عَظِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,4,' وَمَا لَكُمْ لَا تُقَتِلُونَ فِى سَبِيلِ ٱللَّهِ وَٱلْمُسْتَضْعَفِينَ مِنَ ٱلرِّجَالِ وَٱلنِّسَآءِ وَٱلْوِلْدَنِ ٱلَّذِينَ يَقُولُونَ رَبَّنَآ أَخْرِجْنَا مِنْ هَذِهِ ٱلْقَرْيَةِ ٱلظَّالِمِ أَهْلُهَا وَٱجْعَل لَّنَا مِن لَّدُنكَ وَلِيًّۭا وَٱجْعَل لَّنَا مِن لَّدُنكَ نَصِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,4,' ٱلَّذِينَ ءَامَنُوا۟ يُقَتِلُونَ فِى سَبِيلِ ٱللَّهِ ۖ وَٱلَّذِينَ كَفَرُوا۟ يُقَتِلُونَ فِى سَبِيلِ ٱلطَّغُوتِ فَقَتِلُوٓا۟ أَوْلِيَآءَ ٱلشَّيْطَنِ ۖ إِنَّ كَيْدَ ٱلشَّيْطَنِ كَانَ ضَعِيفًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,4,' أَلَمْ تَرَ إِلَى ٱلَّذِينَ قِيلَ لَهُمْ كُفُّوٓا۟ أَيْدِيَكُمْ وَأَقِيمُوا۟ ٱلصَّلَوٰةَ وَءَاتُوا۟ ٱلزَّكَوٰةَ فَلَمَّا كُتِبَ عَلَيْهِمُ ٱلْقِتَالُ إِذَا فَرِيقٌۭ مِّنْهُمْ يَخْشَوْنَ ٱلنَّاسَ كَخَشْيَةِ ٱللَّهِ أَوْ أَشَدَّ خَشْيَةًۭ ۚ وَقَالُوا۟ رَبَّنَا لِمَ كَتَبْتَ عَلَيْنَا ٱلْقِتَالَ لَوْلَآ أَخَّرْتَنَآ إِلَىٰٓ أَجَلٍۢ قَرِيبٍۢ ۗ قُلْ مَتَعُ ٱلدُّنْيَا قَلِيلٌۭ وَٱلْءَاخِرَةُ خَيْرٌۭ لِّمَنِ ٱتَّقَىٰ وَلَا تُظْلَمُونَ فَتِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,4,' أَيْنَمَا تَكُونُوا۟ يُدْرِككُّمُ ٱلْمَوْتُ وَلَوْ كُنتُمْ فِى بُرُوجٍۢ مُّشَيَّدَةٍۢ ۗ وَإِن تُصِبْهُمْ حَسَنَةٌۭ يَقُولُوا۟ هَذِهِۦ مِنْ عِندِ ٱللَّهِ ۖ وَإِن تُصِبْهُمْ سَيِّئَةٌۭ يَقُولُوا۟ هَذِهِۦ مِنْ عِندِكَ ۚ قُلْ كُلٌّۭ مِّنْ عِندِ ٱللَّهِ ۖ فَمَالِ هَٓؤُلَآءِ ٱلْقَوْمِ لَا يَكَادُونَ يَفْقَهُونَ حَدِيثًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,4,' مَّآ أَصَابَكَ مِنْ حَسَنَةٍۢ فَمِنَ ٱللَّهِ ۖ وَمَآ أَصَابَكَ مِن سَيِّئَةٍۢ فَمِن نَّفْسِكَ ۚ وَأَرْسَلْنَكَ لِلنَّاسِ رَسُولًۭا ۚ وَكَفَىٰ بِٱللَّهِ شَهِيدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,4,' مَّن يُطِعِ ٱلرَّسُولَ فَقَدْ أَطَاعَ ٱللَّهَ ۖ وَمَن تَوَلَّىٰ فَمَآ أَرْسَلْنَكَ عَلَيْهِمْ حَفِيظًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,4,' وَيَقُولُونَ طَاعَةٌۭ فَإِذَا بَرَزُوا۟ مِنْ عِندِكَ بَيَّتَ طَآئِفَةٌۭ مِّنْهُمْ غَيْرَ ٱلَّذِى تَقُولُ ۖ وَٱللَّهُ يَكْتُبُ مَا يُبَيِّتُونَ ۖ فَأَعْرِضْ عَنْهُمْ وَتَوَكَّلْ عَلَى ٱللَّهِ ۚ وَكَفَىٰ بِٱللَّهِ وَكِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,4,' أَفَلَا يَتَدَبَّرُونَ ٱلْقُرْءَانَ ۚ وَلَوْ كَانَ مِنْ عِندِ غَيْرِ ٱللَّهِ لَوَجَدُوا۟ فِيهِ ٱخْتِلَفًۭا كَثِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,4,' وَإِذَا جَآءَهُمْ أَمْرٌۭ مِّنَ ٱلْأَمْنِ أَوِ ٱلْخَوْفِ أَذَاعُوا۟ بِهِۦ ۖ وَلَوْ رَدُّوهُ إِلَى ٱلرَّسُولِ وَإِلَىٰٓ أُو۟لِى ٱلْأَمْرِ مِنْهُمْ لَعَلِمَهُ ٱلَّذِينَ يَسْتَنۢبِطُونَهُۥ مِنْهُمْ ۗ وَلَوْلَا فَضْلُ ٱللَّهِ عَلَيْكُمْ وَرَحْمَتُهُۥ لَٱتَّبَعْتُمُ ٱلشَّيْطَنَ إِلَّا قَلِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,4,' فَقَتِلْ فِى سَبِيلِ ٱللَّهِ لَا تُكَلَّفُ إِلَّا نَفْسَكَ ۚ وَحَرِّضِ ٱلْمُؤْمِنِينَ ۖ عَسَى ٱللَّهُ أَن يَكُفَّ بَأْسَ ٱلَّذِينَ كَفَرُوا۟ ۚ وَٱللَّهُ أَشَدُّ بَأْسًۭا وَأَشَدُّ تَنكِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,4,' مَّن يَشْفَعْ شَفَعَةً حَسَنَةًۭ يَكُن لَّهُۥ نَصِيبٌۭ مِّنْهَا ۖ وَمَن يَشْفَعْ شَفَعَةًۭ سَيِّئَةًۭ يَكُن لَّهُۥ كِفْلٌۭ مِّنْهَا ۗ وَكَانَ ٱللَّهُ عَلَىٰ كُلِّ شَىْءٍۢ مُّقِيتًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,4,' وَإِذَا حُيِّيتُم بِتَحِيَّةٍۢ فَحَيُّوا۟ بِأَحْسَنَ مِنْهَآ أَوْ رُدُّوهَآ ۗ إِنَّ ٱللَّهَ كَانَ عَلَىٰ كُلِّ شَىْءٍ حَسِيبًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,4,' ٱللَّهُ لَآ إِلَهَ إِلَّا هُوَ ۚ لَيَجْمَعَنَّكُمْ إِلَىٰ يَوْمِ ٱلْقِيَمَةِ لَا رَيْبَ فِيهِ ۗ وَمَنْ أَصْدَقُ مِنَ ٱللَّهِ حَدِيثًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,4,' فَمَا لَكُمْ فِى ٱلْمُنَفِقِينَ فِئَتَيْنِ وَٱللَّهُ أَرْكَسَهُم بِمَا كَسَبُوٓا۟ ۚ أَتُرِيدُونَ أَن تَهْدُوا۟ مَنْ أَضَلَّ ٱللَّهُ ۖ وَمَن يُضْلِلِ ٱللَّهُ فَلَن تَجِدَ لَهُۥ سَبِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,4,' وَدُّوا۟ لَوْ تَكْفُرُونَ كَمَا كَفَرُوا۟ فَتَكُونُونَ سَوَآءًۭ ۖ فَلَا تَتَّخِذُوا۟ مِنْهُمْ أَوْلِيَآءَ حَتَّىٰ يُهَاجِرُوا۟ فِى سَبِيلِ ٱللَّهِ ۚ فَإِن تَوَلَّوْا۟ فَخُذُوهُمْ وَٱقْتُلُوهُمْ حَيْثُ وَجَدتُّمُوهُمْ ۖ وَلَا تَتَّخِذُوا۟ مِنْهُمْ وَلِيًّۭا وَلَا نَصِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,4,' إِلَّا ٱلَّذِينَ يَصِلُونَ إِلَىٰ قَوْمٍۭ بَيْنَكُمْ وَبَيْنَهُم مِّيثَقٌ أَوْ جَآءُوكُمْ حَصِرَتْ صُدُورُهُمْ أَن يُقَتِلُوكُمْ أَوْ يُقَتِلُوا۟ قَوْمَهُمْ ۚ وَلَوْ شَآءَ ٱللَّهُ لَسَلَّطَهُمْ عَلَيْكُمْ فَلَقَتَلُوكُمْ ۚ فَإِنِ ٱعْتَزَلُوكُمْ فَلَمْ يُقَتِلُوكُمْ وَأَلْقَوْا۟ إِلَيْكُمُ ٱلسَّلَمَ فَمَا جَعَلَ ٱللَّهُ لَكُمْ عَلَيْهِمْ سَبِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,4,' سَتَجِدُونَ ءَاخَرِينَ يُرِيدُونَ أَن يَأْمَنُوكُمْ وَيَأْمَنُوا۟ قَوْمَهُمْ كُلَّ مَا رُدُّوٓا۟ إِلَى ٱلْفِتْنَةِ أُرْكِسُوا۟ فِيهَا ۚ فَإِن لَّمْ يَعْتَزِلُوكُمْ وَيُلْقُوٓا۟ إِلَيْكُمُ ٱلسَّلَمَ وَيَكُفُّوٓا۟ أَيْدِيَهُمْ فَخُذُوهُمْ وَٱقْتُلُوهُمْ حَيْثُ ثَقِفْتُمُوهُمْ ۚ وَأُو۟لَٓئِكُمْ جَعَلْنَا لَكُمْ عَلَيْهِمْ سُلْطَنًۭا مُّبِينًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,4,' وَمَا كَانَ لِمُؤْمِنٍ أَن يَقْتُلَ مُؤْمِنًا إِلَّا خَطَـًۭٔا ۚ وَمَن قَتَلَ مُؤْمِنًا خَطَـًۭٔا فَتَحْرِيرُ رَقَبَةٍۢ مُّؤْمِنَةٍۢ وَدِيَةٌۭ مُّسَلَّمَةٌ إِلَىٰٓ أَهْلِهِۦٓ إِلَّآ أَن يَصَّدَّقُوا۟ ۚ فَإِن كَانَ مِن قَوْمٍ عَدُوٍّۢ لَّكُمْ وَهُوَ مُؤْمِنٌۭ فَتَحْرِيرُ رَقَبَةٍۢ مُّؤْمِنَةٍۢ ۖ وَإِن كَانَ مِن قَوْمٍۭ بَيْنَكُمْ وَبَيْنَهُم مِّيثَقٌۭ فَدِيَةٌۭ مُّسَلَّمَةٌ إِلَىٰٓ أَهْلِهِۦ وَتَحْرِيرُ رَقَبَةٍۢ مُّؤْمِنَةٍۢ ۖ فَمَن لَّمْ يَجِدْ فَصِيَامُ شَهْرَيْنِ مُتَتَابِعَيْنِ تَوْبَةًۭ مِّنَ ٱللَّهِ ۗ وَكَانَ ٱللَّهُ عَلِيمًا حَكِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,4,' وَمَن يَقْتُلْ مُؤْمِنًۭا مُّتَعَمِّدًۭا فَجَزَآؤُهُۥ جَهَنَّمُ خَلِدًۭا فِيهَا وَغَضِبَ ٱللَّهُ عَلَيْهِ وَلَعَنَهُۥ وَأَعَدَّ لَهُۥ عَذَابًا عَظِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,4,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِذَا ضَرَبْتُمْ فِى سَبِيلِ ٱللَّهِ فَتَبَيَّنُوا۟ وَلَا تَقُولُوا۟ لِمَنْ أَلْقَىٰٓ إِلَيْكُمُ ٱلسَّلَمَ لَسْتَ مُؤْمِنًۭا تَبْتَغُونَ عَرَضَ ٱلْحَيَوٰةِ ٱلدُّنْيَا فَعِندَ ٱللَّهِ مَغَانِمُ كَثِيرَةٌۭ ۚ كَذَلِكَ كُنتُم مِّن قَبْلُ فَمَنَّ ٱللَّهُ عَلَيْكُمْ فَتَبَيَّنُوٓا۟ ۚ إِنَّ ٱللَّهَ كَانَ بِمَا تَعْمَلُونَ خَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,4,' لَّا يَسْتَوِى ٱلْقَعِدُونَ مِنَ ٱلْمُؤْمِنِينَ غَيْرُ أُو۟لِى ٱلضَّرَرِ وَٱلْمُجَهِدُونَ فِى سَبِيلِ ٱللَّهِ بِأَمْوَلِهِمْ وَأَنفُسِهِمْ ۚ فَضَّلَ ٱللَّهُ ٱلْمُجَهِدِينَ بِأَمْوَلِهِمْ وَأَنفُسِهِمْ عَلَى ٱلْقَعِدِينَ دَرَجَةًۭ ۚ وَكُلًّۭا وَعَدَ ٱللَّهُ ٱلْحُسْنَىٰ ۚ وَفَضَّلَ ٱللَّهُ ٱلْمُجَهِدِينَ عَلَى ٱلْقَعِدِينَ أَجْرًا عَظِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,4,' دَرَجَتٍۢ مِّنْهُ وَمَغْفِرَةًۭ وَرَحْمَةًۭ ۚ وَكَانَ ٱللَّهُ غَفُورًۭا رَّحِيمًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,4,' إِنَّ ٱلَّذِينَ تَوَفَّىٰهُمُ ٱلْمَلَٓئِكَةُ ظَالِمِىٓ أَنفُسِهِمْ قَالُوا۟ فِيمَ كُنتُمْ ۖ قَالُوا۟ كُنَّا مُسْتَضْعَفِينَ فِى ٱلْأَرْضِ ۚ قَالُوٓا۟ أَلَمْ تَكُنْ أَرْضُ ٱللَّهِ وَسِعَةًۭ فَتُهَاجِرُوا۟ فِيهَا ۚ فَأُو۟لَٓئِكَ مَأْوَىٰهُمْ جَهَنَّمُ ۖ وَسَآءَتْ مَصِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,4,' إِلَّا ٱلْمُسْتَضْعَفِينَ مِنَ ٱلرِّجَالِ وَٱلنِّسَآءِ وَٱلْوِلْدَنِ لَا يَسْتَطِيعُونَ حِيلَةًۭ وَلَا يَهْتَدُونَ سَبِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,4,' فَأُو۟لَٓئِكَ عَسَى ٱللَّهُ أَن يَعْفُوَ عَنْهُمْ ۚ وَكَانَ ٱللَّهُ عَفُوًّا غَفُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,1,4,' وَمَن يُهَاجِرْ فِى سَبِيلِ ٱللَّهِ يَجِدْ فِى ٱلْأَرْضِ مُرَغَمًۭا كَثِيرًۭا وَسَعَةًۭ ۚ وَمَن يَخْرُجْ مِنۢ بَيْتِهِۦ مُهَاجِرًا إِلَى ٱللَّهِ وَرَسُولِهِۦ ثُمَّ يُدْرِكْهُ ٱلْمَوْتُ فَقَدْ وَقَعَ أَجْرُهُۥ عَلَى ٱللَّهِ ۗ وَكَانَ ٱللَّهُ غَفُورًۭا رَّحِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,1,4,' وَإِذَا ضَرَبْتُمْ فِى ٱلْأَرْضِ فَلَيْسَ عَلَيْكُمْ جُنَاحٌ أَن تَقْصُرُوا۟ مِنَ ٱلصَّلَوٰةِ إِنْ خِفْتُمْ أَن يَفْتِنَكُمُ ٱلَّذِينَ كَفَرُوٓا۟ ۚ إِنَّ ٱلْكَفِرِينَ كَانُوا۟ لَكُمْ عَدُوًّۭا مُّبِينًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,1,4,' وَإِذَا كُنتَ فِيهِمْ فَأَقَمْتَ لَهُمُ ٱلصَّلَوٰةَ فَلْتَقُمْ طَآئِفَةٌۭ مِّنْهُم مَّعَكَ وَلْيَأْخُذُوٓا۟ أَسْلِحَتَهُمْ فَإِذَا سَجَدُوا۟ فَلْيَكُونُوا۟ مِن وَرَآئِكُمْ وَلْتَأْتِ طَآئِفَةٌ أُخْرَىٰ لَمْ يُصَلُّوا۟ فَلْيُصَلُّوا۟ مَعَكَ وَلْيَأْخُذُوا۟ حِذْرَهُمْ وَأَسْلِحَتَهُمْ ۗ وَدَّ ٱلَّذِينَ كَفَرُوا۟ لَوْ تَغْفُلُونَ عَنْ أَسْلِحَتِكُمْ وَأَمْتِعَتِكُمْ فَيَمِيلُونَ عَلَيْكُم مَّيْلَةًۭ وَحِدَةًۭ ۚ وَلَا جُنَاحَ عَلَيْكُمْ إِن كَانَ بِكُمْ أَذًۭى مِّن مَّطَرٍ أَوْ كُنتُم مَّرْضَىٰٓ أَن تَضَعُوٓا۟ أَسْلِحَتَكُمْ ۖ وَخُذُوا۟ حِذْرَكُمْ ۗ إِنَّ ٱللَّهَ أَعَدَّ لِلْكَفِرِينَ عَذَابًۭا مُّهِينًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,1,4,' فَإِذَا قَضَيْتُمُ ٱلصَّلَوٰةَ فَٱذْكُرُوا۟ ٱللَّهَ قِيَمًۭا وَقُعُودًۭا وَعَلَىٰ جُنُوبِكُمْ ۚ فَإِذَا ٱطْمَأْنَنتُمْ فَأَقِيمُوا۟ ٱلصَّلَوٰةَ ۚ إِنَّ ٱلصَّلَوٰةَ كَانَتْ عَلَى ٱلْمُؤْمِنِينَ كِتَبًۭا مَّوْقُوتًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,1,4,' وَلَا تَهِنُوا۟ فِى ٱبْتِغَآءِ ٱلْقَوْمِ ۖ إِن تَكُونُوا۟ تَأْلَمُونَ فَإِنَّهُمْ يَأْلَمُونَ كَمَا تَأْلَمُونَ ۖ وَتَرْجُونَ مِنَ ٱللَّهِ مَا لَا يَرْجُونَ ۗ وَكَانَ ٱللَّهُ عَلِيمًا حَكِيمًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,1,4,' إِنَّآ أَنزَلْنَآ إِلَيْكَ ٱلْكِتَبَ بِٱلْحَقِّ لِتَحْكُمَ بَيْنَ ٱلنَّاسِ بِمَآ أَرَىٰكَ ٱللَّهُ ۚ وَلَا تَكُن لِّلْخَآئِنِينَ خَصِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,1,4,' وَٱسْتَغْفِرِ ٱللَّهَ ۖ إِنَّ ٱللَّهَ كَانَ غَفُورًۭا رَّحِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,1,4,' وَلَا تُجَدِلْ عَنِ ٱلَّذِينَ يَخْتَانُونَ أَنفُسَهُمْ ۚ إِنَّ ٱللَّهَ لَا يُحِبُّ مَن كَانَ خَوَّانًا أَثِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,1,4,' يَسْتَخْفُونَ مِنَ ٱلنَّاسِ وَلَا يَسْتَخْفُونَ مِنَ ٱللَّهِ وَهُوَ مَعَهُمْ إِذْ يُبَيِّتُونَ مَا لَا يَرْضَىٰ مِنَ ٱلْقَوْلِ ۚ وَكَانَ ٱللَّهُ بِمَا يَعْمَلُونَ مُحِيطًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,1,4,' هَٓأَنتُمْ هَٓؤُلَآءِ جَدَلْتُمْ عَنْهُمْ فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا فَمَن يُجَدِلُ ٱللَّهَ عَنْهُمْ يَوْمَ ٱلْقِيَمَةِ أَم مَّن يَكُونُ عَلَيْهِمْ وَكِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,1,4,' وَمَن يَعْمَلْ سُوٓءًا أَوْ يَظْلِمْ نَفْسَهُۥ ثُمَّ يَسْتَغْفِرِ ٱللَّهَ يَجِدِ ٱللَّهَ غَفُورًۭا رَّحِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,1,4,' وَمَن يَكْسِبْ إِثْمًۭا فَإِنَّمَا يَكْسِبُهُۥ عَلَىٰ نَفْسِهِۦ ۚ وَكَانَ ٱللَّهُ عَلِيمًا حَكِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,1,4,' وَمَن يَكْسِبْ خَطِيٓـَٔةً أَوْ إِثْمًۭا ثُمَّ يَرْمِ بِهِۦ بَرِيٓـًۭٔا فَقَدِ ٱحْتَمَلَ بُهْتَنًۭا وَإِثْمًۭا مُّبِينًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,1,4,' وَلَوْلَا فَضْلُ ٱللَّهِ عَلَيْكَ وَرَحْمَتُهُۥ لَهَمَّت طَّآئِفَةٌۭ مِّنْهُمْ أَن يُضِلُّوكَ وَمَا يُضِلُّونَ إِلَّآ أَنفُسَهُمْ ۖ وَمَا يَضُرُّونَكَ مِن شَىْءٍۢ ۚ وَأَنزَلَ ٱللَّهُ عَلَيْكَ ٱلْكِتَبَ وَٱلْحِكْمَةَ وَعَلَّمَكَ مَا لَمْ تَكُن تَعْلَمُ ۚ وَكَانَ فَضْلُ ٱللَّهِ عَلَيْكَ عَظِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,1,4,' لَّا خَيْرَ فِى كَثِيرٍۢ مِّن نَّجْوَىٰهُمْ إِلَّا مَنْ أَمَرَ بِصَدَقَةٍ أَوْ مَعْرُوفٍ أَوْ إِصْلَحٍۭ بَيْنَ ٱلنَّاسِ ۚ وَمَن يَفْعَلْ ذَلِكَ ٱبْتِغَآءَ مَرْضَاتِ ٱللَّهِ فَسَوْفَ نُؤْتِيهِ أَجْرًا عَظِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,1,4,' وَمَن يُشَاقِقِ ٱلرَّسُولَ مِنۢ بَعْدِ مَا تَبَيَّنَ لَهُ ٱلْهُدَىٰ وَيَتَّبِعْ غَيْرَ سَبِيلِ ٱلْمُؤْمِنِينَ نُوَلِّهِۦ مَا تَوَلَّىٰ وَنُصْلِهِۦ جَهَنَّمَ ۖ وَسَآءَتْ مَصِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,1,4,' إِنَّ ٱللَّهَ لَا يَغْفِرُ أَن يُشْرَكَ بِهِۦ وَيَغْفِرُ مَا دُونَ ذَلِكَ لِمَن يَشَآءُ ۚ وَمَن يُشْرِكْ بِٱللَّهِ فَقَدْ ضَلَّ ضَلَلًۢا بَعِيدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,1,4,' إِن يَدْعُونَ مِن دُونِهِۦٓ إِلَّآ إِنَثًۭا وَإِن يَدْعُونَ إِلَّا شَيْطَنًۭا مَّرِيدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,1,4,' لَّعَنَهُ ٱللَّهُ ۘ وَقَالَ لَأَتَّخِذَنَّ مِنْ عِبَادِكَ نَصِيبًۭا مَّفْرُوضًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,1,4,' وَلَأُضِلَّنَّهُمْ وَلَأُمَنِّيَنَّهُمْ وَلَءَامُرَنَّهُمْ فَلَيُبَتِّكُنَّ ءَاذَانَ ٱلْأَنْعَمِ وَلَءَامُرَنَّهُمْ فَلَيُغَيِّرُنَّ خَلْقَ ٱللَّهِ ۚ وَمَن يَتَّخِذِ ٱلشَّيْطَنَ وَلِيًّۭا مِّن دُونِ ٱللَّهِ فَقَدْ خَسِرَ خُسْرَانًۭا مُّبِينًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,1,4,' يَعِدُهُمْ وَيُمَنِّيهِمْ ۖ وَمَا يَعِدُهُمُ ٱلشَّيْطَنُ إِلَّا غُرُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,1,4,' أُو۟لَٓئِكَ مَأْوَىٰهُمْ جَهَنَّمُ وَلَا يَجِدُونَ عَنْهَا مَحِيصًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,1,4,' وَٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ سَنُدْخِلُهُمْ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَآ أَبَدًۭا ۖ وَعْدَ ٱللَّهِ حَقًّۭا ۚ وَمَنْ أَصْدَقُ مِنَ ٱللَّهِ قِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,1,4,' لَّيْسَ بِأَمَانِيِّكُمْ وَلَآ أَمَانِىِّ أَهْلِ ٱلْكِتَبِ ۗ مَن يَعْمَلْ سُوٓءًۭا يُجْزَ بِهِۦ وَلَا يَجِدْ لَهُۥ مِن دُونِ ٱللَّهِ وَلِيًّۭا وَلَا نَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,1,4,' وَمَن يَعْمَلْ مِنَ ٱلصَّلِحَتِ مِن ذَكَرٍ أَوْ أُنثَىٰ وَهُوَ مُؤْمِنٌۭ فَأُو۟لَٓئِكَ يَدْخُلُونَ ٱلْجَنَّةَ وَلَا يُظْلَمُونَ نَقِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,1,4,' وَمَنْ أَحْسَنُ دِينًۭا مِّمَّنْ أَسْلَمَ وَجْهَهُۥ لِلَّهِ وَهُوَ مُحْسِنٌۭ وَٱتَّبَعَ مِلَّةَ إِبْرَهِيمَ حَنِيفًۭا ۗ وَٱتَّخَذَ ٱللَّهُ إِبْرَهِيمَ خَلِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,1,4,' وَلِلَّهِ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۚ وَكَانَ ٱللَّهُ بِكُلِّ شَىْءٍۢ مُّحِيطًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,1,4,' وَيَسْتَفْتُونَكَ فِى ٱلنِّسَآءِ ۖ قُلِ ٱللَّهُ يُفْتِيكُمْ فِيهِنَّ وَمَا يُتْلَىٰ عَلَيْكُمْ فِى ٱلْكِتَبِ فِى يَتَمَى ٱلنِّسَآءِ ٱلَّتِى لَا تُؤْتُونَهُنَّ مَا كُتِبَ لَهُنَّ وَتَرْغَبُونَ أَن تَنكِحُوهُنَّ وَٱلْمُسْتَضْعَفِينَ مِنَ ٱلْوِلْدَنِ وَأَن تَقُومُوا۟ لِلْيَتَمَىٰ بِٱلْقِسْطِ ۚ وَمَا تَفْعَلُوا۟ مِنْ خَيْرٍۢ فَإِنَّ ٱللَّهَ كَانَ بِهِۦ عَلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,1,4,' وَإِنِ ٱمْرَأَةٌ خَافَتْ مِنۢ بَعْلِهَا نُشُوزًا أَوْ إِعْرَاضًۭا فَلَا جُنَاحَ عَلَيْهِمَآ أَن يُصْلِحَا بَيْنَهُمَا صُلْحًۭا ۚ وَٱلصُّلْحُ خَيْرٌۭ ۗ وَأُحْضِرَتِ ٱلْأَنفُسُ ٱلشُّحَّ ۚ وَإِن تُحْسِنُوا۟ وَتَتَّقُوا۟ فَإِنَّ ٱللَّهَ كَانَ بِمَا تَعْمَلُونَ خَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,1,4,' وَلَن تَسْتَطِيعُوٓا۟ أَن تَعْدِلُوا۟ بَيْنَ ٱلنِّسَآءِ وَلَوْ حَرَصْتُمْ ۖ فَلَا تَمِيلُوا۟ كُلَّ ٱلْمَيْلِ فَتَذَرُوهَا كَٱلْمُعَلَّقَةِ ۚ وَإِن تُصْلِحُوا۟ وَتَتَّقُوا۟ فَإِنَّ ٱللَّهَ كَانَ غَفُورًۭا رَّحِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,1,4,' وَإِن يَتَفَرَّقَا يُغْنِ ٱللَّهُ كُلًّۭا مِّن سَعَتِهِۦ ۚ وَكَانَ ٱللَّهُ وَسِعًا حَكِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,1,4,' وَلِلَّهِ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۗ وَلَقَدْ وَصَّيْنَا ٱلَّذِينَ أُوتُوا۟ ٱلْكِتَبَ مِن قَبْلِكُمْ وَإِيَّاكُمْ أَنِ ٱتَّقُوا۟ ٱللَّهَ ۚ وَإِن تَكْفُرُوا۟ فَإِنَّ لِلَّهِ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۚ وَكَانَ ٱللَّهُ غَنِيًّا حَمِيدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,1,4,' وَلِلَّهِ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۚ وَكَفَىٰ بِٱللَّهِ وَكِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,1,4,' إِن يَشَأْ يُذْهِبْكُمْ أَيُّهَا ٱلنَّاسُ وَيَأْتِ بِـَٔاخَرِينَ ۚ وَكَانَ ٱللَّهُ عَلَىٰ ذَلِكَ قَدِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,1,4,' مَّن كَانَ يُرِيدُ ثَوَابَ ٱلدُّنْيَا فَعِندَ ٱللَّهِ ثَوَابُ ٱلدُّنْيَا وَٱلْءَاخِرَةِ ۚ وَكَانَ ٱللَّهُ سَمِيعًۢا بَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,1,4,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ كُونُوا۟ قَوَّمِينَ بِٱلْقِسْطِ شُهَدَآءَ لِلَّهِ وَلَوْ عَلَىٰٓ أَنفُسِكُمْ أَوِ ٱلْوَلِدَيْنِ وَٱلْأَقْرَبِينَ ۚ إِن يَكُنْ غَنِيًّا أَوْ فَقِيرًۭا فَٱللَّهُ أَوْلَىٰ بِهِمَا ۖ فَلَا تَتَّبِعُوا۟ ٱلْهَوَىٰٓ أَن تَعْدِلُوا۟ ۚ وَإِن تَلْوُۥٓا۟ أَوْ تُعْرِضُوا۟ فَإِنَّ ٱللَّهَ كَانَ بِمَا تَعْمَلُونَ خَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,1,4,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ ءَامِنُوا۟ بِٱللَّهِ وَرَسُولِهِۦ وَٱلْكِتَبِ ٱلَّذِى نَزَّلَ عَلَىٰ رَسُولِهِۦ وَٱلْكِتَبِ ٱلَّذِىٓ أَنزَلَ مِن قَبْلُ ۚ وَمَن يَكْفُرْ بِٱللَّهِ وَمَلَٓئِكَتِهِۦ وَكُتُبِهِۦ وَرُسُلِهِۦ وَٱلْيَوْمِ ٱلْءَاخِرِ فَقَدْ ضَلَّ ضَلَلًۢا بَعِيدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,1,4,' إِنَّ ٱلَّذِينَ ءَامَنُوا۟ ثُمَّ كَفَرُوا۟ ثُمَّ ءَامَنُوا۟ ثُمَّ كَفَرُوا۟ ثُمَّ ٱزْدَادُوا۟ كُفْرًۭا لَّمْ يَكُنِ ٱللَّهُ لِيَغْفِرَ لَهُمْ وَلَا لِيَهْدِيَهُمْ سَبِيلًۢا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,1,4,' بَشِّرِ ٱلْمُنَفِقِينَ بِأَنَّ لَهُمْ عَذَابًا أَلِيمًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,1,4,' ٱلَّذِينَ يَتَّخِذُونَ ٱلْكَفِرِينَ أَوْلِيَآءَ مِن دُونِ ٱلْمُؤْمِنِينَ ۚ أَيَبْتَغُونَ عِندَهُمُ ٱلْعِزَّةَ فَإِنَّ ٱلْعِزَّةَ لِلَّهِ جَمِيعًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,1,4,' وَقَدْ نَزَّلَ عَلَيْكُمْ فِى ٱلْكِتَبِ أَنْ إِذَا سَمِعْتُمْ ءَايَتِ ٱللَّهِ يُكْفَرُ بِهَا وَيُسْتَهْزَأُ بِهَا فَلَا تَقْعُدُوا۟ مَعَهُمْ حَتَّىٰ يَخُوضُوا۟ فِى حَدِيثٍ غَيْرِهِۦٓ ۚ إِنَّكُمْ إِذًۭا مِّثْلُهُمْ ۗ إِنَّ ٱللَّهَ جَامِعُ ٱلْمُنَفِقِينَ وَٱلْكَفِرِينَ فِى جَهَنَّمَ جَمِيعًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,1,4,' ٱلَّذِينَ يَتَرَبَّصُونَ بِكُمْ فَإِن كَانَ لَكُمْ فَتْحٌۭ مِّنَ ٱللَّهِ قَالُوٓا۟ أَلَمْ نَكُن مَّعَكُمْ وَإِن كَانَ لِلْكَفِرِينَ نَصِيبٌۭ قَالُوٓا۟ أَلَمْ نَسْتَحْوِذْ عَلَيْكُمْ وَنَمْنَعْكُم مِّنَ ٱلْمُؤْمِنِينَ ۚ فَٱللَّهُ يَحْكُمُ بَيْنَكُمْ يَوْمَ ٱلْقِيَمَةِ ۗ وَلَن يَجْعَلَ ٱللَّهُ لِلْكَفِرِينَ عَلَى ٱلْمُؤْمِنِينَ سَبِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,1,4,' إِنَّ ٱلْمُنَفِقِينَ يُخَدِعُونَ ٱللَّهَ وَهُوَ خَدِعُهُمْ وَإِذَا قَامُوٓا۟ إِلَى ٱلصَّلَوٰةِ قَامُوا۟ كُسَالَىٰ يُرَآءُونَ ٱلنَّاسَ وَلَا يَذْكُرُونَ ٱللَّهَ إِلَّا قَلِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,1,4,' مُّذَبْذَبِينَ بَيْنَ ذَلِكَ لَآ إِلَىٰ هَٓؤُلَآءِ وَلَآ إِلَىٰ هَٓؤُلَآءِ ۚ وَمَن يُضْلِلِ ٱللَّهُ فَلَن تَجِدَ لَهُۥ سَبِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,1,4,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَتَّخِذُوا۟ ٱلْكَفِرِينَ أَوْلِيَآءَ مِن دُونِ ٱلْمُؤْمِنِينَ ۚ أَتُرِيدُونَ أَن تَجْعَلُوا۟ لِلَّهِ عَلَيْكُمْ سُلْطَنًۭا مُّبِينًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,1,4,' إِنَّ ٱلْمُنَفِقِينَ فِى ٱلدَّرْكِ ٱلْأَسْفَلِ مِنَ ٱلنَّارِ وَلَن تَجِدَ لَهُمْ نَصِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,1,4,' إِلَّا ٱلَّذِينَ تَابُوا۟ وَأَصْلَحُوا۟ وَٱعْتَصَمُوا۟ بِٱللَّهِ وَأَخْلَصُوا۟ دِينَهُمْ لِلَّهِ فَأُو۟لَٓئِكَ مَعَ ٱلْمُؤْمِنِينَ ۖ وَسَوْفَ يُؤْتِ ٱللَّهُ ٱلْمُؤْمِنِينَ أَجْرًا عَظِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,1,4,' مَّا يَفْعَلُ ٱللَّهُ بِعَذَابِكُمْ إِن شَكَرْتُمْ وَءَامَنتُمْ ۚ وَكَانَ ٱللَّهُ شَاكِرًا عَلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,1,4,' لَّا يُحِبُّ ٱللَّهُ ٱلْجَهْرَ بِٱلسُّوٓءِ مِنَ ٱلْقَوْلِ إِلَّا مَن ظُلِمَ ۚ وَكَانَ ٱللَّهُ سَمِيعًا عَلِيمًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,1,4,' إِن تُبْدُوا۟ خَيْرًا أَوْ تُخْفُوهُ أَوْ تَعْفُوا۟ عَن سُوٓءٍۢ فَإِنَّ ٱللَّهَ كَانَ عَفُوًّۭا قَدِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,1,4,' إِنَّ ٱلَّذِينَ يَكْفُرُونَ بِٱللَّهِ وَرُسُلِهِۦ وَيُرِيدُونَ أَن يُفَرِّقُوا۟ بَيْنَ ٱللَّهِ وَرُسُلِهِۦ وَيَقُولُونَ نُؤْمِنُ بِبَعْضٍۢ وَنَكْفُرُ بِبَعْضٍۢ وَيُرِيدُونَ أَن يَتَّخِذُوا۟ بَيْنَ ذَلِكَ سَبِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,1,4,' أُو۟لَٓئِكَ هُمُ ٱلْكَفِرُونَ حَقًّۭا ۚ وَأَعْتَدْنَا لِلْكَفِرِينَ عَذَابًۭا مُّهِينًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,1,4,' وَٱلَّذِينَ ءَامَنُوا۟ بِٱللَّهِ وَرُسُلِهِۦ وَلَمْ يُفَرِّقُوا۟ بَيْنَ أَحَدٍۢ مِّنْهُمْ أُو۟لَٓئِكَ سَوْفَ يُؤْتِيهِمْ أُجُورَهُمْ ۗ وَكَانَ ٱللَّهُ غَفُورًۭا رَّحِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,1,4,' يَسْـَٔلُكَ أَهْلُ ٱلْكِتَبِ أَن تُنَزِّلَ عَلَيْهِمْ كِتَبًۭا مِّنَ ٱلسَّمَآءِ ۚ فَقَدْ سَأَلُوا۟ مُوسَىٰٓ أَكْبَرَ مِن ذَلِكَ فَقَالُوٓا۟ أَرِنَا ٱللَّهَ جَهْرَةًۭ فَأَخَذَتْهُمُ ٱلصَّعِقَةُ بِظُلْمِهِمْ ۚ ثُمَّ ٱتَّخَذُوا۟ ٱلْعِجْلَ مِنۢ بَعْدِ مَا جَآءَتْهُمُ ٱلْبَيِّنَتُ فَعَفَوْنَا عَن ذَلِكَ ۚ وَءَاتَيْنَا مُوسَىٰ سُلْطَنًۭا مُّبِينًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,1,4,' وَرَفَعْنَا فَوْقَهُمُ ٱلطُّورَ بِمِيثَقِهِمْ وَقُلْنَا لَهُمُ ٱدْخُلُوا۟ ٱلْبَابَ سُجَّدًۭا وَقُلْنَا لَهُمْ لَا تَعْدُوا۟ فِى ٱلسَّبْتِ وَأَخَذْنَا مِنْهُم مِّيثَقًا غَلِيظًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,1,4,' فَبِمَا نَقْضِهِم مِّيثَقَهُمْ وَكُفْرِهِم بِـَٔايَتِ ٱللَّهِ وَقَتْلِهِمُ ٱلْأَنۢبِيَآءَ بِغَيْرِ حَقٍّۢ وَقَوْلِهِمْ قُلُوبُنَا غُلْفٌۢ ۚ بَلْ طَبَعَ ٱللَّهُ عَلَيْهَا بِكُفْرِهِمْ فَلَا يُؤْمِنُونَ إِلَّا قَلِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,1,4,' وَبِكُفْرِهِمْ وَقَوْلِهِمْ عَلَىٰ مَرْيَمَ بُهْتَنًا عَظِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,1,4,' وَقَوْلِهِمْ إِنَّا قَتَلْنَا ٱلْمَسِيحَ عِيسَى ٱبْنَ مَرْيَمَ رَسُولَ ٱللَّهِ وَمَا قَتَلُوهُ وَمَا صَلَبُوهُ وَلَكِن شُبِّهَ لَهُمْ ۚ وَإِنَّ ٱلَّذِينَ ٱخْتَلَفُوا۟ فِيهِ لَفِى شَكٍّۢ مِّنْهُ ۚ مَا لَهُم بِهِۦ مِنْ عِلْمٍ إِلَّا ٱتِّبَاعَ ٱلظَّنِّ ۚ وَمَا قَتَلُوهُ يَقِينًۢا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,1,4,' بَل رَّفَعَهُ ٱللَّهُ إِلَيْهِ ۚ وَكَانَ ٱللَّهُ عَزِيزًا حَكِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,1,4,' وَإِن مِّنْ أَهْلِ ٱلْكِتَبِ إِلَّا لَيُؤْمِنَنَّ بِهِۦ قَبْلَ مَوْتِهِۦ ۖ وَيَوْمَ ٱلْقِيَمَةِ يَكُونُ عَلَيْهِمْ شَهِيدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,1,4,' فَبِظُلْمٍۢ مِّنَ ٱلَّذِينَ هَادُوا۟ حَرَّمْنَا عَلَيْهِمْ طَيِّبَتٍ أُحِلَّتْ لَهُمْ وَبِصَدِّهِمْ عَن سَبِيلِ ٱللَّهِ كَثِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,1,4,' وَأَخْذِهِمُ ٱلرِّبَوٰا۟ وَقَدْ نُهُوا۟ عَنْهُ وَأَكْلِهِمْ أَمْوَلَ ٱلنَّاسِ بِٱلْبَطِلِ ۚ وَأَعْتَدْنَا لِلْكَفِرِينَ مِنْهُمْ عَذَابًا أَلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,1,4,' لَّكِنِ ٱلرَّسِخُونَ فِى ٱلْعِلْمِ مِنْهُمْ وَٱلْمُؤْمِنُونَ يُؤْمِنُونَ بِمَآ أُنزِلَ إِلَيْكَ وَمَآ أُنزِلَ مِن قَبْلِكَ ۚ وَٱلْمُقِيمِينَ ٱلصَّلَوٰةَ ۚ وَٱلْمُؤْتُونَ ٱلزَّكَوٰةَ وَٱلْمُؤْمِنُونَ بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ أُو۟لَٓئِكَ سَنُؤْتِيهِمْ أَجْرًا عَظِيمًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,1,4,' إِنَّآ أَوْحَيْنَآ إِلَيْكَ كَمَآ أَوْحَيْنَآ إِلَىٰ نُوحٍۢ وَٱلنَّبِيِّۦنَ مِنۢ بَعْدِهِۦ ۚ وَأَوْحَيْنَآ إِلَىٰٓ إِبْرَهِيمَ وَإِسْمَعِيلَ وَإِسْحَقَ وَيَعْقُوبَ وَٱلْأَسْبَاطِ وَعِيسَىٰ وَأَيُّوبَ وَيُونُسَ وَهَرُونَ وَسُلَيْمَنَ ۚ وَءَاتَيْنَا دَاوُۥدَ زَبُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,1,4,' وَرُسُلًۭا قَدْ قَصَصْنَهُمْ عَلَيْكَ مِن قَبْلُ وَرُسُلًۭا لَّمْ نَقْصُصْهُمْ عَلَيْكَ ۚ وَكَلَّمَ ٱللَّهُ مُوسَىٰ تَكْلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,1,4,' رُّسُلًۭا مُّبَشِّرِينَ وَمُنذِرِينَ لِئَلَّا يَكُونَ لِلنَّاسِ عَلَى ٱللَّهِ حُجَّةٌۢ بَعْدَ ٱلرُّسُلِ ۚ وَكَانَ ٱللَّهُ عَزِيزًا حَكِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,1,4,' لَّكِنِ ٱللَّهُ يَشْهَدُ بِمَآ أَنزَلَ إِلَيْكَ ۖ أَنزَلَهُۥ بِعِلْمِهِۦ ۖ وَٱلْمَلَٓئِكَةُ يَشْهَدُونَ ۚ وَكَفَىٰ بِٱللَّهِ شَهِيدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,1,4,' إِنَّ ٱلَّذِينَ كَفَرُوا۟ وَصَدُّوا۟ عَن سَبِيلِ ٱللَّهِ قَدْ ضَلُّوا۟ ضَلَلًۢا بَعِيدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,1,4,' إِنَّ ٱلَّذِينَ كَفَرُوا۟ وَظَلَمُوا۟ لَمْ يَكُنِ ٱللَّهُ لِيَغْفِرَ لَهُمْ وَلَا لِيَهْدِيَهُمْ طَرِيقًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,1,4,' إِلَّا طَرِيقَ جَهَنَّمَ خَلِدِينَ فِيهَآ أَبَدًۭا ۚ وَكَانَ ذَلِكَ عَلَى ٱللَّهِ يَسِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,1,4,' يَٓأَيُّهَا ٱلنَّاسُ قَدْ جَآءَكُمُ ٱلرَّسُولُ بِٱلْحَقِّ مِن رَّبِّكُمْ فَـَٔامِنُوا۟ خَيْرًۭا لَّكُمْ ۚ وَإِن تَكْفُرُوا۟ فَإِنَّ لِلَّهِ مَا فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ وَكَانَ ٱللَّهُ عَلِيمًا حَكِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,1,4,' يَٓأَهْلَ ٱلْكِتَبِ لَا تَغْلُوا۟ فِى دِينِكُمْ وَلَا تَقُولُوا۟ عَلَى ٱللَّهِ إِلَّا ٱلْحَقَّ ۚ إِنَّمَا ٱلْمَسِيحُ عِيسَى ٱبْنُ مَرْيَمَ رَسُولُ ٱللَّهِ وَكَلِمَتُهُۥٓ أَلْقَىٰهَآ إِلَىٰ مَرْيَمَ وَرُوحٌۭ مِّنْهُ ۖ فَـَٔامِنُوا۟ بِٱللَّهِ وَرُسُلِهِۦ ۖ وَلَا تَقُولُوا۟ ثَلَثَةٌ ۚ ٱنتَهُوا۟ خَيْرًۭا لَّكُمْ ۚ إِنَّمَا ٱللَّهُ إِلَهٌۭ وَحِدٌۭ ۖ سُبْحَنَهُۥٓ أَن يَكُونَ لَهُۥ وَلَدٌۭ ۘ لَّهُۥ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۗ وَكَفَىٰ بِٱللَّهِ وَكِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,1,4,' لَّن يَسْتَنكِفَ ٱلْمَسِيحُ أَن يَكُونَ عَبْدًۭا لِّلَّهِ وَلَا ٱلْمَلَٓئِكَةُ ٱلْمُقَرَّبُونَ ۚ وَمَن يَسْتَنكِفْ عَنْ عِبَادَتِهِۦ وَيَسْتَكْبِرْ فَسَيَحْشُرُهُمْ إِلَيْهِ جَمِيعًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,1,4,' فَأَمَّا ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ فَيُوَفِّيهِمْ أُجُورَهُمْ وَيَزِيدُهُم مِّن فَضْلِهِۦ ۖ وَأَمَّا ٱلَّذِينَ ٱسْتَنكَفُوا۟ وَٱسْتَكْبَرُوا۟ فَيُعَذِّبُهُمْ عَذَابًا أَلِيمًۭا وَلَا يَجِدُونَ لَهُم مِّن دُونِ ٱللَّهِ وَلِيًّۭا وَلَا نَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,1,4,' يَٓأَيُّهَا ٱلنَّاسُ قَدْ جَآءَكُم بُرْهَنٌۭ مِّن رَّبِّكُمْ وَأَنزَلْنَآ إِلَيْكُمْ نُورًۭا مُّبِينًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,1,4,' فَأَمَّا ٱلَّذِينَ ءَامَنُوا۟ بِٱللَّهِ وَٱعْتَصَمُوا۟ بِهِۦ فَسَيُدْخِلُهُمْ فِى رَحْمَةٍۢ مِّنْهُ وَفَضْلٍۢ وَيَهْدِيهِمْ إِلَيْهِ صِرَطًۭا مُّسْتَقِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,1,4,' يَسْتَفْتُونَكَ قُلِ ٱللَّهُ يُفْتِيكُمْ فِى ٱلْكَلَلَةِ ۚ إِنِ ٱمْرُؤٌا۟ هَلَكَ لَيْسَ لَهُۥ وَلَدٌۭ وَلَهُۥٓ أُخْتٌۭ فَلَهَا نِصْفُ مَا تَرَكَ ۚ وَهُوَ يَرِثُهَآ إِن لَّمْ يَكُن لَّهَا وَلَدٌۭ ۚ فَإِن كَانَتَا ٱثْنَتَيْنِ فَلَهُمَا ٱلثُّلُثَانِ مِمَّا تَرَكَ ۚ وَإِن كَانُوٓا۟ إِخْوَةًۭ رِّجَالًۭا وَنِسَآءًۭ فَلِلذَّكَرِ مِثْلُ حَظِّ ٱلْأُنثَيَيْنِ ۗ يُبَيِّنُ ٱللَّهُ لَكُمْ أَن تَضِلُّوا۟ ۗ وَٱللَّهُ بِكُلِّ شَىْءٍ سعَلِيمٌۢ');
+INSERT INTO chapters (id, number, quran_id) VALUES(5,5,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,5,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ أَوْفُوا۟ بِٱلْعُقُودِ ۚ أُحِلَّتْ لَكُم بَهِيمَةُ ٱلْأَنْعَمِ إِلَّا مَا يُتْلَىٰ عَلَيْكُمْ غَيْرَ مُحِلِّى ٱلصَّيْدِ وَأَنتُمْ حُرُمٌ ۗ إِنَّ ٱللَّهَ يَحْكُمُ مَا يُرِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,5,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تُحِلُّوا۟ شَعَٓئِرَ ٱللَّهِ وَلَا ٱلشَّهْرَ ٱلْحَرَامَ وَلَا ٱلْهَدْىَ وَلَا ٱلْقَلَٓئِدَ وَلَآ ءَآمِّينَ ٱلْبَيْتَ ٱلْحَرَامَ يَبْتَغُونَ فَضْلًۭا مِّن رَّبِّهِمْ وَرِضْوَنًۭا ۚ وَإِذَا حَلَلْتُمْ فَٱصْطَادُوا۟ ۚ وَلَا يَجْرِمَنَّكُمْ شَنَـَٔانُ قَوْمٍ أَن صَدُّوكُمْ عَنِ ٱلْمَسْجِدِ ٱلْحَرَامِ أَن تَعْتَدُوا۟ ۘ وَتَعَاوَنُوا۟ عَلَى ٱلْبِرِّ وَٱلتَّقْوَىٰ ۖ وَلَا تَعَاوَنُوا۟ عَلَى ٱلْإِثْمِ وَٱلْعُدْوَنِ ۚ وَٱتَّقُوا۟ ٱللَّهَ ۖ إِنَّ ٱللَّهَ شَدِيدُ ٱلْعِقَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,5,' حُرِّمَتْ عَلَيْكُمُ ٱلْمَيْتَةُ وَٱلدَّمُ وَلَحْمُ ٱلْخِنزِيرِ وَمَآ أُهِلَّ لِغَيْرِ ٱللَّهِ بِهِۦ وَٱلْمُنْخَنِقَةُ وَٱلْمَوْقُوذَةُ وَٱلْمُتَرَدِّيَةُ وَٱلنَّطِيحَةُ وَمَآ أَكَلَ ٱلسَّبُعُ إِلَّا مَا ذَكَّيْتُمْ وَمَا ذُبِحَ عَلَى ٱلنُّصُبِ وَأَن تَسْتَقْسِمُوا۟ بِٱلْأَزْلَمِ ۚ ذَلِكُمْ فِسْقٌ ۗ ٱلْيَوْمَ يَئِسَ ٱلَّذِينَ كَفَرُوا۟ مِن دِينِكُمْ فَلَا تَخْشَوْهُمْ وَٱخْشَوْنِ ۚ ٱلْيَوْمَ أَكْمَلْتُ لَكُمْ دِينَكُمْ وَأَتْمَمْتُ عَلَيْكُمْ نِعْمَتِى وَرَضِيتُ لَكُمُ ٱلْإِسْلَمَ دِينًۭا ۚ فَمَنِ ٱضْطُرَّ فِى مَخْمَصَةٍ غَيْرَ مُتَجَانِفٍۢ لِّإِثْمٍۢ ۙ فَإِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,5,' يَسْـَٔلُونَكَ مَاذَآ أُحِلَّ لَهُمْ ۖ قُلْ أُحِلَّ لَكُمُ ٱلطَّيِّبَتُ ۙ وَمَا عَلَّمْتُم مِّنَ ٱلْجَوَارِحِ مُكَلِّبِينَ تُعَلِّمُونَهُنَّ مِمَّا عَلَّمَكُمُ ٱللَّهُ ۖ فَكُلُوا۟ مِمَّآ أَمْسَكْنَ عَلَيْكُمْ وَٱذْكُرُوا۟ ٱسْمَ ٱللَّهِ عَلَيْهِ ۖ وَٱتَّقُوا۟ ٱللَّهَ ۚ إِنَّ ٱللَّهَ سَرِيعُ ٱلْحِسَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,5,' ٱلْيَوْمَ أُحِلَّ لَكُمُ ٱلطَّيِّبَتُ ۖ وَطَعَامُ ٱلَّذِينَ أُوتُوا۟ ٱلْكِتَبَ حِلٌّۭ لَّكُمْ وَطَعَامُكُمْ حِلٌّۭ لَّهُمْ ۖ وَٱلْمُحْصَنَتُ مِنَ ٱلْمُؤْمِنَتِ وَٱلْمُحْصَنَتُ مِنَ ٱلَّذِينَ أُوتُوا۟ ٱلْكِتَبَ مِن قَبْلِكُمْ إِذَآ ءَاتَيْتُمُوهُنَّ أُجُورَهُنَّ مُحْصِنِينَ غَيْرَ مُسَفِحِينَ وَلَا مُتَّخِذِىٓ أَخْدَانٍۢ ۗ وَمَن يَكْفُرْ بِٱلْإِيمَنِ فَقَدْ حَبِطَ عَمَلُهُۥ وَهُوَ فِى ٱلْءَاخِرَةِ مِنَ ٱلْخَسِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,5,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِذَا قُمْتُمْ إِلَى ٱلصَّلَوٰةِ فَٱغْسِلُوا۟ وُجُوهَكُمْ وَأَيْدِيَكُمْ إِلَى ٱلْمَرَافِقِ وَٱمْسَحُوا۟ بِرُءُوسِكُمْ وَأَرْجُلَكُمْ إِلَى ٱلْكَعْبَيْنِ ۚ وَإِن كُنتُمْ جُنُبًۭا فَٱطَّهَّرُوا۟ ۚ وَإِن كُنتُم مَّرْضَىٰٓ أَوْ عَلَىٰ سَفَرٍ أَوْ جَآءَ أَحَدٌۭ مِّنكُم مِّنَ ٱلْغَآئِطِ أَوْ لَمَسْتُمُ ٱلنِّسَآءَ فَلَمْ تَجِدُوا۟ مَآءًۭ فَتَيَمَّمُوا۟ صَعِيدًۭا طَيِّبًۭا فَٱمْسَحُوا۟ بِوُجُوهِكُمْ وَأَيْدِيكُم مِّنْهُ ۚ مَا يُرِيدُ ٱللَّهُ لِيَجْعَلَ عَلَيْكُم مِّنْ حَرَجٍۢ وَلَكِن يُرِيدُ لِيُطَهِّرَكُمْ وَلِيُتِمَّ نِعْمَتَهُۥ عَلَيْكُمْ لَعَلَّكُمْ تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,5,' وَٱذْكُرُوا۟ نِعْمَةَ ٱللَّهِ عَلَيْكُمْ وَمِيثَقَهُ ٱلَّذِى وَاثَقَكُم بِهِۦٓ إِذْ قُلْتُمْ سَمِعْنَا وَأَطَعْنَا ۖ وَٱتَّقُوا۟ ٱللَّهَ ۚ إِنَّ ٱللَّهَ عَلِيمٌۢ بِذَاتِ ٱلصُّدُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,5,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ كُونُوا۟ قَوَّمِينَ لِلَّهِ شُهَدَآءَ بِٱلْقِسْطِ ۖ وَلَا يَجْرِمَنَّكُمْ شَنَـَٔانُ قَوْمٍ عَلَىٰٓ أَلَّا تَعْدِلُوا۟ ۚ ٱعْدِلُوا۟ هُوَ أَقْرَبُ لِلتَّقْوَىٰ ۖ وَٱتَّقُوا۟ ٱللَّهَ ۚ إِنَّ ٱللَّهَ خَبِيرٌۢ بِمَا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,5,' وَعَدَ ٱللَّهُ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ ۙ لَهُم مَّغْفِرَةٌۭ وَأَجْرٌ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,5,' وَٱلَّذِينَ كَفَرُوا۟ وَكَذَّبُوا۟ بِـَٔايَتِنَآ أُو۟لَٓئِكَ أَصْحَبُ ٱلْجَحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,5,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ ٱذْكُرُوا۟ نِعْمَتَ ٱللَّهِ عَلَيْكُمْ إِذْ هَمَّ قَوْمٌ أَن يَبْسُطُوٓا۟ إِلَيْكُمْ أَيْدِيَهُمْ فَكَفَّ أَيْدِيَهُمْ عَنكُمْ ۖ وَٱتَّقُوا۟ ٱللَّهَ ۚ وَعَلَى ٱللَّهِ فَلْيَتَوَكَّلِ ٱلْمُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,5,' وَلَقَدْ أَخَذَ ٱللَّهُ مِيثَقَ بَنِىٓ إِسْرَٓءِيلَ وَبَعَثْنَا مِنْهُمُ ٱثْنَىْ عَشَرَ نَقِيبًۭا ۖ وَقَالَ ٱللَّهُ إِنِّى مَعَكُمْ ۖ لَىِٕنْ أَقَمْتُمُ ٱلصَّلَوٰةَ وَءَاتَيْتُمُ ٱلزَّكَوٰةَ وَءَامَنتُم بِرُسُلِى وَعَزَّرْتُمُوهُمْ وَأَقْرَضْتُمُ ٱللَّهَ قَرْضًا حَسَنًۭا لَّأُكَفِّرَنَّ عَنكُمْ سَيِّـَٔاتِكُمْ وَلَأُدْخِلَنَّكُمْ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ ۚ فَمَن كَفَرَ بَعْدَ ذَلِكَ مِنكُمْ فَقَدْ ضَلَّ سَوَآءَ ٱلسَّبِيلِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,5,' فَبِمَا نَقْضِهِم مِّيثَقَهُمْ لَعَنَّهُمْ وَجَعَلْنَا قُلُوبَهُمْ قَسِيَةًۭ ۖ يُحَرِّفُونَ ٱلْكَلِمَ عَن مَّوَاضِعِهِۦ ۙ وَنَسُوا۟ حَظًّۭا مِّمَّا ذُكِّرُوا۟ بِهِۦ ۚ وَلَا تَزَالُ تَطَّلِعُ عَلَىٰ خَآئِنَةٍۢ مِّنْهُمْ إِلَّا قَلِيلًۭا مِّنْهُمْ ۖ فَٱعْفُ عَنْهُمْ وَٱصْفَحْ ۚ إِنَّ ٱللَّهَ يُحِبُّ ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,5,' وَمِنَ ٱلَّذِينَ قَالُوٓا۟ إِنَّا نَصَرَىٰٓ أَخَذْنَا مِيثَقَهُمْ فَنَسُوا۟ حَظًّۭا مِّمَّا ذُكِّرُوا۟ بِهِۦ فَأَغْرَيْنَا بَيْنَهُمُ ٱلْعَدَاوَةَ وَٱلْبَغْضَآءَ إِلَىٰ يَوْمِ ٱلْقِيَمَةِ ۚ وَسَوْفَ يُنَبِّئُهُمُ ٱللَّهُ بِمَا كَانُوا۟ يَصْنَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,5,' يَٓأَهْلَ ٱلْكِتَبِ قَدْ جَآءَكُمْ رَسُولُنَا يُبَيِّنُ لَكُمْ كَثِيرًۭا مِّمَّا كُنتُمْ تُخْفُونَ مِنَ ٱلْكِتَبِ وَيَعْفُوا۟ عَن كَثِيرٍۢ ۚ قَدْ جَآءَكُم مِّنَ ٱللَّهِ نُورٌۭ وَكِتَبٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,5,' يَهْدِى بِهِ ٱللَّهُ مَنِ ٱتَّبَعَ رِضْوَنَهُۥ سُبُلَ ٱلسَّلَمِ وَيُخْرِجُهُم مِّنَ ٱلظُّلُمَتِ إِلَى ٱلنُّورِ بِإِذْنِهِۦ وَيَهْدِيهِمْ إِلَىٰ صِرَطٍۢ مُّسْتَقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,5,' لَّقَدْ كَفَرَ ٱلَّذِينَ قَالُوٓا۟ إِنَّ ٱللَّهَ هُوَ ٱلْمَسِيحُ ٱبْنُ مَرْيَمَ ۚ قُلْ فَمَن يَمْلِكُ مِنَ ٱللَّهِ شَيْـًٔا إِنْ أَرَادَ أَن يُهْلِكَ ٱلْمَسِيحَ ٱبْنَ مَرْيَمَ وَأُمَّهُۥ وَمَن فِى ٱلْأَرْضِ جَمِيعًۭا ۗ وَلِلَّهِ مُلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَمَا بَيْنَهُمَا ۚ يَخْلُقُ مَا يَشَآءُ ۚ وَٱللَّهُ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,5,' وَقَالَتِ ٱلْيَهُودُ وَٱلنَّصَرَىٰ نَحْنُ أَبْنَٓؤُا۟ ٱللَّهِ وَأَحِبَّٓؤُهُۥ ۚ قُلْ فَلِمَ يُعَذِّبُكُم بِذُنُوبِكُم ۖ بَلْ أَنتُم بَشَرٌۭ مِّمَّنْ خَلَقَ ۚ يَغْفِرُ لِمَن يَشَآءُ وَيُعَذِّبُ مَن يَشَآءُ ۚ وَلِلَّهِ مُلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَمَا بَيْنَهُمَا ۖ وَإِلَيْهِ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,5,' يَٓأَهْلَ ٱلْكِتَبِ قَدْ جَآءَكُمْ رَسُولُنَا يُبَيِّنُ لَكُمْ عَلَىٰ فَتْرَةٍۢ مِّنَ ٱلرُّسُلِ أَن تَقُولُوا۟ مَا جَآءَنَا مِنۢ بَشِيرٍۢ وَلَا نَذِيرٍۢ ۖ فَقَدْ جَآءَكُم بَشِيرٌۭ وَنَذِيرٌۭ ۗ وَٱللَّهُ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,5,' وَإِذْ قَالَ مُوسَىٰ لِقَوْمِهِۦ يَقَوْمِ ٱذْكُرُوا۟ نِعْمَةَ ٱللَّهِ عَلَيْكُمْ إِذْ جَعَلَ فِيكُمْ أَنۢبِيَآءَ وَجَعَلَكُم مُّلُوكًۭا وَءَاتَىٰكُم مَّا لَمْ يُؤْتِ أَحَدًۭا مِّنَ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,5,' يَقَوْمِ ٱدْخُلُوا۟ ٱلْأَرْضَ ٱلْمُقَدَّسَةَ ٱلَّتِى كَتَبَ ٱللَّهُ لَكُمْ وَلَا تَرْتَدُّوا۟ عَلَىٰٓ أَدْبَارِكُمْ فَتَنقَلِبُوا۟ خَسِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,5,' قَالُوا۟ يَمُوسَىٰٓ إِنَّ فِيهَا قَوْمًۭا جَبَّارِينَ وَإِنَّا لَن نَّدْخُلَهَا حَتَّىٰ يَخْرُجُوا۟ مِنْهَا فَإِن يَخْرُجُوا۟ مِنْهَا فَإِنَّا دَخِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,5,' قَالَ رَجُلَانِ مِنَ ٱلَّذِينَ يَخَافُونَ أَنْعَمَ ٱللَّهُ عَلَيْهِمَا ٱدْخُلُوا۟ عَلَيْهِمُ ٱلْبَابَ فَإِذَا دَخَلْتُمُوهُ فَإِنَّكُمْ غَلِبُونَ ۚ وَعَلَى ٱللَّهِ فَتَوَكَّلُوٓا۟ إِن كُنتُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,5,' قَالُوا۟ يَمُوسَىٰٓ إِنَّا لَن نَّدْخُلَهَآ أَبَدًۭا مَّا دَامُوا۟ فِيهَا ۖ فَٱذْهَبْ أَنتَ وَرَبُّكَ فَقَتِلَآ إِنَّا هَهُنَا قَعِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,5,' قَالَ رَبِّ إِنِّى لَآ أَمْلِكُ إِلَّا نَفْسِى وَأَخِى ۖ فَٱفْرُقْ بَيْنَنَا وَبَيْنَ ٱلْقَوْمِ ٱلْفَسِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,5,' قَالَ فَإِنَّهَا مُحَرَّمَةٌ عَلَيْهِمْ ۛ أَرْبَعِينَ سَنَةًۭ ۛ يَتِيهُونَ فِى ٱلْأَرْضِ ۚ فَلَا تَأْسَ عَلَى ٱلْقَوْمِ ٱلْفَسِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,5,' وَٱتْلُ عَلَيْهِمْ نَبَأَ ٱبْنَىْ ءَادَمَ بِٱلْحَقِّ إِذْ قَرَّبَا قُرْبَانًۭا فَتُقُبِّلَ مِنْ أَحَدِهِمَا وَلَمْ يُتَقَبَّلْ مِنَ ٱلْءَاخَرِ قَالَ لَأَقْتُلَنَّكَ ۖ قَالَ إِنَّمَا يَتَقَبَّلُ ٱللَّهُ مِنَ ٱلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,5,' لَىِٕنۢ بَسَطتَ إِلَىَّ يَدَكَ لِتَقْتُلَنِى مَآ أَنَا۠ بِبَاسِطٍۢ يَدِىَ إِلَيْكَ لِأَقْتُلَكَ ۖ إِنِّىٓ أَخَافُ ٱللَّهَ رَبَّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,5,' إِنِّىٓ أُرِيدُ أَن تَبُوٓأَ بِإِثْمِى وَإِثْمِكَ فَتَكُونَ مِنْ أَصْحَبِ ٱلنَّارِ ۚ وَذَلِكَ جَزَٓؤُا۟ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,5,' فَطَوَّعَتْ لَهُۥ نَفْسُهُۥ قَتْلَ أَخِيهِ فَقَتَلَهُۥ فَأَصْبَحَ مِنَ ٱلْخَسِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,5,' فَبَعَثَ ٱللَّهُ غُرَابًۭا يَبْحَثُ فِى ٱلْأَرْضِ لِيُرِيَهُۥ كَيْفَ يُوَرِى سَوْءَةَ أَخِيهِ ۚ قَالَ يَوَيْلَتَىٰٓ أَعَجَزْتُ أَنْ أَكُونَ مِثْلَ هَذَا ٱلْغُرَابِ فَأُوَرِىَ سَوْءَةَ أَخِى ۖ فَأَصْبَحَ مِنَ ٱلنَّدِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,5,' مِنْ أَجْلِ ذَلِكَ كَتَبْنَا عَلَىٰ بَنِىٓ إِسْرَٓءِيلَ أَنَّهُۥ مَن قَتَلَ نَفْسًۢا بِغَيْرِ نَفْسٍ أَوْ فَسَادٍۢ فِى ٱلْأَرْضِ فَكَأَنَّمَا قَتَلَ ٱلنَّاسَ جَمِيعًۭا وَمَنْ أَحْيَاهَا فَكَأَنَّمَآ أَحْيَا ٱلنَّاسَ جَمِيعًۭا ۚ وَلَقَدْ جَآءَتْهُمْ رُسُلُنَا بِٱلْبَيِّنَتِ ثُمَّ إِنَّ كَثِيرًۭا مِّنْهُم بَعْدَ ذَلِكَ فِى ٱلْأَرْضِ لَمُسْرِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,5,' إِنَّمَا جَزَٓؤُا۟ ٱلَّذِينَ يُحَارِبُونَ ٱللَّهَ وَرَسُولَهُۥ وَيَسْعَوْنَ فِى ٱلْأَرْضِ فَسَادًا أَن يُقَتَّلُوٓا۟ أَوْ يُصَلَّبُوٓا۟ أَوْ تُقَطَّعَ أَيْدِيهِمْ وَأَرْجُلُهُم مِّنْ خِلَفٍ أَوْ يُنفَوْا۟ مِنَ ٱلْأَرْضِ ۚ ذَلِكَ لَهُمْ خِزْىٌۭ فِى ٱلدُّنْيَا ۖ وَلَهُمْ فِى ٱلْءَاخِرَةِ عَذَابٌ عَظِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,5,' إِلَّا ٱلَّذِينَ تَابُوا۟ مِن قَبْلِ أَن تَقْدِرُوا۟ عَلَيْهِمْ ۖ فَٱعْلَمُوٓا۟ أَنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,5,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ ٱتَّقُوا۟ ٱللَّهَ وَٱبْتَغُوٓا۟ إِلَيْهِ ٱلْوَسِيلَةَ وَجَهِدُوا۟ فِى سَبِيلِهِۦ لَعَلَّكُمْ تُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,5,' إِنَّ ٱلَّذِينَ كَفَرُوا۟ لَوْ أَنَّ لَهُم مَّا فِى ٱلْأَرْضِ جَمِيعًۭا وَمِثْلَهُۥ مَعَهُۥ لِيَفْتَدُوا۟ بِهِۦ مِنْ عَذَابِ يَوْمِ ٱلْقِيَمَةِ مَا تُقُبِّلَ مِنْهُمْ ۖ وَلَهُمْ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,5,' يُرِيدُونَ أَن يَخْرُجُوا۟ مِنَ ٱلنَّارِ وَمَا هُم بِخَرِجِينَ مِنْهَا ۖ وَلَهُمْ عَذَابٌۭ مُّقِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,5,' وَٱلسَّارِقُ وَٱلسَّارِقَةُ فَٱقْطَعُوٓا۟ أَيْدِيَهُمَا جَزَآءًۢ بِمَا كَسَبَا نَكَلًۭا مِّنَ ٱللَّهِ ۗ وَٱللَّهُ عَزِيزٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,5,' فَمَن تَابَ مِنۢ بَعْدِ ظُلْمِهِۦ وَأَصْلَحَ فَإِنَّ ٱللَّهَ يَتُوبُ عَلَيْهِ ۗ إِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,5,' أَلَمْ تَعْلَمْ أَنَّ ٱللَّهَ لَهُۥ مُلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ يُعَذِّبُ مَن يَشَآءُ وَيَغْفِرُ لِمَن يَشَآءُ ۗ وَٱللَّهُ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,5,' يَٓأَيُّهَا ٱلرَّسُولُ لَا يَحْزُنكَ ٱلَّذِينَ يُسَرِعُونَ فِى ٱلْكُفْرِ مِنَ ٱلَّذِينَ قَالُوٓا۟ ءَامَنَّا بِأَفْوَهِهِمْ وَلَمْ تُؤْمِن قُلُوبُهُمْ ۛ وَمِنَ ٱلَّذِينَ هَادُوا۟ ۛ سَمَّعُونَ لِلْكَذِبِ سَمَّعُونَ لِقَوْمٍ ءَاخَرِينَ لَمْ يَأْتُوكَ ۖ يُحَرِّفُونَ ٱلْكَلِمَ مِنۢ بَعْدِ مَوَاضِعِهِۦ ۖ يَقُولُونَ إِنْ أُوتِيتُمْ هَذَا فَخُذُوهُ وَإِن لَّمْ تُؤْتَوْهُ فَٱحْذَرُوا۟ ۚ وَمَن يُرِدِ ٱللَّهُ فِتْنَتَهُۥ فَلَن تَمْلِكَ لَهُۥ مِنَ ٱللَّهِ شَيْـًٔا ۚ أُو۟لَٓئِكَ ٱلَّذِينَ لَمْ يُرِدِ ٱللَّهُ أَن يُطَهِّرَ قُلُوبَهُمْ ۚ لَهُمْ فِى ٱلدُّنْيَا خِزْىٌۭ ۖ وَلَهُمْ فِى ٱلْءَاخِرَةِ عَذَابٌ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,5,' سَمَّعُونَ لِلْكَذِبِ أَكَّلُونَ لِلسُّحْتِ ۚ فَإِن جَآءُوكَ فَٱحْكُم بَيْنَهُمْ أَوْ أَعْرِضْ عَنْهُمْ ۖ وَإِن تُعْرِضْ عَنْهُمْ فَلَن يَضُرُّوكَ شَيْـًۭٔا ۖ وَإِنْ حَكَمْتَ فَٱحْكُم بَيْنَهُم بِٱلْقِسْطِ ۚ إِنَّ ٱللَّهَ يُحِبُّ ٱلْمُقْسِطِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,5,' وَكَيْفَ يُحَكِّمُونَكَ وَعِندَهُمُ ٱلتَّوْرَىٰةُ فِيهَا حُكْمُ ٱللَّهِ ثُمَّ يَتَوَلَّوْنَ مِنۢ بَعْدِ ذَلِكَ ۚ وَمَآ أُو۟لَٓئِكَ بِٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,5,' إِنَّآ أَنزَلْنَا ٱلتَّوْرَىٰةَ فِيهَا هُدًۭى وَنُورٌۭ ۚ يَحْكُمُ بِهَا ٱلنَّبِيُّونَ ٱلَّذِينَ أَسْلَمُوا۟ لِلَّذِينَ هَادُوا۟ وَٱلرَّبَّنِيُّونَ وَٱلْأَحْبَارُ بِمَا ٱسْتُحْفِظُوا۟ مِن كِتَبِ ٱللَّهِ وَكَانُوا۟ عَلَيْهِ شُهَدَآءَ ۚ فَلَا تَخْشَوُا۟ ٱلنَّاسَ وَٱخْشَوْنِ وَلَا تَشْتَرُوا۟ بِـَٔايَتِى ثَمَنًۭا قَلِيلًۭا ۚ وَمَن لَّمْ يَحْكُم بِمَآ أَنزَلَ ٱللَّهُ فَأُو۟لَٓئِكَ هُمُ ٱلْكَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,5,' وَكَتَبْنَا عَلَيْهِمْ فِيهَآ أَنَّ ٱلنَّفْسَ بِٱلنَّفْسِ وَٱلْعَيْنَ بِٱلْعَيْنِ وَٱلْأَنفَ بِٱلْأَنفِ وَٱلْأُذُنَ بِٱلْأُذُنِ وَٱلسِّنَّ بِٱلسِّنِّ وَٱلْجُرُوحَ قِصَاصٌۭ ۚ فَمَن تَصَدَّقَ بِهِۦ فَهُوَ كَفَّارَةٌۭ لَّهُۥ ۚ وَمَن لَّمْ يَحْكُم بِمَآ أَنزَلَ ٱللَّهُ فَأُو۟لَٓئِكَ هُمُ ٱلظَّلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,5,' وَقَفَّيْنَا عَلَىٰٓ ءَاثَرِهِم بِعِيسَى ٱبْنِ مَرْيَمَ مُصَدِّقًۭا لِّمَا بَيْنَ يَدَيْهِ مِنَ ٱلتَّوْرَىٰةِ ۖ وَءَاتَيْنَهُ ٱلْإِنجِيلَ فِيهِ هُدًۭى وَنُورٌۭ وَمُصَدِّقًۭا لِّمَا بَيْنَ يَدَيْهِ مِنَ ٱلتَّوْرَىٰةِ وَهُدًۭى وَمَوْعِظَةًۭ لِّلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,5,' وَلْيَحْكُمْ أَهْلُ ٱلْإِنجِيلِ بِمَآ أَنزَلَ ٱللَّهُ فِيهِ ۚ وَمَن لَّمْ يَحْكُم بِمَآ أَنزَلَ ٱللَّهُ فَأُو۟لَٓئِكَ هُمُ ٱلْفَسِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,5,' وَأَنزَلْنَآ إِلَيْكَ ٱلْكِتَبَ بِٱلْحَقِّ مُصَدِّقًۭا لِّمَا بَيْنَ يَدَيْهِ مِنَ ٱلْكِتَبِ وَمُهَيْمِنًا عَلَيْهِ ۖ فَٱحْكُم بَيْنَهُم بِمَآ أَنزَلَ ٱللَّهُ ۖ وَلَا تَتَّبِعْ أَهْوَآءَهُمْ عَمَّا جَآءَكَ مِنَ ٱلْحَقِّ ۚ لِكُلٍّۢ جَعَلْنَا مِنكُمْ شِرْعَةًۭ وَمِنْهَاجًۭا ۚ وَلَوْ شَآءَ ٱللَّهُ لَجَعَلَكُمْ أُمَّةًۭ وَحِدَةًۭ وَلَكِن لِّيَبْلُوَكُمْ فِى مَآ ءَاتَىٰكُمْ ۖ فَٱسْتَبِقُوا۟ ٱلْخَيْرَتِ ۚ إِلَى ٱللَّهِ مَرْجِعُكُمْ جَمِيعًۭا فَيُنَبِّئُكُم بِمَا كُنتُمْ فِيهِ تَخْتَلِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,5,' وَأَنِ ٱحْكُم بَيْنَهُم بِمَآ أَنزَلَ ٱللَّهُ وَلَا تَتَّبِعْ أَهْوَآءَهُمْ وَٱحْذَرْهُمْ أَن يَفْتِنُوكَ عَنۢ بَعْضِ مَآ أَنزَلَ ٱللَّهُ إِلَيْكَ ۖ فَإِن تَوَلَّوْا۟ فَٱعْلَمْ أَنَّمَا يُرِيدُ ٱللَّهُ أَن يُصِيبَهُم بِبَعْضِ ذُنُوبِهِمْ ۗ وَإِنَّ كَثِيرًۭا مِّنَ ٱلنَّاسِ لَفَسِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,5,' أَفَحُكْمَ ٱلْجَهِلِيَّةِ يَبْغُونَ ۚ وَمَنْ أَحْسَنُ مِنَ ٱللَّهِ حُكْمًۭا لِّقَوْمٍۢ يُوقِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,5,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَتَّخِذُوا۟ ٱلْيَهُودَ وَٱلنَّصَرَىٰٓ أَوْلِيَآءَ ۘ بَعْضُهُمْ أَوْلِيَآءُ بَعْضٍۢ ۚ وَمَن يَتَوَلَّهُم مِّنكُمْ فَإِنَّهُۥ مِنْهُمْ ۗ إِنَّ ٱللَّهَ لَا يَهْدِى ٱلْقَوْمَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,5,' فَتَرَى ٱلَّذِينَ فِى قُلُوبِهِم مَّرَضٌۭ يُسَرِعُونَ فِيهِمْ يَقُولُونَ نَخْشَىٰٓ أَن تُصِيبَنَا دَآئِرَةٌۭ ۚ فَعَسَى ٱللَّهُ أَن يَأْتِىَ بِٱلْفَتْحِ أَوْ أَمْرٍۢ مِّنْ عِندِهِۦ فَيُصْبِحُوا۟ عَلَىٰ مَآ أَسَرُّوا۟ فِىٓ أَنفُسِهِمْ نَدِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,5,' وَيَقُولُ ٱلَّذِينَ ءَامَنُوٓا۟ أَهَٓؤُلَآءِ ٱلَّذِينَ أَقْسَمُوا۟ بِٱللَّهِ جَهْدَ أَيْمَنِهِمْ ۙ إِنَّهُمْ لَمَعَكُمْ ۚ حَبِطَتْ أَعْمَلُهُمْ فَأَصْبَحُوا۟ خَسِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,5,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ مَن يَرْتَدَّ مِنكُمْ عَن دِينِهِۦ فَسَوْفَ يَأْتِى ٱللَّهُ بِقَوْمٍۢ يُحِبُّهُمْ وَيُحِبُّونَهُۥٓ أَذِلَّةٍ عَلَى ٱلْمُؤْمِنِينَ أَعِزَّةٍ عَلَى ٱلْكَفِرِينَ يُجَهِدُونَ فِى سَبِيلِ ٱللَّهِ وَلَا يَخَافُونَ لَوْمَةَ لَآئِمٍۢ ۚ ذَلِكَ فَضْلُ ٱللَّهِ يُؤْتِيهِ مَن يَشَآءُ ۚ وَٱللَّهُ وَسِعٌ عَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,5,' إِنَّمَا وَلِيُّكُمُ ٱللَّهُ وَرَسُولُهُۥ وَٱلَّذِينَ ءَامَنُوا۟ ٱلَّذِينَ يُقِيمُونَ ٱلصَّلَوٰةَ وَيُؤْتُونَ ٱلزَّكَوٰةَ وَهُمْ رَكِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,5,' وَمَن يَتَوَلَّ ٱللَّهَ وَرَسُولَهُۥ وَٱلَّذِينَ ءَامَنُوا۟ فَإِنَّ حِزْبَ ٱللَّهِ هُمُ ٱلْغَلِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,5,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَتَّخِذُوا۟ ٱلَّذِينَ ٱتَّخَذُوا۟ دِينَكُمْ هُزُوًۭا وَلَعِبًۭا مِّنَ ٱلَّذِينَ أُوتُوا۟ ٱلْكِتَبَ مِن قَبْلِكُمْ وَٱلْكُفَّارَ أَوْلِيَآءَ ۚ وَٱتَّقُوا۟ ٱللَّهَ إِن كُنتُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,5,' وَإِذَا نَادَيْتُمْ إِلَى ٱلصَّلَوٰةِ ٱتَّخَذُوهَا هُزُوًۭا وَلَعِبًۭا ۚ ذَلِكَ بِأَنَّهُمْ قَوْمٌۭ لَّا يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,5,' قُلْ يَٓأَهْلَ ٱلْكِتَبِ هَلْ تَنقِمُونَ مِنَّآ إِلَّآ أَنْ ءَامَنَّا بِٱللَّهِ وَمَآ أُنزِلَ إِلَيْنَا وَمَآ أُنزِلَ مِن قَبْلُ وَأَنَّ أَكْثَرَكُمْ فَسِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,5,' قُلْ هَلْ أُنَبِّئُكُم بِشَرٍّۢ مِّن ذَلِكَ مَثُوبَةً عِندَ ٱللَّهِ ۚ مَن لَّعَنَهُ ٱللَّهُ وَغَضِبَ عَلَيْهِ وَجَعَلَ مِنْهُمُ ٱلْقِرَدَةَ وَٱلْخَنَازِيرَ وَعَبَدَ ٱلطَّغُوتَ ۚ أُو۟لَٓئِكَ شَرٌّۭ مَّكَانًۭا وَأَضَلُّ عَن سَوَآءِ ٱلسَّبِيلِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,5,' وَإِذَا جَآءُوكُمْ قَالُوٓا۟ ءَامَنَّا وَقَد دَّخَلُوا۟ بِٱلْكُفْرِ وَهُمْ قَدْ خَرَجُوا۟ بِهِۦ ۚ وَٱللَّهُ أَعْلَمُ بِمَا كَانُوا۟ يَكْتُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,5,' وَتَرَىٰ كَثِيرًۭا مِّنْهُمْ يُسَرِعُونَ فِى ٱلْإِثْمِ وَٱلْعُدْوَنِ وَأَكْلِهِمُ ٱلسُّحْتَ ۚ لَبِئْسَ مَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,5,' لَوْلَا يَنْهَىٰهُمُ ٱلرَّبَّنِيُّونَ وَٱلْأَحْبَارُ عَن قَوْلِهِمُ ٱلْإِثْمَ وَأَكْلِهِمُ ٱلسُّحْتَ ۚ لَبِئْسَ مَا كَانُوا۟ يَصْنَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,5,' وَقَالَتِ ٱلْيَهُودُ يَدُ ٱللَّهِ مَغْلُولَةٌ ۚ غُلَّتْ أَيْدِيهِمْ وَلُعِنُوا۟ بِمَا قَالُوا۟ ۘ بَلْ يَدَاهُ مَبْسُوطَتَانِ يُنفِقُ كَيْفَ يَشَآءُ ۚ وَلَيَزِيدَنَّ كَثِيرًۭا مِّنْهُم مَّآ أُنزِلَ إِلَيْكَ مِن رَّبِّكَ طُغْيَنًۭا وَكُفْرًۭا ۚ وَأَلْقَيْنَا بَيْنَهُمُ ٱلْعَدَوَةَ وَٱلْبَغْضَآءَ إِلَىٰ يَوْمِ ٱلْقِيَمَةِ ۚ كُلَّمَآ أَوْقَدُوا۟ نَارًۭا لِّلْحَرْبِ أَطْفَأَهَا ٱللَّهُ ۚ وَيَسْعَوْنَ فِى ٱلْأَرْضِ فَسَادًۭا ۚ وَٱللَّهُ لَا يُحِبُّ ٱلْمُفْسِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,5,' وَلَوْ أَنَّ أَهْلَ ٱلْكِتَبِ ءَامَنُوا۟ وَٱتَّقَوْا۟ لَكَفَّرْنَا عَنْهُمْ سَيِّـَٔاتِهِمْ وَلَأَدْخَلْنَهُمْ جَنَّتِ ٱلنَّعِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,5,' وَلَوْ أَنَّهُمْ أَقَامُوا۟ ٱلتَّوْرَىٰةَ وَٱلْإِنجِيلَ وَمَآ أُنزِلَ إِلَيْهِم مِّن رَّبِّهِمْ لَأَكَلُوا۟ مِن فَوْقِهِمْ وَمِن تَحْتِ أَرْجُلِهِم ۚ مِّنْهُمْ أُمَّةٌۭ مُّقْتَصِدَةٌۭ ۖ وَكَثِيرٌۭ مِّنْهُمْ سَآءَ مَا يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,5,' يَٓأَيُّهَا ٱلرَّسُولُ بَلِّغْ مَآ أُنزِلَ إِلَيْكَ مِن رَّبِّكَ ۖ وَإِن لَّمْ تَفْعَلْ فَمَا بَلَّغْتَ رِسَالَتَهُۥ ۚ وَٱللَّهُ يَعْصِمُكَ مِنَ ٱلنَّاسِ ۗ إِنَّ ٱللَّهَ لَا يَهْدِى ٱلْقَوْمَ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,5,' قُلْ يَٓأَهْلَ ٱلْكِتَبِ لَسْتُمْ عَلَىٰ شَىْءٍ حَتَّىٰ تُقِيمُوا۟ ٱلتَّوْرَىٰةَ وَٱلْإِنجِيلَ وَمَآ أُنزِلَ إِلَيْكُم مِّن رَّبِّكُمْ ۗ وَلَيَزِيدَنَّ كَثِيرًۭا مِّنْهُم مَّآ أُنزِلَ إِلَيْكَ مِن رَّبِّكَ طُغْيَنًۭا وَكُفْرًۭا ۖ فَلَا تَأْسَ عَلَى ٱلْقَوْمِ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,5,' إِنَّ ٱلَّذِينَ ءَامَنُوا۟ وَٱلَّذِينَ هَادُوا۟ وَٱلصَّبِـُٔونَ وَٱلنَّصَرَىٰ مَنْ ءَامَنَ بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ وَعَمِلَ صَلِحًۭا فَلَا خَوْفٌ عَلَيْهِمْ وَلَا هُمْ يَحْزَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,5,' لَقَدْ أَخَذْنَا مِيثَقَ بَنِىٓ إِسْرَٓءِيلَ وَأَرْسَلْنَآ إِلَيْهِمْ رُسُلًۭا ۖ كُلَّمَا جَآءَهُمْ رَسُولٌۢ بِمَا لَا تَهْوَىٰٓ أَنفُسُهُمْ فَرِيقًۭا كَذَّبُوا۟ وَفَرِيقًۭا يَقْتُلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,5,' وَحَسِبُوٓا۟ أَلَّا تَكُونَ فِتْنَةٌۭ فَعَمُوا۟ وَصَمُّوا۟ ثُمَّ تَابَ ٱللَّهُ عَلَيْهِمْ ثُمَّ عَمُوا۟ وَصَمُّوا۟ كَثِيرٌۭ مِّنْهُمْ ۚ وَٱللَّهُ بَصِيرٌۢ بِمَا يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,5,' لَقَدْ كَفَرَ ٱلَّذِينَ قَالُوٓا۟ إِنَّ ٱللَّهَ هُوَ ٱلْمَسِيحُ ٱبْنُ مَرْيَمَ ۖ وَقَالَ ٱلْمَسِيحُ يَبَنِىٓ إِسْرَٓءِيلَ ٱعْبُدُوا۟ ٱللَّهَ رَبِّى وَرَبَّكُمْ ۖ إِنَّهُۥ مَن يُشْرِكْ بِٱللَّهِ فَقَدْ حَرَّمَ ٱللَّهُ عَلَيْهِ ٱلْجَنَّةَ وَمَأْوَىٰهُ ٱلنَّارُ ۖ وَمَا لِلظَّلِمِينَ مِنْ أَنصَارٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,5,' لَّقَدْ كَفَرَ ٱلَّذِينَ قَالُوٓا۟ إِنَّ ٱللَّهَ ثَالِثُ ثَلَثَةٍۢ ۘ وَمَا مِنْ إِلَهٍ إِلَّآ إِلَهٌۭ وَحِدٌۭ ۚ وَإِن لَّمْ يَنتَهُوا۟ عَمَّا يَقُولُونَ لَيَمَسَّنَّ ٱلَّذِينَ كَفَرُوا۟ مِنْهُمْ عَذَابٌ أَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,5,' أَفَلَا يَتُوبُونَ إِلَى ٱللَّهِ وَيَسْتَغْفِرُونَهُۥ ۚ وَٱللَّهُ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,5,' مَّا ٱلْمَسِيحُ ٱبْنُ مَرْيَمَ إِلَّا رَسُولٌۭ قَدْ خَلَتْ مِن قَبْلِهِ ٱلرُّسُلُ وَأُمُّهُۥ صِدِّيقَةٌۭ ۖ كَانَا يَأْكُلَانِ ٱلطَّعَامَ ۗ ٱنظُرْ كَيْفَ نُبَيِّنُ لَهُمُ ٱلْءَايَتِ ثُمَّ ٱنظُرْ أَنَّىٰ يُؤْفَكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,5,' قُلْ أَتَعْبُدُونَ مِن دُونِ ٱللَّهِ مَا لَا يَمْلِكُ لَكُمْ ضَرًّۭا وَلَا نَفْعًۭا ۚ وَٱللَّهُ هُوَ ٱلسَّمِيعُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,5,' قُلْ يَٓأَهْلَ ٱلْكِتَبِ لَا تَغْلُوا۟ فِى دِينِكُمْ غَيْرَ ٱلْحَقِّ وَلَا تَتَّبِعُوٓا۟ أَهْوَآءَ قَوْمٍۢ قَدْ ضَلُّوا۟ مِن قَبْلُ وَأَضَلُّوا۟ كَثِيرًۭا وَضَلُّوا۟ عَن سَوَآءِ ٱلسَّبِيلِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,5,' لُعِنَ ٱلَّذِينَ كَفَرُوا۟ مِنۢ بَنِىٓ إِسْرَٓءِيلَ عَلَىٰ لِسَانِ دَاوُۥدَ وَعِيسَى ٱبْنِ مَرْيَمَ ۚ ذَلِكَ بِمَا عَصَوا۟ وَّكَانُوا۟ يَعْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,5,' كَانُوا۟ لَا يَتَنَاهَوْنَ عَن مُّنكَرٍۢ فَعَلُوهُ ۚ لَبِئْسَ مَا كَانُوا۟ يَفْعَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,5,' تَرَىٰ كَثِيرًۭا مِّنْهُمْ يَتَوَلَّوْنَ ٱلَّذِينَ كَفَرُوا۟ ۚ لَبِئْسَ مَا قَدَّمَتْ لَهُمْ أَنفُسُهُمْ أَن سَخِطَ ٱللَّهُ عَلَيْهِمْ وَفِى ٱلْعَذَابِ هُمْ خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,5,' وَلَوْ كَانُوا۟ يُؤْمِنُونَ بِٱللَّهِ وَٱلنَّبِىِّ وَمَآ أُنزِلَ إِلَيْهِ مَا ٱتَّخَذُوهُمْ أَوْلِيَآءَ وَلَكِنَّ كَثِيرًۭا مِّنْهُمْ فَسِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,5,' لَتَجِدَنَّ أَشَدَّ ٱلنَّاسِ عَدَوَةًۭ لِّلَّذِينَ ءَامَنُوا۟ ٱلْيَهُودَ وَٱلَّذِينَ أَشْرَكُوا۟ ۖ وَلَتَجِدَنَّ أَقْرَبَهُم مَّوَدَّةًۭ لِّلَّذِينَ ءَامَنُوا۟ ٱلَّذِينَ قَالُوٓا۟ إِنَّا نَصَرَىٰ ۚ ذَلِكَ بِأَنَّ مِنْهُمْ قِسِّيسِينَ وَرُهْبَانًۭا وَأَنَّهُمْ لَا يَسْتَكْبِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,5,' وَإِذَا سَمِعُوا۟ مَآ أُنزِلَ إِلَى ٱلرَّسُولِ تَرَىٰٓ أَعْيُنَهُمْ تَفِيضُ مِنَ ٱلدَّمْعِ مِمَّا عَرَفُوا۟ مِنَ ٱلْحَقِّ ۖ يَقُولُونَ رَبَّنَآ ءَامَنَّا فَٱكْتُبْنَا مَعَ ٱلشَّهِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,5,' وَمَا لَنَا لَا نُؤْمِنُ بِٱللَّهِ وَمَا جَآءَنَا مِنَ ٱلْحَقِّ وَنَطْمَعُ أَن يُدْخِلَنَا رَبُّنَا مَعَ ٱلْقَوْمِ ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,5,' فَأَثَبَهُمُ ٱللَّهُ بِمَا قَالُوا۟ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَا ۚ وَذَلِكَ جَزَآءُ ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,5,' وَٱلَّذِينَ كَفَرُوا۟ وَكَذَّبُوا۟ بِـَٔايَتِنَآ أُو۟لَٓئِكَ أَصْحَبُ ٱلْجَحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,5,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تُحَرِّمُوا۟ طَيِّبَتِ مَآ أَحَلَّ ٱللَّهُ لَكُمْ وَلَا تَعْتَدُوٓا۟ ۚ إِنَّ ٱللَّهَ لَا يُحِبُّ ٱلْمُعْتَدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,5,' وَكُلُوا۟ مِمَّا رَزَقَكُمُ ٱللَّهُ حَلَلًۭا طَيِّبًۭا ۚ وَٱتَّقُوا۟ ٱللَّهَ ٱلَّذِىٓ أَنتُم بِهِۦ مُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,5,' لَا يُؤَاخِذُكُمُ ٱللَّهُ بِٱللَّغْوِ فِىٓ أَيْمَنِكُمْ وَلَكِن يُؤَاخِذُكُم بِمَا عَقَّدتُّمُ ٱلْأَيْمَنَ ۖ فَكَفَّرَتُهُۥٓ إِطْعَامُ عَشَرَةِ مَسَكِينَ مِنْ أَوْسَطِ مَا تُطْعِمُونَ أَهْلِيكُمْ أَوْ كِسْوَتُهُمْ أَوْ تَحْرِيرُ رَقَبَةٍۢ ۖ فَمَن لَّمْ يَجِدْ فَصِيَامُ ثَلَثَةِ أَيَّامٍۢ ۚ ذَلِكَ كَفَّرَةُ أَيْمَنِكُمْ إِذَا حَلَفْتُمْ ۚ وَٱحْفَظُوٓا۟ أَيْمَنَكُمْ ۚ كَذَلِكَ يُبَيِّنُ ٱللَّهُ لَكُمْ ءَايَتِهِۦ لَعَلَّكُمْ تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,5,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِنَّمَا ٱلْخَمْرُ وَٱلْمَيْسِرُ وَٱلْأَنصَابُ وَٱلْأَزْلَمُ رِجْسٌۭ مِّنْ عَمَلِ ٱلشَّيْطَنِ فَٱجْتَنِبُوهُ لَعَلَّكُمْ تُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,5,' إِنَّمَا يُرِيدُ ٱلشَّيْطَنُ أَن يُوقِعَ بَيْنَكُمُ ٱلْعَدَوَةَ وَٱلْبَغْضَآءَ فِى ٱلْخَمْرِ وَٱلْمَيْسِرِ وَيَصُدَّكُمْ عَن ذِكْرِ ٱللَّهِ وَعَنِ ٱلصَّلَوٰةِ ۖ فَهَلْ أَنتُم مُّنتَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,5,' وَأَطِيعُوا۟ ٱللَّهَ وَأَطِيعُوا۟ ٱلرَّسُولَ وَٱحْذَرُوا۟ ۚ فَإِن تَوَلَّيْتُمْ فَٱعْلَمُوٓا۟ أَنَّمَا عَلَىٰ رَسُولِنَا ٱلْبَلَغُ ٱلْمُبِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,5,' لَيْسَ عَلَى ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ جُنَاحٌۭ فِيمَا طَعِمُوٓا۟ إِذَا مَا ٱتَّقَوا۟ وَّءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ ثُمَّ ٱتَّقَوا۟ وَّءَامَنُوا۟ ثُمَّ ٱتَّقَوا۟ وَّأَحْسَنُوا۟ ۗ وَٱللَّهُ يُحِبُّ ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,5,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَيَبْلُوَنَّكُمُ ٱللَّهُ بِشَىْءٍۢ مِّنَ ٱلصَّيْدِ تَنَالُهُۥٓ أَيْدِيكُمْ وَرِمَاحُكُمْ لِيَعْلَمَ ٱللَّهُ مَن يَخَافُهُۥ بِٱلْغَيْبِ ۚ فَمَنِ ٱعْتَدَىٰ بَعْدَ ذَلِكَ فَلَهُۥ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,5,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَقْتُلُوا۟ ٱلصَّيْدَ وَأَنتُمْ حُرُمٌۭ ۚ وَمَن قَتَلَهُۥ مِنكُم مُّتَعَمِّدًۭا فَجَزَآءٌۭ مِّثْلُ مَا قَتَلَ مِنَ ٱلنَّعَمِ يَحْكُمُ بِهِۦ ذَوَا عَدْلٍۢ مِّنكُمْ هَدْيًۢا بَلِغَ ٱلْكَعْبَةِ أَوْ كَفَّرَةٌۭ طَعَامُ مَسَكِينَ أَوْ عَدْلُ ذَلِكَ صِيَامًۭا لِّيَذُوقَ وَبَالَ أَمْرِهِۦ ۗ عَفَا ٱللَّهُ عَمَّا سَلَفَ ۚ وَمَنْ عَادَ فَيَنتَقِمُ ٱللَّهُ مِنْهُ ۗ وَٱللَّهُ عَزِيزٌۭ ذُو ٱنتِقَامٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,5,' أُحِلَّ لَكُمْ صَيْدُ ٱلْبَحْرِ وَطَعَامُهُۥ مَتَعًۭا لَّكُمْ وَلِلسَّيَّارَةِ ۖ وَحُرِّمَ عَلَيْكُمْ صَيْدُ ٱلْبَرِّ مَا دُمْتُمْ حُرُمًۭا ۗ وَٱتَّقُوا۟ ٱللَّهَ ٱلَّذِىٓ إِلَيْهِ تُحْشَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,5,' جَعَلَ ٱللَّهُ ٱلْكَعْبَةَ ٱلْبَيْتَ ٱلْحَرَامَ قِيَمًۭا لِّلنَّاسِ وَٱلشَّهْرَ ٱلْحَرَامَ وَٱلْهَدْىَ وَٱلْقَلَٓئِدَ ۚ ذَلِكَ لِتَعْلَمُوٓا۟ أَنَّ ٱللَّهَ يَعْلَمُ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ وَأَنَّ ٱللَّهَ بِكُلِّ شَىْءٍ عَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,5,' ٱعْلَمُوٓا۟ أَنَّ ٱللَّهَ شَدِيدُ ٱلْعِقَابِ وَأَنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,5,' مَّا عَلَى ٱلرَّسُولِ إِلَّا ٱلْبَلَغُ ۗ وَٱللَّهُ يَعْلَمُ مَا تُبْدُونَ وَمَا تَكْتُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,1,5,' قُل لَّا يَسْتَوِى ٱلْخَبِيثُ وَٱلطَّيِّبُ وَلَوْ أَعْجَبَكَ كَثْرَةُ ٱلْخَبِيثِ ۚ فَٱتَّقُوا۟ ٱللَّهَ يَٓأُو۟لِى ٱلْأَلْبَبِ لَعَلَّكُمْ تُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,1,5,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَسْـَٔلُوا۟ عَنْ أَشْيَآءَ إِن تُبْدَ لَكُمْ تَسُؤْكُمْ وَإِن تَسْـَٔلُوا۟ عَنْهَا حِينَ يُنَزَّلُ ٱلْقُرْءَانُ تُبْدَ لَكُمْ عَفَا ٱللَّهُ عَنْهَا ۗ وَٱللَّهُ غَفُورٌ حَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,1,5,' قَدْ سَأَلَهَا قَوْمٌۭ مِّن قَبْلِكُمْ ثُمَّ أَصْبَحُوا۟ بِهَا كَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,1,5,' مَا جَعَلَ ٱللَّهُ مِنۢ بَحِيرَةٍۢ وَلَا سَآئِبَةٍۢ وَلَا وَصِيلَةٍۢ وَلَا حَامٍۢ ۙ وَلَكِنَّ ٱلَّذِينَ كَفَرُوا۟ يَفْتَرُونَ عَلَى ٱللَّهِ ٱلْكَذِبَ ۖ وَأَكْثَرُهُمْ لَا يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,1,5,' وَإِذَا قِيلَ لَهُمْ تَعَالَوْا۟ إِلَىٰ مَآ أَنزَلَ ٱللَّهُ وَإِلَى ٱلرَّسُولِ قَالُوا۟ حَسْبُنَا مَا وَجَدْنَا عَلَيْهِ ءَابَآءَنَآ ۚ أَوَلَوْ كَانَ ءَابَآؤُهُمْ لَا يَعْلَمُونَ شَيْـًۭٔا وَلَا يَهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,1,5,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ عَلَيْكُمْ أَنفُسَكُمْ ۖ لَا يَضُرُّكُم مَّن ضَلَّ إِذَا ٱهْتَدَيْتُمْ ۚ إِلَى ٱللَّهِ مَرْجِعُكُمْ جَمِيعًۭا فَيُنَبِّئُكُم بِمَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,1,5,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ شَهَدَةُ بَيْنِكُمْ إِذَا حَضَرَ أَحَدَكُمُ ٱلْمَوْتُ حِينَ ٱلْوَصِيَّةِ ٱثْنَانِ ذَوَا عَدْلٍۢ مِّنكُمْ أَوْ ءَاخَرَانِ مِنْ غَيْرِكُمْ إِنْ أَنتُمْ ضَرَبْتُمْ فِى ٱلْأَرْضِ فَأَصَبَتْكُم مُّصِيبَةُ ٱلْمَوْتِ ۚ تَحْبِسُونَهُمَا مِنۢ بَعْدِ ٱلصَّلَوٰةِ فَيُقْسِمَانِ بِٱللَّهِ إِنِ ٱرْتَبْتُمْ لَا نَشْتَرِى بِهِۦ ثَمَنًۭا وَلَوْ كَانَ ذَا قُرْبَىٰ ۙ وَلَا نَكْتُمُ شَهَدَةَ ٱللَّهِ إِنَّآ إِذًۭا لَّمِنَ ٱلْءَاثِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,1,5,' فَإِنْ عُثِرَ عَلَىٰٓ أَنَّهُمَا ٱسْتَحَقَّآ إِثْمًۭا فَـَٔاخَرَانِ يَقُومَانِ مَقَامَهُمَا مِنَ ٱلَّذِينَ ٱسْتَحَقَّ عَلَيْهِمُ ٱلْأَوْلَيَنِ فَيُقْسِمَانِ بِٱللَّهِ لَشَهَدَتُنَآ أَحَقُّ مِن شَهَدَتِهِمَا وَمَا ٱعْتَدَيْنَآ إِنَّآ إِذًۭا لَّمِنَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,1,5,' ذَلِكَ أَدْنَىٰٓ أَن يَأْتُوا۟ بِٱلشَّهَدَةِ عَلَىٰ وَجْهِهَآ أَوْ يَخَافُوٓا۟ أَن تُرَدَّ أَيْمَنٌۢ بَعْدَ أَيْمَنِهِمْ ۗ وَٱتَّقُوا۟ ٱللَّهَ وَٱسْمَعُوا۟ ۗ وَٱللَّهُ لَا يَهْدِى ٱلْقَوْمَ ٱلْفَسِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,1,5,' ئ يَوْمَ يَجْمَعُ ٱللَّهُ ٱلرُّسُلَ فَيَقُولُ مَاذَآ أُجِبْتُمْ ۖ قَالُوا۟ لَا عِلْمَ لَنَآ ۖ إِنَّكَ أَنتَ عَلَّمُ ٱلْغُيُوبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,1,5,' إِذْ قَالَ ٱللَّهُ يَعِيسَى ٱبْنَ مَرْيَمَ ٱذْكُرْ نِعْمَتِى عَلَيْكَ وَعَلَىٰ وَلِدَتِكَ إِذْ أَيَّدتُّكَ بِرُوحِ ٱلْقُدُسِ تُكَلِّمُ ٱلنَّاسَ فِى ٱلْمَهْدِ وَكَهْلًۭا ۖ وَإِذْ عَلَّمْتُكَ ٱلْكِتَبَ وَٱلْحِكْمَةَ وَٱلتَّوْرَىٰةَ وَٱلْإِنجِيلَ ۖ وَإِذْ تَخْلُقُ مِنَ ٱلطِّينِ كَهَيْـَٔةِ ٱلطَّيْرِ بِإِذْنِى فَتَنفُخُ فِيهَا فَتَكُونُ طَيْرًۢا بِإِذْنِى ۖ وَتُبْرِئُ ٱلْأَكْمَهَ وَٱلْأَبْرَصَ بِإِذْنِى ۖ وَإِذْ تُخْرِجُ ٱلْمَوْتَىٰ بِإِذْنِى ۖ وَإِذْ كَفَفْتُ بَنِىٓ إِسْرَٓءِيلَ عَنكَ إِذْ جِئْتَهُم بِٱلْبَيِّنَتِ فَقَالَ ٱلَّذِينَ كَفَرُوا۟ مِنْهُمْ إِنْ هَذَآ إِلَّا سِحْرٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,1,5,' وَإِذْ أَوْحَيْتُ إِلَى ٱلْحَوَارِيِّۦنَ أَنْ ءَامِنُوا۟ بِى وَبِرَسُولِى قَالُوٓا۟ ءَامَنَّا وَٱشْهَدْ بِأَنَّنَا مُسْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,1,5,' إِذْ قَالَ ٱلْحَوَارِيُّونَ يَعِيسَى ٱبْنَ مَرْيَمَ هَلْ يَسْتَطِيعُ رَبُّكَ أَن يُنَزِّلَ عَلَيْنَا مَآئِدَةًۭ مِّنَ ٱلسَّمَآءِ ۖ قَالَ ٱتَّقُوا۟ ٱللَّهَ إِن كُنتُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,1,5,' قَالُوا۟ نُرِيدُ أَن نَّأْكُلَ مِنْهَا وَتَطْمَىِٕنَّ قُلُوبُنَا وَنَعْلَمَ أَن قَدْ صَدَقْتَنَا وَنَكُونَ عَلَيْهَا مِنَ ٱلشَّهِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,1,5,' قَالَ عِيسَى ٱبْنُ مَرْيَمَ ٱللَّهُمَّ رَبَّنَآ أَنزِلْ عَلَيْنَا مَآئِدَةًۭ مِّنَ ٱلسَّمَآءِ تَكُونُ لَنَا عِيدًۭا لِأَوَّلِنَا وَءَاخِرِنَا وَءَايَةًۭ مِّنكَ ۖ وَٱرْزُقْنَا وَأَنتَ خَيْرُ ٱلرَّزِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,1,5,' قَالَ ٱللَّهُ إِنِّى مُنَزِّلُهَا عَلَيْكُمْ ۖ فَمَن يَكْفُرْ بَعْدُ مِنكُمْ فَإِنِّىٓ أُعَذِّبُهُۥ عَذَابًۭا لَّآ أُعَذِّبُهُۥٓ أَحَدًۭا مِّنَ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,1,5,' وَإِذْ قَالَ ٱللَّهُ يَعِيسَى ٱبْنَ مَرْيَمَ ءَأَنتَ قُلْتَ لِلنَّاسِ ٱتَّخِذُونِى وَأُمِّىَ إِلَهَيْنِ مِن دُونِ ٱللَّهِ ۖ قَالَ سُبْحَنَكَ مَا يَكُونُ لِىٓ أَنْ أَقُولَ مَا لَيْسَ لِى بِحَقٍّ ۚ إِن كُنتُ قُلْتُهُۥ فَقَدْ عَلِمْتَهُۥ ۚ تَعْلَمُ مَا فِى نَفْسِى وَلَآ أَعْلَمُ مَا فِى نَفْسِكَ ۚ إِنَّكَ أَنتَ عَلَّمُ ٱلْغُيُوبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,1,5,' مَا قُلْتُ لَهُمْ إِلَّا مَآ أَمَرْتَنِى بِهِۦٓ أَنِ ٱعْبُدُوا۟ ٱللَّهَ رَبِّى وَرَبَّكُمْ ۚ وَكُنتُ عَلَيْهِمْ شَهِيدًۭا مَّا دُمْتُ فِيهِمْ ۖ فَلَمَّا تَوَفَّيْتَنِى كُنتَ أَنتَ ٱلرَّقِيبَ عَلَيْهِمْ ۚ وَأَنتَ عَلَىٰ كُلِّ شَىْءٍۢ شَهِيدٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,1,5,' إِن تُعَذِّبْهُمْ فَإِنَّهُمْ عِبَادُكَ ۖ وَإِن تَغْفِرْ لَهُمْ فَإِنَّكَ أَنتَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,1,5,' قَالَ ٱللَّهُ هَذَا يَوْمُ يَنفَعُ ٱلصَّدِقِينَ صِدْقُهُمْ ۚ لَهُمْ جَنَّتٌۭ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَآ أَبَدًۭا ۚ رَّضِىَ ٱللَّهُ عَنْهُمْ وَرَضُوا۟ عَنْهُ ۚ ذَلِكَ ٱلْفَوْزُ ٱلْعَظِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,1,5,' لِلَّهِ مُلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَمَا فِيهِنَّ ۚ وَهُوَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۢ');
+INSERT INTO chapters (id, number, quran_id) VALUES(6,6,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,6,' ٱلْحَمْدُ لِلَّهِ ٱلَّذِى خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ وَجَعَلَ ٱلظُّلُمَتِ وَٱلنُّورَ ۖ ثُمَّ ٱلَّذِينَ كَفَرُوا۟ بِرَبِّهِمْ يَعْدِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,6,' هُوَ ٱلَّذِى خَلَقَكُم مِّن طِينٍۢ ثُمَّ قَضَىٰٓ أَجَلًۭا ۖ وَأَجَلٌۭ مُّسَمًّى عِندَهُۥ ۖ ثُمَّ أَنتُمْ تَمْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,6,' وَهُوَ ٱللَّهُ فِى ٱلسَّمَوَتِ وَفِى ٱلْأَرْضِ ۖ يَعْلَمُ سِرَّكُمْ وَجَهْرَكُمْ وَيَعْلَمُ مَا تَكْسِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,6,' وَمَا تَأْتِيهِم مِّنْ ءَايَةٍۢ مِّنْ ءَايَتِ رَبِّهِمْ إِلَّا كَانُوا۟ عَنْهَا مُعْرِضِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,6,' فَقَدْ كَذَّبُوا۟ بِٱلْحَقِّ لَمَّا جَآءَهُمْ ۖ فَسَوْفَ يَأْتِيهِمْ أَنۢبَٓؤُا۟ مَا كَانُوا۟ بِهِۦ يَسْتَهْزِءُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,6,' أَلَمْ يَرَوْا۟ كَمْ أَهْلَكْنَا مِن قَبْلِهِم مِّن قَرْنٍۢ مَّكَّنَّهُمْ فِى ٱلْأَرْضِ مَا لَمْ نُمَكِّن لَّكُمْ وَأَرْسَلْنَا ٱلسَّمَآءَ عَلَيْهِم مِّدْرَارًۭا وَجَعَلْنَا ٱلْأَنْهَرَ تَجْرِى مِن تَحْتِهِمْ فَأَهْلَكْنَهُم بِذُنُوبِهِمْ وَأَنشَأْنَا مِنۢ بَعْدِهِمْ قَرْنًا ءَاخَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,6,' وَلَوْ نَزَّلْنَا عَلَيْكَ كِتَبًۭا فِى قِرْطَاسٍۢ فَلَمَسُوهُ بِأَيْدِيهِمْ لَقَالَ ٱلَّذِينَ كَفَرُوٓا۟ إِنْ هَذَآ إِلَّا سِحْرٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,6,' وَقَالُوا۟ لَوْلَآ أُنزِلَ عَلَيْهِ مَلَكٌۭ ۖ وَلَوْ أَنزَلْنَا مَلَكًۭا لَّقُضِىَ ٱلْأَمْرُ ثُمَّ لَا يُنظَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,6,' وَلَوْ جَعَلْنَهُ مَلَكًۭا لَّجَعَلْنَهُ رَجُلًۭا وَلَلَبَسْنَا عَلَيْهِم مَّا يَلْبِسُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,6,' وَلَقَدِ ٱسْتُهْزِئَ بِرُسُلٍۢ مِّن قَبْلِكَ فَحَاقَ بِٱلَّذِينَ سَخِرُوا۟ مِنْهُم مَّا كَانُوا۟ بِهِۦ يَسْتَهْزِءُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,6,' قُلْ سِيرُوا۟ فِى ٱلْأَرْضِ ثُمَّ ٱنظُرُوا۟ كَيْفَ كَانَ عَقِبَةُ ٱلْمُكَذِّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,6,' قُل لِّمَن مَّا فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ۖ قُل لِّلَّهِ ۚ كَتَبَ عَلَىٰ نَفْسِهِ ٱلرَّحْمَةَ ۚ لَيَجْمَعَنَّكُمْ إِلَىٰ يَوْمِ ٱلْقِيَمَةِ لَا رَيْبَ فِيهِ ۚ ٱلَّذِينَ خَسِرُوٓا۟ أَنفُسَهُمْ فَهُمْ لَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,6,' وَلَهُۥ مَا سَكَنَ فِى ٱلَّيْلِ وَٱلنَّهَارِ ۚ وَهُوَ ٱلسَّمِيعُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,6,' قُلْ أَغَيْرَ ٱللَّهِ أَتَّخِذُ وَلِيًّۭا فَاطِرِ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَهُوَ يُطْعِمُ وَلَا يُطْعَمُ ۗ قُلْ إِنِّىٓ أُمِرْتُ أَنْ أَكُونَ أَوَّلَ مَنْ أَسْلَمَ ۖ وَلَا تَكُونَنَّ مِنَ ٱلْمُشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,6,' قُلْ إِنِّىٓ أَخَافُ إِنْ عَصَيْتُ رَبِّى عَذَابَ يَوْمٍ عَظِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,6,' مَّن يُصْرَفْ عَنْهُ يَوْمَئِذٍۢ فَقَدْ رَحِمَهُۥ ۚ وَذَلِكَ ٱلْفَوْزُ ٱلْمُبِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,6,' وَإِن يَمْسَسْكَ ٱللَّهُ بِضُرٍّۢ فَلَا كَاشِفَ لَهُۥٓ إِلَّا هُوَ ۖ وَإِن يَمْسَسْكَ بِخَيْرٍۢ فَهُوَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,6,' وَهُوَ ٱلْقَاهِرُ فَوْقَ عِبَادِهِۦ ۚ وَهُوَ ٱلْحَكِيمُ ٱلْخَبِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,6,' قُلْ أَىُّ شَىْءٍ أَكْبَرُ شَهَدَةًۭ ۖ قُلِ ٱللَّهُ ۖ شَهِيدٌۢ بَيْنِى وَبَيْنَكُمْ ۚ وَأُوحِىَ إِلَىَّ هَذَا ٱلْقُرْءَانُ لِأُنذِرَكُم بِهِۦ وَمَنۢ بَلَغَ ۚ أَئِنَّكُمْ لَتَشْهَدُونَ أَنَّ مَعَ ٱللَّهِ ءَالِهَةً أُخْرَىٰ ۚ قُل لَّآ أَشْهَدُ ۚ قُلْ إِنَّمَا هُوَ إِلَهٌۭ وَحِدٌۭ وَإِنَّنِى بَرِىٓءٌۭ مِّمَّا تُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,6,' ٱلَّذِينَ ءَاتَيْنَهُمُ ٱلْكِتَبَ يَعْرِفُونَهُۥ كَمَا يَعْرِفُونَ أَبْنَآءَهُمُ ۘ ٱلَّذِينَ خَسِرُوٓا۟ أَنفُسَهُمْ فَهُمْ لَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,6,' وَمَنْ أَظْلَمُ مِمَّنِ ٱفْتَرَىٰ عَلَى ٱللَّهِ كَذِبًا أَوْ كَذَّبَ بِـَٔايَتِهِۦٓ ۗ إِنَّهُۥ لَا يُفْلِحُ ٱلظَّلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,6,' وَيَوْمَ نَحْشُرُهُمْ جَمِيعًۭا ثُمَّ نَقُولُ لِلَّذِينَ أَشْرَكُوٓا۟ أَيْنَ شُرَكَآؤُكُمُ ٱلَّذِينَ كُنتُمْ تَزْعُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,6,' ثُمَّ لَمْ تَكُن فِتْنَتُهُمْ إِلَّآ أَن قَالُوا۟ وَٱللَّهِ رَبِّنَا مَا كُنَّا مُشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,6,' ٱنظُرْ كَيْفَ كَذَبُوا۟ عَلَىٰٓ أَنفُسِهِمْ ۚ وَضَلَّ عَنْهُم مَّا كَانُوا۟ يَفْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,6,' وَمِنْهُم مَّن يَسْتَمِعُ إِلَيْكَ ۖ وَجَعَلْنَا عَلَىٰ قُلُوبِهِمْ أَكِنَّةً أَن يَفْقَهُوهُ وَفِىٓ ءَاذَانِهِمْ وَقْرًۭا ۚ وَإِن يَرَوْا۟ كُلَّ ءَايَةٍۢ لَّا يُؤْمِنُوا۟ بِهَا ۚ حَتَّىٰٓ إِذَا جَآءُوكَ يُجَدِلُونَكَ يَقُولُ ٱلَّذِينَ كَفَرُوٓا۟ إِنْ هَذَآ إِلَّآ أَسَطِيرُ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,6,' وَهُمْ يَنْهَوْنَ عَنْهُ وَيَنْـَٔوْنَ عَنْهُ ۖ وَإِن يُهْلِكُونَ إِلَّآ أَنفُسَهُمْ وَمَا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,6,' وَلَوْ تَرَىٰٓ إِذْ وُقِفُوا۟ عَلَى ٱلنَّارِ فَقَالُوا۟ يَلَيْتَنَا نُرَدُّ وَلَا نُكَذِّبَ بِـَٔايَتِ رَبِّنَا وَنَكُونَ مِنَ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,6,' بَلْ بَدَا لَهُم مَّا كَانُوا۟ يُخْفُونَ مِن قَبْلُ ۖ وَلَوْ رُدُّوا۟ لَعَادُوا۟ لِمَا نُهُوا۟ عَنْهُ وَإِنَّهُمْ لَكَذِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,6,' وَقَالُوٓا۟ إِنْ هِىَ إِلَّا حَيَاتُنَا ٱلدُّنْيَا وَمَا نَحْنُ بِمَبْعُوثِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,6,' وَلَوْ تَرَىٰٓ إِذْ وُقِفُوا۟ عَلَىٰ رَبِّهِمْ ۚ قَالَ أَلَيْسَ هَذَا بِٱلْحَقِّ ۚ قَالُوا۟ بَلَىٰ وَرَبِّنَا ۚ قَالَ فَذُوقُوا۟ ٱلْعَذَابَ بِمَا كُنتُمْ تَكْفُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,6,' قَدْ خَسِرَ ٱلَّذِينَ كَذَّبُوا۟ بِلِقَآءِ ٱللَّهِ ۖ حَتَّىٰٓ إِذَا جَآءَتْهُمُ ٱلسَّاعَةُ بَغْتَةًۭ قَالُوا۟ يَحَسْرَتَنَا عَلَىٰ مَا فَرَّطْنَا فِيهَا وَهُمْ يَحْمِلُونَ أَوْزَارَهُمْ عَلَىٰ ظُهُورِهِمْ ۚ أَلَا سَآءَ مَا يَزِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,6,' وَمَا ٱلْحَيَوٰةُ ٱلدُّنْيَآ إِلَّا لَعِبٌۭ وَلَهْوٌۭ ۖ وَلَلدَّارُ ٱلْءَاخِرَةُ خَيْرٌۭ لِّلَّذِينَ يَتَّقُونَ ۗ أَفَلَا تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,6,' قَدْ نَعْلَمُ إِنَّهُۥ لَيَحْزُنُكَ ٱلَّذِى يَقُولُونَ ۖ فَإِنَّهُمْ لَا يُكَذِّبُونَكَ وَلَكِنَّ ٱلظَّلِمِينَ بِـَٔايَتِ ٱللَّهِ يَجْحَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,6,' وَلَقَدْ كُذِّبَتْ رُسُلٌۭ مِّن قَبْلِكَ فَصَبَرُوا۟ عَلَىٰ مَا كُذِّبُوا۟ وَأُوذُوا۟ حَتَّىٰٓ أَتَىٰهُمْ نَصْرُنَا ۚ وَلَا مُبَدِّلَ لِكَلِمَتِ ٱللَّهِ ۚ وَلَقَدْ جَآءَكَ مِن نَّبَإِى۟ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,6,' وَإِن كَانَ كَبُرَ عَلَيْكَ إِعْرَاضُهُمْ فَإِنِ ٱسْتَطَعْتَ أَن تَبْتَغِىَ نَفَقًۭا فِى ٱلْأَرْضِ أَوْ سُلَّمًۭا فِى ٱلسَّمَآءِ فَتَأْتِيَهُم بِـَٔايَةٍۢ ۚ وَلَوْ شَآءَ ٱللَّهُ لَجَمَعَهُمْ عَلَى ٱلْهُدَىٰ ۚ فَلَا تَكُونَنَّ مِنَ ٱلْجَهِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,6,' إِنَّمَا يَسْتَجِيبُ ٱلَّذِينَ يَسْمَعُونَ ۘ وَٱلْمَوْتَىٰ يَبْعَثُهُمُ ٱللَّهُ ثُمَّ إِلَيْهِ يُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,6,' وَقَالُوا۟ لَوْلَا نُزِّلَ عَلَيْهِ ءَايَةٌۭ مِّن رَّبِّهِۦ ۚ قُلْ إِنَّ ٱللَّهَ قَادِرٌ عَلَىٰٓ أَن يُنَزِّلَ ءَايَةًۭ وَلَكِنَّ أَكْثَرَهُمْ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,6,' وَمَا مِن دَآبَّةٍۢ فِى ٱلْأَرْضِ وَلَا طَٓئِرٍۢ يَطِيرُ بِجَنَاحَيْهِ إِلَّآ أُمَمٌ أَمْثَالُكُم ۚ مَّا فَرَّطْنَا فِى ٱلْكِتَبِ مِن شَىْءٍۢ ۚ ثُمَّ إِلَىٰ رَبِّهِمْ يُحْشَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,6,' وَٱلَّذِينَ كَذَّبُوا۟ بِـَٔايَتِنَا صُمٌّۭ وَبُكْمٌۭ فِى ٱلظُّلُمَتِ ۗ مَن يَشَإِ ٱللَّهُ يُضْلِلْهُ وَمَن يَشَأْ يَجْعَلْهُ عَلَىٰ صِرَطٍۢ مُّسْتَقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,6,' قُلْ أَرَءَيْتَكُمْ إِنْ أَتَىٰكُمْ عَذَابُ ٱللَّهِ أَوْ أَتَتْكُمُ ٱلسَّاعَةُ أَغَيْرَ ٱللَّهِ تَدْعُونَ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,6,' بَلْ إِيَّاهُ تَدْعُونَ فَيَكْشِفُ مَا تَدْعُونَ إِلَيْهِ إِن شَآءَ وَتَنسَوْنَ مَا تُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,6,' وَلَقَدْ أَرْسَلْنَآ إِلَىٰٓ أُمَمٍۢ مِّن قَبْلِكَ فَأَخَذْنَهُم بِٱلْبَأْسَآءِ وَٱلضَّرَّآءِ لَعَلَّهُمْ يَتَضَرَّعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,6,' فَلَوْلَآ إِذْ جَآءَهُم بَأْسُنَا تَضَرَّعُوا۟ وَلَكِن قَسَتْ قُلُوبُهُمْ وَزَيَّنَ لَهُمُ ٱلشَّيْطَنُ مَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,6,' فَلَمَّا نَسُوا۟ مَا ذُكِّرُوا۟ بِهِۦ فَتَحْنَا عَلَيْهِمْ أَبْوَبَ كُلِّ شَىْءٍ حَتَّىٰٓ إِذَا فَرِحُوا۟ بِمَآ أُوتُوٓا۟ أَخَذْنَهُم بَغْتَةًۭ فَإِذَا هُم مُّبْلِسُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,6,' فَقُطِعَ دَابِرُ ٱلْقَوْمِ ٱلَّذِينَ ظَلَمُوا۟ ۚ وَٱلْحَمْدُ لِلَّهِ رَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,6,' قُلْ أَرَءَيْتُمْ إِنْ أَخَذَ ٱللَّهُ سَمْعَكُمْ وَأَبْصَرَكُمْ وَخَتَمَ عَلَىٰ قُلُوبِكُم مَّنْ إِلَهٌ غَيْرُ ٱللَّهِ يَأْتِيكُم بِهِ ۗ ٱنظُرْ كَيْفَ نُصَرِّفُ ٱلْءَايَتِ ثُمَّ هُمْ يَصْدِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,6,' قُلْ أَرَءَيْتَكُمْ إِنْ أَتَىٰكُمْ عَذَابُ ٱللَّهِ بَغْتَةً أَوْ جَهْرَةً هَلْ يُهْلَكُ إِلَّا ٱلْقَوْمُ ٱلظَّلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,6,' وَمَا نُرْسِلُ ٱلْمُرْسَلِينَ إِلَّا مُبَشِّرِينَ وَمُنذِرِينَ ۖ فَمَنْ ءَامَنَ وَأَصْلَحَ فَلَا خَوْفٌ عَلَيْهِمْ وَلَا هُمْ يَحْزَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,6,' وَٱلَّذِينَ كَذَّبُوا۟ بِـَٔايَتِنَا يَمَسُّهُمُ ٱلْعَذَابُ بِمَا كَانُوا۟ يَفْسُقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,6,' قُل لَّآ أَقُولُ لَكُمْ عِندِى خَزَآىِٕنُ ٱللَّهِ وَلَآ أَعْلَمُ ٱلْغَيْبَ وَلَآ أَقُولُ لَكُمْ إِنِّى مَلَكٌ ۖ إِنْ أَتَّبِعُ إِلَّا مَا يُوحَىٰٓ إِلَىَّ ۚ قُلْ هَلْ يَسْتَوِى ٱلْأَعْمَىٰ وَٱلْبَصِيرُ ۚ أَفَلَا تَتَفَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,6,' وَأَنذِرْ بِهِ ٱلَّذِينَ يَخَافُونَ أَن يُحْشَرُوٓا۟ إِلَىٰ رَبِّهِمْ ۙ لَيْسَ لَهُم مِّن دُونِهِۦ وَلِىٌّۭ وَلَا شَفِيعٌۭ لَّعَلَّهُمْ يَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,6,' وَلَا تَطْرُدِ ٱلَّذِينَ يَدْعُونَ رَبَّهُم بِٱلْغَدَوٰةِ وَٱلْعَشِىِّ يُرِيدُونَ وَجْهَهُۥ ۖ مَا عَلَيْكَ مِنْ حِسَابِهِم مِّن شَىْءٍۢ وَمَا مِنْ حِسَابِكَ عَلَيْهِم مِّن شَىْءٍۢ فَتَطْرُدَهُمْ فَتَكُونَ مِنَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,6,' وَكَذَلِكَ فَتَنَّا بَعْضَهُم بِبَعْضٍۢ لِّيَقُولُوٓا۟ أَهَٓؤُلَآءِ مَنَّ ٱللَّهُ عَلَيْهِم مِّنۢ بَيْنِنَآ ۗ أَلَيْسَ ٱللَّهُ بِأَعْلَمَ بِٱلشَّكِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,6,' وَإِذَا جَآءَكَ ٱلَّذِينَ يُؤْمِنُونَ بِـَٔايَتِنَا فَقُلْ سَلَمٌ عَلَيْكُمْ ۖ كَتَبَ رَبُّكُمْ عَلَىٰ نَفْسِهِ ٱلرَّحْمَةَ ۖ أَنَّهُۥ مَنْ عَمِلَ مِنكُمْ سُوٓءًۢا بِجَهَلَةٍۢ ثُمَّ تَابَ مِنۢ بَعْدِهِۦ وَأَصْلَحَ فَأَنَّهُۥ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,6,' وَكَذَلِكَ نُفَصِّلُ ٱلْءَايَتِ وَلِتَسْتَبِينَ سَبِيلُ ٱلْمُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,6,' قُلْ إِنِّى نُهِيتُ أَنْ أَعْبُدَ ٱلَّذِينَ تَدْعُونَ مِن دُونِ ٱللَّهِ ۚ قُل لَّآ أَتَّبِعُ أَهْوَآءَكُمْ ۙ قَدْ ضَلَلْتُ إِذًۭا وَمَآ أَنَا۠ مِنَ ٱلْمُهْتَدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,6,' قُلْ إِنِّى عَلَىٰ بَيِّنَةٍۢ مِّن رَّبِّى وَكَذَّبْتُم بِهِۦ ۚ مَا عِندِى مَا تَسْتَعْجِلُونَ بِهِۦٓ ۚ إِنِ ٱلْحُكْمُ إِلَّا لِلَّهِ ۖ يَقُصُّ ٱلْحَقَّ ۖ وَهُوَ خَيْرُ ٱلْفَصِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,6,' قُل لَّوْ أَنَّ عِندِى مَا تَسْتَعْجِلُونَ بِهِۦ لَقُضِىَ ٱلْأَمْرُ بَيْنِى وَبَيْنَكُمْ ۗ وَٱللَّهُ أَعْلَمُ بِٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,6,' وَعِندَهُۥ مَفَاتِحُ ٱلْغَيْبِ لَا يَعْلَمُهَآ إِلَّا هُوَ ۚ وَيَعْلَمُ مَا فِى ٱلْبَرِّ وَٱلْبَحْرِ ۚ وَمَا تَسْقُطُ مِن وَرَقَةٍ إِلَّا يَعْلَمُهَا وَلَا حَبَّةٍۢ فِى ظُلُمَتِ ٱلْأَرْضِ وَلَا رَطْبٍۢ وَلَا يَابِسٍ إِلَّا فِى كِتَبٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,6,' وَهُوَ ٱلَّذِى يَتَوَفَّىٰكُم بِٱلَّيْلِ وَيَعْلَمُ مَا جَرَحْتُم بِٱلنَّهَارِ ثُمَّ يَبْعَثُكُمْ فِيهِ لِيُقْضَىٰٓ أَجَلٌۭ مُّسَمًّۭى ۖ ثُمَّ إِلَيْهِ مَرْجِعُكُمْ ثُمَّ يُنَبِّئُكُم بِمَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,6,' وَهُوَ ٱلْقَاهِرُ فَوْقَ عِبَادِهِۦ ۖ وَيُرْسِلُ عَلَيْكُمْ حَفَظَةً حَتَّىٰٓ إِذَا جَآءَ أَحَدَكُمُ ٱلْمَوْتُ تَوَفَّتْهُ رُسُلُنَا وَهُمْ لَا يُفَرِّطُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,6,' ثُمَّ رُدُّوٓا۟ إِلَى ٱللَّهِ مَوْلَىٰهُمُ ٱلْحَقِّ ۚ أَلَا لَهُ ٱلْحُكْمُ وَهُوَ أَسْرَعُ ٱلْحَسِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,6,' قُلْ مَن يُنَجِّيكُم مِّن ظُلُمَتِ ٱلْبَرِّ وَٱلْبَحْرِ تَدْعُونَهُۥ تَضَرُّعًۭا وَخُفْيَةًۭ لَّىِٕنْ أَنجَىٰنَا مِنْ هَذِهِۦ لَنَكُونَنَّ مِنَ ٱلشَّكِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,6,' قُلِ ٱللَّهُ يُنَجِّيكُم مِّنْهَا وَمِن كُلِّ كَرْبٍۢ ثُمَّ أَنتُمْ تُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,6,' قُلْ هُوَ ٱلْقَادِرُ عَلَىٰٓ أَن يَبْعَثَ عَلَيْكُمْ عَذَابًۭا مِّن فَوْقِكُمْ أَوْ مِن تَحْتِ أَرْجُلِكُمْ أَوْ يَلْبِسَكُمْ شِيَعًۭا وَيُذِيقَ بَعْضَكُم بَأْسَ بَعْضٍ ۗ ٱنظُرْ كَيْفَ نُصَرِّفُ ٱلْءَايَتِ لَعَلَّهُمْ يَفْقَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,6,' وَكَذَّبَ بِهِۦ قَوْمُكَ وَهُوَ ٱلْحَقُّ ۚ قُل لَّسْتُ عَلَيْكُم بِوَكِيلٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,6,' لِّكُلِّ نَبَإٍۢ مُّسْتَقَرٌّۭ ۚ وَسَوْفَ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,6,' وَإِذَا رَأَيْتَ ٱلَّذِينَ يَخُوضُونَ فِىٓ ءَايَتِنَا فَأَعْرِضْ عَنْهُمْ حَتَّىٰ يَخُوضُوا۟ فِى حَدِيثٍ غَيْرِهِۦ ۚ وَإِمَّا يُنسِيَنَّكَ ٱلشَّيْطَنُ فَلَا تَقْعُدْ بَعْدَ ٱلذِّكْرَىٰ مَعَ ٱلْقَوْمِ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,6,' وَمَا عَلَى ٱلَّذِينَ يَتَّقُونَ مِنْ حِسَابِهِم مِّن شَىْءٍۢ وَلَكِن ذِكْرَىٰ لَعَلَّهُمْ يَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,6,' وَذَرِ ٱلَّذِينَ ٱتَّخَذُوا۟ دِينَهُمْ لَعِبًۭا وَلَهْوًۭا وَغَرَّتْهُمُ ٱلْحَيَوٰةُ ٱلدُّنْيَا ۚ وَذَكِّرْ بِهِۦٓ أَن تُبْسَلَ نَفْسٌۢ بِمَا كَسَبَتْ لَيْسَ لَهَا مِن دُونِ ٱللَّهِ وَلِىٌّۭ وَلَا شَفِيعٌۭ وَإِن تَعْدِلْ كُلَّ عَدْلٍۢ لَّا يُؤْخَذْ مِنْهَآ ۗ أُو۟لَٓئِكَ ٱلَّذِينَ أُبْسِلُوا۟ بِمَا كَسَبُوا۟ ۖ لَهُمْ شَرَابٌۭ مِّنْ حَمِيمٍۢ وَعَذَابٌ أَلِيمٌۢ بِمَا كَانُوا۟ يَكْفُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,6,' قُلْ أَنَدْعُوا۟ مِن دُونِ ٱللَّهِ مَا لَا يَنفَعُنَا وَلَا يَضُرُّنَا وَنُرَدُّ عَلَىٰٓ أَعْقَابِنَا بَعْدَ إِذْ هَدَىٰنَا ٱللَّهُ كَٱلَّذِى ٱسْتَهْوَتْهُ ٱلشَّيَطِينُ فِى ٱلْأَرْضِ حَيْرَانَ لَهُۥٓ أَصْحَبٌۭ يَدْعُونَهُۥٓ إِلَى ٱلْهُدَى ٱئْتِنَا ۗ قُلْ إِنَّ هُدَى ٱللَّهِ هُوَ ٱلْهُدَىٰ ۖ وَأُمِرْنَا لِنُسْلِمَ لِرَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,6,' وَأَنْ أَقِيمُوا۟ ٱلصَّلَوٰةَ وَٱتَّقُوهُ ۚ وَهُوَ ٱلَّذِىٓ إِلَيْهِ تُحْشَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,6,' وَهُوَ ٱلَّذِى خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ بِٱلْحَقِّ ۖ وَيَوْمَ يَقُولُ كُن فَيَكُونُ ۚ قَوْلُهُ ٱلْحَقُّ ۚ وَلَهُ ٱلْمُلْكُ يَوْمَ يُنفَخُ فِى ٱلصُّورِ ۚ عَلِمُ ٱلْغَيْبِ وَٱلشَّهَدَةِ ۚ وَهُوَ ٱلْحَكِيمُ ٱلْخَبِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,6,' وَإِذْ قَالَ إِبْرَهِيمُ لِأَبِيهِ ءَازَرَ أَتَتَّخِذُ أَصْنَامًا ءَالِهَةً ۖ إِنِّىٓ أَرَىٰكَ وَقَوْمَكَ فِى ضَلَلٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,6,' وَكَذَلِكَ نُرِىٓ إِبْرَهِيمَ مَلَكُوتَ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَلِيَكُونَ مِنَ ٱلْمُوقِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,6,' فَلَمَّا جَنَّ عَلَيْهِ ٱلَّيْلُ رَءَا كَوْكَبًۭا ۖ قَالَ هَذَا رَبِّى ۖ فَلَمَّآ أَفَلَ قَالَ لَآ أُحِبُّ ٱلْءَافِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,6,' فَلَمَّا رَءَا ٱلْقَمَرَ بَازِغًۭا قَالَ هَذَا رَبِّى ۖ فَلَمَّآ أَفَلَ قَالَ لَىِٕن لَّمْ يَهْدِنِى رَبِّى لَأَكُونَنَّ مِنَ ٱلْقَوْمِ ٱلضَّآلِّينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,6,' فَلَمَّا رَءَا ٱلشَّمْسَ بَازِغَةًۭ قَالَ هَذَا رَبِّى هَذَآ أَكْبَرُ ۖ فَلَمَّآ أَفَلَتْ قَالَ يَقَوْمِ إِنِّى بَرِىٓءٌۭ مِّمَّا تُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,6,' إِنِّى وَجَّهْتُ وَجْهِىَ لِلَّذِى فَطَرَ ٱلسَّمَوَتِ وَٱلْأَرْضَ حَنِيفًۭا ۖ وَمَآ أَنَا۠ مِنَ ٱلْمُشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,6,' وَحَآجَّهُۥ قَوْمُهُۥ ۚ قَالَ أَتُحَٓجُّوٓنِّى فِى ٱللَّهِ وَقَدْ هَدَىٰنِ ۚ وَلَآ أَخَافُ مَا تُشْرِكُونَ بِهِۦٓ إِلَّآ أَن يَشَآءَ رَبِّى شَيْـًۭٔا ۗ وَسِعَ رَبِّى كُلَّ شَىْءٍ عِلْمًا ۗ أَفَلَا تَتَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,6,' وَكَيْفَ أَخَافُ مَآ أَشْرَكْتُمْ وَلَا تَخَافُونَ أَنَّكُمْ أَشْرَكْتُم بِٱللَّهِ مَا لَمْ يُنَزِّلْ بِهِۦ عَلَيْكُمْ سُلْطَنًۭا ۚ فَأَىُّ ٱلْفَرِيقَيْنِ أَحَقُّ بِٱلْأَمْنِ ۖ إِن كُنتُمْ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,6,' ٱلَّذِينَ ءَامَنُوا۟ وَلَمْ يَلْبِسُوٓا۟ إِيمَنَهُم بِظُلْمٍ أُو۟لَٓئِكَ لَهُمُ ٱلْأَمْنُ وَهُم مُّهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,6,' وَتِلْكَ حُجَّتُنَآ ءَاتَيْنَهَآ إِبْرَهِيمَ عَلَىٰ قَوْمِهِۦ ۚ نَرْفَعُ دَرَجَتٍۢ مَّن نَّشَآءُ ۗ إِنَّ رَبَّكَ حَكِيمٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,6,' وَوَهَبْنَا لَهُۥٓ إِسْحَقَ وَيَعْقُوبَ ۚ كُلًّا هَدَيْنَا ۚ وَنُوحًا هَدَيْنَا مِن قَبْلُ ۖ وَمِن ذُرِّيَّتِهِۦ دَاوُۥدَ وَسُلَيْمَنَ وَأَيُّوبَ وَيُوسُفَ وَمُوسَىٰ وَهَرُونَ ۚ وَكَذَلِكَ نَجْزِى ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,6,' وَزَكَرِيَّا وَيَحْيَىٰ وَعِيسَىٰ وَإِلْيَاسَ ۖ كُلٌّۭ مِّنَ ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,6,' وَإِسْمَعِيلَ وَٱلْيَسَعَ وَيُونُسَ وَلُوطًۭا ۚ وَكُلًّۭا فَضَّلْنَا عَلَى ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,6,' وَمِنْ ءَابَآئِهِمْ وَذُرِّيَّتِهِمْ وَإِخْوَنِهِمْ ۖ وَٱجْتَبَيْنَهُمْ وَهَدَيْنَهُمْ إِلَىٰ صِرَطٍۢ مُّسْتَقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,6,' ذَلِكَ هُدَى ٱللَّهِ يَهْدِى بِهِۦ مَن يَشَآءُ مِنْ عِبَادِهِۦ ۚ وَلَوْ أَشْرَكُوا۟ لَحَبِطَ عَنْهُم مَّا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,6,' أُو۟لَٓئِكَ ٱلَّذِينَ ءَاتَيْنَهُمُ ٱلْكِتَبَ وَٱلْحُكْمَ وَٱلنُّبُوَّةَ ۚ فَإِن يَكْفُرْ بِهَا هَٓؤُلَآءِ فَقَدْ وَكَّلْنَا بِهَا قَوْمًۭا لَّيْسُوا۟ بِهَا بِكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,6,' أُو۟لَٓئِكَ ٱلَّذِينَ هَدَى ٱللَّهُ ۖ فَبِهُدَىٰهُمُ ٱقْتَدِهْ ۗ قُل لَّآ أَسْـَٔلُكُمْ عَلَيْهِ أَجْرًا ۖ إِنْ هُوَ إِلَّا ذِكْرَىٰ لِلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,6,' وَمَا قَدَرُوا۟ ٱللَّهَ حَقَّ قَدْرِهِۦٓ إِذْ قَالُوا۟ مَآ أَنزَلَ ٱللَّهُ عَلَىٰ بَشَرٍۢ مِّن شَىْءٍۢ ۗ قُلْ مَنْ أَنزَلَ ٱلْكِتَبَ ٱلَّذِى جَآءَ بِهِۦ مُوسَىٰ نُورًۭا وَهُدًۭى لِّلنَّاسِ ۖ تَجْعَلُونَهُۥ قَرَاطِيسَ تُبْدُونَهَا وَتُخْفُونَ كَثِيرًۭا ۖ وَعُلِّمْتُم مَّا لَمْ تَعْلَمُوٓا۟ أَنتُمْ وَلَآ ءَابَآؤُكُمْ ۖ قُلِ ٱللَّهُ ۖ ثُمَّ ذَرْهُمْ فِى خَوْضِهِمْ يَلْعَبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,6,' وَهَذَا كِتَبٌ أَنزَلْنَهُ مُبَارَكٌۭ مُّصَدِّقُ ٱلَّذِى بَيْنَ يَدَيْهِ وَلِتُنذِرَ أُمَّ ٱلْقُرَىٰ وَمَنْ حَوْلَهَا ۚ وَٱلَّذِينَ يُؤْمِنُونَ بِٱلْءَاخِرَةِ يُؤْمِنُونَ بِهِۦ ۖ وَهُمْ عَلَىٰ صَلَاتِهِمْ يُحَافِظُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,6,' وَمَنْ أَظْلَمُ مِمَّنِ ٱفْتَرَىٰ عَلَى ٱللَّهِ كَذِبًا أَوْ قَالَ أُوحِىَ إِلَىَّ وَلَمْ يُوحَ إِلَيْهِ شَىْءٌۭ وَمَن قَالَ سَأُنزِلُ مِثْلَ مَآ أَنزَلَ ٱللَّهُ ۗ وَلَوْ تَرَىٰٓ إِذِ ٱلظَّلِمُونَ فِى غَمَرَتِ ٱلْمَوْتِ وَٱلْمَلَٓئِكَةُ بَاسِطُوٓا۟ أَيْدِيهِمْ أَخْرِجُوٓا۟ أَنفُسَكُمُ ۖ ٱلْيَوْمَ تُجْزَوْنَ عَذَابَ ٱلْهُونِ بِمَا كُنتُمْ تَقُولُونَ عَلَى ٱللَّهِ غَيْرَ ٱلْحَقِّ وَكُنتُمْ عَنْ ءَايَتِهِۦ تَسْتَكْبِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,6,' وَلَقَدْ جِئْتُمُونَا فُرَدَىٰ كَمَا خَلَقْنَكُمْ أَوَّلَ مَرَّةٍۢ وَتَرَكْتُم مَّا خَوَّلْنَكُمْ وَرَآءَ ظُهُورِكُمْ ۖ وَمَا نَرَىٰ مَعَكُمْ شُفَعَآءَكُمُ ٱلَّذِينَ زَعَمْتُمْ أَنَّهُمْ فِيكُمْ شُرَكَٓؤُا۟ ۚ لَقَد تَّقَطَّعَ بَيْنَكُمْ وَضَلَّ عَنكُم مَّا كُنتُمْ تَزْعُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,6,' إِنَّ ٱللَّهَ فَالِقُ ٱلْحَبِّ وَٱلنَّوَىٰ ۖ يُخْرِجُ ٱلْحَىَّ مِنَ ٱلْمَيِّتِ وَمُخْرِجُ ٱلْمَيِّتِ مِنَ ٱلْحَىِّ ۚ ذَلِكُمُ ٱللَّهُ ۖ فَأَنَّىٰ تُؤْفَكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,6,' فَالِقُ ٱلْإِصْبَاحِ وَجَعَلَ ٱلَّيْلَ سَكَنًۭا وَٱلشَّمْسَ وَٱلْقَمَرَ حُسْبَانًۭا ۚ ذَلِكَ تَقْدِيرُ ٱلْعَزِيزِ ٱلْعَلِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,6,' وَهُوَ ٱلَّذِى جَعَلَ لَكُمُ ٱلنُّجُومَ لِتَهْتَدُوا۟ بِهَا فِى ظُلُمَتِ ٱلْبَرِّ وَٱلْبَحْرِ ۗ قَدْ فَصَّلْنَا ٱلْءَايَتِ لِقَوْمٍۢ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,6,' وَهُوَ ٱلَّذِىٓ أَنشَأَكُم مِّن نَّفْسٍۢ وَحِدَةٍۢ فَمُسْتَقَرٌّۭ وَمُسْتَوْدَعٌۭ ۗ قَدْ فَصَّلْنَا ٱلْءَايَتِ لِقَوْمٍۢ يَفْقَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,6,' وَهُوَ ٱلَّذِىٓ أَنزَلَ مِنَ ٱلسَّمَآءِ مَآءًۭ فَأَخْرَجْنَا بِهِۦ نَبَاتَ كُلِّ شَىْءٍۢ فَأَخْرَجْنَا مِنْهُ خَضِرًۭا نُّخْرِجُ مِنْهُ حَبًّۭا مُّتَرَاكِبًۭا وَمِنَ ٱلنَّخْلِ مِن طَلْعِهَا قِنْوَانٌۭ دَانِيَةٌۭ وَجَنَّتٍۢ مِّنْ أَعْنَابٍۢ وَٱلزَّيْتُونَ وَٱلرُّمَّانَ مُشْتَبِهًۭا وَغَيْرَ مُتَشَبِهٍ ۗ ٱنظُرُوٓا۟ إِلَىٰ ثَمَرِهِۦٓ إِذَآ أَثْمَرَ وَيَنْعِهِۦٓ ۚ إِنَّ فِى ذَلِكُمْ لَءَايَتٍۢ لِّقَوْمٍۢ يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,1,6,' وَجَعَلُوا۟ لِلَّهِ شُرَكَآءَ ٱلْجِنَّ وَخَلَقَهُمْ ۖ وَخَرَقُوا۟ لَهُۥ بَنِينَ وَبَنَتٍۭ بِغَيْرِ عِلْمٍۢ ۚ سُبْحَنَهُۥ وَتَعَلَىٰ عَمَّا يَصِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,1,6,' بَدِيعُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۖ أَنَّىٰ يَكُونُ لَهُۥ وَلَدٌۭ وَلَمْ تَكُن لَّهُۥ صَحِبَةٌۭ ۖ وَخَلَقَ كُلَّ شَىْءٍۢ ۖ وَهُوَ بِكُلِّ شَىْءٍ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,1,6,' ذَلِكُمُ ٱللَّهُ رَبُّكُمْ ۖ لَآ إِلَهَ إِلَّا هُوَ ۖ خَلِقُ كُلِّ شَىْءٍۢ فَٱعْبُدُوهُ ۚ وَهُوَ عَلَىٰ كُلِّ شَىْءٍۢ وَكِيلٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,1,6,' لَّا تُدْرِكُهُ ٱلْأَبْصَرُ وَهُوَ يُدْرِكُ ٱلْأَبْصَرَ ۖ وَهُوَ ٱللَّطِيفُ ٱلْخَبِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,1,6,' قَدْ جَآءَكُم بَصَآئِرُ مِن رَّبِّكُمْ ۖ فَمَنْ أَبْصَرَ فَلِنَفْسِهِۦ ۖ وَمَنْ عَمِىَ فَعَلَيْهَا ۚ وَمَآ أَنَا۠ عَلَيْكُم بِحَفِيظٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,1,6,' وَكَذَلِكَ نُصَرِّفُ ٱلْءَايَتِ وَلِيَقُولُوا۟ دَرَسْتَ وَلِنُبَيِّنَهُۥ لِقَوْمٍۢ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,1,6,' ٱتَّبِعْ مَآ أُوحِىَ إِلَيْكَ مِن رَّبِّكَ ۖ لَآ إِلَهَ إِلَّا هُوَ ۖ وَأَعْرِضْ عَنِ ٱلْمُشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,1,6,' وَلَوْ شَآءَ ٱللَّهُ مَآ أَشْرَكُوا۟ ۗ وَمَا جَعَلْنَكَ عَلَيْهِمْ حَفِيظًۭا ۖ وَمَآ أَنتَ عَلَيْهِم بِوَكِيلٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,1,6,' وَلَا تَسُبُّوا۟ ٱلَّذِينَ يَدْعُونَ مِن دُونِ ٱللَّهِ فَيَسُبُّوا۟ ٱللَّهَ عَدْوًۢا بِغَيْرِ عِلْمٍۢ ۗ كَذَلِكَ زَيَّنَّا لِكُلِّ أُمَّةٍ عَمَلَهُمْ ثُمَّ إِلَىٰ رَبِّهِم مَّرْجِعُهُمْ فَيُنَبِّئُهُم بِمَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,1,6,' وَأَقْسَمُوا۟ بِٱللَّهِ جَهْدَ أَيْمَنِهِمْ لَىِٕن جَآءَتْهُمْ ءَايَةٌۭ لَّيُؤْمِنُنَّ بِهَا ۚ قُلْ إِنَّمَا ٱلْءَايَتُ عِندَ ٱللَّهِ ۖ وَمَا يُشْعِرُكُمْ أَنَّهَآ إِذَا جَآءَتْ لَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,1,6,' وَنُقَلِّبُ أَفْـِٔدَتَهُمْ وَأَبْصَرَهُمْ كَمَا لَمْ يُؤْمِنُوا۟ بِهِۦٓ أَوَّلَ مَرَّةٍۢ وَنَذَرُهُمْ فِى طُغْيَنِهِمْ يَعْمَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,1,6,' وَلَوْ أَنَّنَا نَزَّلْنَآ إِلَيْهِمُ ٱلْمَلَٓئِكَةَ وَكَلَّمَهُمُ ٱلْمَوْتَىٰ وَحَشَرْنَا عَلَيْهِمْ كُلَّ شَىْءٍۢ قُبُلًۭا مَّا كَانُوا۟ لِيُؤْمِنُوٓا۟ إِلَّآ أَن يَشَآءَ ٱللَّهُ وَلَكِنَّ أَكْثَرَهُمْ يَجْهَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,1,6,' وَكَذَلِكَ جَعَلْنَا لِكُلِّ نَبِىٍّ عَدُوًّۭا شَيَطِينَ ٱلْإِنسِ وَٱلْجِنِّ يُوحِى بَعْضُهُمْ إِلَىٰ بَعْضٍۢ زُخْرُفَ ٱلْقَوْلِ غُرُورًۭا ۚ وَلَوْ شَآءَ رَبُّكَ مَا فَعَلُوهُ ۖ فَذَرْهُمْ وَمَا يَفْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,1,6,' وَلِتَصْغَىٰٓ إِلَيْهِ أَفْـِٔدَةُ ٱلَّذِينَ لَا يُؤْمِنُونَ بِٱلْءَاخِرَةِ وَلِيَرْضَوْهُ وَلِيَقْتَرِفُوا۟ مَا هُم مُّقْتَرِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,1,6,' أَفَغَيْرَ ٱللَّهِ أَبْتَغِى حَكَمًۭا وَهُوَ ٱلَّذِىٓ أَنزَلَ إِلَيْكُمُ ٱلْكِتَبَ مُفَصَّلًۭا ۚ وَٱلَّذِينَ ءَاتَيْنَهُمُ ٱلْكِتَبَ يَعْلَمُونَ أَنَّهُۥ مُنَزَّلٌۭ مِّن رَّبِّكَ بِٱلْحَقِّ ۖ فَلَا تَكُونَنَّ مِنَ ٱلْمُمْتَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,1,6,' وَتَمَّتْ كَلِمَتُ رَبِّكَ صِدْقًۭا وَعَدْلًۭا ۚ لَّا مُبَدِّلَ لِكَلِمَتِهِۦ ۚ وَهُوَ ٱلسَّمِيعُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,1,6,' وَإِن تُطِعْ أَكْثَرَ مَن فِى ٱلْأَرْضِ يُضِلُّوكَ عَن سَبِيلِ ٱللَّهِ ۚ إِن يَتَّبِعُونَ إِلَّا ٱلظَّنَّ وَإِنْ هُمْ إِلَّا يَخْرُصُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,1,6,' إِنَّ رَبَّكَ هُوَ أَعْلَمُ مَن يَضِلُّ عَن سَبِيلِهِۦ ۖ وَهُوَ أَعْلَمُ بِٱلْمُهْتَدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,1,6,' فَكُلُوا۟ مِمَّا ذُكِرَ ٱسْمُ ٱللَّهِ عَلَيْهِ إِن كُنتُم بِـَٔايَتِهِۦ مُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,1,6,' وَمَا لَكُمْ أَلَّا تَأْكُلُوا۟ مِمَّا ذُكِرَ ٱسْمُ ٱللَّهِ عَلَيْهِ وَقَدْ فَصَّلَ لَكُم مَّا حَرَّمَ عَلَيْكُمْ إِلَّا مَا ٱضْطُرِرْتُمْ إِلَيْهِ ۗ وَإِنَّ كَثِيرًۭا لَّيُضِلُّونَ بِأَهْوَآئِهِم بِغَيْرِ عِلْمٍ ۗ إِنَّ رَبَّكَ هُوَ أَعْلَمُ بِٱلْمُعْتَدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,1,6,' وَذَرُوا۟ ظَهِرَ ٱلْإِثْمِ وَبَاطِنَهُۥٓ ۚ إِنَّ ٱلَّذِينَ يَكْسِبُونَ ٱلْإِثْمَ سَيُجْزَوْنَ بِمَا كَانُوا۟ يَقْتَرِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,1,6,' وَلَا تَأْكُلُوا۟ مِمَّا لَمْ يُذْكَرِ ٱسْمُ ٱللَّهِ عَلَيْهِ وَإِنَّهُۥ لَفِسْقٌۭ ۗ وَإِنَّ ٱلشَّيَطِينَ لَيُوحُونَ إِلَىٰٓ أَوْلِيَآئِهِمْ لِيُجَدِلُوكُمْ ۖ وَإِنْ أَطَعْتُمُوهُمْ إِنَّكُمْ لَمُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,1,6,' أَوَمَن كَانَ مَيْتًۭا فَأَحْيَيْنَهُ وَجَعَلْنَا لَهُۥ نُورًۭا يَمْشِى بِهِۦ فِى ٱلنَّاسِ كَمَن مَّثَلُهُۥ فِى ٱلظُّلُمَتِ لَيْسَ بِخَارِجٍۢ مِّنْهَا ۚ كَذَلِكَ زُيِّنَ لِلْكَفِرِينَ مَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,1,6,' وَكَذَلِكَ جَعَلْنَا فِى كُلِّ قَرْيَةٍ أَكَبِرَ مُجْرِمِيهَا لِيَمْكُرُوا۟ فِيهَا ۖ وَمَا يَمْكُرُونَ إِلَّا بِأَنفُسِهِمْ وَمَا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,1,6,' وَإِذَا جَآءَتْهُمْ ءَايَةٌۭ قَالُوا۟ لَن نُّؤْمِنَ حَتَّىٰ نُؤْتَىٰ مِثْلَ مَآ أُوتِىَ رُسُلُ ٱللَّهِ ۘ ٱللَّهُ أَعْلَمُ حَيْثُ يَجْعَلُ رِسَالَتَهُۥ ۗ سَيُصِيبُ ٱلَّذِينَ أَجْرَمُوا۟ صَغَارٌ عِندَ ٱللَّهِ وَعَذَابٌۭ شَدِيدٌۢ بِمَا كَانُوا۟ يَمْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,1,6,' فَمَن يُرِدِ ٱللَّهُ أَن يَهْدِيَهُۥ يَشْرَحْ صَدْرَهُۥ لِلْإِسْلَمِ ۖ وَمَن يُرِدْ أَن يُضِلَّهُۥ يَجْعَلْ صَدْرَهُۥ ضَيِّقًا حَرَجًۭا كَأَنَّمَا يَصَّعَّدُ فِى ٱلسَّمَآءِ ۚ كَذَلِكَ يَجْعَلُ ٱللَّهُ ٱلرِّجْسَ عَلَى ٱلَّذِينَ لَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,1,6,' وَهَذَا صِرَطُ رَبِّكَ مُسْتَقِيمًۭا ۗ قَدْ فَصَّلْنَا ٱلْءَايَتِ لِقَوْمٍۢ يَذَّكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,1,6,' ئ لَهُمْ دَارُ ٱلسَّلَمِ عِندَ رَبِّهِمْ ۖ وَهُوَ وَلِيُّهُم بِمَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,1,6,' وَيَوْمَ يَحْشُرُهُمْ جَمِيعًۭا يَمَعْشَرَ ٱلْجِنِّ قَدِ ٱسْتَكْثَرْتُم مِّنَ ٱلْإِنسِ ۖ وَقَالَ أَوْلِيَآؤُهُم مِّنَ ٱلْإِنسِ رَبَّنَا ٱسْتَمْتَعَ بَعْضُنَا بِبَعْضٍۢ وَبَلَغْنَآ أَجَلَنَا ٱلَّذِىٓ أَجَّلْتَ لَنَا ۚ قَالَ ٱلنَّارُ مَثْوَىٰكُمْ خَلِدِينَ فِيهَآ إِلَّا مَا شَآءَ ٱللَّهُ ۗ إِنَّ رَبَّكَ حَكِيمٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,1,6,' وَكَذَلِكَ نُوَلِّى بَعْضَ ٱلظَّلِمِينَ بَعْضًۢا بِمَا كَانُوا۟ يَكْسِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,1,6,' يَمَعْشَرَ ٱلْجِنِّ وَٱلْإِنسِ أَلَمْ يَأْتِكُمْ رُسُلٌۭ مِّنكُمْ يَقُصُّونَ عَلَيْكُمْ ءَايَتِى وَيُنذِرُونَكُمْ لِقَآءَ يَوْمِكُمْ هَذَا ۚ قَالُوا۟ شَهِدْنَا عَلَىٰٓ أَنفُسِنَا ۖ وَغَرَّتْهُمُ ٱلْحَيَوٰةُ ٱلدُّنْيَا وَشَهِدُوا۟ عَلَىٰٓ أَنفُسِهِمْ أَنَّهُمْ كَانُوا۟ كَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,1,6,' ذَلِكَ أَن لَّمْ يَكُن رَّبُّكَ مُهْلِكَ ٱلْقُرَىٰ بِظُلْمٍۢ وَأَهْلُهَا غَفِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,1,6,' وَلِكُلٍّۢ دَرَجَتٌۭ مِّمَّا عَمِلُوا۟ ۚ وَمَا رَبُّكَ بِغَفِلٍ عَمَّا يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,1,6,' وَرَبُّكَ ٱلْغَنِىُّ ذُو ٱلرَّحْمَةِ ۚ إِن يَشَأْ يُذْهِبْكُمْ وَيَسْتَخْلِفْ مِنۢ بَعْدِكُم مَّا يَشَآءُ كَمَآ أَنشَأَكُم مِّن ذُرِّيَّةِ قَوْمٍ ءَاخَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,1,6,' إِنَّ مَا تُوعَدُونَ لَءَاتٍۢ ۖ وَمَآ أَنتُم بِمُعْجِزِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,1,6,' قُلْ يَقَوْمِ ٱعْمَلُوا۟ عَلَىٰ مَكَانَتِكُمْ إِنِّى عَامِلٌۭ ۖ فَسَوْفَ تَعْلَمُونَ مَن تَكُونُ لَهُۥ عَقِبَةُ ٱلدَّارِ ۗ إِنَّهُۥ لَا يُفْلِحُ ٱلظَّلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,1,6,' وَجَعَلُوا۟ لِلَّهِ مِمَّا ذَرَأَ مِنَ ٱلْحَرْثِ وَٱلْأَنْعَمِ نَصِيبًۭا فَقَالُوا۟ هَذَا لِلَّهِ بِزَعْمِهِمْ وَهَذَا لِشُرَكَآئِنَا ۖ فَمَا كَانَ لِشُرَكَآئِهِمْ فَلَا يَصِلُ إِلَى ٱللَّهِ ۖ وَمَا كَانَ لِلَّهِ فَهُوَ يَصِلُ إِلَىٰ شُرَكَآئِهِمْ ۗ سَآءَ مَا يَحْكُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,1,6,' وَكَذَلِكَ زَيَّنَ لِكَثِيرٍۢ مِّنَ ٱلْمُشْرِكِينَ قَتْلَ أَوْلَدِهِمْ شُرَكَآؤُهُمْ لِيُرْدُوهُمْ وَلِيَلْبِسُوا۟ عَلَيْهِمْ دِينَهُمْ ۖ وَلَوْ شَآءَ ٱللَّهُ مَا فَعَلُوهُ ۖ فَذَرْهُمْ وَمَا يَفْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,1,6,' وَقَالُوا۟ هَذِهِۦٓ أَنْعَمٌۭ وَحَرْثٌ حِجْرٌۭ لَّا يَطْعَمُهَآ إِلَّا مَن نَّشَآءُ بِزَعْمِهِمْ وَأَنْعَمٌ حُرِّمَتْ ظُهُورُهَا وَأَنْعَمٌۭ لَّا يَذْكُرُونَ ٱسْمَ ٱللَّهِ عَلَيْهَا ٱفْتِرَآءً عَلَيْهِ ۚ سَيَجْزِيهِم بِمَا كَانُوا۟ يَفْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,1,6,' وَقَالُوا۟ مَا فِى بُطُونِ هَذِهِ ٱلْأَنْعَمِ خَالِصَةٌۭ لِّذُكُورِنَا وَمُحَرَّمٌ عَلَىٰٓ أَزْوَجِنَا ۖ وَإِن يَكُن مَّيْتَةًۭ فَهُمْ فِيهِ شُرَكَآءُ ۚ سَيَجْزِيهِمْ وَصْفَهُمْ ۚ إِنَّهُۥ حَكِيمٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,1,6,' قَدْ خَسِرَ ٱلَّذِينَ قَتَلُوٓا۟ أَوْلَدَهُمْ سَفَهًۢا بِغَيْرِ عِلْمٍۢ وَحَرَّمُوا۟ مَا رَزَقَهُمُ ٱللَّهُ ٱفْتِرَآءً عَلَى ٱللَّهِ ۚ قَدْ ضَلُّوا۟ وَمَا كَانُوا۟ مُهْتَدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,1,6,' وَهُوَ ٱلَّذِىٓ أَنشَأَ جَنَّتٍۢ مَّعْرُوشَتٍۢ وَغَيْرَ مَعْرُوشَتٍۢ وَٱلنَّخْلَ وَٱلزَّرْعَ مُخْتَلِفًا أُكُلُهُۥ وَٱلزَّيْتُونَ وَٱلرُّمَّانَ مُتَشَبِهًۭا وَغَيْرَ مُتَشَبِهٍۢ ۚ كُلُوا۟ مِن ثَمَرِهِۦٓ إِذَآ أَثْمَرَ وَءَاتُوا۟ حَقَّهُۥ يَوْمَ حَصَادِهِۦ ۖ وَلَا تُسْرِفُوٓا۟ ۚ إِنَّهُۥ لَا يُحِبُّ ٱلْمُسْرِفِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,1,6,' وَمِنَ ٱلْأَنْعَمِ حَمُولَةًۭ وَفَرْشًۭا ۚ كُلُوا۟ مِمَّا رَزَقَكُمُ ٱللَّهُ وَلَا تَتَّبِعُوا۟ خُطُوَتِ ٱلشَّيْطَنِ ۚ إِنَّهُۥ لَكُمْ عَدُوٌّۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,1,6,' ثَمَنِيَةَ أَزْوَجٍۢ ۖ مِّنَ ٱلضَّأْنِ ٱثْنَيْنِ وَمِنَ ٱلْمَعْزِ ٱثْنَيْنِ ۗ قُلْ ءَآلذَّكَرَيْنِ حَرَّمَ أَمِ ٱلْأُنثَيَيْنِ أَمَّا ٱشْتَمَلَتْ عَلَيْهِ أَرْحَامُ ٱلْأُنثَيَيْنِ ۖ نَبِّـُٔونِى بِعِلْمٍ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,1,6,' وَمِنَ ٱلْإِبِلِ ٱثْنَيْنِ وَمِنَ ٱلْبَقَرِ ٱثْنَيْنِ ۗ قُلْ ءَآلذَّكَرَيْنِ حَرَّمَ أَمِ ٱلْأُنثَيَيْنِ أَمَّا ٱشْتَمَلَتْ عَلَيْهِ أَرْحَامُ ٱلْأُنثَيَيْنِ ۖ أَمْ كُنتُمْ شُهَدَآءَ إِذْ وَصَّىٰكُمُ ٱللَّهُ بِهَذَا ۚ فَمَنْ أَظْلَمُ مِمَّنِ ٱفْتَرَىٰ عَلَى ٱللَّهِ كَذِبًۭا لِّيُضِلَّ ٱلنَّاسَ بِغَيْرِ عِلْمٍ ۗ إِنَّ ٱللَّهَ لَا يَهْدِى ٱلْقَوْمَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,1,6,' قُل لَّآ أَجِدُ فِى مَآ أُوحِىَ إِلَىَّ مُحَرَّمًا عَلَىٰ طَاعِمٍۢ يَطْعَمُهُۥٓ إِلَّآ أَن يَكُونَ مَيْتَةً أَوْ دَمًۭا مَّسْفُوحًا أَوْ لَحْمَ خِنزِيرٍۢ فَإِنَّهُۥ رِجْسٌ أَوْ فِسْقًا أُهِلَّ لِغَيْرِ ٱللَّهِ بِهِۦ ۚ فَمَنِ ٱضْطُرَّ غَيْرَ بَاغٍۢ وَلَا عَادٍۢ فَإِنَّ رَبَّكَ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,1,6,' وَعَلَى ٱلَّذِينَ هَادُوا۟ حَرَّمْنَا كُلَّ ذِى ظُفُرٍۢ ۖ وَمِنَ ٱلْبَقَرِ وَٱلْغَنَمِ حَرَّمْنَا عَلَيْهِمْ شُحُومَهُمَآ إِلَّا مَا حَمَلَتْ ظُهُورُهُمَآ أَوِ ٱلْحَوَايَآ أَوْ مَا ٱخْتَلَطَ بِعَظْمٍۢ ۚ ذَلِكَ جَزَيْنَهُم بِبَغْيِهِمْ ۖ وَإِنَّا لَصَدِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,1,6,' فَإِن كَذَّبُوكَ فَقُل رَّبُّكُمْ ذُو رَحْمَةٍۢ وَسِعَةٍۢ وَلَا يُرَدُّ بَأْسُهُۥ عَنِ ٱلْقَوْمِ ٱلْمُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,1,6,' سَيَقُولُ ٱلَّذِينَ أَشْرَكُوا۟ لَوْ شَآءَ ٱللَّهُ مَآ أَشْرَكْنَا وَلَآ ءَابَآؤُنَا وَلَا حَرَّمْنَا مِن شَىْءٍۢ ۚ كَذَلِكَ كَذَّبَ ٱلَّذِينَ مِن قَبْلِهِمْ حَتَّىٰ ذَاقُوا۟ بَأْسَنَا ۗ قُلْ هَلْ عِندَكُم مِّنْ عِلْمٍۢ فَتُخْرِجُوهُ لَنَآ ۖ إِن تَتَّبِعُونَ إِلَّا ٱلظَّنَّ وَإِنْ أَنتُمْ إِلَّا تَخْرُصُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,1,6,' قُلْ فَلِلَّهِ ٱلْحُجَّةُ ٱلْبَلِغَةُ ۖ فَلَوْ شَآءَ لَهَدَىٰكُمْ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,1,6,' قُلْ هَلُمَّ شُهَدَآءَكُمُ ٱلَّذِينَ يَشْهَدُونَ أَنَّ ٱللَّهَ حَرَّمَ هَذَا ۖ فَإِن شَهِدُوا۟ فَلَا تَشْهَدْ مَعَهُمْ ۚ وَلَا تَتَّبِعْ أَهْوَآءَ ٱلَّذِينَ كَذَّبُوا۟ بِـَٔايَتِنَا وَٱلَّذِينَ لَا يُؤْمِنُونَ بِٱلْءَاخِرَةِ وَهُم بِرَبِّهِمْ يَعْدِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,1,6,' ئ قُلْ تَعَالَوْا۟ أَتْلُ مَا حَرَّمَ رَبُّكُمْ عَلَيْكُمْ ۖ أَلَّا تُشْرِكُوا۟ بِهِۦ شَيْـًۭٔا ۖ وَبِٱلْوَلِدَيْنِ إِحْسَنًۭا ۖ وَلَا تَقْتُلُوٓا۟ أَوْلَدَكُم مِّنْ إِمْلَقٍۢ ۖ نَّحْنُ نَرْزُقُكُمْ وَإِيَّاهُمْ ۖ وَلَا تَقْرَبُوا۟ ٱلْفَوَحِشَ مَا ظَهَرَ مِنْهَا وَمَا بَطَنَ ۖ وَلَا تَقْتُلُوا۟ ٱلنَّفْسَ ٱلَّتِى حَرَّمَ ٱللَّهُ إِلَّا بِٱلْحَقِّ ۚ ذَلِكُمْ وَصَّىٰكُم بِهِۦ لَعَلَّكُمْ تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,1,6,' وَلَا تَقْرَبُوا۟ مَالَ ٱلْيَتِيمِ إِلَّا بِٱلَّتِى هِىَ أَحْسَنُ حَتَّىٰ يَبْلُغَ أَشُدَّهُۥ ۖ وَأَوْفُوا۟ ٱلْكَيْلَ وَٱلْمِيزَانَ بِٱلْقِسْطِ ۖ لَا نُكَلِّفُ نَفْسًا إِلَّا وُسْعَهَا ۖ وَإِذَا قُلْتُمْ فَٱعْدِلُوا۟ وَلَوْ كَانَ ذَا قُرْبَىٰ ۖ وَبِعَهْدِ ٱللَّهِ أَوْفُوا۟ ۚ ذَلِكُمْ وَصَّىٰكُم بِهِۦ لَعَلَّكُمْ تَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,1,6,' وَأَنَّ هَذَا صِرَطِى مُسْتَقِيمًۭا فَٱتَّبِعُوهُ ۖ وَلَا تَتَّبِعُوا۟ ٱلسُّبُلَ فَتَفَرَّقَ بِكُمْ عَن سَبِيلِهِۦ ۚ ذَلِكُمْ وَصَّىٰكُم بِهِۦ لَعَلَّكُمْ تَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,1,6,' ثُمَّ ءَاتَيْنَا مُوسَى ٱلْكِتَبَ تَمَامًا عَلَى ٱلَّذِىٓ أَحْسَنَ وَتَفْصِيلًۭا لِّكُلِّ شَىْءٍۢ وَهُدًۭى وَرَحْمَةًۭ لَّعَلَّهُم بِلِقَآءِ رَبِّهِمْ يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,1,6,' وَهَذَا كِتَبٌ أَنزَلْنَهُ مُبَارَكٌۭ فَٱتَّبِعُوهُ وَٱتَّقُوا۟ لَعَلَّكُمْ تُرْحَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,1,6,' أَن تَقُولُوٓا۟ إِنَّمَآ أُنزِلَ ٱلْكِتَبُ عَلَىٰ طَآئِفَتَيْنِ مِن قَبْلِنَا وَإِن كُنَّا عَن دِرَاسَتِهِمْ لَغَفِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,1,6,' أَوْ تَقُولُوا۟ لَوْ أَنَّآ أُنزِلَ عَلَيْنَا ٱلْكِتَبُ لَكُنَّآ أَهْدَىٰ مِنْهُمْ ۚ فَقَدْ جَآءَكُم بَيِّنَةٌۭ مِّن رَّبِّكُمْ وَهُدًۭى وَرَحْمَةٌۭ ۚ فَمَنْ أَظْلَمُ مِمَّن كَذَّبَ بِـَٔايَتِ ٱللَّهِ وَصَدَفَ عَنْهَا ۗ سَنَجْزِى ٱلَّذِينَ يَصْدِفُونَ عَنْ ءَايَتِنَا سُوٓءَ ٱلْعَذَابِ بِمَا كَانُوا۟ يَصْدِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,1,6,' هَلْ يَنظُرُونَ إِلَّآ أَن تَأْتِيَهُمُ ٱلْمَلَٓئِكَةُ أَوْ يَأْتِىَ رَبُّكَ أَوْ يَأْتِىَ بَعْضُ ءَايَتِ رَبِّكَ ۗ يَوْمَ يَأْتِى بَعْضُ ءَايَتِ رَبِّكَ لَا يَنفَعُ نَفْسًا إِيمَنُهَا لَمْ تَكُنْ ءَامَنَتْ مِن قَبْلُ أَوْ كَسَبَتْ فِىٓ إِيمَنِهَا خَيْرًۭا ۗ قُلِ ٱنتَظِرُوٓا۟ إِنَّا مُنتَظِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,1,6,' إِنَّ ٱلَّذِينَ فَرَّقُوا۟ دِينَهُمْ وَكَانُوا۟ شِيَعًۭا لَّسْتَ مِنْهُمْ فِى شَىْءٍ ۚ إِنَّمَآ أَمْرُهُمْ إِلَى ٱللَّهِ ثُمَّ يُنَبِّئُهُم بِمَا كَانُوا۟ يَفْعَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,1,6,' مَن جَآءَ بِٱلْحَسَنَةِ فَلَهُۥ عَشْرُ أَمْثَالِهَا ۖ وَمَن جَآءَ بِٱلسَّيِّئَةِ فَلَا يُجْزَىٰٓ إِلَّا مِثْلَهَا وَهُمْ لَا يُظْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,1,6,' قُلْ إِنَّنِى هَدَىٰنِى رَبِّىٓ إِلَىٰ صِرَطٍۢ مُّسْتَقِيمٍۢ دِينًۭا قِيَمًۭا مِّلَّةَ إِبْرَهِيمَ حَنِيفًۭا ۚ وَمَا كَانَ مِنَ ٱلْمُشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,1,6,' قُلْ إِنَّ صَلَاتِى وَنُسُكِى وَمَحْيَاىَ وَمَمَاتِى لِلَّهِ رَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,1,6,' لَا شَرِيكَئ لَهُۥ ۖ وَبِذَلِكَ أُمِرْتُ وَأَنَا۠ أَوَّلُ ٱلْمُسْلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,1,6,' قُلْ أَغَيْرَ ٱللَّهِ أَبْغِى رَبًّۭا وَهُوَ رَبُّ كُلِّ شَىْءٍۢ ۚ وَلَا تَكْسِبُ كُلُّ نَفْسٍ إِلَّا عَلَيْهَا ۚ وَلَا تَزِرُ وَازِرَةٌۭ وِزْرَ أُخْرَىٰ ۚ ثُمَّ إِلَىٰ رَبِّكُم مَّرْجِعُكُمْ فَيُنَبِّئُكُم بِمَا كُنتُمْ فِيهِ تَخْتَلِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,1,6,' وَهُوَ ٱلَّذِى جَعَلَكُمْ خَلَٓئِفَ ٱلْأَرْضِ وَرَفَعَ بَعْضَكُمْ فَوْقَ بَعْضٍۢ دَرَجَتٍۢ لِّيَبْلُوَكُمْ فِى مَآ ءَاتَىٰكُمْ ۗ إِنَّ رَبَّكَ سَرِيعُ ٱلْعِقَابِ وَإِنَّهُۥ لَغَفُورٌۭ رَّحِيمٌۢ');
+INSERT INTO chapters (id, number, quran_id) VALUES(7,7,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,7,' الٓمٓصٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,7,' كِتَبٌ أُنزِلَ إِلَيْكَ فَلَا يَكُن فِى صَدْرِكَ حَرَجٌۭ مِّنْهُ لِتُنذِرَ بِهِۦ وَذِكْرَىٰ لِلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,7,' ٱتَّبِعُوا۟ مَآ أُنزِلَ إِلَيْكُم مِّن رَّبِّكُمْ وَلَا تَتَّبِعُوا۟ مِن دُونِهِۦٓ أَوْلِيَآءَ ۗ قَلِيلًۭا مَّا تَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,7,' وَكَم مِّن قَرْيَةٍ أَهْلَكْنَهَا فَجَآءَهَا بَأْسُنَا بَيَتًا أَوْ هُمْ قَآئِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,7,' فَمَا كَانَ دَعْوَىٰهُمْ إِذْ جَآءَهُم بَأْسُنَآ إِلَّآ أَن قَالُوٓا۟ إِنَّا كُنَّا ظَلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,7,' فَلَنَسْـَٔلَنَّ ٱلَّذِينَ أُرْسِلَ إِلَيْهِمْ وَلَنَسْـَٔلَنَّ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,7,' فَلَنَقُصَّنَّ عَلَيْهِم بِعِلْمٍۢ ۖ وَمَا كُنَّا غَآئِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,7,' وَٱلْوَزْنُ يَوْمَئِذٍ ٱلْحَقُّ ۚ فَمَن ثَقُلَتْ مَوَزِينُهُۥ فَأُو۟لَٓئِكَ هُمُ ٱلْمُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,7,' وَمَنْ خَفَّتْ مَوَزِينُهُۥ فَأُو۟لَٓئِكَ ٱلَّذِينَ خَسِرُوٓا۟ أَنفُسَهُم بِمَا كَانُوا۟ بِـَٔايَتِنَا يَظْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,7,' وَلَقَدْ مَكَّنَّكُمْ فِى ٱلْأَرْضِ وَجَعَلْنَا لَكُمْ فِيهَا مَعَيِشَ ۗ قَلِيلًۭا مَّا تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,7,' وَلَقَدْ خَلَقْنَكُمْ ثُمَّ صَوَّرْنَكُمْ ثُمَّ قُلْنَا لِلْمَلَٓئِكَةِ ٱسْجُدُوا۟ لِءَادَمَ فَسَجَدُوٓا۟ إِلَّآ إِبْلِيسَ لَمْ يَكُن مِّنَ ٱلسَّجِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,7,' قَالَ مَا مَنَعَكَ أَلَّا تَسْجُدَ إِذْ أَمَرْتُكَ ۖ قَالَ أَنَا۠ خَيْرٌۭ مِّنْهُ خَلَقْتَنِى مِن نَّارٍۢ وَخَلَقْتَهُۥ مِن طِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,7,' قَالَ فَٱهْبِطْ مِنْهَا فَمَا يَكُونُ لَكَ أَن تَتَكَبَّرَ فِيهَا فَٱخْرُجْ إِنَّكَ مِنَ ٱلصَّغِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,7,' قَالَ أَنظِرْنِىٓ إِلَىٰ يَوْمِ يُبْعَثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,7,' قَالَ إِنَّكَ مِنَ ٱلْمُنظَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,7,' قَالَ فَبِمَآ أَغْوَيْتَنِى لَأَقْعُدَنَّ لَهُمْ صِرَطَكَ ٱلْمُسْتَقِيمَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,7,' ثُمَّ لَءَاتِيَنَّهُم مِّنۢ بَيْنِ أَيْدِيهِمْ وَمِنْ خَلْفِهِمْ وَعَنْ أَيْمَنِهِمْ وَعَن شَمَآئِلِهِمْ ۖ وَلَا تَجِدُ أَكْثَرَهُمْ شَكِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,7,' قَالَ ٱخْرُجْ مِنْهَا مَذْءُومًۭا مَّدْحُورًۭا ۖ لَّمَن تَبِعَكَ مِنْهُمْ لَأَمْلَأَنَّ جَهَنَّمَ مِنكُمْ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,7,' وَيَٓـَٔادَمُ ٱسْكُنْ أَنتَ وَزَوْجُكَ ٱلْجَنَّةَ فَكُلَا مِنْ حَيْثُ شِئْتُمَا وَلَا تَقْرَبَا هَذِهِ ٱلشَّجَرَةَ فَتَكُونَا مِنَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,7,' فَوَسْوَسَ لَهُمَا ٱلشَّيْطَنُ لِيُبْدِىَ لَهُمَا مَا وُۥرِىَ عَنْهُمَا مِن سَوْءَتِهِمَا وَقَالَ مَا نَهَىٰكُمَا رَبُّكُمَا عَنْ هَذِهِ ٱلشَّجَرَةِ إِلَّآ أَن تَكُونَا مَلَكَيْنِ أَوْ تَكُونَا مِنَ ٱلْخَلِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,7,' وَقَاسَمَهُمَآ إِنِّى لَكُمَا لَمِنَ ٱلنَّصِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,7,' فَدَلَّىٰهُمَا بِغُرُورٍۢ ۚ فَلَمَّا ذَاقَا ٱلشَّجَرَةَ بَدَتْ لَهُمَا سَوْءَتُهُمَا وَطَفِقَا يَخْصِفَانِ عَلَيْهِمَا مِن وَرَقِ ٱلْجَنَّةِ ۖ وَنَادَىٰهُمَا رَبُّهُمَآ أَلَمْ أَنْهَكُمَا عَن تِلْكُمَا ٱلشَّجَرَةِ وَأَقُل لَّكُمَآ إِنَّ ٱلشَّيْطَنَ لَكُمَا عَدُوٌّۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,7,' قَالَا رَبَّنَا ظَلَمْنَآ أَنفُسَنَا وَإِن لَّمْ تَغْفِرْ لَنَا وَتَرْحَمْنَا لَنَكُونَنَّ مِنَ ٱلْخَسِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,7,' قَالَ ٱهْبِطُوا۟ بَعْضُكُمْ لِبَعْضٍ عَدُوٌّۭ ۖ وَلَكُمْ فِى ٱلْأَرْضِ مُسْتَقَرٌّۭ وَمَتَعٌ إِلَىٰ حِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,7,' قَالَ فِيهَا تَحْيَوْنَ وَفِيهَا تَمُوتُونَ وَمِنْهَا تُخْرَجُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,7,' يَبَنِىٓ ءَادَمَ قَدْ أَنزَلْنَا عَلَيْكُمْ لِبَاسًۭا يُوَرِى سَوْءَتِكُمْ وَرِيشًۭا ۖ وَلِبَاسُ ٱلتَّقْوَىٰ ذَلِكَ خَيْرٌۭ ۚ ذَلِكَ مِنْ ءَايَتِ ٱللَّهِ لَعَلَّهُمْ يَذَّكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,7,' يَبَنِىٓ ءَادَمَ لَا يَفْتِنَنَّكُمُ ٱلشَّيْطَنُ كَمَآ أَخْرَجَ أَبَوَيْكُم مِّنَ ٱلْجَنَّةِ يَنزِعُ عَنْهُمَا لِبَاسَهُمَا لِيُرِيَهُمَا سَوْءَتِهِمَآ ۗ إِنَّهُۥ يَرَىٰكُمْ هُوَ وَقَبِيلُهُۥ مِنْ حَيْثُ لَا تَرَوْنَهُمْ ۗ إِنَّا جَعَلْنَا ٱلشَّيَطِينَ أَوْلِيَآءَ لِلَّذِينَ لَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,7,' وَإِذَا فَعَلُوا۟ فَحِشَةًۭ قَالُوا۟ وَجَدْنَا عَلَيْهَآ ءَابَآءَنَا وَٱللَّهُ أَمَرَنَا بِهَا ۗ قُلْ إِنَّ ٱللَّهَ لَا يَأْمُرُ بِٱلْفَحْشَآءِ ۖ أَتَقُولُونَ عَلَى ٱللَّهِ مَا لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,7,' قُلْ أَمَرَ رَبِّى بِٱلْقِسْطِ ۖ وَأَقِيمُوا۟ وُجُوهَكُمْ عِندَ كُلِّ مَسْجِدٍۢ وَٱدْعُوهُ مُخْلِصِينَ لَهُ ٱلدِّينَ ۚ كَمَا بَدَأَكُمْ تَعُودُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,7,' فَرِيقًا هَدَىٰ وَفَرِيقًا حَقَّ عَلَيْهِمُ ٱلضَّلَلَةُ ۗ إِنَّهُمُ ٱتَّخَذُوا۟ ٱلشَّيَطِينَ أَوْلِيَآءَ مِن دُونِ ٱللَّهِ وَيَحْسَبُونَ أَنَّهُم مُّهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,7,' يَبَنِىٓ ءَادَمَ خُذُوا۟ زِينَتَكُمْ عِندَ كُلِّ مَسْجِدٍۢ وَكُلُوا۟ وَٱشْرَبُوا۟ وَلَا تُسْرِفُوٓا۟ ۚ إِنَّهُۥ لَا يُحِبُّ ٱلْمُسْرِفِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,7,' قُلْ مَنْ حَرَّمَ زِينَةَ ٱللَّهِ ٱلَّتِىٓ أَخْرَجَ لِعِبَادِهِۦ وَٱلطَّيِّبَتِ مِنَ ٱلرِّزْقِ ۚ قُلْ هِىَ لِلَّذِينَ ءَامَنُوا۟ فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا خَالِصَةًۭ يَوْمَ ٱلْقِيَمَةِ ۗ كَذَلِكَ نُفَصِّلُ ٱلْءَايَتِ لِقَوْمٍۢ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,7,' قُلْ إِنَّمَا حَرَّمَ رَبِّىَ ٱلْفَوَحِشَ مَا ظَهَرَ مِنْهَا وَمَا بَطَنَ وَٱلْإِثْمَ وَٱلْبَغْىَ بِغَيْرِ ٱلْحَقِّ وَأَن تُشْرِكُوا۟ بِٱللَّهِ مَا لَمْ يُنَزِّلْ بِهِۦ سُلْطَنًۭا وَأَن تَقُولُوا۟ عَلَى ٱللَّهِ مَا لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,7,' وَلِكُلِّ أُمَّةٍ أَجَلٌۭ ۖ فَإِذَا جَآءَ أَجَلُهُمْ لَا يَسْتَأْخِرُونَ سَاعَةًۭ ۖ وَلَا يَسْتَقْدِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,7,' يَبَنِىٓ ءَادَمَ إِمَّا يَأْتِيَنَّكُمْ رُسُلٌۭ مِّنكُمْ يَقُصُّونَ عَلَيْكُمْ ءَايَتِى ۙ فَمَنِ ٱتَّقَىٰ وَأَصْلَحَ فَلَا خَوْفٌ عَلَيْهِمْ وَلَا هُمْ يَحْزَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,7,' وَٱلَّذِينَ كَذَّبُوا۟ بِـَٔايَتِنَا وَٱسْتَكْبَرُوا۟ عَنْهَآ أُو۟لَٓئِكَ أَصْحَبُ ٱلنَّارِ ۖ هُمْ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,7,' فَمَنْ أَظْلَمُ مِمَّنِ ٱفْتَرَىٰ عَلَى ٱللَّهِ كَذِبًا أَوْ كَذَّبَ بِـَٔايَتِهِۦٓ ۚ أُو۟لَٓئِكَ يَنَالُهُمْ نَصِيبُهُم مِّنَ ٱلْكِتَبِ ۖ حَتَّىٰٓ إِذَا جَآءَتْهُمْ رُسُلُنَا يَتَوَفَّوْنَهُمْ قَالُوٓا۟ أَيْنَ مَا كُنتُمْ تَدْعُونَ مِن دُونِ ٱللَّهِ ۖ قَالُوا۟ ضَلُّوا۟ عَنَّا وَشَهِدُوا۟ عَلَىٰٓ أَنفُسِهِمْ أَنَّهُمْ كَانُوا۟ كَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,7,' قَالَ ٱدْخُلُوا۟ فِىٓ أُمَمٍۢ قَدْ خَلَتْ مِن قَبْلِكُم مِّنَ ٱلْجِنِّ وَٱلْإِنسِ فِى ٱلنَّارِ ۖ كُلَّمَا دَخَلَتْ أُمَّةٌۭ لَّعَنَتْ أُخْتَهَا ۖ حَتَّىٰٓ إِذَا ٱدَّارَكُوا۟ فِيهَا جَمِيعًۭا قَالَتْ أُخْرَىٰهُمْ لِأُولَىٰهُمْ رَبَّنَا هَٓؤُلَآءِ أَضَلُّونَا فَـَٔاتِهِمْ عَذَابًۭا ضِعْفًۭا مِّنَ ٱلنَّارِ ۖ قَالَ لِكُلٍّۢ ضِعْفٌۭ وَلَكِن لَّا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,7,' وَقَالَتْ أُولَىٰهُمْ لِأُخْرَىٰهُمْ فَمَا كَانَ لَكُمْ عَلَيْنَا مِن فَضْلٍۢ فَذُوقُوا۟ ٱلْعَذَابَ بِمَا كُنتُمْ تَكْسِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,7,' إِنَّ ٱلَّذِينَ كَذَّبُوا۟ بِـَٔايَتِنَا وَٱسْتَكْبَرُوا۟ عَنْهَا لَا تُفَتَّحُ لَهُمْ أَبْوَبُ ٱلسَّمَآءِ وَلَا يَدْخُلُونَ ٱلْجَنَّةَ حَتَّىٰ يَلِجَ ٱلْجَمَلُ فِى سَمِّ ٱلْخِيَاطِ ۚ وَكَذَلِكَ نَجْزِى ٱلْمُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,7,' لَهُم مِّن جَهَنَّمَ مِهَادٌۭ وَمِن فَوْقِهِمْ غَوَاشٍۢ ۚ وَكَذَلِكَ نَجْزِى ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,7,' وَٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ لَا نُكَلِّفُ نَفْسًا إِلَّا وُسْعَهَآ أُو۟لَٓئِكَ أَصْحَبُ ٱلْجَنَّةِ ۖ هُمْ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,7,' وَنَزَعْنَا مَا فِى صُدُورِهِم مِّنْ غِلٍّۢ تَجْرِى مِن تَحْتِهِمُ ٱلْأَنْهَرُ ۖ وَقَالُوا۟ ٱلْحَمْدُ لِلَّهِ ٱلَّذِى هَدَىٰنَا لِهَذَا وَمَا كُنَّا لِنَهْتَدِىَ لَوْلَآ أَنْ هَدَىٰنَا ٱللَّهُ ۖ لَقَدْ جَآءَتْ رُسُلُ رَبِّنَا بِٱلْحَقِّ ۖ وَنُودُوٓا۟ أَن تِلْكُمُ ٱلْجَنَّةُ أُورِثْتُمُوهَا بِمَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,7,' وَنَادَىٰٓ أَصْحَبُ ٱلْجَنَّةِ أَصْحَبَ ٱلنَّارِ أَن قَدْ وَجَدْنَا مَا وَعَدَنَا رَبُّنَا حَقًّۭا فَهَلْ وَجَدتُّم مَّا وَعَدَ رَبُّكُمْ حَقًّۭا ۖ قَالُوا۟ نَعَمْ ۚ فَأَذَّنَ مُؤَذِّنٌۢ بَيْنَهُمْ أَن لَّعْنَةُ ٱللَّهِ عَلَى ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,7,' ٱلَّذِينَ يَصُدُّونَ عَن سَبِيلِ ٱللَّهِ وَيَبْغُونَهَا عِوَجًۭا وَهُم بِٱلْءَاخِرَةِ كَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,7,' وَبَيْنَهُمَا حِجَابٌۭ ۚ وَعَلَى ٱلْأَعْرَافِ رِجَالٌۭ يَعْرِفُونَ كُلًّۢا بِسِيمَىٰهُمْ ۚ وَنَادَوْا۟ أَصْحَبَ ٱلْجَنَّةِ أَن سَلَمٌ عَلَيْكُمْ ۚ لَمْ يَدْخُلُوهَا وَهُمْ يَطْمَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,7,' وَإِذَا صُرِفَتْ أَبْصَرُهُمْ تِلْقَآءَ أَصْحَبِ ٱلنَّارِ قَالُوا۟ رَبَّنَا لَا تَجْعَلْنَا مَعَ ٱلْقَوْمِ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,7,' وَنَادَىٰٓ أَصْحَبُ ٱلْأَعْرَافِ رِجَالًۭا يَعْرِفُونَهُم بِسِيمَىٰهُمْ قَالُوا۟ مَآ أَغْنَىٰ عَنكُمْ جَمْعُكُمْ وَمَا كُنتُمْ تَسْتَكْبِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,7,' أَهَٓؤُلَآءِ ٱلَّذِينَ أَقْسَمْتُمْ لَا يَنَالُهُمُ ٱللَّهُ بِرَحْمَةٍ ۚ ٱدْخُلُوا۟ ٱلْجَنَّةَ لَا خَوْفٌ عَلَيْكُمْ وَلَآ أَنتُمْ تَحْزَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,7,' وَنَادَىٰٓ أَصْحَبُ ٱلنَّارِ أَصْحَبَ ٱلْجَنَّةِ أَنْ أَفِيضُوا۟ عَلَيْنَا مِنَ ٱلْمَآءِ أَوْ مِمَّا رَزَقَكُمُ ٱللَّهُ ۚ قَالُوٓا۟ إِنَّ ٱللَّهَ حَرَّمَهُمَا عَلَى ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,7,' ٱلَّذِينَ ٱتَّخَذُوا۟ دِينَهُمْ لَهْوًۭا وَلَعِبًۭا وَغَرَّتْهُمُ ٱلْحَيَوٰةُ ٱلدُّنْيَا ۚ فَٱلْيَوْمَ نَنسَىٰهُمْ كَمَا نَسُوا۟ لِقَآءَ يَوْمِهِمْ هَذَا وَمَا كَانُوا۟ بِـَٔايَتِنَا يَجْحَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,7,' وَلَقَدْ جِئْنَهُم بِكِتَبٍۢ فَصَّلْنَهُ عَلَىٰ عِلْمٍ هُدًۭى وَرَحْمَةًۭ لِّقَوْمٍۢ يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,7,' هَلْ يَنظُرُونَ إِلَّا تَأْوِيلَهُۥ ۚ يَوْمَ يَأْتِى تَأْوِيلُهُۥ يَقُولُ ٱلَّذِينَ نَسُوهُ مِن قَبْلُ قَدْ جَآءَتْ رُسُلُ رَبِّنَا بِٱلْحَقِّ فَهَل لَّنَا مِن شُفَعَآءَ فَيَشْفَعُوا۟ لَنَآ أَوْ نُرَدُّ فَنَعْمَلَ غَيْرَ ٱلَّذِى كُنَّا نَعْمَلُ ۚ قَدْ خَسِرُوٓا۟ أَنفُسَهُمْ وَضَلَّ عَنْهُم مَّا كَانُوا۟ يَفْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,7,' إِنَّ رَبَّكُمُ ٱللَّهُ ٱلَّذِى خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ فِى سِتَّةِ أَيَّامٍۢ ثُمَّ ٱسْتَوَىٰ عَلَى ٱلْعَرْشِ يُغْشِى ٱلَّيْلَ ٱلنَّهَارَ يَطْلُبُهُۥ حَثِيثًۭا وَٱلشَّمْسَ وَٱلْقَمَرَ وَٱلنُّجُومَ مُسَخَّرَتٍۭ بِأَمْرِهِۦٓ ۗ أَلَا لَهُ ٱلْخَلْقُ وَٱلْأَمْرُ ۗ تَبَارَكَ ٱللَّهُ رَبُّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,7,' ٱدْعُوا۟ رَبَّكُمْ تَضَرُّعًۭا وَخُفْيَةً ۚ إِنَّهُۥ لَا يُحِبُّ ٱلْمُعْتَدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,7,' وَلَا تُفْسِدُوا۟ فِى ٱلْأَرْضِ بَعْدَ إِصْلَحِهَا وَٱدْعُوهُ خَوْفًۭا وَطَمَعًا ۚ إِنَّ رَحْمَتَ ٱللَّهِ قَرِيبٌۭ مِّنَ ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,7,' وَهُوَ ٱلَّذِى يُرْسِلُ ٱلرِّيَحَ بُشْرًۢا بَيْنَ يَدَىْ رَحْمَتِهِۦ ۖ حَتَّىٰٓ إِذَآ أَقَلَّتْ سَحَابًۭا ثِقَالًۭا سُقْنَهُ لِبَلَدٍۢ مَّيِّتٍۢ فَأَنزَلْنَا بِهِ ٱلْمَآءَ فَأَخْرَجْنَا بِهِۦ مِن كُلِّ ٱلثَّمَرَتِ ۚ كَذَلِكَ نُخْرِجُ ٱلْمَوْتَىٰ لَعَلَّكُمْ تَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,7,' وَٱلْبَلَدُ ٱلطَّيِّبُ يَخْرُجُ نَبَاتُهُۥ بِإِذْنِ رَبِّهِۦ ۖ وَٱلَّذِى خَبُثَ لَا يَخْرُجُ إِلَّا نَكِدًۭا ۚ كَذَلِكَ نُصَرِّفُ ٱلْءَايَتِ لِقَوْمٍۢ يَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,7,' لَقَدْ أَرْسَلْنَا نُوحًا إِلَىٰ قَوْمِهِۦ فَقَالَ يَقَوْمِ ٱعْبُدُوا۟ ٱللَّهَ مَا لَكُم مِّنْ إِلَهٍ غَيْرُهُۥٓ إِنِّىٓ أَخَافُ عَلَيْكُمْ عَذَابَ يَوْمٍ عَظِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,7,' قَالَ ٱلْمَلَأُ مِن قَوْمِهِۦٓ إِنَّا لَنَرَىٰكَ فِى ضَلَلٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,7,' قَالَ يَقَوْمِ لَيْسَ بِى ضَلَلَةٌۭ وَلَكِنِّى رَسُولٌۭ مِّن رَّبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,7,' أُبَلِّغُكُمْ رِسَلَتِ رَبِّى وَأَنصَحُ لَكُمْ وَأَعْلَمُ مِنَ ٱللَّهِ مَا لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,7,' أَوَعَجِبْتُمْ أَن جَآءَكُمْ ذِكْرٌۭ مِّن رَّبِّكُمْ عَلَىٰ رَجُلٍۢ مِّنكُمْ لِيُنذِرَكُمْ وَلِتَتَّقُوا۟ وَلَعَلَّكُمْ تُرْحَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,7,' فَكَذَّبُوهُ فَأَنجَيْنَهُ وَٱلَّذِينَ مَعَهُۥ فِى ٱلْفُلْكِ وَأَغْرَقْنَا ٱلَّذِينَ كَذَّبُوا۟ بِـَٔايَتِنَآ ۚ إِنَّهُمْ كَانُوا۟ قَوْمًا عَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,7,' وَإِلَىٰ عَادٍ أَخَاهُمْ هُودًۭا ۗ قَالَ يَقَوْمِ ٱعْبُدُوا۟ ٱللَّهَ مَا لَكُم مِّنْ إِلَهٍ غَيْرُهُۥٓ ۚ أَفَلَا تَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,7,' قَالَ ٱلْمَلَأُ ٱلَّذِينَ كَفَرُوا۟ مِن قَوْمِهِۦٓ إِنَّا لَنَرَىٰكَ فِى سَفَاهَةٍۢ وَإِنَّا لَنَظُنُّكَ مِنَ ٱلْكَذِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,7,' قَالَ يَقَوْمِ لَيْسَ بِى سَفَاهَةٌۭ وَلَكِنِّى رَسُولٌۭ مِّن رَّبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,7,' أُبَلِّغُكُمْ رِسَلَتِ رَبِّى وَأَنَا۠ لَكُمْ نَاصِحٌ أَمِينٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,7,' أَوَعَجِبْتُمْ أَن جَآءَكُمْ ذِكْرٌۭ مِّن رَّبِّكُمْ عَلَىٰ رَجُلٍۢ مِّنكُمْ لِيُنذِرَكُمْ ۚ وَٱذْكُرُوٓا۟ إِذْ جَعَلَكُمْ خُلَفَآءَ مِنۢ بَعْدِ قَوْمِ نُوحٍۢ وَزَادَكُمْ فِى ٱلْخَلْقِ بَصْۣطَةًۭ ۖ فَٱذْكُرُوٓا۟ ءَالَآءَ ٱللَّهِ لَعَلَّكُمْ تُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,7,' قَالُوٓا۟ أَجِئْتَنَا لِنَعْبُدَ ٱللَّهَ وَحْدَهُۥ وَنَذَرَ مَا كَانَ يَعْبُدُ ءَابَآؤُنَا ۖ فَأْتِنَا بِمَا تَعِدُنَآ إِن كُنتَ مِنَ ٱلصَّدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,7,' قَالَ قَدْ وَقَعَ عَلَيْكُم مِّن رَّبِّكُمْ رِجْسٌۭ وَغَضَبٌ ۖ أَتُجَدِلُونَنِى فِىٓ أَسْمَآءٍۢ سَمَّيْتُمُوهَآ أَنتُمْ وَءَابَآؤُكُم مَّا نَزَّلَ ٱللَّهُ بِهَا مِن سُلْطَنٍۢ ۚ فَٱنتَظِرُوٓا۟ إِنِّى مَعَكُم مِّنَ ٱلْمُنتَظِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,7,' فَأَنجَيْنَهُ وَٱلَّذِينَ مَعَهُۥ بِرَحْمَةٍۢ مِّنَّا وَقَطَعْنَا دَابِرَ ٱلَّذِينَ كَذَّبُوا۟ بِـَٔايَتِنَا ۖ وَمَا كَانُوا۟ مُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,7,' وَإِلَىٰ ثَمُودَ أَخَاهُمْ صَلِحًۭا ۗ قَالَ يَقَوْمِ ٱعْبُدُوا۟ ٱللَّهَ مَا لَكُم مِّنْ إِلَهٍ غَيْرُهُۥ ۖ قَدْ جَآءَتْكُم بَيِّنَةٌۭ مِّن رَّبِّكُمْ ۖ هَذِهِۦ نَاقَةُ ٱللَّهِ لَكُمْ ءَايَةًۭ ۖ فَذَرُوهَا تَأْكُلْ فِىٓ أَرْضِ ٱللَّهِ ۖ وَلَا تَمَسُّوهَا بِسُوٓءٍۢ فَيَأْخُذَكُمْ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,7,' وَٱذْكُرُوٓا۟ إِذْ جَعَلَكُمْ خُلَفَآءَ مِنۢ بَعْدِ عَادٍۢ وَبَوَّأَكُمْ فِى ٱلْأَرْضِ تَتَّخِذُونَ مِن سُهُولِهَا قُصُورًۭا وَتَنْحِتُونَ ٱلْجِبَالَ بُيُوتًۭا ۖ فَٱذْكُرُوٓا۟ ءَالَآءَ ٱللَّهِ وَلَا تَعْثَوْا۟ فِى ٱلْأَرْضِ مُفْسِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,7,' قَالَ ٱلْمَلَأُ ٱلَّذِينَ ٱسْتَكْبَرُوا۟ مِن قَوْمِهِۦ لِلَّذِينَ ٱسْتُضْعِفُوا۟ لِمَنْ ءَامَنَ مِنْهُمْ أَتَعْلَمُونَ أَنَّ صَلِحًۭا مُّرْسَلٌۭ مِّن رَّبِّهِۦ ۚ قَالُوٓا۟ إِنَّا بِمَآ أُرْسِلَ بِهِۦ مُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,7,' قَالَ ٱلَّذِينَ ٱسْتَكْبَرُوٓا۟ إِنَّا بِٱلَّذِىٓ ءَامَنتُم بِهِۦ كَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,7,' فَعَقَرُوا۟ ٱلنَّاقَةَ وَعَتَوْا۟ عَنْ أَمْرِ رَبِّهِمْ وَقَالُوا۟ يَصَلِحُ ٱئْتِنَا بِمَا تَعِدُنَآ إِن كُنتَ مِنَ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,7,' فَأَخَذَتْهُمُ ٱلرَّجْفَةُ فَأَصْبَحُوا۟ فِى دَارِهِمْ جَثِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,7,' فَتَوَلَّىٰ عَنْهُمْ وَقَالَ يَقَوْمِ لَقَدْ أَبْلَغْتُكُمْ رِسَالَةَ رَبِّى وَنَصَحْتُ لَكُمْ وَلَكِن لَّا تُحِبُّونَ ٱلنَّصِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,7,' وَلُوطًا إِذْ قَالَ لِقَوْمِهِۦٓ أَتَأْتُونَ ٱلْفَحِشَةَ مَا سَبَقَكُم بِهَا مِنْ أَحَدٍۢ مِّنَ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,7,' إِنَّكُمْ لَتَأْتُونَ ٱلرِّجَالَ شَهْوَةًۭ مِّن دُونِ ٱلنِّسَآءِ ۚ بَلْ أَنتُمْ قَوْمٌۭ مُّسْرِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,7,' وَمَا كَانَ جَوَابَ قَوْمِهِۦٓ إِلَّآ أَن قَالُوٓا۟ أَخْرِجُوهُم مِّن قَرْيَتِكُمْ ۖ إِنَّهُمْ أُنَاسٌۭ يَتَطَهَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,7,' فَأَنجَيْنَهُ وَأَهْلَهُۥٓ إِلَّا ٱمْرَأَتَهُۥ كَانَتْ مِنَ ٱلْغَبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,7,' وَأَمْطَرْنَا عَلَيْهِم مَّطَرًۭا ۖ فَٱنظُرْ كَيْفَ كَانَ عَقِبَةُ ٱلْمُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,7,' وَإِلَىٰ مَدْيَنَ أَخَاهُمْ شُعَيْبًۭا ۗ قَالَ يَقَوْمِ ٱعْبُدُوا۟ ٱللَّهَ مَا لَكُم مِّنْ إِلَهٍ غَيْرُهُۥ ۖ قَدْ جَآءَتْكُم بَيِّنَةٌۭ مِّن رَّبِّكُمْ ۖ فَأَوْفُوا۟ ٱلْكَيْلَ وَٱلْمِيزَانَ وَلَا تَبْخَسُوا۟ ٱلنَّاسَ أَشْيَآءَهُمْ وَلَا تُفْسِدُوا۟ فِى ٱلْأَرْضِ بَعْدَ إِصْلَحِهَا ۚ ذَلِكُمْ خَيْرٌۭ لَّكُمْ إِن كُنتُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,7,' وَلَا تَقْعُدُوا۟ بِكُلِّ صِرَطٍۢ تُوعِدُونَ وَتَصُدُّونَ عَن سَبِيلِ ٱللَّهِ مَنْ ءَامَنَ بِهِۦ وَتَبْغُونَهَا عِوَجًۭا ۚ وَٱذْكُرُوٓا۟ إِذْ كُنتُمْ قَلِيلًۭا فَكَثَّرَكُمْ ۖ وَٱنظُرُوا۟ كَيْفَ كَانَ عَقِبَةُ ٱلْمُفْسِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,7,' وَإِن كَانَ طَآئِفَةٌۭ مِّنكُمْ ءَامَنُوا۟ بِٱلَّذِىٓ أُرْسِلْتُ بِهِۦ وَطَآئِفَةٌۭ لَّمْ يُؤْمِنُوا۟ فَٱصْبِرُوا۟ حَتَّىٰ يَحْكُمَ ٱللَّهُ بَيْنَنَا ۚ وَهُوَ خَيْرُ ٱلْحَكِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,7,' قَالَ ٱلْمَلَأُ ٱلَّذِينَ ٱسْتَكْبَرُوا۟ مِن قَوْمِهِۦ لَنُخْرِجَنَّكَ يَشُعَيْبُ وَٱلَّذِينَ ءَامَنُوا۟ مَعَكَ مِن قَرْيَتِنَآ أَوْ لَتَعُودُنَّ فِى مِلَّتِنَا ۚ قَالَ أَوَلَوْ كُنَّا كَرِهِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,7,' قَدِ ٱفْتَرَيْنَا عَلَى ٱللَّهِ كَذِبًا إِنْ عُدْنَا فِى مِلَّتِكُم بَعْدَ إِذْ نَجَّىٰنَا ٱللَّهُ مِنْهَا ۚ وَمَا يَكُونُ لَنَآ أَن نَّعُودَ فِيهَآ إِلَّآ أَن يَشَآءَ ٱللَّهُ رَبُّنَا ۚ وَسِعَ رَبُّنَا كُلَّ شَىْءٍ عِلْمًا ۚ عَلَى ٱللَّهِ تَوَكَّلْنَا ۚ رَبَّنَا ٱفْتَحْ بَيْنَنَا وَبَيْنَ قَوْمِنَا بِٱلْحَقِّ وَأَنتَ خَيْرُ ٱلْفَتِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,7,' وَقَالَ ٱلْمَلَأُ ٱلَّذِينَ كَفَرُوا۟ مِن قَوْمِهِۦ لَىِٕنِ ٱتَّبَعْتُمْ شُعَيْبًا إِنَّكُمْ إِذًۭا لَّخَسِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,7,' فَأَخَذَتْهُمُ ٱلرَّجْفَةُ فَأَصْبَحُوا۟ فِى دَارِهِمْ جَثِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,7,' ٱلَّذِينَ كَذَّبُوا۟ شُعَيْبًۭا كَأَن لَّمْ يَغْنَوْا۟ فِيهَا ۚ ٱلَّذِينَ كَذَّبُوا۟ شُعَيْبًۭا كَانُوا۟ هُمُ ٱلْخَسِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,7,' فَتَوَلَّىٰ عَنْهُمْ وَقَالَ يَقَوْمِ لَقَدْ أَبْلَغْتُكُمْ رِسَلَتِ رَبِّى وَنَصَحْتُ لَكُمْ ۖ فَكَيْفَ ءَاسَىٰ عَلَىٰ قَوْمٍۢ كَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,7,' وَمَآ أَرْسَلْنَا فِى قَرْيَةٍۢ مِّن نَّبِىٍّ إِلَّآ أَخَذْنَآ أَهْلَهَا بِٱلْبَأْسَآءِ وَٱلضَّرَّآءِ لَعَلَّهُمْ يَضَّرَّعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,7,' ثُمَّ بَدَّلْنَا مَكَانَ ٱلسَّيِّئَةِ ٱلْحَسَنَةَ حَتَّىٰ عَفَوا۟ وَّقَالُوا۟ قَدْ مَسَّ ءَابَآءَنَا ٱلضَّرَّآءُ وَٱلسَّرَّآءُ فَأَخَذْنَهُم بَغْتَةًۭ وَهُمْ لَا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,7,' وَلَوْ أَنَّ أَهْلَ ٱلْقُرَىٰٓ ءَامَنُوا۟ وَٱتَّقَوْا۟ لَفَتَحْنَا عَلَيْهِم بَرَكَتٍۢ مِّنَ ٱلسَّمَآءِ وَٱلْأَرْضِ وَلَكِن كَذَّبُوا۟ فَأَخَذْنَهُم بِمَا كَانُوا۟ يَكْسِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,7,' أَفَأَمِنَ أَهْلُ ٱلْقُرَىٰٓ أَن يَأْتِيَهُم بَأْسُنَا بَيَتًۭا وَهُمْ نَآئِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,7,' أَوَأَمِنَ أَهْلُ ٱلْقُرَىٰٓ أَن يَأْتِيَهُم بَأْسُنَا ضُحًۭى وَهُمْ يَلْعَبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,7,' أَفَأَمِنُوا۟ مَكْرَ ٱللَّهِ ۚ فَلَا يَأْمَنُ مَكْرَ ٱللَّهِ إِلَّا ٱلْقَوْمُ ٱلْخَسِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,1,7,' أَوَلَمْ يَهْدِ لِلَّذِينَ يَرِثُونَ ٱلْأَرْضَ مِنۢ بَعْدِ أَهْلِهَآ أَن لَّوْ نَشَآءُ أَصَبْنَهُم بِذُنُوبِهِمْ ۚ وَنَطْبَعُ عَلَىٰ قُلُوبِهِمْ فَهُمْ لَا يَسْمَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,1,7,' تِلْكَ ٱلْقُرَىٰ نَقُصُّ عَلَيْكَ مِنْ أَنۢبَآئِهَا ۚ وَلَقَدْ جَآءَتْهُمْ رُسُلُهُم بِٱلْبَيِّنَتِ فَمَا كَانُوا۟ لِيُؤْمِنُوا۟ بِمَا كَذَّبُوا۟ مِن قَبْلُ ۚ كَذَلِكَ يَطْبَعُ ٱللَّهُ عَلَىٰ قُلُوبِ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,1,7,' وَمَا وَجَدْنَا لِأَكْثَرِهِم مِّنْ عَهْدٍۢ ۖ وَإِن وَجَدْنَآ أَكْثَرَهُمْ لَفَسِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,1,7,' ثُمَّ بَعَثْنَا مِنۢ بَعْدِهِم مُّوسَىٰ بِـَٔايَتِنَآ إِلَىٰ فِرْعَوْنَ وَمَلَإِي۟هِۦ فَظَلَمُوا۟ بِهَا ۖ فَٱنظُرْ كَيْفَ كَانَ عَقِبَةُ ٱلْمُفْسِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,1,7,' وَقَالَ مُوسَىٰ يَفِرْعَوْنُ إِنِّى رَسُولٌۭ مِّن رَّبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,1,7,' حَقِيقٌ عَلَىٰٓ أَن لَّآ أَقُولَ عَلَى ٱللَّهِ إِلَّا ٱلْحَقَّ ۚ قَدْ جِئْتُكُم بِبَيِّنَةٍۢ مِّن رَّبِّكُمْ فَأَرْسِلْ مَعِىَ بَنِىٓ إِسْرَٓءِيلَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,1,7,' قَالَ إِن كُنتَ جِئْتَ بِـَٔايَةٍۢ فَأْتِ بِهَآ إِن كُنتَ مِنَ ٱلصَّدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,1,7,' فَأَلْقَىٰ عَصَاهُ فَإِذَا هِىَ ثُعْبَانٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,1,7,' وَنَزَعَ يَدَهُۥ فَإِذَا هِىَ بَيْضَآءُ لِلنَّظِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,1,7,' قَالَ ٱلْمَلَأُ مِن قَوْمِ فِرْعَوْنَ إِنَّ هَذَا لَسَحِرٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,1,7,' يُرِيدُ أَن يُخْرِجَكُم مِّنْ أَرْضِكُمْ ۖ فَمَاذَا تَأْمُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,1,7,' قَالُوٓا۟ أَرْجِهْ وَأَخَاهُ وَأَرْسِلْ فِى ٱلْمَدَآىِٕنِ حَشِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,1,7,' يَأْتُوكَ بِكُلِّ سَحِرٍ عَلِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,1,7,' وَجَآءَ ٱلسَّحَرَةُ فِرْعَوْنَ قَالُوٓا۟ إِنَّ لَنَا لَأَجْرًا إِن كُنَّا نَحْنُ ٱلْغَلِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,1,7,' قَالَ نَعَمْ وَإِنَّكُمْ لَمِنَ ٱلْمُقَرَّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,1,7,' قَالُوا۟ يَمُوسَىٰٓ إِمَّآ أَن تُلْقِىَ وَإِمَّآ أَن نَّكُونَ نَحْنُ ٱلْمُلْقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,1,7,' قَالَ أَلْقُوا۟ ۖ فَلَمَّآ أَلْقَوْا۟ سَحَرُوٓا۟ أَعْيُنَ ٱلنَّاسِ وَٱسْتَرْهَبُوهُمْ وَجَآءُو بِسِحْرٍ عَظِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,1,7,' وَأَوْحَيْنَآ إِلَىٰ مُوسَىٰٓ أَنْ أَلْقِ عَصَاكَ ۖ فَإِذَا هِىَ تَلْقَفُ مَا يَأْفِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,1,7,' فَوَقَعَ ٱلْحَقُّ وَبَطَلَ مَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,1,7,' فَغُلِبُوا۟ هُنَالِكَ وَٱنقَلَبُوا۟ صَغِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,1,7,' وَأُلْقِىَ ٱلسَّحَرَةُ سَجِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,1,7,' قَالُوٓا۟ ءَامَنَّا بِرَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,1,7,' رَبِّ مُوسَىٰ وَهَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,1,7,' قَالَ فِرْعَوْنُ ءَامَنتُم بِهِۦ قَبْلَ أَنْ ءَاذَنَ لَكُمْ ۖ إِنَّ هَذَا لَمَكْرٌۭ مَّكَرْتُمُوهُ فِى ٱلْمَدِينَةِ لِتُخْرِجُوا۟ مِنْهَآ أَهْلَهَا ۖ فَسَوْفَ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,1,7,' لَأُقَطِّعَنَّ أَيْدِيَكُمْ وَأَرْجُلَكُم مِّنْ خِلَفٍۢ ثُمَّ لَأُصَلِّبَنَّكُمْ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,1,7,' قَالُوٓا۟ إِنَّآ إِلَىٰ رَبِّنَا مُنقَلِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,1,7,' وَمَا تَنقِمُ مِنَّآ إِلَّآ أَنْ ءَامَنَّا بِـَٔايَتِ رَبِّنَا لَمَّا جَآءَتْنَا ۚ رَبَّنَآ أَفْرِغْ عَلَيْنَا صَبْرًۭا وَتَوَفَّنَا مُسْلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,1,7,' وَقَالَ ٱلْمَلَأُ مِن قَوْمِ فِرْعَوْنَ أَتَذَرُ مُوسَىٰ وَقَوْمَهُۥ لِيُفْسِدُوا۟ فِى ٱلْأَرْضِ وَيَذَرَكَ وَءَالِهَتَكَ ۚ قَالَ سَنُقَتِّلُ أَبْنَآءَهُمْ وَنَسْتَحْىِۦ نِسَآءَهُمْ وَإِنَّا فَوْقَهُمْ قَهِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,1,7,' قَالَ مُوسَىٰ لِقَوْمِهِ ٱسْتَعِينُوا۟ بِٱللَّهِ وَٱصْبِرُوٓا۟ ۖ إِنَّ ٱلْأَرْضَ لِلَّهِ يُورِثُهَا مَن يَشَآءُ مِنْ عِبَادِهِۦ ۖ وَٱلْعَقِبَةُ لِلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,1,7,' قَالُوٓا۟ أُوذِينَا مِن قَبْلِ أَن تَأْتِيَنَا وَمِنۢ بَعْدِ مَا جِئْتَنَا ۚ قَالَ عَسَىٰ رَبُّكُمْ أَن يُهْلِكَ عَدُوَّكُمْ وَيَسْتَخْلِفَكُمْ فِى ٱلْأَرْضِ فَيَنظُرَ كَيْفَ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,1,7,' وَلَقَدْ أَخَذْنَآ ءَالَ فِرْعَوْنَ بِٱلسِّنِينَ وَنَقْصٍۢ مِّنَ ٱلثَّمَرَتِ لَعَلَّهُمْ يَذَّكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,1,7,' فَإِذَا جَآءَتْهُمُ ٱلْحَسَنَةُ قَالُوا۟ لَنَا هَذِهِۦ ۖ وَإِن تُصِبْهُمْ سَيِّئَةٌۭ يَطَّيَّرُوا۟ بِمُوسَىٰ وَمَن مَّعَهُۥٓ ۗ أَلَآ إِنَّمَا طَٓئِرُهُمْ عِندَ ٱللَّهِ وَلَكِنَّ أَكْثَرَهُمْ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,1,7,' وَقَالُوا۟ مَهْمَا تَأْتِنَا بِهِۦ مِنْ ءَايَةٍۢ لِّتَسْحَرَنَا بِهَا فَمَا نَحْنُ لَكَ بِمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,1,7,' فَأَرْسَلْنَا عَلَيْهِمُ ٱلطُّوفَانَ وَٱلْجَرَادَ وَٱلْقُمَّلَ وَٱلضَّفَادِعَ وَٱلدَّمَ ءَايَتٍۢ مُّفَصَّلَتٍۢ فَٱسْتَكْبَرُوا۟ وَكَانُوا۟ قَوْمًۭا مُّجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,1,7,' وَلَمَّا وَقَعَ عَلَيْهِمُ ٱلرِّجْزُ قَالُوا۟ يَمُوسَى ٱدْعُ لَنَا رَبَّكَ بِمَا عَهِدَ عِندَكَ ۖ لَئِن كَشَفْتَ عَنَّا ٱلرِّجْزَ لَنُؤْمِنَنَّ لَكَ وَلَنُرْسِلَنَّ مَعَكَ بَنِىٓ إِسْرَٓءِيلَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,1,7,' فَلَمَّا كَشَفْنَا عَنْهُمُ ٱلرِّجْزَ إِلَىٰٓ أَجَلٍ هُم بَلِغُوهُ إِذَا هُمْ يَنكُثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,1,7,' فَٱنتَقَمْنَا مِنْهُمْ فَأَغْرَقْنَهُمْ فِى ٱلْيَمِّ بِأَنَّهُمْ كَذَّبُوا۟ بِـَٔايَتِنَا وَكَانُوا۟ عَنْهَا غَفِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,1,7,' وَأَوْرَثْنَا ٱلْقَوْمَ ٱلَّذِينَ كَانُوا۟ يُسْتَضْعَفُونَ مَشَرِقَ ٱلْأَرْضِ وَمَغَرِبَهَا ٱلَّتِى بَرَكْنَا فِيهَا ۖ وَتَمَّتْ كَلِمَتُ رَبِّكَ ٱلْحُسْنَىٰ عَلَىٰ بَنِىٓ إِسْرَٓءِيلَ بِمَا صَبَرُوا۟ ۖ وَدَمَّرْنَا مَا كَانَ يَصْنَعُ فِرْعَوْنُ وَقَوْمُهُۥ وَمَا كَانُوا۟ يَعْرِشُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,1,7,' وَجَوَزْنَا بِبَنِىٓ إِسْرَٓءِيلَ ٱلْبَحْرَ فَأَتَوْا۟ عَلَىٰ قَوْمٍۢ يَعْكُفُونَ عَلَىٰٓ أَصْنَامٍۢ لَّهُمْ ۚ قَالُوا۟ يَمُوسَى ٱجْعَل لَّنَآ إِلَهًۭا كَمَا لَهُمْ ءَالِهَةٌۭ ۚ قَالَ إِنَّكُمْ قَوْمٌۭ تَجْهَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,1,7,' إِنَّ هَٓؤُلَآءِ مُتَبَّرٌۭ مَّا هُمْ فِيهِ وَبَطِلٌۭ مَّا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,1,7,' قَالَ أَغَيْرَ ٱللَّهِ أَبْغِيكُمْ إِلَهًۭا وَهُوَ فَضَّلَكُمْ عَلَى ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,1,7,' وَإِذْ أَنجَيْنَكُم مِّنْ ءَالِ فِرْعَوْنَ يَسُومُونَكُمْ سُوٓءَ ٱلْعَذَابِ ۖ يُقَتِّلُونَ أَبْنَآءَكُمْ وَيَسْتَحْيُونَ نِسَآءَكُمْ ۚ وَفِى ذَلِكُم بَلَآءٌۭ مِّن رَّبِّكُمْ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,1,7,' وَوَعَدْنَا مُوسَىٰ ثَلَثِينَ لَيْلَةًۭ وَأَتْمَمْنَهَا بِعَشْرٍۢ فَتَمَّ مِيقَتُ رَبِّهِۦٓ أَرْبَعِينَ لَيْلَةًۭ ۚ وَقَالَ مُوسَىٰ لِأَخِيهِ هَرُونَ ٱخْلُفْنِى فِى قَوْمِى وَأَصْلِحْ وَلَا تَتَّبِعْ سَبِيلَ ٱلْمُفْسِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,1,7,' وَلَمَّا جَآءَ مُوسَىٰ لِمِيقَتِنَا وَكَلَّمَهُۥ رَبُّهُۥ قَالَ رَبِّ أَرِنِىٓ أَنظُرْ إِلَيْكَ ۚ قَالَ لَن تَرَىٰنِى وَلَكِنِ ٱنظُرْ إِلَى ٱلْجَبَلِ فَإِنِ ٱسْتَقَرَّ مَكَانَهُۥ فَسَوْفَ تَرَىٰنِى ۚ فَلَمَّا تَجَلَّىٰ رَبُّهُۥ لِلْجَبَلِ جَعَلَهُۥ دَكًّۭا وَخَرَّ مُوسَىٰ صَعِقًۭا ۚ فَلَمَّآ أَفَاقَ قَالَ سُبْحَنَكَ تُبْتُ إِلَيْكَ وَأَنَا۠ أَوَّلُ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,1,7,' قَالَ يَمُوسَىٰٓ إِنِّى ٱصْطَفَيْتُكَ عَلَى ٱلنَّاسِ بِرِسَلَتِى وَبِكَلَمِى فَخُذْ مَآ ءَاتَيْتُكَ وَكُن مِّنَ ٱلشَّكِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,1,7,' وَكَتَبْنَا لَهُۥ فِى ٱلْأَلْوَاحِ مِن كُلِّ شَىْءٍۢ مَّوْعِظَةًۭ وَتَفْصِيلًۭا لِّكُلِّ شَىْءٍۢ فَخُذْهَا بِقُوَّةٍۢ وَأْمُرْ قَوْمَكَ يَأْخُذُوا۟ بِأَحْسَنِهَا ۚ سَأُو۟رِيكُمْ دَارَ ٱلْفَسِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,1,7,' سَأَصْرِفُ عَنْ ءَايَتِىَ ٱلَّذِينَ يَتَكَبَّرُونَ فِى ٱلْأَرْضِ بِغَيْرِ ٱلْحَقِّ وَإِن يَرَوْا۟ كُلَّ ءَايَةٍۢ لَّا يُؤْمِنُوا۟ بِهَا وَإِن يَرَوْا۟ سَبِيلَ ٱلرُّشْدِ لَا يَتَّخِذُوهُ سَبِيلًۭا وَإِن يَرَوْا۟ سَبِيلَ ٱلْغَىِّ يَتَّخِذُوهُ سَبِيلًۭا ۚ ذَلِكَ بِأَنَّهُمْ كَذَّبُوا۟ بِـَٔايَتِنَا وَكَانُوا۟ عَنْهَا غَفِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,1,7,' وَٱلَّذِينَ كَذَّبُوا۟ بِـَٔايَتِنَا وَلِقَآءِ ٱلْءَاخِرَةِ حَبِطَتْ أَعْمَلُهُمْ ۚ هَلْ يُجْزَوْنَ إِلَّا مَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,1,7,' وَٱتَّخَذَ قَوْمُ مُوسَىٰ مِنۢ بَعْدِهِۦ مِنْ حُلِيِّهِمْ عِجْلًۭا جَسَدًۭا لَّهُۥ خُوَارٌ ۚ أَلَمْ يَرَوْا۟ أَنَّهُۥ لَا يُكَلِّمُهُمْ وَلَا يَهْدِيهِمْ سَبِيلًا ۘ ٱتَّخَذُوهُ وَكَانُوا۟ ظَلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,1,7,' وَلَمَّا سُقِطَ فِىٓ أَيْدِيهِمْ وَرَأَوْا۟ أَنَّهُمْ قَدْ ضَلُّوا۟ قَالُوا۟ لَىِٕن لَّمْ يَرْحَمْنَا رَبُّنَا وَيَغْفِرْ لَنَا لَنَكُونَنَّ مِنَ ٱلْخَسِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,1,7,' وَلَمَّا رَجَعَ مُوسَىٰٓ إِلَىٰ قَوْمِهِۦ غَضْبَنَ أَسِفًۭا قَالَ بِئْسَمَا خَلَفْتُمُونِى مِنۢ بَعْدِىٓ ۖ أَعَجِلْتُمْ أَمْرَ رَبِّكُمْ ۖ وَأَلْقَى ٱلْأَلْوَاحَ وَأَخَذَ بِرَأْسِ أَخِيهِ يَجُرُّهُۥٓ إِلَيْهِ ۚ قَالَ ٱبْنَ أُمَّ إِنَّ ٱلْقَوْمَ ٱسْتَضْعَفُونِى وَكَادُوا۟ يَقْتُلُونَنِى فَلَا تُشْمِتْ بِىَ ٱلْأَعْدَآءَ وَلَا تَجْعَلْنِى مَعَ ٱلْقَوْمِ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,1,7,' قَالَ رَبِّ ٱغْفِرْ لِى وَلِأَخِى وَأَدْخِلْنَا فِى رَحْمَتِكَ ۖ وَأَنتَ أَرْحَمُ ٱلرَّحِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,1,7,' إِنَّ ٱلَّذِينَ ٱتَّخَذُوا۟ ٱلْعِجْلَ سَيَنَالُهُمْ غَضَبٌۭ مِّن رَّبِّهِمْ وَذِلَّةٌۭ فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا ۚ وَكَذَلِكَ نَجْزِى ٱلْمُفْتَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,1,7,' وَٱلَّذِينَ عَمِلُوا۟ ٱلسَّيِّـَٔاتِ ثُمَّ تَابُوا۟ مِنۢ بَعْدِهَا وَءَامَنُوٓا۟ إِنَّ رَبَّكَ مِنۢ بَعْدِهَا لَغَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,1,7,' وَلَمَّا سَكَتَ عَن مُّوسَى ٱلْغَضَبُ أَخَذَ ٱلْأَلْوَاحَ ۖ وَفِى نُسْخَتِهَا هُدًۭى وَرَحْمَةٌۭ لِّلَّذِينَ هُمْ لِرَبِّهِمْ يَرْهَبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,1,7,' وَٱخْتَارَ مُوسَىٰ قَوْمَهُۥ سَبْعِينَ رَجُلًۭا لِّمِيقَتِنَا ۖ فَلَمَّآ أَخَذَتْهُمُ ٱلرَّجْفَةُ قَالَ رَبِّ لَوْ شِئْتَ أَهْلَكْتَهُم مِّن قَبْلُ وَإِيَّىَ ۖ أَتُهْلِكُنَا بِمَا فَعَلَ ٱلسُّفَهَآءُ مِنَّآ ۖ إِنْ هِىَ إِلَّا فِتْنَتُكَ تُضِلُّ بِهَا مَن تَشَآءُ وَتَهْدِى مَن تَشَآءُ ۖ أَنتَ وَلِيُّنَا فَٱغْفِرْ لَنَا وَٱرْحَمْنَا ۖ وَأَنتَ خَيْرُ ٱلْغَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,1,7,' وَٱكْتُبْ لَنَا فِى هَذِهِ ٱلدُّنْيَا حَسَنَةًۭ وَفِى ٱلْءَاخِرَةِ إِنَّا هُدْنَآ إِلَيْكَ ۚ قَالَ عَذَابِىٓ أُصِيبُ بِهِۦ مَنْ أَشَآءُ ۖ وَرَحْمَتِى وَسِعَتْ كُلَّ شَىْءٍۢ ۚ فَسَأَكْتُبُهَا لِلَّذِينَ يَتَّقُونَ وَيُؤْتُونَ ٱلزَّكَوٰةَ وَٱلَّذِينَ هُم بِـَٔايَتِنَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,1,7,' ٱلَّذِينَ يَتَّبِعُونَ ٱلرَّسُولَ ٱلنَّبِىَّ ٱلْأُمِّىَّ ٱلَّذِى يَجِدُونَهُۥ مَكْتُوبًا عِندَهُمْ فِى ٱلتَّوْرَىٰةِ وَٱلْإِنجِيلِ يَأْمُرُهُم بِٱلْمَعْرُوفِ وَيَنْهَىٰهُمْ عَنِ ٱلْمُنكَرِ وَيُحِلُّ لَهُمُ ٱلطَّيِّبَتِ وَيُحَرِّمُ عَلَيْهِمُ ٱلْخَبَٓئِثَ وَيَضَعُ عَنْهُمْ إِصْرَهُمْ وَٱلْأَغْلَلَ ٱلَّتِى كَانَتْ عَلَيْهِمْ ۚ فَٱلَّذِينَ ءَامَنُوا۟ بِهِۦ وَعَزَّرُوهُ وَنَصَرُوهُ وَٱتَّبَعُوا۟ ٱلنُّورَ ٱلَّذِىٓ أُنزِلَ مَعَهُۥٓ ۙ أُو۟لَٓئِكَ هُمُ ٱلْمُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,1,7,' قُلْ يَٓأَيُّهَا ٱلنَّاسُ إِنِّى رَسُولُ ٱللَّهِ إِلَيْكُمْ جَمِيعًا ٱلَّذِى لَهُۥ مُلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۖ لَآ إِلَهَ إِلَّا هُوَ يُحْىِۦ وَيُمِيتُ ۖ فَـَٔامِنُوا۟ بِٱللَّهِ وَرَسُولِهِ ٱلنَّبِىِّ ٱلْأُمِّىِّ ٱلَّذِى يُؤْمِنُ بِٱللَّهِ وَكَلِمَتِهِۦ وَٱتَّبِعُوهُ لَعَلَّكُمْ تَهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,1,7,' وَمِن قَوْمِ مُوسَىٰٓ أُمَّةٌۭ يَهْدُونَ بِٱلْحَقِّ وَبِهِۦ يَعْدِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,1,7,' وَقَطَّعْنَهُمُ ٱثْنَتَىْ عَشْرَةَ أَسْبَاطًا أُمَمًۭا ۚ وَأَوْحَيْنَآ إِلَىٰ مُوسَىٰٓ إِذِ ٱسْتَسْقَىٰهُ قَوْمُهُۥٓ أَنِ ٱضْرِب بِّعَصَاكَ ٱلْحَجَرَ ۖ فَٱنۢبَجَسَتْ مِنْهُ ٱثْنَتَا عَشْرَةَ عَيْنًۭا ۖ قَدْ عَلِمَ كُلُّ أُنَاسٍۢ مَّشْرَبَهُمْ ۚ وَظَلَّلْنَا عَلَيْهِمُ ٱلْغَمَمَ وَأَنزَلْنَا عَلَيْهِمُ ٱلْمَنَّ وَٱلسَّلْوَىٰ ۖ كُلُوا۟ مِن طَيِّبَتِ مَا رَزَقْنَكُمْ ۚ وَمَا ظَلَمُونَا وَلَكِن كَانُوٓا۟ أَنفُسَهُمْ يَظْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,1,7,' وَإِذْ قِيلَ لَهُمُ ٱسْكُنُوا۟ هَذِهِ ٱلْقَرْيَةَ وَكُلُوا۟ مِنْهَا حَيْثُ شِئْتُمْ وَقُولُوا۟ حِطَّةٌۭ وَٱدْخُلُوا۟ ٱلْبَابَ سُجَّدًۭا نَّغْفِرْ لَكُمْ خَطِيٓـَٔتِكُمْ ۚ سَنَزِيدُ ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,1,7,' فَبَدَّلَ ٱلَّذِينَ ظَلَمُوا۟ مِنْهُمْ قَوْلًا غَيْرَ ٱلَّذِى قِيلَ لَهُمْ فَأَرْسَلْنَا عَلَيْهِمْ رِجْزًۭا مِّنَ ٱلسَّمَآءِ بِمَا كَانُوا۟ يَظْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,1,7,' وَسْـَٔلْهُمْ عَنِ ٱلْقَرْيَةِ ٱلَّتِى كَانَتْ حَاضِرَةَ ٱلْبَحْرِ إِذْ يَعْدُونَ فِى ٱلسَّبْتِ إِذْ تَأْتِيهِمْ حِيتَانُهُمْ يَوْمَ سَبْتِهِمْ شُرَّعًۭا وَيَوْمَ لَا يَسْبِتُونَ ۙ لَا تَأْتِيهِمْ ۚ كَذَلِكَ نَبْلُوهُم بِمَا كَانُوا۟ يَفْسُقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,1,7,' وَإِذْ قَالَتْ أُمَّةٌۭ مِّنْهُمْ لِمَ تَعِظُونَ قَوْمًا ۙ ٱللَّهُ مُهْلِكُهُمْ أَوْ مُعَذِّبُهُمْ عَذَابًۭا شَدِيدًۭا ۖ قَالُوا۟ مَعْذِرَةً إِلَىٰ رَبِّكُمْ وَلَعَلَّهُمْ يَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,1,7,' فَلَمَّا نَسُوا۟ مَا ذُكِّرُوا۟ بِهِۦٓ أَنجَيْنَا ٱلَّذِينَ يَنْهَوْنَ عَنِ ٱلسُّوٓءِ وَأَخَذْنَا ٱلَّذِينَ ظَلَمُوا۟ بِعَذَابٍۭ بَـِٔيسٍۭ بِمَا كَانُوا۟ يَفْسُقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,1,7,' فَلَمَّا عَتَوْا۟ عَن مَّا نُهُوا۟ عَنْهُ قُلْنَا لَهُمْ كُونُوا۟ قِرَدَةً خَسِـِٔينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,1,7,' وَإِذْ تَأَذَّنَ رَبُّكَ لَيَبْعَثَنَّ عَلَيْهِمْ إِلَىٰ يَوْمِ ٱلْقِيَمَةِ مَن يَسُومُهُمْ سُوٓءَ ٱلْعَذَابِ ۗ إِنَّ رَبَّكَ لَسَرِيعُ ٱلْعِقَابِ ۖ وَإِنَّهُۥ لَغَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,1,7,' وَقَطَّعْنَهُمْ فِى ٱلْأَرْضِ أُمَمًۭا ۖ مِّنْهُمُ ٱلصَّلِحُونَ وَمِنْهُمْ دُونَ ذَلِكَ ۖ وَبَلَوْنَهُم بِٱلْحَسَنَتِ وَٱلسَّيِّـَٔاتِ لَعَلَّهُمْ يَرْجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,1,7,' فَخَلَفَ مِنۢ بَعْدِهِمْ خَلْفٌۭ وَرِثُوا۟ ٱلْكِتَبَ يَأْخُذُونَ عَرَضَ هَذَا ٱلْأَدْنَىٰ وَيَقُولُونَ سَيُغْفَرُ لَنَا وَإِن يَأْتِهِمْ عَرَضٌۭ مِّثْلُهُۥ يَأْخُذُوهُ ۚ أَلَمْ يُؤْخَذْ عَلَيْهِم مِّيثَقُ ٱلْكِتَبِ أَن لَّا يَقُولُوا۟ عَلَى ٱللَّهِ إِلَّا ٱلْحَقَّ وَدَرَسُوا۟ مَا فِيهِ ۗ وَٱلدَّارُ ٱلْءَاخِرَةُ خَيْرٌۭ لِّلَّذِينَ يَتَّقُونَ ۗ أَفَلَا تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,1,7,' وَٱلَّذِينَ يُمَسِّكُونَ بِٱلْكِتَبِ وَأَقَامُوا۟ ٱلصَّلَوٰةَ إِنَّا لَا نُضِيعُ أَجْرَ ٱلْمُصْلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,1,7,' وَإِذْ نَتَقْنَا ٱلْجَبَلَ فَوْقَهُمْ كَأَنَّهُۥ ظُلَّةٌۭ وَظَنُّوٓا۟ أَنَّهُۥ وَاقِعٌۢ بِهِمْ خُذُوا۟ مَآ ءَاتَيْنَكُم بِقُوَّةٍۢ وَٱذْكُرُوا۟ مَا فِيهِ لَعَلَّكُمْ تَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,1,7,' وَإِذْ أَخَذَ رَبُّكَ مِنۢ بَنِىٓ ءَادَمَ مِن ظُهُورِهِمْ ذُرِّيَّتَهُمْ وَأَشْهَدَهُمْ عَلَىٰٓ أَنفُسِهِمْ أَلَسْتُ بِرَبِّكُمْ ۖ قَالُوا۟ بَلَىٰ ۛ شَهِدْنَآ ۛ أَن تَقُولُوا۟ يَوْمَ ٱلْقِيَمَةِ إِنَّا كُنَّا عَنْ هَذَا غَفِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,1,7,' أَوْ تَقُولُوٓا۟ إِنَّمَآ أَشْرَكَ ءَابَآؤُنَا مِن قَبْلُ وَكُنَّا ذُرِّيَّةًۭ مِّنۢ بَعْدِهِمْ ۖ أَفَتُهْلِكُنَا بِمَا فَعَلَ ٱلْمُبْطِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,1,7,' وَكَذَلِكَ نُفَصِّلُ ٱلْءَايَتِ وَلَعَلَّهُمْ يَرْجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,1,7,' وَٱتْلُ عَلَيْهِمْ نَبَأَ ٱلَّذِىٓ ءَاتَيْنَهُ ءَايَتِنَا فَٱنسَلَخَ مِنْهَا فَأَتْبَعَهُ ٱلشَّيْطَنُ فَكَانَ مِنَ ٱلْغَاوِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,1,7,' وَلَوْ شِئْنَا لَرَفَعْنَهُ بِهَا وَلَكِنَّهُۥٓ أَخْلَدَ إِلَى ٱلْأَرْضِ وَٱتَّبَعَ هَوَىٰهُ ۚ فَمَثَلُهُۥ كَمَثَلِ ٱلْكَلْبِ إِن تَحْمِلْ عَلَيْهِ يَلْهَثْ أَوْ تَتْرُكْهُ يَلْهَث ۚ ذَّلِكَ مَثَلُ ٱلْقَوْمِ ٱلَّذِينَ كَذَّبُوا۟ بِـَٔايَتِنَا ۚ فَٱقْصُصِ ٱلْقَصَصَ لَعَلَّهُمْ يَتَفَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,1,7,' سَآءَ مَثَلًا ٱلْقَوْمُ ٱلَّذِينَ كَذَّبُوا۟ بِـَٔايَتِنَا وَأَنفُسَهُمْ كَانُوا۟ يَظْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,1,7,' مَن يَهْدِ ٱللَّهُ فَهُوَ ٱلْمُهْتَدِى ۖ وَمَن يُضْلِلْ فَأُو۟لَٓئِكَ هُمُ ٱلْخَسِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,1,7,' وَلَقَدْ ذَرَأْنَا لِجَهَنَّمَ كَثِيرًۭا مِّنَ ٱلْجِنِّ وَٱلْإِنسِ ۖ لَهُمْ قُلُوبٌۭ لَّا يَفْقَهُونَ بِهَا وَلَهُمْ أَعْيُنٌۭ لَّا يُبْصِرُونَ بِهَا وَلَهُمْ ءَاذَانٌۭ لَّا يَسْمَعُونَ بِهَآ ۚ أُو۟لَٓئِكَ كَٱلْأَنْعَمِ بَلْ هُمْ أَضَلُّ ۚ أُو۟لَٓئِكَ هُمُ ٱلْغَفِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,1,7,' وَلِلَّهِ ٱلْأَسْمَآءُ ٱلْحُسْنَىٰ فَٱدْعُوهُ بِهَا ۖ وَذَرُوا۟ ٱلَّذِينَ يُلْحِدُونَ فِىٓ أَسْمَٓئِهِۦ ۚ سَيُجْزَوْنَ مَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,1,7,' وَمِمَّنْ خَلَقْنَآ أُمَّةٌۭ يَهْدُونَ بِٱلْحَقِّ وَبِهِۦ يَعْدِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,1,7,' وَٱلَّذِينَ كَذَّبُوا۟ بِـَٔايَتِنَا سَنَسْتَدْرِجُهُم مِّنْ حَيْثُ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(183,1,7,' وَأُمْلِى لَهُمْ ۚ إِنَّ كَيْدِى مَتِينٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(184,1,7,' أَوَلَمْ يَتَفَكَّرُوا۟ ۗ مَا بِصَاحِبِهِم مِّن جِنَّةٍ ۚ إِنْ هُوَ إِلَّا نَذِيرٌۭ مُّبِينٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(185,1,7,' أَوَلَمْ يَنظُرُوا۟ فِى مَلَكُوتِ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَمَا خَلَقَ ٱللَّهُ مِن شَىْءٍۢ وَأَنْ عَسَىٰٓ أَن يَكُونَ قَدِ ٱقْتَرَبَ أَجَلُهُمْ ۖ فَبِأَىِّ حَدِيثٍۭ بَعْدَهُۥ يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(186,1,7,' مَن يُضْلِلِ ٱللَّهُ فَلَا هَادِىَ لَهُۥ ۚ وَيَذَرُهُمْ فِى طُغْيَنِهِمْ يَعْمَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(187,1,7,' يَسْـَٔلُونَكَ عَنِ ٱلسَّاعَةِ أَيَّانَ مُرْسَىٰهَا ۖ قُلْ إِنَّمَا عِلْمُهَا عِندَ رَبِّى ۖ لَا يُجَلِّيهَا لِوَقْتِهَآ إِلَّا هُوَ ۚ ثَقُلَتْ فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ لَا تَأْتِيكُمْ إِلَّا بَغْتَةًۭ ۗ يَسْـَٔلُونَكَ كَأَنَّكَ حَفِىٌّ عَنْهَا ۖ قُلْ إِنَّمَا عِلْمُهَا عِندَ ٱللَّهِ وَلَكِنَّ أَكْثَرَ ٱلنَّاسِ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(188,1,7,' قُل لَّآ أَمْلِكُ لِنَفْسِى نَفْعًۭا وَلَا ضَرًّا إِلَّا مَا شَآءَ ٱللَّهُ ۚ وَلَوْ كُنتُ أَعْلَمُ ٱلْغَيْبَ لَٱسْتَكْثَرْتُ مِنَ ٱلْخَيْرِ وَمَا مَسَّنِىَ ٱلسُّوٓءُ ۚ إِنْ أَنَا۠ إِلَّا نَذِيرٌۭ وَبَشِيرٌۭ لِّقَوْمٍۢ يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(189,1,7,' هُوَ ٱلَّذِى خَلَقَكُم مِّن نَّفْسٍۢ وَحِدَةٍۢ وَجَعَلَ مِنْهَا زَوْجَهَا لِيَسْكُنَ إِلَيْهَا ۖ فَلَمَّا تَغَشَّىٰهَا حَمَلَتْ حَمْلًا خَفِيفًۭا فَمَرَّتْ بِهِۦ ۖ فَلَمَّآ أَثْقَلَت دَّعَوَا ٱللَّهَ رَبَّهُمَا لَىِٕنْ ءَاتَيْتَنَا صَلِحًۭا لَّنَكُونَنَّ مِنَ ٱلشَّكِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(190,1,7,' فَلَمَّآ ءَاتَىٰهُمَا صَلِحًۭا جَعَلَا لَهُۥ شُرَكَآءَ فِيمَآ ءَاتَىٰهُمَا ۚ فَتَعَلَى ٱللَّهُ عَمَّا يُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(191,1,7,' أَيُشْرِكُونَ مَا لَا يَخْلُقُ شَيْـًۭٔا وَهُمْ يُخْلَقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(192,1,7,' وَلَا يَسْتَطِيعُونَ لَهُمْ نَصْرًۭا وَلَآ أَنفُسَهُمْ يَنصُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(193,1,7,' وَإِن تَدْعُوهُمْ إِلَى ٱلْهُدَىٰ لَا يَتَّبِعُوكُمْ ۚ سَوَآءٌ عَلَيْكُمْ أَدَعَوْتُمُوهُمْ أَمْ أَنتُمْ صَمِتُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(194,1,7,' إِنَّ ٱلَّذِينَ تَدْعُونَ مِن دُونِ ٱللَّهِ عِبَادٌ أَمْثَالُكُمْ ۖ فَٱدْعُوهُمْ فَلْيَسْتَجِيبُوا۟ لَكُمْ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(195,1,7,' أَلَهُمْ أَرْجُلٌۭ يَمْشُونَ بِهَآ ۖ أَمْ لَهُمْ أَيْدٍۢ يَبْطِشُونَ بِهَآ ۖ أَمْ لَهُمْ أَعْيُنٌۭ يُبْصِرُونَ بِهَآ ۖ أَمْ لَهُمْ ءَاذَانٌۭ يَسْمَعُونَ بِهَا ۗ قُلِ ٱدْعُوا۟ شُرَكَآءَكُمْ ثُمَّ كِيدُونِ فَلَا تُنظِرُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(196,1,7,' إِنَّ وَلِۦِّىَ ٱللَّهُ ٱلَّذِى نَزَّلَ ٱلْكِتَبَ ۖ وَهُوَ يَتَوَلَّى ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(197,1,7,' وَٱلَّذِينَ تَدْعُونَ مِن دُونِهِۦ لَا يَسْتَطِيعُونَ نَصْرَكُمْ وَلَآ أَنفُسَهُمْ يَنصُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(198,1,7,' وَإِن تَدْعُوهُمْ إِلَى ٱلْهُدَىٰ لَا يَسْمَعُوا۟ ۖ وَتَرَىٰهُمْ يَنظُرُونَ إِلَيْكَ وَهُمْ لَا يُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(199,1,7,' خُذِ ٱلْعَفْوَ وَأْمُرْ بِٱلْعُرْفِ وَأَعْرِضْ عَنِ ٱلْجَهِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(200,1,7,' وَإِمَّا يَنزَغَنَّكَ مِنَ ٱلشَّيْطَنِ نَزْغٌۭ فَٱسْتَعِذْ بِٱللَّهِ ۚ إِنَّهُۥ سَمِيعٌ عَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(201,1,7,' إِنَّ ٱلَّذِينَ ٱتَّقَوْا۟ إِذَا مَسَّهُمْ طَٓئِفٌۭ مِّنَ ٱلشَّيْطَنِ تَذَكَّرُوا۟ فَإِذَا هُم مُّبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(202,1,7,' وَإِخْوَنُهُمْ يَمُدُّونَهُمْ فِى ٱلْغَىِّ ثُمَّ لَا يُقْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(203,1,7,' وَإِذَا لَمْ تَأْتِهِم بِـَٔايَةٍۢ قَالُوا۟ لَوْلَا ٱجْتَبَيْتَهَا ۚ قُلْ إِنَّمَآ أَتَّبِعُ مَا يُوحَىٰٓ إِلَىَّ مِن رَّبِّى ۚ هَذَا بَصَآئِرُ مِن رَّبِّكُمْ وَهُدًۭى وَرَحْمَةٌۭ لِّقَوْمٍۢ يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(204,1,7,' وَإِذَا قُرِئَ ٱلْقُرْءَانُ فَٱسْتَمِعُوا۟ لَهُۥ وَأَنصِتُوا۟ لَعَلَّكُمْ تُرْحَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(205,1,7,' وَٱذْكُر رَّبَّكَ فِى نَفْسِكَ تَضَرُّعًۭا وَخِيفَةًۭ وَدُونَ ٱلْجَهْرِ مِنَ ٱلْقَوْلِ بِٱلْغُدُوِّ وَٱلْءَاصَالِ وَلَا تَكُن مِّنَ ٱلْغَفِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(206,1,7,' إِنَّ ٱلَّذِينَ عِندَ رَبِّكَ لَا يَسْتَكْبِرُونَ عَنْ عِبَادَتِهِۦ وَيُسَبِّحُونَهُۥ وَلَهُۥ يَسْجُدُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(8,8,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,8,' يَسْـَٔلُونَكَ عَنِ ٱلْأَنفَالِ ۖ قُلِ ٱلْأَنفَالُ لِلَّهِ وَٱلرَّسُولِ ۖ فَٱتَّقُوا۟ ٱللَّهَ وَأَصْلِحُوا۟ ذَاتَ بَيْنِكُمْ ۖ وَأَطِيعُوا۟ ٱللَّهَ وَرَسُولَهُۥٓ إِن كُنتُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,8,' إِنَّمَا ٱلْمُؤْمِنُونَ ٱلَّذِينَ إِذَا ذُكِرَ ٱللَّهُ وَجِلَتْ قُلُوبُهُمْ وَإِذَا تُلِيَتْ عَلَيْهِمْ ءَايَتُهُۥ زَادَتْهُمْ إِيمَنًۭا وَعَلَىٰ رَبِّهِمْ يَتَوَكَّلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,8,' ٱلَّذِينَ يُقِيمُونَ ٱلصَّلَوٰةَ وَمِمَّا رَزَقْنَهُمْ يُنفِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,8,' أُو۟لَٓئِكَ هُمُ ٱلْمُؤْمِنُونَ حَقًّۭا ۚ لَّهُمْ دَرَجَتٌ عِندَ رَبِّهِمْ وَمَغْفِرَةٌۭ وَرِزْقٌۭ كَرِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,8,' كَمَآ أَخْرَجَكَ رَبُّكَ مِنۢ بَيْتِكَ بِٱلْحَقِّ وَإِنَّ فَرِيقًۭا مِّنَ ٱلْمُؤْمِنِينَ لَكَرِهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,8,' يُجَدِلُونَكَ فِى ٱلْحَقِّ بَعْدَ مَا تَبَيَّنَ كَأَنَّمَا يُسَاقُونَ إِلَى ٱلْمَوْتِ وَهُمْ يَنظُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,8,' وَإِذْ يَعِدُكُمُ ٱللَّهُ إِحْدَى ٱلطَّآئِفَتَيْنِ أَنَّهَا لَكُمْ وَتَوَدُّونَ أَنَّ غَيْرَ ذَاتِ ٱلشَّوْكَةِ تَكُونُ لَكُمْ وَيُرِيدُ ٱللَّهُ أَن يُحِقَّ ٱلْحَقَّ بِكَلِمَتِهِۦ وَيَقْطَعَ دَابِرَ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,8,' لِيُحِقَّ ٱلْحَقَّ وَيُبْطِلَ ٱلْبَطِلَ وَلَوْ كَرِهَ ٱلْمُجْرِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,8,' إِذْ تَسْتَغِيثُونَ رَبَّكُمْ فَٱسْتَجَابَ لَكُمْ أَنِّى مُمِدُّكُم بِأَلْفٍۢ مِّنَ ٱلْمَلَٓئِكَةِ مُرْدِفِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,8,' وَمَا جَعَلَهُ ٱللَّهُ إِلَّا بُشْرَىٰ وَلِتَطْمَىِٕنَّ بِهِۦ قُلُوبُكُمْ ۚ وَمَا ٱلنَّصْرُ إِلَّا مِنْ عِندِ ٱللَّهِ ۚ إِنَّ ٱللَّهَ عَزِيزٌ حَكِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,8,' إِذْ يُغَشِّيكُمُ ٱلنُّعَاسَ أَمَنَةًۭ مِّنْهُ وَيُنَزِّلُ عَلَيْكُم مِّنَ ٱلسَّمَآءِ مَآءًۭ لِّيُطَهِّرَكُم بِهِۦ وَيُذْهِبَ عَنكُمْ رِجْزَ ٱلشَّيْطَنِ وَلِيَرْبِطَ عَلَىٰ قُلُوبِكُمْ وَيُثَبِّتَ بِهِ ٱلْأَقْدَامَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,8,' إِذْ يُوحِى رَبُّكَ إِلَى ٱلْمَلَٓئِكَةِ أَنِّى مَعَكُمْ فَثَبِّتُوا۟ ٱلَّذِينَ ءَامَنُوا۟ ۚ سَأُلْقِى فِى قُلُوبِ ٱلَّذِينَ كَفَرُوا۟ ٱلرُّعْبَ فَٱضْرِبُوا۟ فَوْقَ ٱلْأَعْنَاقِ وَٱضْرِبُوا۟ مِنْهُمْ كُلَّ بَنَانٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,8,' ذَلِكَ بِأَنَّهُمْ شَآقُّوا۟ ٱللَّهَ وَرَسُولَهُۥ ۚ وَمَن يُشَاقِقِ ٱللَّهَ وَرَسُولَهُۥ فَإِنَّ ٱللَّهَ شَدِيدُ ٱلْعِقَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,8,' ذَلِكُمْ فَذُوقُوهُ وَأَنَّ لِلْكَفِرِينَ عَذَابَ ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,8,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِذَا لَقِيتُمُ ٱلَّذِينَ كَفَرُوا۟ زَحْفًۭا فَلَا تُوَلُّوهُمُ ٱلْأَدْبَارَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,8,' وَمَن يُوَلِّهِمْ يَوْمَئِذٍۢ دُبُرَهُۥٓ إِلَّا مُتَحَرِّفًۭا لِّقِتَالٍ أَوْ مُتَحَيِّزًا إِلَىٰ فِئَةٍۢ فَقَدْ بَآءَ بِغَضَبٍۢ مِّنَ ٱللَّهِ وَمَأْوَىٰهُ جَهَنَّمُ ۖ وَبِئْسَ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,8,' فَلَمْ تَقْتُلُوهُمْ وَلَكِنَّ ٱللَّهَ قَتَلَهُمْ ۚ وَمَا رَمَيْتَ إِذْ رَمَيْتَ وَلَكِنَّ ٱللَّهَ رَمَىٰ ۚ وَلِيُبْلِىَ ٱلْمُؤْمِنِينَ مِنْهُ بَلَآءً حَسَنًا ۚ إِنَّ ٱللَّهَ سَمِيعٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,8,' ذَلِكُمْ وَأَنَّ ٱللَّهَ مُوهِنُ كَيْدِ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,8,' إِن تَسْتَفْتِحُوا۟ فَقَدْ جَآءَكُمُ ٱلْفَتْحُ ۖ وَإِن تَنتَهُوا۟ فَهُوَ خَيْرٌۭ لَّكُمْ ۖ وَإِن تَعُودُوا۟ نَعُدْ وَلَن تُغْنِىَ عَنكُمْ فِئَتُكُمْ شَيْـًۭٔا وَلَوْ كَثُرَتْ وَأَنَّ ٱللَّهَ مَعَ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,8,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ أَطِيعُوا۟ ٱللَّهَ وَرَسُولَهُۥ وَلَا تَوَلَّوْا۟ عَنْهُ وَأَنتُمْ تَسْمَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,8,' وَلَا تَكُونُوا۟ كَٱلَّذِينَ قَالُوا۟ سَمِعْنَا وَهُمْ لَا يَسْمَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,8,' إِنَّ شَرَّ ٱلدَّوَآبِّ عِندَ ٱللَّهِ ٱلصُّمُّ ٱلْبُكْمُ ٱلَّذِينَ لَا يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,8,' وَلَوْ عَلِمَ ٱللَّهُ فِيهِمْ خَيْرًۭا لَّأَسْمَعَهُمْ ۖ وَلَوْ أَسْمَعَهُمْ لَتَوَلَّوا۟ وَّهُم مُّعْرِضُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,8,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ ٱسْتَجِيبُوا۟ لِلَّهِ وَلِلرَّسُولِ إِذَا دَعَاكُمْ لِمَا يُحْيِيكُمْ ۖ وَٱعْلَمُوٓا۟ أَنَّ ٱللَّهَ يَحُولُ بَيْنَ ٱلْمَرْءِ وَقَلْبِهِۦ وَأَنَّهُۥٓ إِلَيْهِ تُحْشَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,8,' وَٱتَّقُوا۟ فِتْنَةًۭ لَّا تُصِيبَنَّ ٱلَّذِينَ ظَلَمُوا۟ مِنكُمْ خَآصَّةًۭ ۖ وَٱعْلَمُوٓا۟ أَنَّ ٱللَّهَ شَدِيدُ ٱلْعِقَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,8,' وَٱذْكُرُوٓا۟ إِذْ أَنتُمْ قَلِيلٌۭ مُّسْتَضْعَفُونَ فِى ٱلْأَرْضِ تَخَافُونَ أَن يَتَخَطَّفَكُمُ ٱلنَّاسُ فَـَٔاوَىٰكُمْ وَأَيَّدَكُم بِنَصْرِهِۦ وَرَزَقَكُم مِّنَ ٱلطَّيِّبَتِ لَعَلَّكُمْ تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,8,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَخُونُوا۟ ٱللَّهَ وَٱلرَّسُولَ وَتَخُونُوٓا۟ أَمَنَتِكُمْ وَأَنتُمْ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,8,' وَٱعْلَمُوٓا۟ أَنَّمَآ أَمْوَلُكُمْ وَأَوْلَدُكُمْ فِتْنَةٌۭ وَأَنَّ ٱللَّهَ عِندَهُۥٓ أَجْرٌ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,8,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِن تَتَّقُوا۟ ٱللَّهَ يَجْعَل لَّكُمْ فُرْقَانًۭا وَيُكَفِّرْ عَنكُمْ سَيِّـَٔاتِكُمْ وَيَغْفِرْ لَكُمْ ۗ وَٱللَّهُ ذُو ٱلْفَضْلِ ٱلْعَظِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,8,' وَإِذْ يَمْكُرُ بِكَ ٱلَّذِينَ كَفَرُوا۟ لِيُثْبِتُوكَ أَوْ يَقْتُلُوكَ أَوْ يُخْرِجُوكَ ۚ وَيَمْكُرُونَ وَيَمْكُرُ ٱللَّهُ ۖ وَٱللَّهُ خَيْرُ ٱلْمَكِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,8,' وَإِذَا تُتْلَىٰ عَلَيْهِمْ ءَايَتُنَا قَالُوا۟ قَدْ سَمِعْنَا لَوْ نَشَآءُ لَقُلْنَا مِثْلَ هَذَآ ۙ إِنْ هَذَآ إِلَّآ أَسَطِيرُ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,8,' وَإِذْ قَالُوا۟ ٱللَّهُمَّ إِن كَانَ هَذَا هُوَ ٱلْحَقَّ مِنْ عِندِكَ فَأَمْطِرْ عَلَيْنَا حِجَارَةًۭ مِّنَ ٱلسَّمَآءِ أَوِ ٱئْتِنَا بِعَذَابٍ أَلِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,8,' وَمَا كَانَ ٱللَّهُ لِيُعَذِّبَهُمْ وَأَنتَ فِيهِمْ ۚ وَمَا كَانَ ٱللَّهُ مُعَذِّبَهُمْ وَهُمْ يَسْتَغْفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,8,' وَمَا لَهُمْ أَلَّا يُعَذِّبَهُمُ ٱللَّهُ وَهُمْ يَصُدُّونَ عَنِ ٱلْمَسْجِدِ ٱلْحَرَامِ وَمَا كَانُوٓا۟ أَوْلِيَآءَهُۥٓ ۚ إِنْ أَوْلِيَآؤُهُۥٓ إِلَّا ٱلْمُتَّقُونَ وَلَكِنَّ أَكْثَرَهُمْ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,8,' وَمَا كَانَ صَلَاتُهُمْ عِندَ ٱلْبَيْتِ إِلَّا مُكَآءًۭ وَتَصْدِيَةًۭ ۚ فَذُوقُوا۟ ٱلْعَذَابَ بِمَا كُنتُمْ تَكْفُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,8,' إِنَّ ٱلَّذِينَ كَفَرُوا۟ يُنفِقُونَ أَمْوَلَهُمْ لِيَصُدُّوا۟ عَن سَبِيلِ ٱللَّهِ ۚ فَسَيُنفِقُونَهَا ثُمَّ تَكُونُ عَلَيْهِمْ حَسْرَةًۭ ثُمَّ يُغْلَبُونَ ۗ وَٱلَّذِينَ كَفَرُوٓا۟ إِلَىٰ جَهَنَّمَ يُحْشَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,8,' لِيَمِيزَ ٱللَّهُ ٱلْخَبِيثَ مِنَ ٱلطَّيِّبِ وَيَجْعَلَ ٱلْخَبِيثَ بَعْضَهُۥ عَلَىٰ بَعْضٍۢ فَيَرْكُمَهُۥ جَمِيعًۭا فَيَجْعَلَهُۥ فِى جَهَنَّمَ ۚ أُو۟لَٓئِكَ هُمُ ٱلْخَسِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,8,' قُل لِّلَّذِينَ كَفَرُوٓا۟ إِن يَنتَهُوا۟ يُغْفَرْ لَهُم مَّا قَدْ سَلَفَ وَإِن يَعُودُوا۟ فَقَدْ مَضَتْ سُنَّتُ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,8,' وَقَتِلُوهُمْ حَتَّىٰ لَا تَكُونَ فِتْنَةٌۭ وَيَكُونَ ٱلدِّينُ كُلُّهُۥ لِلَّهِ ۚ فَإِنِ ٱنتَهَوْا۟ فَإِنَّ ٱللَّهَ بِمَا يَعْمَلُونَ بَصِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,8,' وَإِن تَوَلَّوْا۟ فَٱعْلَمُوٓا۟ أَنَّ ٱللَّهَ مَوْلَىٰكُمْ ۚ نِعْمَ ٱلْمَوْلَىٰ وَنِعْمَ ٱلنَّصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,8,' وَٱعْلَمُوٓا۟ أَنَّمَا غَنِمْتُم مِّن شَىْءٍۢ فَأَنَّ لِلَّهِ خُمُسَهُۥ وَلِلرَّسُولِ وَلِذِى ٱلْقُرْبَىٰ وَٱلْيَتَمَىٰ وَٱلْمَسَكِينِ وَٱبْنِ ٱلسَّبِيلِ إِن كُنتُمْ ءَامَنتُم بِٱللَّهِ وَمَآ أَنزَلْنَا عَلَىٰ عَبْدِنَا يَوْمَ ٱلْفُرْقَانِ يَوْمَ ٱلْتَقَى ٱلْجَمْعَانِ ۗ وَٱللَّهُ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,8,' إِذْ أَنتُم بِٱلْعُدْوَةِ ٱلدُّنْيَا وَهُم بِٱلْعُدْوَةِ ٱلْقُصْوَىٰ وَٱلرَّكْبُ أَسْفَلَ مِنكُمْ ۚ وَلَوْ تَوَاعَدتُّمْ لَٱخْتَلَفْتُمْ فِى ٱلْمِيعَدِ ۙ وَلَكِن لِّيَقْضِىَ ٱللَّهُ أَمْرًۭا كَانَ مَفْعُولًۭا لِّيَهْلِكَ مَنْ هَلَكَ عَنۢ بَيِّنَةٍۢ وَيَحْيَىٰ مَنْ حَىَّ عَنۢ بَيِّنَةٍۢ ۗ وَإِنَّ ٱللَّهَ لَسَمِيعٌ عَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,8,' إِذْ يُرِيكَهُمُ ٱللَّهُ فِى مَنَامِكَ قَلِيلًۭا ۖ وَلَوْ أَرَىٰكَهُمْ كَثِيرًۭا لَّفَشِلْتُمْ وَلَتَنَزَعْتُمْ فِى ٱلْأَمْرِ وَلَكِنَّ ٱللَّهَ سَلَّمَ ۗ إِنَّهُۥ عَلِيمٌۢ بِذَاتِ ٱلصُّدُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,8,' وَإِذْ يُرِيكُمُوهُمْ إِذِ ٱلْتَقَيْتُمْ فِىٓ أَعْيُنِكُمْ قَلِيلًۭا وَيُقَلِّلُكُمْ فِىٓ أَعْيُنِهِمْ لِيَقْضِىَ ٱللَّهُ أَمْرًۭا كَانَ مَفْعُولًۭا ۗ وَإِلَى ٱللَّهِ تُرْجَعُ ٱلْأُمُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,8,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِذَا لَقِيتُمْ فِئَةًۭ فَٱثْبُتُوا۟ وَٱذْكُرُوا۟ ٱللَّهَ كَثِيرًۭا لَّعَلَّكُمْ تُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,8,' وَأَطِيعُوا۟ ٱللَّهَ وَرَسُولَهُۥ وَلَا تَنَزَعُوا۟ فَتَفْشَلُوا۟ وَتَذْهَبَ رِيحُكُمْ ۖ وَٱصْبِرُوٓا۟ ۚ إِنَّ ٱللَّهَ مَعَ ٱلصَّبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,8,' وَلَا تَكُونُوا۟ كَٱلَّذِينَ خَرَجُوا۟ مِن دِيَرِهِم بَطَرًۭا وَرِئَآءَ ٱلنَّاسِ وَيَصُدُّونَ عَن سَبِيلِ ٱللَّهِ ۚ وَٱللَّهُ بِمَا يَعْمَلُونَ مُحِيطٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,8,' وَإِذْ زَيَّنَ لَهُمُ ٱلشَّيْطَنُ أَعْمَلَهُمْ وَقَالَ لَا غَالِبَ لَكُمُ ٱلْيَوْمَ مِنَ ٱلنَّاسِ وَإِنِّى جَارٌۭ لَّكُمْ ۖ فَلَمَّا تَرَآءَتِ ٱلْفِئَتَانِ نَكَصَ عَلَىٰ عَقِبَيْهِ وَقَالَ إِنِّى بَرِىٓءٌۭ مِّنكُمْ إِنِّىٓ أَرَىٰ مَا لَا تَرَوْنَ إِنِّىٓ أَخَافُ ٱللَّهَ ۚ وَٱللَّهُ شَدِيدُ ٱلْعِقَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,8,' إِذْ يَقُولُ ٱلْمُنَفِقُونَ وَٱلَّذِينَ فِى قُلُوبِهِم مَّرَضٌ غَرَّ هَٓؤُلَآءِ دِينُهُمْ ۗ وَمَن يَتَوَكَّلْ عَلَى ٱللَّهِ فَإِنَّ ٱللَّهَ عَزِيزٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,8,' وَلَوْ تَرَىٰٓ إِذْ يَتَوَفَّى ٱلَّذِينَ كَفَرُوا۟ ۙ ٱلْمَلَٓئِكَةُ يَضْرِبُونَ وُجُوهَهُمْ وَأَدْبَرَهُمْ وَذُوقُوا۟ عَذَابَ ٱلْحَرِيقِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,8,' ذَلِكَ بِمَا قَدَّمَتْ أَيْدِيكُمْ وَأَنَّ ٱللَّهَ لَيْسَ بِظَلَّمٍۢ لِّلْعَبِيدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,8,' كَدَأْبِ ءَالِ فِرْعَوْنَ ۙ وَٱلَّذِينَ مِن قَبْلِهِمْ ۚ كَفَرُوا۟ بِـَٔايَتِ ٱللَّهِ فَأَخَذَهُمُ ٱللَّهُ بِذُنُوبِهِمْ ۗ إِنَّ ٱللَّهَ قَوِىٌّۭ شَدِيدُ ٱلْعِقَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,8,' ذَلِكَ بِأَنَّ ٱللَّهَ لَمْ يَكُ مُغَيِّرًۭا نِّعْمَةً أَنْعَمَهَا عَلَىٰ قَوْمٍ حَتَّىٰ يُغَيِّرُوا۟ مَا بِأَنفُسِهِمْ ۙ وَأَنَّ ٱللَّهَ سَمِيعٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,8,' كَدَأْبِ ءَالِ فِرْعَوْنَ ۙ وَٱلَّذِينَ مِن قَبْلِهِمْ ۚ كَذَّبُوا۟ بِـَٔايَتِ رَبِّهِمْ فَأَهْلَكْنَهُم بِذُنُوبِهِمْ وَأَغْرَقْنَآ ءَالَ فِرْعَوْنَ ۚ وَكُلٌّۭ كَانُوا۟ ظَلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,8,' إِنَّ شَرَّ ٱلدَّوَآبِّ عِندَ ٱللَّهِ ٱلَّذِينَ كَفَرُوا۟ فَهُمْ لَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,8,' ٱلَّذِينَ عَهَدتَّ مِنْهُمْ ثُمَّ يَنقُضُونَ عَهْدَهُمْ فِى كُلِّ مَرَّةٍۢ وَهُمْ لَا يَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,8,' فَإِمَّا تَثْقَفَنَّهُمْ فِى ٱلْحَرْبِ فَشَرِّدْ بِهِم مَّنْ خَلْفَهُمْ لَعَلَّهُمْ يَذَّكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,8,' وَإِمَّا تَخَافَنَّ مِن قَوْمٍ خِيَانَةًۭ فَٱنۢبِذْ إِلَيْهِمْ عَلَىٰ سَوَآءٍ ۚ إِنَّ ٱللَّهَ لَا يُحِبُّ ٱلْخَآئِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,8,' وَلَا يَحْسَبَنَّ ٱلَّذِينَ كَفَرُوا۟ سَبَقُوٓا۟ ۚ إِنَّهُمْ لَا يُعْجِزُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,8,' وَأَعِدُّوا۟ لَهُم مَّا ٱسْتَطَعْتُم مِّن قُوَّةٍۢ وَمِن رِّبَاطِ ٱلْخَيْلِ تُرْهِبُونَ بِهِۦ عَدُوَّ ٱللَّهِ وَعَدُوَّكُمْ وَءَاخَرِينَ مِن دُونِهِمْ لَا تَعْلَمُونَهُمُ ٱللَّهُ يَعْلَمُهُمْ ۚ وَمَا تُنفِقُوا۟ مِن شَىْءٍۢ فِى سَبِيلِ ٱللَّهِ يُوَفَّ إِلَيْكُمْ وَأَنتُمْ لَا تُظْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,8,' وَإِن جَنَحُوا۟ لِلسَّلْمِ فَٱجْنَحْ لَهَا وَتَوَكَّلْ عَلَى ٱللَّهِ ۚ إِنَّهُۥ هُوَ ٱلسَّمِيعُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,8,' وَإِن يُرِيدُوٓا۟ أَن يَخْدَعُوكَ فَإِنَّ حَسْبَكَ ٱللَّهُ ۚ هُوَ ٱلَّذِىٓ أَيَّدَكَ بِنَصْرِهِۦ وَبِٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,8,' وَأَلَّفَ بَيْنَ قُلُوبِهِمْ ۚ لَوْ أَنفَقْتَ مَا فِى ٱلْأَرْضِ جَمِيعًۭا مَّآ أَلَّفْتَ بَيْنَ قُلُوبِهِمْ وَلَكِنَّ ٱللَّهَ أَلَّفَ بَيْنَهُمْ ۚ إِنَّهُۥ عَزِيزٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,8,' يَٓأَيُّهَا ٱلنَّبِىُّ حَسْبُكَ ٱللَّهُ وَمَنِ ٱتَّبَعَكَ مِنَ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,8,' يَٓأَيُّهَا ٱلنَّبِىُّ حَرِّضِ ٱلْمُؤْمِنِينَ عَلَى ٱلْقِتَالِ ۚ إِن يَكُن مِّنكُمْ عِشْرُونَ صَبِرُونَ يَغْلِبُوا۟ مِا۟ئَتَيْنِ ۚ وَإِن يَكُن مِّنكُم مِّا۟ئَةٌۭ يَغْلِبُوٓا۟ أَلْفًۭا مِّنَ ٱلَّذِينَ كَفَرُوا۟ بِأَنَّهُمْ قَوْمٌۭ لَّا يَفْقَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,8,' ٱلْـَٔنَ خَفَّفَ ٱللَّهُ عَنكُمْ وَعَلِمَ أَنَّ فِيكُمْ ضَعْفًۭا ۚ فَإِن يَكُن مِّنكُم مِّا۟ئَةٌۭ صَابِرَةٌۭ يَغْلِبُوا۟ مِا۟ئَتَيْنِ ۚ وَإِن يَكُن مِّنكُمْ أَلْفٌۭ يَغْلِبُوٓا۟ أَلْفَيْنِ بِإِذْنِ ٱللَّهِ ۗ وَٱللَّهُ مَعَ ٱلصَّبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,8,' مَا كَانَ لِنَبِىٍّ أَن يَكُونَ لَهُۥٓ أَسْرَىٰ حَتَّىٰ يُثْخِنَ فِى ٱلْأَرْضِ ۚ تُرِيدُونَ عَرَضَ ٱلدُّنْيَا وَٱللَّهُ يُرِيدُ ٱلْءَاخِرَةَ ۗ وَٱللَّهُ عَزِيزٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,8,' لَّوْلَا كِتَبٌۭ مِّنَ ٱللَّهِ سَبَقَ لَمَسَّكُمْ فِيمَآ أَخَذْتُمْ عَذَابٌ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,8,' فَكُلُوا۟ مِمَّا غَنِمْتُمْ حَلَلًۭا طَيِّبًۭا ۚ وَٱتَّقُوا۟ ٱللَّهَ ۚ إِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,8,' يَٓأَيُّهَا ٱلنَّبِىُّ قُل لِّمَن فِىٓ أَيْدِيكُم مِّنَ ٱلْأَسْرَىٰٓ إِن يَعْلَمِ ٱللَّهُ فِى قُلُوبِكُمْ خَيْرًۭا يُؤْتِكُمْ خَيْرًۭا مِّمَّآ أُخِذَ مِنكُمْ وَيَغْفِرْ لَكُمْ ۗ وَٱللَّهُ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,8,' وَإِن يُرِيدُوا۟ خِيَانَتَكَ فَقَدْ خَانُوا۟ ٱللَّهَ مِن قَبْلُ فَأَمْكَنَ مِنْهُمْ ۗ وَٱللَّهُ عَلِيمٌ حَكِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,8,' إِنَّ ٱلَّذِينَ ءَامَنُوا۟ وَهَاجَرُوا۟ وَجَهَدُوا۟ بِأَمْوَلِهِمْ وَأَنفُسِهِمْ فِى سَبِيلِ ٱللَّهِ وَٱلَّذِينَ ءَاوَوا۟ وَّنَصَرُوٓا۟ أُو۟لَٓئِكَ بَعْضُهُمْ أَوْلِيَآءُ بَعْضٍۢ ۚ وَٱلَّذِينَ ءَامَنُوا۟ وَلَمْ يُهَاجِرُوا۟ مَا لَكُم مِّن وَلَيَتِهِم مِّن شَىْءٍ حَتَّىٰ يُهَاجِرُوا۟ ۚ وَإِنِ ٱسْتَنصَرُوكُمْ فِى ٱلدِّينِ فَعَلَيْكُمُ ٱلنَّصْرُ إِلَّا عَلَىٰ قَوْمٍۭ بَيْنَكُمْ وَبَيْنَهُم مِّيثَقٌۭ ۗ وَٱللَّهُ بِمَا تَعْمَلُونَ بَصِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,8,' وَٱلَّذِينَ كَفَرُوا۟ بَعْضُهُمْ أَوْلِيَآءُ بَعْضٍ ۚ إِلَّا تَفْعَلُوهُ تَكُن فِتْنَةٌۭ فِى ٱلْأَرْضِ وَفَسَادٌۭ كَبِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,8,' وَٱلَّذِينَ ءَامَنُوا۟ وَهَاجَرُوا۟ وَجَهَدُوا۟ فِى سَبِيلِ ٱللَّهِ وَٱلَّذِينَ ءَاوَوا۟ وَّنَصَرُوٓا۟ أُو۟لَٓئِكَ هُمُ ٱلْمُؤْمِنُونَ حَقًّۭا ۚ لَّهُم مَّغْفِرَةٌۭ وَرِزْقٌۭ كَرِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,8,' وَٱلَّذِينَ ءَامَنُوا۟ مِنۢ بَعْدُ وَهَاجَرُوا۟ وَجَهَدُوا۟ مَعَكُمْ فَأُو۟لَٓئِكَ مِنكُمْ ۚ وَأُو۟لُوا۟ ٱلْأَرْحَامِ بَعْضُهُمْ أَوْلَىٰ بِبَعْضٍۢ فِى كِتَبِ ٱللَّهِ ۗ إِنَّ ٱللَّهَ بِكُلِّ شَىْءٍ عَلِيمٌۢ');
+INSERT INTO chapters (id, number, quran_id) VALUES(9,9,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,9,' بَرَآءَةٌۭ مِّنَ ٱللَّهِ وَرَسُولِهِۦٓ إِلَى ٱلَّذِينَ عَهَدتُّم مِّنَ ٱلْمُشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,9,' فَسِيحُوا۟ فِى ٱلْأَرْضِ أَرْبَعَةَ أَشْهُرٍۢ وَٱعْلَمُوٓا۟ أَنَّكُمْ غَيْرُ مُعْجِزِى ٱللَّهِ ۙ وَأَنَّ ٱللَّهَ مُخْزِى ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,9,' وَأَذَنٌۭ مِّنَ ٱللَّهِ وَرَسُولِهِۦٓ إِلَى ٱلنَّاسِ يَوْمَ ٱلْحَجِّ ٱلْأَكْبَرِ أَنَّ ٱللَّهَ بَرِىٓءٌۭ مِّنَ ٱلْمُشْرِكِينَ ۙ وَرَسُولُهُۥ ۚ فَإِن تُبْتُمْ فَهُوَ خَيْرٌۭ لَّكُمْ ۖ وَإِن تَوَلَّيْتُمْ فَٱعْلَمُوٓا۟ أَنَّكُمْ غَيْرُ مُعْجِزِى ٱللَّهِ ۗ وَبَشِّرِ ٱلَّذِينَ كَفَرُوا۟ بِعَذَابٍ أَلِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,9,' إِلَّا ٱلَّذِينَ عَهَدتُّم مِّنَ ٱلْمُشْرِكِينَ ثُمَّ لَمْ يَنقُصُوكُمْ شَيْـًۭٔا وَلَمْ يُظَهِرُوا۟ عَلَيْكُمْ أَحَدًۭا فَأَتِمُّوٓا۟ إِلَيْهِمْ عَهْدَهُمْ إِلَىٰ مُدَّتِهِمْ ۚ إِنَّ ٱللَّهَ يُحِبُّ ٱلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,9,' فَإِذَا ٱنسَلَخَ ٱلْأَشْهُرُ ٱلْحُرُمُ فَٱقْتُلُوا۟ ٱلْمُشْرِكِينَ حَيْثُ وَجَدتُّمُوهُمْ وَخُذُوهُمْ وَٱحْصُرُوهُمْ وَٱقْعُدُوا۟ لَهُمْ كُلَّ مَرْصَدٍۢ ۚ فَإِن تَابُوا۟ وَأَقَامُوا۟ ٱلصَّلَوٰةَ وَءَاتَوُا۟ ٱلزَّكَوٰةَ فَخَلُّوا۟ سَبِيلَهُمْ ۚ إِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,9,' وَإِنْ أَحَدٌۭ مِّنَ ٱلْمُشْرِكِينَ ٱسْتَجَارَكَ فَأَجِرْهُ حَتَّىٰ يَسْمَعَ كَلَمَ ٱللَّهِ ثُمَّ أَبْلِغْهُ مَأْمَنَهُۥ ۚ ذَلِكَ بِأَنَّهُمْ قَوْمٌۭ لَّا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,9,' كَيْفَ يَكُونُ لِلْمُشْرِكِينَ عَهْدٌ عِندَ ٱللَّهِ وَعِندَ رَسُولِهِۦٓ إِلَّا ٱلَّذِينَ عَهَدتُّمْ عِندَ ٱلْمَسْجِدِ ٱلْحَرَامِ ۖ فَمَا ٱسْتَقَمُوا۟ لَكُمْ فَٱسْتَقِيمُوا۟ لَهُمْ ۚ إِنَّ ٱللَّهَ يُحِبُّ ٱلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,9,' كَيْفَ وَإِن يَظْهَرُوا۟ عَلَيْكُمْ لَا يَرْقُبُوا۟ فِيكُمْ إِلًّۭا وَلَا ذِمَّةًۭ ۚ يُرْضُونَكُم بِأَفْوَهِهِمْ وَتَأْبَىٰ قُلُوبُهُمْ وَأَكْثَرُهُمْ فَسِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,9,' ٱشْتَرَوْا۟ بِـَٔايَتِ ٱللَّهِ ثَمَنًۭا قَلِيلًۭا فَصَدُّوا۟ عَن سَبِيلِهِۦٓ ۚ إِنَّهُمْ سَآءَ مَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,9,' لَا يَرْقُبُونَ فِى مُؤْمِنٍ إِلًّۭا وَلَا ذِمَّةًۭ ۚ وَأُو۟لَٓئِكَ هُمُ ٱلْمُعْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,9,' فَإِن تَابُوا۟ وَأَقَامُوا۟ ٱلصَّلَوٰةَ وَءَاتَوُا۟ ٱلزَّكَوٰةَ فَإِخْوَنُكُمْ فِى ٱلدِّينِ ۗ وَنُفَصِّلُ ٱلْءَايَتِ لِقَوْمٍۢ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,9,' وَإِن نَّكَثُوٓا۟ أَيْمَنَهُم مِّنۢ بَعْدِ عَهْدِهِمْ وَطَعَنُوا۟ فِى دِينِكُمْ فَقَتِلُوٓا۟ أَئِمَّةَ ٱلْكُفْرِ ۙ إِنَّهُمْ لَآ أَيْمَنَ لَهُمْ لَعَلَّهُمْ يَنتَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,9,' أَلَا تُقَتِلُونَ قَوْمًۭا نَّكَثُوٓا۟ أَيْمَنَهُمْ وَهَمُّوا۟ بِإِخْرَاجِ ٱلرَّسُولِ وَهُم بَدَءُوكُمْ أَوَّلَ مَرَّةٍ ۚ أَتَخْشَوْنَهُمْ ۚ فَٱللَّهُ أَحَقُّ أَن تَخْشَوْهُ إِن كُنتُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,9,' قَتِلُوهُمْ يُعَذِّبْهُمُ ٱللَّهُ بِأَيْدِيكُمْ وَيُخْزِهِمْ وَيَنصُرْكُمْ عَلَيْهِمْ وَيَشْفِ صُدُورَ قَوْمٍۢ مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,9,' وَيُذْهِبْ غَيْظَ قُلُوبِهِمْ ۗ وَيَتُوبُ ٱللَّهُ عَلَىٰ مَن يَشَآءُ ۗ وَٱللَّهُ عَلِيمٌ حَكِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,9,' أَمْ حَسِبْتُمْ أَن تُتْرَكُوا۟ وَلَمَّا يَعْلَمِ ٱللَّهُ ٱلَّذِينَ جَهَدُوا۟ مِنكُمْ وَلَمْ يَتَّخِذُوا۟ مِن دُونِ ٱللَّهِ وَلَا رَسُولِهِۦ وَلَا ٱلْمُؤْمِنِينَ وَلِيجَةًۭ ۚ وَٱللَّهُ خَبِيرٌۢ بِمَا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,9,' مَا كَانَ لِلْمُشْرِكِينَ أَن يَعْمُرُوا۟ مَسَجِدَ ٱللَّهِ شَهِدِينَ عَلَىٰٓ أَنفُسِهِم بِٱلْكُفْرِ ۚ أُو۟لَٓئِكَ حَبِطَتْ أَعْمَلُهُمْ وَفِى ٱلنَّارِ هُمْ خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,9,' إِنَّمَا يَعْمُرُ مَسَجِدَ ٱللَّهِ مَنْ ءَامَنَ بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ وَأَقَامَ ٱلصَّلَوٰةَ وَءَاتَى ٱلزَّكَوٰةَ وَلَمْ يَخْشَ إِلَّا ٱللَّهَ ۖ فَعَسَىٰٓ أُو۟لَٓئِكَ أَن يَكُونُوا۟ مِنَ ٱلْمُهْتَدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,9,' أَجَعَلْتُمْ سِقَايَةَ ٱلْحَآجِّ وَعِمَارَةَ ٱلْمَسْجِدِ ٱلْحَرَامِ كَمَنْ ءَامَنَ بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ وَجَهَدَ فِى سَبِيلِ ٱللَّهِ ۚ لَا يَسْتَوُۥنَ عِندَ ٱللَّهِ ۗ وَٱللَّهُ لَا يَهْدِى ٱلْقَوْمَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,9,' ٱلَّذِينَ ءَامَنُوا۟ وَهَاجَرُوا۟ وَجَهَدُوا۟ فِى سَبِيلِ ٱللَّهِ بِأَمْوَلِهِمْ وَأَنفُسِهِمْ أَعْظَمُ دَرَجَةً عِندَ ٱللَّهِ ۚ وَأُو۟لَٓئِكَ هُمُ ٱلْفَآئِزُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,9,' يُبَشِّرُهُمْ رَبُّهُم بِرَحْمَةٍۢ مِّنْهُ وَرِضْوَنٍۢ وَجَنَّتٍۢ لَّهُمْ فِيهَا نَعِيمٌۭ مُّقِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,9,' خَلِدِينَ فِيهَآ أَبَدًا ۚ إِنَّ ٱللَّهَ عِندَهُۥٓ أَجْرٌ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,9,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَتَّخِذُوٓا۟ ءَابَآءَكُمْ وَإِخْوَنَكُمْ أَوْلِيَآءَ إِنِ ٱسْتَحَبُّوا۟ ٱلْكُفْرَ عَلَى ٱلْإِيمَنِ ۚ وَمَن يَتَوَلَّهُم مِّنكُمْ فَأُو۟لَٓئِكَ هُمُ ٱلظَّلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,9,' قُلْ إِن كَانَ ءَابَآؤُكُمْ وَأَبْنَآؤُكُمْ وَإِخْوَنُكُمْ وَأَزْوَجُكُمْ وَعَشِيرَتُكُمْ وَأَمْوَلٌ ٱقْتَرَفْتُمُوهَا وَتِجَرَةٌۭ تَخْشَوْنَ كَسَادَهَا وَمَسَكِنُ تَرْضَوْنَهَآ أَحَبَّ إِلَيْكُم مِّنَ ٱللَّهِ وَرَسُولِهِۦ وَجِهَادٍۢ فِى سَبِيلِهِۦ فَتَرَبَّصُوا۟ حَتَّىٰ يَأْتِىَ ٱللَّهُ بِأَمْرِهِۦ ۗ وَٱللَّهُ لَا يَهْدِى ٱلْقَوْمَ ٱلْفَسِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,9,' لَقَدْ نَصَرَكُمُ ٱللَّهُ فِى مَوَاطِنَ كَثِيرَةٍۢ ۙ وَيَوْمَ حُنَيْنٍ ۙ إِذْ أَعْجَبَتْكُمْ كَثْرَتُكُمْ فَلَمْ تُغْنِ عَنكُمْ شَيْـًۭٔا وَضَاقَتْ عَلَيْكُمُ ٱلْأَرْضُ بِمَا رَحُبَتْ ثُمَّ وَلَّيْتُم مُّدْبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,9,' ثُمَّ أَنزَلَ ٱللَّهُ سَكِينَتَهُۥ عَلَىٰ رَسُولِهِۦ وَعَلَى ٱلْمُؤْمِنِينَ وَأَنزَلَ جُنُودًۭا لَّمْ تَرَوْهَا وَعَذَّبَ ٱلَّذِينَ كَفَرُوا۟ ۚ وَذَلِكَ جَزَآءُ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,9,' ثُمَّ يَتُوبُ ٱللَّهُ مِنۢ بَعْدِ ذَلِكَ عَلَىٰ مَن يَشَآءُ ۗ وَٱللَّهُ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,9,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِنَّمَا ٱلْمُشْرِكُونَ نَجَسٌۭ فَلَا يَقْرَبُوا۟ ٱلْمَسْجِدَ ٱلْحَرَامَ بَعْدَ عَامِهِمْ هَذَا ۚ وَإِنْ خِفْتُمْ عَيْلَةًۭ فَسَوْفَ يُغْنِيكُمُ ٱللَّهُ مِن فَضْلِهِۦٓ إِن شَآءَ ۚ إِنَّ ٱللَّهَ عَلِيمٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,9,' قَتِلُوا۟ ٱلَّذِينَ لَا يُؤْمِنُونَ بِٱللَّهِ وَلَا بِٱلْيَوْمِ ٱلْءَاخِرِ وَلَا يُحَرِّمُونَ مَا حَرَّمَ ٱللَّهُ وَرَسُولُهُۥ وَلَا يَدِينُونَ دِينَ ٱلْحَقِّ مِنَ ٱلَّذِينَ أُوتُوا۟ ٱلْكِتَبَ حَتَّىٰ يُعْطُوا۟ ٱلْجِزْيَةَ عَن يَدٍۢ وَهُمْ صَغِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,9,' وَقَالَتِ ٱلْيَهُودُ عُزَيْرٌ ٱبْنُ ٱللَّهِ وَقَالَتِ ٱلنَّصَرَى ٱلْمَسِيحُ ٱبْنُ ٱللَّهِ ۖ ذَلِكَ قَوْلُهُم بِأَفْوَهِهِمْ ۖ يُضَهِـُٔونَ قَوْلَ ٱلَّذِينَ كَفَرُوا۟ مِن قَبْلُ ۚ قَتَلَهُمُ ٱللَّهُ ۚ أَنَّىٰ يُؤْفَكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,9,' ٱتَّخَذُوٓا۟ أَحْبَارَهُمْ وَرُهْبَنَهُمْ أَرْبَابًۭا مِّن دُونِ ٱللَّهِ وَٱلْمَسِيحَ ٱبْنَ مَرْيَمَ وَمَآ أُمِرُوٓا۟ إِلَّا لِيَعْبُدُوٓا۟ إِلَهًۭا وَحِدًۭا ۖ لَّآ إِلَهَ إِلَّا هُوَ ۚ سُبْحَنَهُۥ عَمَّا يُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,9,' يُرِيدُونَ أَن يُطْفِـُٔوا۟ نُورَ ٱللَّهِ بِأَفْوَهِهِمْ وَيَأْبَى ٱللَّهُ إِلَّآ أَن يُتِمَّ نُورَهُۥ وَلَوْ كَرِهَ ٱلْكَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,9,' هُوَ ٱلَّذِىٓ أَرْسَلَ رَسُولَهُۥ بِٱلْهُدَىٰ وَدِينِ ٱلْحَقِّ لِيُظْهِرَهُۥ عَلَى ٱلدِّينِ كُلِّهِۦ وَلَوْ كَرِهَ ٱلْمُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,9,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِنَّ كَثِيرًۭا مِّنَ ٱلْأَحْبَارِ وَٱلرُّهْبَانِ لَيَأْكُلُونَ أَمْوَلَ ٱلنَّاسِ بِٱلْبَطِلِ وَيَصُدُّونَ عَن سَبِيلِ ٱللَّهِ ۗ وَٱلَّذِينَ يَكْنِزُونَ ٱلذَّهَبَ وَٱلْفِضَّةَ وَلَا يُنفِقُونَهَا فِى سَبِيلِ ٱللَّهِ فَبَشِّرْهُم بِعَذَابٍ أَلِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,9,' يَوْمَ يُحْمَىٰ عَلَيْهَا فِى نَارِ جَهَنَّمَ فَتُكْوَىٰ بِهَا جِبَاهُهُمْ وَجُنُوبُهُمْ وَظُهُورُهُمْ ۖ هَذَا مَا كَنَزْتُمْ لِأَنفُسِكُمْ فَذُوقُوا۟ مَا كُنتُمْ تَكْنِزُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,9,' إِنَّ عِدَّةَ ٱلشُّهُورِ عِندَ ٱللَّهِ ٱثْنَا عَشَرَ شَهْرًۭا فِى كِتَبِ ٱللَّهِ يَوْمَ خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ مِنْهَآ أَرْبَعَةٌ حُرُمٌۭ ۚ ذَلِكَ ٱلدِّينُ ٱلْقَيِّمُ ۚ فَلَا تَظْلِمُوا۟ فِيهِنَّ أَنفُسَكُمْ ۚ وَقَتِلُوا۟ ٱلْمُشْرِكِينَ كَآفَّةًۭ كَمَا يُقَتِلُونَكُمْ كَآفَّةًۭ ۚ وَٱعْلَمُوٓا۟ أَنَّ ٱللَّهَ مَعَ ٱلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,9,' إِنَّمَا ٱلنَّسِىٓءُ زِيَادَةٌۭ فِى ٱلْكُفْرِ ۖ يُضَلُّ بِهِ ٱلَّذِينَ كَفَرُوا۟ يُحِلُّونَهُۥ عَامًۭا وَيُحَرِّمُونَهُۥ عَامًۭا لِّيُوَاطِـُٔوا۟ عِدَّةَ مَا حَرَّمَ ٱللَّهُ فَيُحِلُّوا۟ مَا حَرَّمَ ٱللَّهُ ۚ زُيِّنَ لَهُمْ سُوٓءُ أَعْمَلِهِمْ ۗ وَٱللَّهُ لَا يَهْدِى ٱلْقَوْمَ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,9,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ مَا لَكُمْ إِذَا قِيلَ لَكُمُ ٱنفِرُوا۟ فِى سَبِيلِ ٱللَّهِ ٱثَّاقَلْتُمْ إِلَى ٱلْأَرْضِ ۚ أَرَضِيتُم بِٱلْحَيَوٰةِ ٱلدُّنْيَا مِنَ ٱلْءَاخِرَةِ ۚ فَمَا مَتَعُ ٱلْحَيَوٰةِ ٱلدُّنْيَا فِى ٱلْءَاخِرَةِ إِلَّا قَلِيلٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,9,' إِلَّا تَنفِرُوا۟ يُعَذِّبْكُمْ عَذَابًا أَلِيمًۭا وَيَسْتَبْدِلْ قَوْمًا غَيْرَكُمْ وَلَا تَضُرُّوهُ شَيْـًۭٔا ۗ وَٱللَّهُ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,9,' إِلَّا تَنصُرُوهُ فَقَدْ نَصَرَهُ ٱللَّهُ إِذْ أَخْرَجَهُ ٱلَّذِينَ كَفَرُوا۟ ثَانِىَ ٱثْنَيْنِ إِذْ هُمَا فِى ٱلْغَارِ إِذْ يَقُولُ لِصَحِبِهِۦ لَا تَحْزَنْ إِنَّ ٱللَّهَ مَعَنَا ۖ فَأَنزَلَ ٱللَّهُ سَكِينَتَهُۥ عَلَيْهِ وَأَيَّدَهُۥ بِجُنُودٍۢ لَّمْ تَرَوْهَا وَجَعَلَ كَلِمَةَ ٱلَّذِينَ كَفَرُوا۟ ٱلسُّفْلَىٰ ۗ وَكَلِمَةُ ٱللَّهِ هِىَ ٱلْعُلْيَا ۗ وَٱللَّهُ عَزِيزٌ حَكِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,9,' ٱنفِرُوا۟ خِفَافًۭا وَثِقَالًۭا وَجَهِدُوا۟ بِأَمْوَلِكُمْ وَأَنفُسِكُمْ فِى سَبِيلِ ٱللَّهِ ۚ ذَلِكُمْ خَيْرٌۭ لَّكُمْ إِن كُنتُمْ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,9,' لَوْ كَانَ عَرَضًۭا قَرِيبًۭا وَسَفَرًۭا قَاصِدًۭا لَّٱتَّبَعُوكَ وَلَكِنۢ بَعُدَتْ عَلَيْهِمُ ٱلشُّقَّةُ ۚ وَسَيَحْلِفُونَ بِٱللَّهِ لَوِ ٱسْتَطَعْنَا لَخَرَجْنَا مَعَكُمْ يُهْلِكُونَ أَنفُسَهُمْ وَٱللَّهُ يَعْلَمُ إِنَّهُمْ لَكَذِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,9,' عَفَا ٱللَّهُ عَنكَ لِمَ أَذِنتَ لَهُمْ حَتَّىٰ يَتَبَيَّنَ لَكَ ٱلَّذِينَ صَدَقُوا۟ وَتَعْلَمَ ٱلْكَذِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,9,' لَا يَسْتَـْٔذِنُكَ ٱلَّذِينَ يُؤْمِنُونَ بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ أَن يُجَهِدُوا۟ بِأَمْوَلِهِمْ وَأَنفُسِهِمْ ۗ وَٱللَّهُ عَلِيمٌۢ بِٱلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,9,' إِنَّمَا يَسْتَـْٔذِنُكَ ٱلَّذِينَ لَا يُؤْمِنُونَ بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ وَٱرْتَابَتْ قُلُوبُهُمْ فَهُمْ فِى رَيْبِهِمْ يَتَرَدَّدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,9,' وَلَوْ أَرَادُوا۟ ٱلْخُرُوجَ لَأَعَدُّوا۟ لَهُۥ عُدَّةًۭ وَلَكِن كَرِهَ ٱللَّهُ ٱنۢبِعَاثَهُمْ فَثَبَّطَهُمْ وَقِيلَ ٱقْعُدُوا۟ مَعَ ٱلْقَعِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,9,' لَوْ خَرَجُوا۟ فِيكُم مَّا زَادُوكُمْ إِلَّا خَبَالًۭا وَلَأَوْضَعُوا۟ خِلَلَكُمْ يَبْغُونَكُمُ ٱلْفِتْنَةَ وَفِيكُمْ سَمَّعُونَ لَهُمْ ۗ وَٱللَّهُ عَلِيمٌۢ بِٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,9,' لَقَدِ ٱبْتَغَوُا۟ ٱلْفِتْنَةَ مِن قَبْلُ وَقَلَّبُوا۟ لَكَ ٱلْأُمُورَ حَتَّىٰ جَآءَ ٱلْحَقُّ وَظَهَرَ أَمْرُ ٱللَّهِ وَهُمْ كَرِهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,9,' وَمِنْهُم مَّن يَقُولُ ٱئْذَن لِّى وَلَا تَفْتِنِّىٓ ۚ أَلَا فِى ٱلْفِتْنَةِ سَقَطُوا۟ ۗ وَإِنَّ جَهَنَّمَ لَمُحِيطَةٌۢ بِٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,9,' إِن تُصِبْكَ حَسَنَةٌۭ تَسُؤْهُمْ ۖ وَإِن تُصِبْكَ مُصِيبَةٌۭ يَقُولُوا۟ قَدْ أَخَذْنَآ أَمْرَنَا مِن قَبْلُ وَيَتَوَلَّوا۟ وَّهُمْ فَرِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,9,' قُل لَّن يُصِيبَنَآ إِلَّا مَا كَتَبَ ٱللَّهُ لَنَا هُوَ مَوْلَىٰنَا ۚ وَعَلَى ٱللَّهِ فَلْيَتَوَكَّلِ ٱلْمُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,9,' قُلْ هَلْ تَرَبَّصُونَ بِنَآ إِلَّآ إِحْدَى ٱلْحُسْنَيَيْنِ ۖ وَنَحْنُ نَتَرَبَّصُ بِكُمْ أَن يُصِيبَكُمُ ٱللَّهُ بِعَذَابٍۢ مِّنْ عِندِهِۦٓ أَوْ بِأَيْدِينَا ۖ فَتَرَبَّصُوٓا۟ إِنَّا مَعَكُم مُّتَرَبِّصُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,9,' قُلْ أَنفِقُوا۟ طَوْعًا أَوْ كَرْهًۭا لَّن يُتَقَبَّلَ مِنكُمْ ۖ إِنَّكُمْ كُنتُمْ قَوْمًۭا فَسِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,9,' وَمَا مَنَعَهُمْ أَن تُقْبَلَ مِنْهُمْ نَفَقَتُهُمْ إِلَّآ أَنَّهُمْ كَفَرُوا۟ بِٱللَّهِ وَبِرَسُولِهِۦ وَلَا يَأْتُونَ ٱلصَّلَوٰةَ إِلَّا وَهُمْ كُسَالَىٰ وَلَا يُنفِقُونَ إِلَّا وَهُمْ كَرِهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,9,' فَلَا تُعْجِبْكَ أَمْوَلُهُمْ وَلَآ أَوْلَدُهُمْ ۚ إِنَّمَا يُرِيدُ ٱللَّهُ لِيُعَذِّبَهُم بِهَا فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا وَتَزْهَقَ أَنفُسُهُمْ وَهُمْ كَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,9,' وَيَحْلِفُونَ بِٱللَّهِ إِنَّهُمْ لَمِنكُمْ وَمَا هُم مِّنكُمْ وَلَكِنَّهُمْ قَوْمٌۭ يَفْرَقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,9,' لَوْ يَجِدُونَ مَلْجَـًٔا أَوْ مَغَرَتٍ أَوْ مُدَّخَلًۭا لَّوَلَّوْا۟ إِلَيْهِ وَهُمْ يَجْمَحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,9,' وَمِنْهُم مَّن يَلْمِزُكَ فِى ٱلصَّدَقَتِ فَإِنْ أُعْطُوا۟ مِنْهَا رَضُوا۟ وَإِن لَّمْ يُعْطَوْا۟ مِنْهَآ إِذَا هُمْ يَسْخَطُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,9,' وَلَوْ أَنَّهُمْ رَضُوا۟ مَآ ءَاتَىٰهُمُ ٱللَّهُ وَرَسُولُهُۥ وَقَالُوا۟ حَسْبُنَا ٱللَّهُ سَيُؤْتِينَا ٱللَّهُ مِن فَضْلِهِۦ وَرَسُولُهُۥٓ إِنَّآ إِلَى ٱللَّهِ رَغِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,9,' إِنَّمَا ٱلصَّدَقَتُ لِلْفُقَرَآءِ وَٱلْمَسَكِينِ وَٱلْعَمِلِينَ عَلَيْهَا وَٱلْمُؤَلَّفَةِ قُلُوبُهُمْ وَفِى ٱلرِّقَابِ وَٱلْغَرِمِينَ وَفِى سَبِيلِ ٱللَّهِ وَٱبْنِ ٱلسَّبِيلِ ۖ فَرِيضَةًۭ مِّنَ ٱللَّهِ ۗ وَٱللَّهُ عَلِيمٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,9,' وَمِنْهُمُ ٱلَّذِينَ يُؤْذُونَ ٱلنَّبِىَّ وَيَقُولُونَ هُوَ أُذُنٌۭ ۚ قُلْ أُذُنُ خَيْرٍۢ لَّكُمْ يُؤْمِنُ بِٱللَّهِ وَيُؤْمِنُ لِلْمُؤْمِنِينَ وَرَحْمَةٌۭ لِّلَّذِينَ ءَامَنُوا۟ مِنكُمْ ۚ وَٱلَّذِينَ يُؤْذُونَ رَسُولَ ٱللَّهِ لَهُمْ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,9,' يَحْلِفُونَ بِٱللَّهِ لَكُمْ لِيُرْضُوكُمْ وَٱللَّهُ وَرَسُولُهُۥٓ أَحَقُّ أَن يُرْضُوهُ إِن كَانُوا۟ مُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,9,' أَلَمْ يَعْلَمُوٓا۟ أَنَّهُۥ مَن يُحَادِدِ ٱللَّهَ وَرَسُولَهُۥ فَأَنَّ لَهُۥ نَارَ جَهَنَّمَ خَلِدًۭا فِيهَا ۚ ذَلِكَ ٱلْخِزْىُ ٱلْعَظِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,9,' يَحْذَرُ ٱلْمُنَفِقُونَ أَن تُنَزَّلَ عَلَيْهِمْ سُورَةٌۭ تُنَبِّئُهُم بِمَا فِى قُلُوبِهِمْ ۚ قُلِ ٱسْتَهْزِءُوٓا۟ إِنَّ ٱللَّهَ مُخْرِجٌۭ مَّا تَحْذَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,9,' وَلَىِٕن سَأَلْتَهُمْ لَيَقُولُنَّ إِنَّمَا كُنَّا نَخُوضُ وَنَلْعَبُ ۚ قُلْ أَبِٱللَّهِ وَءَايَتِهِۦ وَرَسُولِهِۦ كُنتُمْ تَسْتَهْزِءُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,9,' لَا تَعْتَذِرُوا۟ قَدْ كَفَرْتُم بَعْدَ إِيمَنِكُمْ ۚ إِن نَّعْفُ عَن طَآئِفَةٍۢ مِّنكُمْ نُعَذِّبْ طَآئِفَةًۢ بِأَنَّهُمْ كَانُوا۟ مُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,9,' ٱلْمُنَفِقُونَ وَٱلْمُنَفِقَتُ بَعْضُهُم مِّنۢ بَعْضٍۢ ۚ يَأْمُرُونَ بِٱلْمُنكَرِ وَيَنْهَوْنَ عَنِ ٱلْمَعْرُوفِ وَيَقْبِضُونَ أَيْدِيَهُمْ ۚ نَسُوا۟ ٱللَّهَ فَنَسِيَهُمْ ۗ إِنَّ ٱلْمُنَفِقِينَ هُمُ ٱلْفَسِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,9,' وَعَدَ ٱللَّهُ ٱلْمُنَفِقِينَ وَٱلْمُنَفِقَتِ وَٱلْكُفَّارَ نَارَ جَهَنَّمَ خَلِدِينَ فِيهَا ۚ هِىَ حَسْبُهُمْ ۚ وَلَعَنَهُمُ ٱللَّهُ ۖ وَلَهُمْ عَذَابٌۭ مُّقِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,9,' كَٱلَّذِينَ مِن قَبْلِكُمْ كَانُوٓا۟ أَشَدَّ مِنكُمْ قُوَّةًۭ وَأَكْثَرَ أَمْوَلًۭا وَأَوْلَدًۭا فَٱسْتَمْتَعُوا۟ بِخَلَقِهِمْ فَٱسْتَمْتَعْتُم بِخَلَقِكُمْ كَمَا ٱسْتَمْتَعَ ٱلَّذِينَ مِن قَبْلِكُم بِخَلَقِهِمْ وَخُضْتُمْ كَٱلَّذِى خَاضُوٓا۟ ۚ أُو۟لَٓئِكَ حَبِطَتْ أَعْمَلُهُمْ فِى ٱلدُّنْيَا وَٱلْءَاخِرَةِ ۖ وَأُو۟لَٓئِكَ هُمُ ٱلْخَسِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,9,' أَلَمْ يَأْتِهِمْ نَبَأُ ٱلَّذِينَ مِن قَبْلِهِمْ قَوْمِ نُوحٍۢ وَعَادٍۢ وَثَمُودَ وَقَوْمِ إِبْرَهِيمَ وَأَصْحَبِ مَدْيَنَ وَٱلْمُؤْتَفِكَتِ ۚ أَتَتْهُمْ رُسُلُهُم بِٱلْبَيِّنَتِ ۖ فَمَا كَانَ ٱللَّهُ لِيَظْلِمَهُمْ وَلَكِن كَانُوٓا۟ أَنفُسَهُمْ يَظْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,9,' وَٱلْمُؤْمِنُونَ وَٱلْمُؤْمِنَتُ بَعْضُهُمْ أَوْلِيَآءُ بَعْضٍۢ ۚ يَأْمُرُونَ بِٱلْمَعْرُوفِ وَيَنْهَوْنَ عَنِ ٱلْمُنكَرِ وَيُقِيمُونَ ٱلصَّلَوٰةَ وَيُؤْتُونَ ٱلزَّكَوٰةَ وَيُطِيعُونَ ٱللَّهَ وَرَسُولَهُۥٓ ۚ أُو۟لَٓئِكَ سَيَرْحَمُهُمُ ٱللَّهُ ۗ إِنَّ ٱللَّهَ عَزِيزٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,9,' وَعَدَ ٱللَّهُ ٱلْمُؤْمِنِينَ وَٱلْمُؤْمِنَتِ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَا وَمَسَكِنَ طَيِّبَةًۭ فِى جَنَّتِ عَدْنٍۢ ۚ وَرِضْوَنٌۭ مِّنَ ٱللَّهِ أَكْبَرُ ۚ ذَلِكَ هُوَ ٱلْفَوْزُ ٱلْعَظِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,9,' يَٓأَيُّهَا ٱلنَّبِىُّ جَهِدِ ٱلْكُفَّارَ وَٱلْمُنَفِقِينَ وَٱغْلُظْ عَلَيْهِمْ ۚ وَمَأْوَىٰهُمْ جَهَنَّمُ ۖ وَبِئْسَ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,9,' يَحْلِفُونَ بِٱللَّهِ مَا قَالُوا۟ وَلَقَدْ قَالُوا۟ كَلِمَةَ ٱلْكُفْرِ وَكَفَرُوا۟ بَعْدَ إِسْلَمِهِمْ وَهَمُّوا۟ بِمَا لَمْ يَنَالُوا۟ ۚ وَمَا نَقَمُوٓا۟ إِلَّآ أَنْ أَغْنَىٰهُمُ ٱللَّهُ وَرَسُولُهُۥ مِن فَضْلِهِۦ ۚ فَإِن يَتُوبُوا۟ يَكُ خَيْرًۭا لَّهُمْ ۖ وَإِن يَتَوَلَّوْا۟ يُعَذِّبْهُمُ ٱللَّهُ عَذَابًا أَلِيمًۭا فِى ٱلدُّنْيَا وَٱلْءَاخِرَةِ ۚ وَمَا لَهُمْ فِى ٱلْأَرْضِ مِن وَلِىٍّۢ وَلَا نَصِيرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,9,' وَمِنْهُم مَّنْ عَهَدَ ٱللَّهَ لَىِٕنْ ءَاتَىٰنَا مِن فَضْلِهِۦ لَنَصَّدَّقَنَّ وَلَنَكُونَنَّ مِنَ ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,9,' فَلَمَّآ ءَاتَىٰهُم مِّن فَضْلِهِۦ بَخِلُوا۟ بِهِۦ وَتَوَلَّوا۟ وَّهُم مُّعْرِضُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,9,' فَأَعْقَبَهُمْ نِفَاقًۭا فِى قُلُوبِهِمْ إِلَىٰ يَوْمِ يَلْقَوْنَهُۥ بِمَآ أَخْلَفُوا۟ ٱللَّهَ مَا وَعَدُوهُ وَبِمَا كَانُوا۟ يَكْذِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,9,' أَلَمْ يَعْلَمُوٓا۟ أَنَّ ٱللَّهَ يَعْلَمُ سِرَّهُمْ وَنَجْوَىٰهُمْ وَأَنَّ ٱللَّهَ عَلَّمُ ٱلْغُيُوبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,9,' ٱلَّذِينَ يَلْمِزُونَ ٱلْمُطَّوِّعِينَ مِنَ ٱلْمُؤْمِنِينَ فِى ٱلصَّدَقَتِ وَٱلَّذِينَ لَا يَجِدُونَ إِلَّا جُهْدَهُمْ فَيَسْخَرُونَ مِنْهُمْ ۙ سَخِرَ ٱللَّهُ مِنْهُمْ وَلَهُمْ عَذَابٌ أَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,9,' ٱسْتَغْفِرْ لَهُمْ أَوْ لَا تَسْتَغْفِرْ لَهُمْ إِن تَسْتَغْفِرْ لَهُمْ سَبْعِينَ مَرَّةًۭ فَلَن يَغْفِرَ ٱللَّهُ لَهُمْ ۚ ذَلِكَ بِأَنَّهُمْ كَفَرُوا۟ بِٱللَّهِ وَرَسُولِهِۦ ۗ وَٱللَّهُ لَا يَهْدِى ٱلْقَوْمَ ٱلْفَسِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,9,' فَرِحَ ٱلْمُخَلَّفُونَ بِمَقْعَدِهِمْ خِلَفَ رَسُولِ ٱللَّهِ وَكَرِهُوٓا۟ أَن يُجَهِدُوا۟ بِأَمْوَلِهِمْ وَأَنفُسِهِمْ فِى سَبِيلِ ٱللَّهِ وَقَالُوا۟ لَا تَنفِرُوا۟ فِى ٱلْحَرِّ ۗ قُلْ نَارُ جَهَنَّمَ أَشَدُّ حَرًّۭا ۚ لَّوْ كَانُوا۟ يَفْقَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,9,' فَلْيَضْحَكُوا۟ قَلِيلًۭا وَلْيَبْكُوا۟ كَثِيرًۭا جَزَآءًۢ بِمَا كَانُوا۟ يَكْسِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,9,' فَإِن رَّجَعَكَ ٱللَّهُ إِلَىٰ طَآئِفَةٍۢ مِّنْهُمْ فَٱسْتَـْٔذَنُوكَ لِلْخُرُوجِ فَقُل لَّن تَخْرُجُوا۟ مَعِىَ أَبَدًۭا وَلَن تُقَتِلُوا۟ مَعِىَ عَدُوًّا ۖ إِنَّكُمْ رَضِيتُم بِٱلْقُعُودِ أَوَّلَ مَرَّةٍۢ فَٱقْعُدُوا۟ مَعَ ٱلْخَلِفِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,9,' وَلَا تُصَلِّ عَلَىٰٓ أَحَدٍۢ مِّنْهُم مَّاتَ أَبَدًۭا وَلَا تَقُمْ عَلَىٰ قَبْرِهِۦٓ ۖ إِنَّهُمْ كَفَرُوا۟ بِٱللَّهِ وَرَسُولِهِۦ وَمَاتُوا۟ وَهُمْ فَسِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,9,' وَلَا تُعْجِبْكَ أَمْوَلُهُمْ وَأَوْلَدُهُمْ ۚ إِنَّمَا يُرِيدُ ٱللَّهُ أَن يُعَذِّبَهُم بِهَا فِى ٱلدُّنْيَا وَتَزْهَقَ أَنفُسُهُمْ وَهُمْ كَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,9,' وَإِذَآ أُنزِلَتْ سُورَةٌ أَنْ ءَامِنُوا۟ بِٱللَّهِ وَجَهِدُوا۟ مَعَ رَسُولِهِ ٱسْتَـْٔذَنَكَ أُو۟لُوا۟ ٱلطَّوْلِ مِنْهُمْ وَقَالُوا۟ ذَرْنَا نَكُن مَّعَ ٱلْقَعِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,9,' رَضُوا۟ بِأَن يَكُونُوا۟ مَعَ ٱلْخَوَالِفِ وَطُبِعَ عَلَىٰ قُلُوبِهِمْ فَهُمْ لَا يَفْقَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,9,' لَكِنِ ٱلرَّسُولُ وَٱلَّذِينَ ءَامَنُوا۟ مَعَهُۥ جَهَدُوا۟ بِأَمْوَلِهِمْ وَأَنفُسِهِمْ ۚ وَأُو۟لَٓئِكَ لَهُمُ ٱلْخَيْرَتُ ۖ وَأُو۟لَٓئِكَ هُمُ ٱلْمُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,9,' أَعَدَّ ٱللَّهُ لَهُمْ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَا ۚ ذَلِكَ ٱلْفَوْزُ ٱلْعَظِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,9,' وَجَآءَ ٱلْمُعَذِّرُونَ مِنَ ٱلْأَعْرَابِ لِيُؤْذَنَ لَهُمْ وَقَعَدَ ٱلَّذِينَ كَذَبُوا۟ ٱللَّهَ وَرَسُولَهُۥ ۚ سَيُصِيبُ ٱلَّذِينَ كَفَرُوا۟ مِنْهُمْ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,9,' لَّيْسَ عَلَى ٱلضُّعَفَآءِ وَلَا عَلَى ٱلْمَرْضَىٰ وَلَا عَلَى ٱلَّذِينَ لَا يَجِدُونَ مَا يُنفِقُونَ حَرَجٌ إِذَا نَصَحُوا۟ لِلَّهِ وَرَسُولِهِۦ ۚ مَا عَلَى ٱلْمُحْسِنِينَ مِن سَبِيلٍۢ ۚ وَٱللَّهُ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,9,' وَلَا عَلَى ٱلَّذِينَ إِذَا مَآ أَتَوْكَ لِتَحْمِلَهُمْ قُلْتَ لَآ أَجِدُ مَآ أَحْمِلُكُمْ عَلَيْهِ تَوَلَّوا۟ وَّأَعْيُنُهُمْ تَفِيضُ مِنَ ٱلدَّمْعِ حَزَنًا أَلَّا يَجِدُوا۟ مَا يُنفِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,9,' إِنَّمَا ٱلسَّبِيلُ عَلَى ٱلَّذِينَ يَسْتَـْٔذِنُونَكَ وَهُمْ أَغْنِيَآءُ ۚ رَضُوا۟ بِأَن يَكُونُوا۟ مَعَ ٱلْخَوَالِفِ وَطَبَعَ ٱللَّهُ عَلَىٰ قُلُوبِهِمْ فَهُمْ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,9,' يَعْتَذِرُونَ إِلَيْكُمْ إِذَا رَجَعْتُمْ إِلَيْهِمْ ۚ قُل لَّا تَعْتَذِرُوا۟ لَن نُّؤْمِنَ لَكُمْ قَدْ نَبَّأَنَا ٱللَّهُ مِنْ أَخْبَارِكُمْ ۚ وَسَيَرَى ٱللَّهُ عَمَلَكُمْ وَرَسُولُهُۥ ثُمَّ تُرَدُّونَ إِلَىٰ عَلِمِ ٱلْغَيْبِ وَٱلشَّهَدَةِ فَيُنَبِّئُكُم بِمَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,9,' سَيَحْلِفُونَ بِٱللَّهِ لَكُمْ إِذَا ٱنقَلَبْتُمْ إِلَيْهِمْ لِتُعْرِضُوا۟ عَنْهُمْ ۖ فَأَعْرِضُوا۟ عَنْهُمْ ۖ إِنَّهُمْ رِجْسٌۭ ۖ وَمَأْوَىٰهُمْ جَهَنَّمُ جَزَآءًۢ بِمَا كَانُوا۟ يَكْسِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,9,' يَحْلِفُونَ لَكُمْ لِتَرْضَوْا۟ عَنْهُمْ ۖ فَإِن تَرْضَوْا۟ عَنْهُمْ فَإِنَّ ٱللَّهَ لَا يَرْضَىٰ عَنِ ٱلْقَوْمِ ٱلْفَسِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,9,' ٱلْأَعْرَابُ أَشَدُّ كُفْرًۭا وَنِفَاقًۭا وَأَجْدَرُ أَلَّا يَعْلَمُوا۟ حُدُودَ مَآ أَنزَلَ ٱللَّهُ عَلَىٰ رَسُولِهِۦ ۗ وَٱللَّهُ عَلِيمٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,9,' وَمِنَ ٱلْأَعْرَابِ مَن يَتَّخِذُ مَا يُنفِقُ مَغْرَمًۭا وَيَتَرَبَّصُ بِكُمُ ٱلدَّوَآئِرَ ۚ عَلَيْهِمْ دَآئِرَةُ ٱلسَّوْءِ ۗ وَٱللَّهُ سَمِيعٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,9,' وَمِنَ ٱلْأَعْرَابِ مَن يُؤْمِنُ بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ وَيَتَّخِذُ مَا يُنفِقُ قُرُبَتٍ عِندَ ٱللَّهِ وَصَلَوَتِ ٱلرَّسُولِ ۚ أَلَآ إِنَّهَا قُرْبَةٌۭ لَّهُمْ ۚ سَيُدْخِلُهُمُ ٱللَّهُ فِى رَحْمَتِهِۦٓ ۗ إِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,1,9,' وَٱلسَّبِقُونَ ٱلْأَوَّلُونَ مِنَ ٱلْمُهَجِرِينَ وَٱلْأَنصَارِ وَٱلَّذِينَ ٱتَّبَعُوهُم بِإِحْسَنٍۢ رَّضِىَ ٱللَّهُ عَنْهُمْ وَرَضُوا۟ عَنْهُ وَأَعَدَّ لَهُمْ جَنَّتٍۢ تَجْرِى تَحْتَهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَآ أَبَدًۭا ۚ ذَلِكَ ٱلْفَوْزُ ٱلْعَظِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,1,9,' وَمِمَّنْ حَوْلَكُم مِّنَ ٱلْأَعْرَابِ مُنَفِقُونَ ۖ وَمِنْ أَهْلِ ٱلْمَدِينَةِ ۖ مَرَدُوا۟ عَلَى ٱلنِّفَاقِ لَا تَعْلَمُهُمْ ۖ نَحْنُ نَعْلَمُهُمْ ۚ سَنُعَذِّبُهُم مَّرَّتَيْنِ ثُمَّ يُرَدُّونَ إِلَىٰ عَذَابٍ عَظِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,1,9,' وَءَاخَرُونَ ٱعْتَرَفُوا۟ بِذُنُوبِهِمْ خَلَطُوا۟ عَمَلًۭا صَلِحًۭا وَءَاخَرَ سَيِّئًا عَسَى ٱللَّهُ أَن يَتُوبَ عَلَيْهِمْ ۚ إِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,1,9,' خُذْ مِنْ أَمْوَلِهِمْ صَدَقَةًۭ تُطَهِّرُهُمْ وَتُزَكِّيهِم بِهَا وَصَلِّ عَلَيْهِمْ ۖ إِنَّ صَلَوٰتَكَ سَكَنٌۭ لَّهُمْ ۗ وَٱللَّهُ سَمِيعٌ عَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,1,9,' أَلَمْ يَعْلَمُوٓا۟ أَنَّ ٱللَّهَ هُوَ يَقْبَلُ ٱلتَّوْبَةَ عَنْ عِبَادِهِۦ وَيَأْخُذُ ٱلصَّدَقَتِ وَأَنَّ ٱللَّهَ هُوَ ٱلتَّوَّابُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,1,9,' وَقُلِ ٱعْمَلُوا۟ فَسَيَرَى ٱللَّهُ عَمَلَكُمْ وَرَسُولُهُۥ وَٱلْمُؤْمِنُونَ ۖ وَسَتُرَدُّونَ إِلَىٰ عَلِمِ ٱلْغَيْبِ وَٱلشَّهَدَةِ فَيُنَبِّئُكُم بِمَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,1,9,' وَءَاخَرُونَ مُرْجَوْنَ لِأَمْرِ ٱللَّهِ إِمَّا يُعَذِّبُهُمْ وَإِمَّا يَتُوبُ عَلَيْهِمْ ۗ وَٱللَّهُ عَلِيمٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,1,9,' وَٱلَّذِينَ ٱتَّخَذُوا۟ مَسْجِدًۭا ضِرَارًۭا وَكُفْرًۭا وَتَفْرِيقًۢا بَيْنَ ٱلْمُؤْمِنِينَ وَإِرْصَادًۭا لِّمَنْ حَارَبَ ٱللَّهَ وَرَسُولَهُۥ مِن قَبْلُ ۚ وَلَيَحْلِفُنَّ إِنْ أَرَدْنَآ إِلَّا ٱلْحُسْنَىٰ ۖ وَٱللَّهُ يَشْهَدُ إِنَّهُمْ لَكَذِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,1,9,' لَا تَقُمْ فِيهِ أَبَدًۭا ۚ لَّمَسْجِدٌ أُسِّسَ عَلَى ٱلتَّقْوَىٰ مِنْ أَوَّلِ يَوْمٍ أَحَقُّ أَن تَقُومَ فِيهِ ۚ فِيهِ رِجَالٌۭ يُحِبُّونَ أَن يَتَطَهَّرُوا۟ ۚ وَٱللَّهُ يُحِبُّ ٱلْمُطَّهِّرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,1,9,' أَفَمَنْ أَسَّسَ بُنْيَنَهُۥ عَلَىٰ تَقْوَىٰ مِنَ ٱللَّهِ وَرِضْوَنٍ خَيْرٌ أَم مَّنْ أَسَّسَ بُنْيَنَهُۥ عَلَىٰ شَفَا جُرُفٍ هَارٍۢ فَٱنْهَارَ بِهِۦ فِى نَارِ جَهَنَّمَ ۗ وَٱللَّهُ لَا يَهْدِى ٱلْقَوْمَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,1,9,' لَا يَزَالُ بُنْيَنُهُمُ ٱلَّذِى بَنَوْا۟ رِيبَةًۭ فِى قُلُوبِهِمْ إِلَّآ أَن تَقَطَّعَ قُلُوبُهُمْ ۗ وَٱللَّهُ عَلِيمٌ حَكِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,1,9,' إِنَّ ٱللَّهَ ٱشْتَرَىٰ مِنَ ٱلْمُؤْمِنِينَ أَنفُسَهُمْ وَأَمْوَلَهُم بِأَنَّ لَهُمُ ٱلْجَنَّةَ ۚ يُقَتِلُونَ فِى سَبِيلِ ٱللَّهِ فَيَقْتُلُونَ وَيُقْتَلُونَ ۖ وَعْدًا عَلَيْهِ حَقًّۭا فِى ٱلتَّوْرَىٰةِ وَٱلْإِنجِيلِ وَٱلْقُرْءَانِ ۚ وَمَنْ أَوْفَىٰ بِعَهْدِهِۦ مِنَ ٱللَّهِ ۚ فَٱسْتَبْشِرُوا۟ بِبَيْعِكُمُ ٱلَّذِى بَايَعْتُم بِهِۦ ۚ وَذَلِكَ هُوَ ٱلْفَوْزُ ٱلْعَظِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,1,9,' ٱلتَّٓئِبُونَ ٱلْعَبِدُونَ ٱلْحَمِدُونَ ٱلسَّٓئِحُونَ ٱلرَّكِعُونَ ٱلسَّجِدُونَ ٱلْءَامِرُونَ بِٱلْمَعْرُوفِ وَٱلنَّاهُونَ عَنِ ٱلْمُنكَرِ وَٱلْحَفِظُونَ لِحُدُودِ ٱللَّهِ ۗ وَبَشِّرِ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,1,9,' مَا كَانَ لِلنَّبِىِّ وَٱلَّذِينَ ءَامَنُوٓا۟ أَن يَسْتَغْفِرُوا۟ لِلْمُشْرِكِينَ وَلَوْ كَانُوٓا۟ أُو۟لِى قُرْبَىٰ مِنۢ بَعْدِ مَا تَبَيَّنَ لَهُمْ أَنَّهُمْ أَصْحَبُ ٱلْجَحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,1,9,' وَمَا كَانَ ٱسْتِغْفَارُ إِبْرَهِيمَ لِأَبِيهِ إِلَّا عَن مَّوْعِدَةٍۢ وَعَدَهَآ إِيَّاهُ فَلَمَّا تَبَيَّنَ لَهُۥٓ أَنَّهُۥ عَدُوٌّۭ لِّلَّهِ تَبَرَّأَ مِنْهُ ۚ إِنَّ إِبْرَهِيمَ لَأَوَّهٌ حَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,1,9,' وَمَا كَانَ ٱللَّهُ لِيُضِلَّ قَوْمًۢا بَعْدَ إِذْ هَدَىٰهُمْ حَتَّىٰ يُبَيِّنَ لَهُم مَّا يَتَّقُونَ ۚ إِنَّ ٱللَّهَ بِكُلِّ شَىْءٍ عَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,1,9,' إِنَّ ٱللَّهَ لَهُۥ مُلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۖ يُحْىِۦ وَيُمِيتُ ۚ وَمَا لَكُم مِّن دُونِ ٱللَّهِ مِن وَلِىٍّۢ وَلَا نَصِيرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,1,9,' لَّقَد تَّابَ ٱللَّهُ عَلَى ٱلنَّبِىِّ وَٱلْمُهَجِرِينَ وَٱلْأَنصَارِ ٱلَّذِينَ ٱتَّبَعُوهُ فِى سَاعَةِ ٱلْعُسْرَةِ مِنۢ بَعْدِ مَا كَادَ يَزِيغُ قُلُوبُ فَرِيقٍۢ مِّنْهُمْ ثُمَّ تَابَ عَلَيْهِمْ ۚ إِنَّهُۥ بِهِمْ رَءُوفٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,1,9,' وَعَلَى ٱلثَّلَثَةِ ٱلَّذِينَ خُلِّفُوا۟ حَتَّىٰٓ إِذَا ضَاقَتْ عَلَيْهِمُ ٱلْأَرْضُ بِمَا رَحُبَتْ وَضَاقَتْ عَلَيْهِمْ أَنفُسُهُمْ وَظَنُّوٓا۟ أَن لَّا مَلْجَأَ مِنَ ٱللَّهِ إِلَّآ إِلَيْهِ ثُمَّ تَابَ عَلَيْهِمْ لِيَتُوبُوٓا۟ ۚ إِنَّ ٱللَّهَ هُوَ ٱلتَّوَّابُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,1,9,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ ٱتَّقُوا۟ ٱللَّهَ وَكُونُوا۟ مَعَ ٱلصَّدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,1,9,' مَا كَانَ لِأَهْلِ ٱلْمَدِينَةِ وَمَنْ حَوْلَهُم مِّنَ ٱلْأَعْرَابِ أَن يَتَخَلَّفُوا۟ عَن رَّسُولِ ٱللَّهِ وَلَا يَرْغَبُوا۟ بِأَنفُسِهِمْ عَن نَّفْسِهِۦ ۚ ذَلِكَ بِأَنَّهُمْ لَا يُصِيبُهُمْ ظَمَأٌۭ وَلَا نَصَبٌۭ وَلَا مَخْمَصَةٌۭ فِى سَبِيلِ ٱللَّهِ وَلَا يَطَـُٔونَ مَوْطِئًۭا يَغِيظُ ٱلْكُفَّارَ وَلَا يَنَالُونَ مِنْ عَدُوٍّۢ نَّيْلًا إِلَّا كُتِبَ لَهُم بِهِۦ عَمَلٌۭ صَلِحٌ ۚ إِنَّ ٱللَّهَ لَا يُضِيعُ أَجْرَ ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,1,9,' وَلَا يُنفِقُونَ نَفَقَةًۭ صَغِيرَةًۭ وَلَا كَبِيرَةًۭ وَلَا يَقْطَعُونَ وَادِيًا إِلَّا كُتِبَ لَهُمْ لِيَجْزِيَهُمُ ٱللَّهُ أَحْسَنَ مَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,1,9,' وَمَا كَانَ ٱلْمُؤْمِنُونَ لِيَنفِرُوا۟ كَآفَّةًۭ ۚ فَلَوْلَا نَفَرَ مِن كُلِّ فِرْقَةٍۢ مِّنْهُمْ طَآئِفَةٌۭ لِّيَتَفَقَّهُوا۟ فِى ٱلدِّينِ وَلِيُنذِرُوا۟ قَوْمَهُمْ إِذَا رَجَعُوٓا۟ إِلَيْهِمْ لَعَلَّهُمْ يَحْذَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,1,9,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ قَتِلُوا۟ ٱلَّذِينَ يَلُونَكُم مِّنَ ٱلْكُفَّارِ وَلْيَجِدُوا۟ فِيكُمْ غِلْظَةًۭ ۚ وَٱعْلَمُوٓا۟ أَنَّ ٱللَّهَ مَعَ ٱلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,1,9,' وَإِذَا مَآ أُنزِلَتْ سُورَةٌۭ فَمِنْهُم مَّن يَقُولُ أَيُّكُمْ زَادَتْهُ هَذِهِۦٓ إِيمَنًۭا ۚ فَأَمَّا ٱلَّذِينَ ءَامَنُوا۟ فَزَادَتْهُمْ إِيمَنًۭا وَهُمْ يَسْتَبْشِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,1,9,' وَأَمَّا ٱلَّذِينَ فِى قُلُوبِهِم مَّرَضٌۭ فَزَادَتْهُمْ رِجْسًا إِلَىٰ رِجْسِهِمْ وَمَاتُوا۟ وَهُمْ كَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,1,9,' أَوَلَا يَرَوْنَ أَنَّهُمْ يُفْتَنُونَ فِى كُلِّ عَامٍۢ مَّرَّةً أَوْ مَرَّتَيْنِ ثُمَّ لَا يَتُوبُونَ وَلَا هُمْ يَذَّكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,1,9,' وَإِذَا مَآ أُنزِلَتْ سُورَةٌۭ نَّظَرَ بَعْضُهُمْ إِلَىٰ بَعْضٍ هَلْ يَرَىٰكُم مِّنْ أَحَدٍۢ ثُمَّ ٱنصَرَفُوا۟ ۚ صَرَفَ ٱللَّهُ قُلُوبَهُم بِأَنَّهُمْ قَوْمٌۭ لَّا يَفْقَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,1,9,' لَقَدْ جَآءَكُمْ رَسُولٌۭ مِّنْ أَنفُسِكُمْ عَزِيزٌ عَلَيْهِ مَا عَنِتُّمْ حَرِيصٌ عَلَيْكُم بِٱلْمُؤْمِنِينَ رَءُوفٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,1,9,' فَإِن تَوَلَّوْا۟ فَقُلْ حَسْبِىَ ٱللَّهُ لَآ إِلَهَ إِلَّا هُوَ ۖ عَلَيْهِ تَوَكَّلْتُ ۖ وَهُوَ رَبُّ ٱلْعَرْشِ ٱلْعَظِيمِ');
+INSERT INTO chapters (id, number, quran_id) VALUES(10,10,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,10,' الٓر ۚ تِلْكَ ءَايَتُ ٱلْكِتَبِ ٱلْحَكِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,10,' أَكَانَ لِلنَّاسِ عَجَبًا أَنْ أَوْحَيْنَآ إِلَىٰ رَجُلٍۢ مِّنْهُمْ أَنْ أَنذِرِ ٱلنَّاسَ وَبَشِّرِ ٱلَّذِينَ ءَامَنُوٓا۟ أَنَّ لَهُمْ قَدَمَ صِدْقٍ عِندَ رَبِّهِمْ ۗ قَالَ ٱلْكَفِرُونَ إِنَّ هَذَا لَسَحِرٌۭ مُّبِينٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,10,' إِنَّ رَبَّكُمُ ٱللَّهُ ٱلَّذِى خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ فِى سِتَّةِ أَيَّامٍۢ ثُمَّ ٱسْتَوَىٰ عَلَى ٱلْعَرْشِ ۖ يُدَبِّرُ ٱلْأَمْرَ ۖ مَا مِن شَفِيعٍ إِلَّا مِنۢ بَعْدِ إِذْنِهِۦ ۚ ذَلِكُمُ ٱللَّهُ رَبُّكُمْ فَٱعْبُدُوهُ ۚ أَفَلَا تَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,10,' إِلَيْهِ مَرْجِعُكُمْ جَمِيعًۭا ۖ وَعْدَ ٱللَّهِ حَقًّا ۚ إِنَّهُۥ يَبْدَؤُا۟ ٱلْخَلْقَ ثُمَّ يُعِيدُهُۥ لِيَجْزِىَ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ بِٱلْقِسْطِ ۚ وَٱلَّذِينَ كَفَرُوا۟ لَهُمْ شَرَابٌۭ مِّنْ حَمِيمٍۢ وَعَذَابٌ أَلِيمٌۢ بِمَا كَانُوا۟ يَكْفُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,10,' هُوَ ٱلَّذِى جَعَلَ ٱلشَّمْسَ ضِيَآءًۭ وَٱلْقَمَرَ نُورًۭا وَقَدَّرَهُۥ مَنَازِلَ لِتَعْلَمُوا۟ عَدَدَ ٱلسِّنِينَ وَٱلْحِسَابَ ۚ مَا خَلَقَ ٱللَّهُ ذَلِكَ إِلَّا بِٱلْحَقِّ ۚ يُفَصِّلُ ٱلْءَايَتِ لِقَوْمٍۢ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,10,' إِنَّ فِى ٱخْتِلَفِ ٱلَّيْلِ وَٱلنَّهَارِ وَمَا خَلَقَ ٱللَّهُ فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ لَءَايَتٍۢ لِّقَوْمٍۢ يَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,10,' إِنَّ ٱلَّذِينَ لَا يَرْجُونَ لِقَآءَنَا وَرَضُوا۟ بِٱلْحَيَوٰةِ ٱلدُّنْيَا وَٱطْمَأَنُّوا۟ بِهَا وَٱلَّذِينَ هُمْ عَنْ ءَايَتِنَا غَفِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,10,' أُو۟لَٓئِكَ مَأْوَىٰهُمُ ٱلنَّارُ بِمَا كَانُوا۟ يَكْسِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,10,' إِنَّ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ يَهْدِيهِمْ رَبُّهُم بِإِيمَنِهِمْ ۖ تَجْرِى مِن تَحْتِهِمُ ٱلْأَنْهَرُ فِى جَنَّتِ ٱلنَّعِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,10,' دَعْوَىٰهُمْ فِيهَا سُبْحَنَكَ ٱللَّهُمَّ وَتَحِيَّتُهُمْ فِيهَا سَلَمٌۭ ۚ وَءَاخِرُ دَعْوَىٰهُمْ أَنِ ٱلْحَمْدُ لِلَّهِ رَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,10,' وَلَوْ يُعَجِّلُ ٱللَّهُ لِلنَّاسِ ٱلشَّرَّ ٱسْتِعْجَالَهُم بِٱلْخَيْرِ لَقُضِىَ إِلَيْهِمْ أَجَلُهُمْ ۖ فَنَذَرُ ٱلَّذِينَ لَا يَرْجُونَ لِقَآءَنَا فِى طُغْيَنِهِمْ يَعْمَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,10,' وَإِذَا مَسَّ ٱلْإِنسَنَ ٱلضُّرُّ دَعَانَا لِجَنۢبِهِۦٓ أَوْ قَاعِدًا أَوْ قَآئِمًۭا فَلَمَّا كَشَفْنَا عَنْهُ ضُرَّهُۥ مَرَّ كَأَن لَّمْ يَدْعُنَآ إِلَىٰ ضُرٍّۢ مَّسَّهُۥ ۚ كَذَلِكَ زُيِّنَ لِلْمُسْرِفِينَ مَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,10,' وَلَقَدْ أَهْلَكْنَا ٱلْقُرُونَ مِن قَبْلِكُمْ لَمَّا ظَلَمُوا۟ ۙ وَجَآءَتْهُمْ رُسُلُهُم بِٱلْبَيِّنَتِ وَمَا كَانُوا۟ لِيُؤْمِنُوا۟ ۚ كَذَلِكَ نَجْزِى ٱلْقَوْمَ ٱلْمُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,10,' ثُمَّ جَعَلْنَكُمْ خَلَٓئِفَ فِى ٱلْأَرْضِ مِنۢ بَعْدِهِمْ لِنَنظُرَ كَيْفَ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,10,' وَإِذَا تُتْلَىٰ عَلَيْهِمْ ءَايَاتُنَا بَيِّنَتٍۢ ۙ قَالَ ٱلَّذِينَ لَا يَرْجُونَ لِقَآءَنَا ٱئْتِ بِقُرْءَانٍ غَيْرِ هَذَآ أَوْ بَدِّلْهُ ۚ قُلْ مَا يَكُونُ لِىٓ أَنْ أُبَدِّلَهُۥ مِن تِلْقَآئِ نَفْسِىٓ ۖ إِنْ أَتَّبِعُ إِلَّا مَا يُوحَىٰٓ إِلَىَّ ۖ إِنِّىٓ أَخَافُ إِنْ عَصَيْتُ رَبِّى عَذَابَ يَوْمٍ عَظِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,10,' قُل لَّوْ شَآءَ ٱللَّهُ مَا تَلَوْتُهُۥ عَلَيْكُمْ وَلَآ أَدْرَىٰكُم بِهِۦ ۖ فَقَدْ لَبِثْتُ فِيكُمْ عُمُرًۭا مِّن قَبْلِهِۦٓ ۚ أَفَلَا تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,10,' فَمَنْ أَظْلَمُ مِمَّنِ ٱفْتَرَىٰ عَلَى ٱللَّهِ كَذِبًا أَوْ كَذَّبَ بِـَٔايَتِهِۦٓ ۚ إِنَّهُۥ لَا يُفْلِحُ ٱلْمُجْرِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,10,' وَيَعْبُدُونَ مِن دُونِ ٱللَّهِ مَا لَا يَضُرُّهُمْ وَلَا يَنفَعُهُمْ وَيَقُولُونَ هَٓؤُلَآءِ شُفَعَٓؤُنَا عِندَ ٱللَّهِ ۚ قُلْ أَتُنَبِّـُٔونَ ٱللَّهَ بِمَا لَا يَعْلَمُ فِى ٱلسَّمَوَتِ وَلَا فِى ٱلْأَرْضِ ۚ سُبْحَنَهُۥ وَتَعَلَىٰ عَمَّا يُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,10,' وَمَا كَانَ ٱلنَّاسُ إِلَّآ أُمَّةًۭ وَحِدَةًۭ فَٱخْتَلَفُوا۟ ۚ وَلَوْلَا كَلِمَةٌۭ سَبَقَتْ مِن رَّبِّكَ لَقُضِىَ بَيْنَهُمْ فِيمَا فِيهِ يَخْتَلِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,10,' وَيَقُولُونَ لَوْلَآ أُنزِلَ عَلَيْهِ ءَايَةٌۭ مِّن رَّبِّهِۦ ۖ فَقُلْ إِنَّمَا ٱلْغَيْبُ لِلَّهِ فَٱنتَظِرُوٓا۟ إِنِّى مَعَكُم مِّنَ ٱلْمُنتَظِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,10,' وَإِذَآ أَذَقْنَا ٱلنَّاسَ رَحْمَةًۭ مِّنۢ بَعْدِ ضَرَّآءَ مَسَّتْهُمْ إِذَا لَهُم مَّكْرٌۭ فِىٓ ءَايَاتِنَا ۚ قُلِ ٱللَّهُ أَسْرَعُ مَكْرًا ۚ إِنَّ رُسُلَنَا يَكْتُبُونَ مَا تَمْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,10,' هُوَ ٱلَّذِى يُسَيِّرُكُمْ فِى ٱلْبَرِّ وَٱلْبَحْرِ ۖ حَتَّىٰٓ إِذَا كُنتُمْ فِى ٱلْفُلْكِ وَجَرَيْنَ بِهِم بِرِيحٍۢ طَيِّبَةٍۢ وَفَرِحُوا۟ بِهَا جَآءَتْهَا رِيحٌ عَاصِفٌۭ وَجَآءَهُمُ ٱلْمَوْجُ مِن كُلِّ مَكَانٍۢ وَظَنُّوٓا۟ أَنَّهُمْ أُحِيطَ بِهِمْ ۙ دَعَوُا۟ ٱللَّهَ مُخْلِصِينَ لَهُ ٱلدِّينَ لَىِٕنْ أَنجَيْتَنَا مِنْ هَذِهِۦ لَنَكُونَنَّ مِنَ ٱلشَّكِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,10,' فَلَمَّآ أَنجَىٰهُمْ إِذَا هُمْ يَبْغُونَ فِى ٱلْأَرْضِ بِغَيْرِ ٱلْحَقِّ ۗ يَٓأَيُّهَا ٱلنَّاسُ إِنَّمَا بَغْيُكُمْ عَلَىٰٓ أَنفُسِكُم ۖ مَّتَعَ ٱلْحَيَوٰةِ ٱلدُّنْيَا ۖ ثُمَّ إِلَيْنَا مَرْجِعُكُمْ فَنُنَبِّئُكُم بِمَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,10,' إِنَّمَا مَثَلُ ٱلْحَيَوٰةِ ٱلدُّنْيَا كَمَآءٍ أَنزَلْنَهُ مِنَ ٱلسَّمَآءِ فَٱخْتَلَطَ بِهِۦ نَبَاتُ ٱلْأَرْضِ مِمَّا يَأْكُلُ ٱلنَّاسُ وَٱلْأَنْعَمُ حَتَّىٰٓ إِذَآ أَخَذَتِ ٱلْأَرْضُ زُخْرُفَهَا وَٱزَّيَّنَتْ وَظَنَّ أَهْلُهَآ أَنَّهُمْ قَدِرُونَ عَلَيْهَآ أَتَىٰهَآ أَمْرُنَا لَيْلًا أَوْ نَهَارًۭا فَجَعَلْنَهَا حَصِيدًۭا كَأَن لَّمْ تَغْنَ بِٱلْأَمْسِ ۚ كَذَلِكَ نُفَصِّلُ ٱلْءَايَتِ لِقَوْمٍۢ يَتَفَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,10,' وَٱللَّهُ يَدْعُوٓا۟ إِلَىٰ دَارِ ٱلسَّلَمِ وَيَهْدِى مَن يَشَآءُ إِلَىٰ صِرَطٍۢ مُّسْتَقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,10,' لِّلَّذِينَ أَحْسَنُوا۟ ٱلْحُسْنَىٰ وَزِيَادَةٌۭ ۖ وَلَا يَرْهَقُ وُجُوهَهُمْ قَتَرٌۭ وَلَا ذِلَّةٌ ۚ أُو۟لَٓئِكَ أَصْحَبُ ٱلْجَنَّةِ ۖ هُمْ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,10,' وَٱلَّذِينَ كَسَبُوا۟ ٱلسَّيِّـَٔاتِ جَزَآءُ سَيِّئَةٍۭ بِمِثْلِهَا وَتَرْهَقُهُمْ ذِلَّةٌۭ ۖ مَّا لَهُم مِّنَ ٱللَّهِ مِنْ عَاصِمٍۢ ۖ كَأَنَّمَآ أُغْشِيَتْ وُجُوهُهُمْ قِطَعًۭا مِّنَ ٱلَّيْلِ مُظْلِمًا ۚ أُو۟لَٓئِكَ أَصْحَبُ ٱلنَّارِ ۖ هُمْ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,10,' وَيَوْمَ نَحْشُرُهُمْ جَمِيعًۭا ثُمَّ نَقُولُ لِلَّذِينَ أَشْرَكُوا۟ مَكَانَكُمْ أَنتُمْ وَشُرَكَآؤُكُمْ ۚ فَزَيَّلْنَا بَيْنَهُمْ ۖ وَقَالَ شُرَكَآؤُهُم مَّا كُنتُمْ إِيَّانَا تَعْبُدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,10,' فَكَفَىٰ بِٱللَّهِ شَهِيدًۢا بَيْنَنَا وَبَيْنَكُمْ إِن كُنَّا عَنْ عِبَادَتِكُمْ لَغَفِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,10,' هُنَالِكَ تَبْلُوا۟ كُلُّ نَفْسٍۢ مَّآ أَسْلَفَتْ ۚ وَرُدُّوٓا۟ إِلَى ٱللَّهِ مَوْلَىٰهُمُ ٱلْحَقِّ ۖ وَضَلَّ عَنْهُم مَّا كَانُوا۟ يَفْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,10,' قُلْ مَن يَرْزُقُكُم مِّنَ ٱلسَّمَآءِ وَٱلْأَرْضِ أَمَّن يَمْلِكُ ٱلسَّمْعَ وَٱلْأَبْصَرَ وَمَن يُخْرِجُ ٱلْحَىَّ مِنَ ٱلْمَيِّتِ وَيُخْرِجُ ٱلْمَيِّتَ مِنَ ٱلْحَىِّ وَمَن يُدَبِّرُ ٱلْأَمْرَ ۚ فَسَيَقُولُونَ ٱللَّهُ ۚ فَقُلْ أَفَلَا تَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,10,' فَذَلِكُمُ ٱللَّهُ رَبُّكُمُ ٱلْحَقُّ ۖ فَمَاذَا بَعْدَ ٱلْحَقِّ إِلَّا ٱلضَّلَلُ ۖ فَأَنَّىٰ تُصْرَفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,10,' كَذَلِكَ حَقَّتْ كَلِمَتُ رَبِّكَ عَلَى ٱلَّذِينَ فَسَقُوٓا۟ أَنَّهُمْ لَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,10,' قُلْ هَلْ مِن شُرَكَآئِكُم مَّن يَبْدَؤُا۟ ٱلْخَلْقَ ثُمَّ يُعِيدُهُۥ ۚ قُلِ ٱللَّهُ يَبْدَؤُا۟ ٱلْخَلْقَ ثُمَّ يُعِيدُهُۥ ۖ فَأَنَّىٰ تُؤْفَكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,10,' قُلْ هَلْ مِن شُرَكَآئِكُم مَّن يَهْدِىٓ إِلَى ٱلْحَقِّ ۚ قُلِ ٱللَّهُ يَهْدِى لِلْحَقِّ ۗ أَفَمَن يَهْدِىٓ إِلَى ٱلْحَقِّ أَحَقُّ أَن يُتَّبَعَ أَمَّن لَّا يَهِدِّىٓ إِلَّآ أَن يُهْدَىٰ ۖ فَمَا لَكُمْ كَيْفَ تَحْكُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,10,' وَمَا يَتَّبِعُ أَكْثَرُهُمْ إِلَّا ظَنًّا ۚ إِنَّ ٱلظَّنَّ لَا يُغْنِى مِنَ ٱلْحَقِّ شَيْـًٔا ۚ إِنَّ ٱللَّهَ عَلِيمٌۢ بِمَا يَفْعَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,10,' وَمَا كَانَ هَذَا ٱلْقُرْءَانُ أَن يُفْتَرَىٰ مِن دُونِ ٱللَّهِ وَلَكِن تَصْدِيقَ ٱلَّذِى بَيْنَ يَدَيْهِ وَتَفْصِيلَ ٱلْكِتَبِ لَا رَيْبَ فِيهِ مِن رَّبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,10,' أَمْ يَقُولُونَ ٱفْتَرَىٰهُ ۖ قُلْ فَأْتُوا۟ بِسُورَةٍۢ مِّثْلِهِۦ وَٱدْعُوا۟ مَنِ ٱسْتَطَعْتُم مِّن دُونِ ٱللَّهِ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,10,' بَلْ كَذَّبُوا۟ بِمَا لَمْ يُحِيطُوا۟ بِعِلْمِهِۦ وَلَمَّا يَأْتِهِمْ تَأْوِيلُهُۥ ۚ كَذَلِكَ كَذَّبَ ٱلَّذِينَ مِن قَبْلِهِمْ ۖ فَٱنظُرْ كَيْفَ كَانَ عَقِبَةُ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,10,' وَمِنْهُم مَّن يُؤْمِنُ بِهِۦ وَمِنْهُم مَّن لَّا يُؤْمِنُ بِهِۦ ۚ وَرَبُّكَ أَعْلَمُ بِٱلْمُفْسِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,10,' وَإِن كَذَّبُوكَ فَقُل لِّى عَمَلِى وَلَكُمْ عَمَلُكُمْ ۖ أَنتُم بَرِيٓـُٔونَ مِمَّآ أَعْمَلُ وَأَنَا۠ بَرِىٓءٌۭ مِّمَّا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,10,' وَمِنْهُم مَّن يَسْتَمِعُونَ إِلَيْكَ ۚ أَفَأَنتَ تُسْمِعُ ٱلصُّمَّ وَلَوْ كَانُوا۟ لَا يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,10,' وَمِنْهُم مَّن يَنظُرُ إِلَيْكَ ۚ أَفَأَنتَ تَهْدِى ٱلْعُمْىَ وَلَوْ كَانُوا۟ لَا يُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,10,' إِنَّ ٱللَّهَ لَا يَظْلِمُ ٱلنَّاسَ شَيْـًۭٔا وَلَكِنَّ ٱلنَّاسَ أَنفُسَهُمْ يَظْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,10,' وَيَوْمَ يَحْشُرُهُمْ كَأَن لَّمْ يَلْبَثُوٓا۟ إِلَّا سَاعَةًۭ مِّنَ ٱلنَّهَارِ يَتَعَارَفُونَ بَيْنَهُمْ ۚ قَدْ خَسِرَ ٱلَّذِينَ كَذَّبُوا۟ بِلِقَآءِ ٱللَّهِ وَمَا كَانُوا۟ مُهْتَدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,10,' وَإِمَّا نُرِيَنَّكَ بَعْضَ ٱلَّذِى نَعِدُهُمْ أَوْ نَتَوَفَّيَنَّكَ فَإِلَيْنَا مَرْجِعُهُمْ ثُمَّ ٱللَّهُ شَهِيدٌ عَلَىٰ مَا يَفْعَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,10,' وَلِكُلِّ أُمَّةٍۢ رَّسُولٌۭ ۖ فَإِذَا جَآءَ رَسُولُهُمْ قُضِىَ بَيْنَهُم بِٱلْقِسْطِ وَهُمْ لَا يُظْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,10,' وَيَقُولُونَ مَتَىٰ هَذَا ٱلْوَعْدُ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,10,' قُل لَّآ أَمْلِكُ لِنَفْسِى ضَرًّۭا وَلَا نَفْعًا إِلَّا مَا شَآءَ ٱللَّهُ ۗ لِكُلِّ أُمَّةٍ أَجَلٌ ۚ إِذَا جَآءَ أَجَلُهُمْ فَلَا يَسْتَـْٔخِرُونَ سَاعَةًۭ ۖ وَلَا يَسْتَقْدِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,10,' قُلْ أَرَءَيْتُمْ إِنْ أَتَىٰكُمْ عَذَابُهُۥ بَيَتًا أَوْ نَهَارًۭا مَّاذَا يَسْتَعْجِلُ مِنْهُ ٱلْمُجْرِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,10,' أَثُمَّ إِذَا مَا وَقَعَ ءَامَنتُم بِهِۦٓ ۚ ءَآلْـَٔنَ وَقَدْ كُنتُم بِهِۦ تَسْتَعْجِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,10,' ثُمَّ قِيلَ لِلَّذِينَ ظَلَمُوا۟ ذُوقُوا۟ عَذَابَ ٱلْخُلْدِ هَلْ تُجْزَوْنَ إِلَّا بِمَا كُنتُمْ تَكْسِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,10,' وَيَسْتَنۢبِـُٔونَكَ أَحَقٌّ هُوَ ۖ قُلْ إِى وَرَبِّىٓ إِنَّهُۥ لَحَقٌّۭ ۖ وَمَآ أَنتُم بِمُعْجِزِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,10,' وَلَوْ أَنَّ لِكُلِّ نَفْسٍۢ ظَلَمَتْ مَا فِى ٱلْأَرْضِ لَٱفْتَدَتْ بِهِۦ ۗ وَأَسَرُّوا۟ ٱلنَّدَامَةَ لَمَّا رَأَوُا۟ ٱلْعَذَابَ ۖ وَقُضِىَ بَيْنَهُم بِٱلْقِسْطِ ۚ وَهُمْ لَا يُظْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,10,' أَلَآ إِنَّ لِلَّهِ مَا فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ۗ أَلَآ إِنَّ وَعْدَ ٱللَّهِ حَقٌّۭ وَلَكِنَّ أَكْثَرَهُمْ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,10,' هُوَ يُحْىِۦ وَيُمِيتُ وَإِلَيْهِ تُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,10,' يَٓأَيُّهَا ٱلنَّاسُ قَدْ جَآءَتْكُم مَّوْعِظَةٌۭ مِّن رَّبِّكُمْ وَشِفَآءٌۭ لِّمَا فِى ٱلصُّدُورِ وَهُدًۭى وَرَحْمَةٌۭ لِّلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,10,' قُلْ بِفَضْلِ ٱللَّهِ وَبِرَحْمَتِهِۦ فَبِذَلِكَ فَلْيَفْرَحُوا۟ هُوَ خَيْرٌۭ مِّمَّا يَجْمَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,10,' قُلْ أَرَءَيْتُم مَّآ أَنزَلَ ٱللَّهُ لَكُم مِّن رِّزْقٍۢ فَجَعَلْتُم مِّنْهُ حَرَامًۭا وَحَلَلًۭا قُلْ ءَآللَّهُ أَذِنَ لَكُمْ ۖ أَمْ عَلَى ٱللَّهِ تَفْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,10,' وَمَا ظَنُّ ٱلَّذِينَ يَفْتَرُونَ عَلَى ٱللَّهِ ٱلْكَذِبَ يَوْمَ ٱلْقِيَمَةِ ۗ إِنَّ ٱللَّهَ لَذُو فَضْلٍ عَلَى ٱلنَّاسِ وَلَكِنَّ أَكْثَرَهُمْ لَا يَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,10,' وَمَا تَكُونُ فِى شَأْنٍۢ وَمَا تَتْلُوا۟ مِنْهُ مِن قُرْءَانٍۢ وَلَا تَعْمَلُونَ مِنْ عَمَلٍ إِلَّا كُنَّا عَلَيْكُمْ شُهُودًا إِذْ تُفِيضُونَ فِيهِ ۚ وَمَا يَعْزُبُ عَن رَّبِّكَ مِن مِّثْقَالِ ذَرَّةٍۢ فِى ٱلْأَرْضِ وَلَا فِى ٱلسَّمَآءِ وَلَآ أَصْغَرَ مِن ذَلِكَ وَلَآ أَكْبَرَ إِلَّا فِى كِتَبٍۢ مُّبِينٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,10,' أَلَآ إِنَّ أَوْلِيَآءَ ٱللَّهِ لَا خَوْفٌ عَلَيْهِمْ وَلَا هُمْ يَحْزَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,10,' ٱلَّذِينَ ءَامَنُوا۟ وَكَانُوا۟ يَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,10,' لَهُمُ ٱلْبُشْرَىٰ فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا وَفِى ٱلْءَاخِرَةِ ۚ لَا تَبْدِيلَ لِكَلِمَتِ ٱللَّهِ ۚ ذَلِكَ هُوَ ٱلْفَوْزُ ٱلْعَظِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,10,' وَلَا يَحْزُنكَ قَوْلُهُمْ ۘ إِنَّ ٱلْعِزَّةَ لِلَّهِ جَمِيعًا ۚ هُوَ ٱلسَّمِيعُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,10,' أَلَآ إِنَّ لِلَّهِ مَن فِى ٱلسَّمَوَتِ وَمَن فِى ٱلْأَرْضِ ۗ وَمَا يَتَّبِعُ ٱلَّذِينَ يَدْعُونَ مِن دُونِ ٱللَّهِ شُرَكَآءَ ۚ إِن يَتَّبِعُونَ إِلَّا ٱلظَّنَّ وَإِنْ هُمْ إِلَّا يَخْرُصُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,10,' هُوَ ٱلَّذِى جَعَلَ لَكُمُ ٱلَّيْلَ لِتَسْكُنُوا۟ فِيهِ وَٱلنَّهَارَ مُبْصِرًا ۚ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّقَوْمٍۢ يَسْمَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,10,' قَالُوا۟ ٱتَّخَذَ ٱللَّهُ وَلَدًۭا ۗ سُبْحَنَهُۥ ۖ هُوَ ٱلْغَنِىُّ ۖ لَهُۥ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۚ إِنْ عِندَكُم مِّن سُلْطَنٍۭ بِهَذَآ ۚ أَتَقُولُونَ عَلَى ٱللَّهِ مَا لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,10,' قُلْ إِنَّ ٱلَّذِينَ يَفْتَرُونَ عَلَى ٱللَّهِ ٱلْكَذِبَ لَا يُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,10,' مَتَعٌۭ فِى ٱلدُّنْيَا ثُمَّ إِلَيْنَا مَرْجِعُهُمْ ثُمَّ نُذِيقُهُمُ ٱلْعَذَابَ ٱلشَّدِيدَ بِمَا كَانُوا۟ يَكْفُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,10,' وَٱتْلُ عَلَيْهِمْ نَبَأَ نُوحٍ إِذْ قَالَ لِقَوْمِهِۦ يَقَوْمِ إِن كَانَ كَبُرَ عَلَيْكُم مَّقَامِى وَتَذْكِيرِى بِـَٔايَتِ ٱللَّهِ فَعَلَى ٱللَّهِ تَوَكَّلْتُ فَأَجْمِعُوٓا۟ أَمْرَكُمْ وَشُرَكَآءَكُمْ ثُمَّ لَا يَكُنْ أَمْرُكُمْ عَلَيْكُمْ غُمَّةًۭ ثُمَّ ٱقْضُوٓا۟ إِلَىَّ وَلَا تُنظِرُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,10,' فَإِن تَوَلَّيْتُمْ فَمَا سَأَلْتُكُم مِّنْ أَجْرٍ ۖ إِنْ أَجْرِىَ إِلَّا عَلَى ٱللَّهِ ۖ وَأُمِرْتُ أَنْ أَكُونَ مِنَ ٱلْمُسْلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,10,' فَكَذَّبُوهُ فَنَجَّيْنَهُ وَمَن مَّعَهُۥ فِى ٱلْفُلْكِ وَجَعَلْنَهُمْ خَلَٓئِفَ وَأَغْرَقْنَا ٱلَّذِينَ كَذَّبُوا۟ بِـَٔايَتِنَا ۖ فَٱنظُرْ كَيْفَ كَانَ عَقِبَةُ ٱلْمُنذَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,10,' ثُمَّ بَعَثْنَا مِنۢ بَعْدِهِۦ رُسُلًا إِلَىٰ قَوْمِهِمْ فَجَآءُوهُم بِٱلْبَيِّنَتِ فَمَا كَانُوا۟ لِيُؤْمِنُوا۟ بِمَا كَذَّبُوا۟ بِهِۦ مِن قَبْلُ ۚ كَذَلِكَ نَطْبَعُ عَلَىٰ قُلُوبِ ٱلْمُعْتَدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,10,' ثُمَّ بَعَثْنَا مِنۢ بَعْدِهِم مُّوسَىٰ وَهَرُونَ إِلَىٰ فِرْعَوْنَ وَمَلَإِي۟هِۦ بِـَٔايَتِنَا فَٱسْتَكْبَرُوا۟ وَكَانُوا۟ قَوْمًۭا مُّجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,10,' فَلَمَّا جَآءَهُمُ ٱلْحَقُّ مِنْ عِندِنَا قَالُوٓا۟ إِنَّ هَذَا لَسِحْرٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,10,' قَالَ مُوسَىٰٓ أَتَقُولُونَ لِلْحَقِّ لَمَّا جَآءَكُمْ ۖ أَسِحْرٌ هَذَا وَلَا يُفْلِحُ ٱلسَّحِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,10,' قَالُوٓا۟ أَجِئْتَنَا لِتَلْفِتَنَا عَمَّا وَجَدْنَا عَلَيْهِ ءَابَآءَنَا وَتَكُونَ لَكُمَا ٱلْكِبْرِيَآءُ فِى ٱلْأَرْضِ وَمَا نَحْنُ لَكُمَا بِمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,10,' وَقَالَ فِرْعَوْنُ ٱئْتُونِى بِكُلِّ سَحِرٍ عَلِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,10,' فَلَمَّا جَآءَ ٱلسَّحَرَةُ قَالَ لَهُم مُّوسَىٰٓ أَلْقُوا۟ مَآ أَنتُم مُّلْقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,10,' فَلَمَّآ أَلْقَوْا۟ قَالَ مُوسَىٰ مَا جِئْتُم بِهِ ٱلسِّحْرُ ۖ إِنَّ ٱللَّهَ سَيُبْطِلُهُۥٓ ۖ إِنَّ ٱللَّهَ لَا يُصْلِحُ عَمَلَ ٱلْمُفْسِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,10,' وَيُحِقُّ ٱللَّهُ ٱلْحَقَّ بِكَلِمَتِهِۦ وَلَوْ كَرِهَ ٱلْمُجْرِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,10,' فَمَآ ءَامَنَ لِمُوسَىٰٓ إِلَّا ذُرِّيَّةٌۭ مِّن قَوْمِهِۦ عَلَىٰ خَوْفٍۢ مِّن فِرْعَوْنَ وَمَلَإِي۟هِمْ أَن يَفْتِنَهُمْ ۚ وَإِنَّ فِرْعَوْنَ لَعَالٍۢ فِى ٱلْأَرْضِ وَإِنَّهُۥ لَمِنَ ٱلْمُسْرِفِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,10,' وَقَالَ مُوسَىٰ يَقَوْمِ إِن كُنتُمْ ءَامَنتُم بِٱللَّهِ فَعَلَيْهِ تَوَكَّلُوٓا۟ إِن كُنتُم مُّسْلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,10,' فَقَالُوا۟ عَلَى ٱللَّهِ تَوَكَّلْنَا رَبَّنَا لَا تَجْعَلْنَا فِتْنَةًۭ لِّلْقَوْمِ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,10,' وَنَجِّنَا بِرَحْمَتِكَ مِنَ ٱلْقَوْمِ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,10,' وَأَوْحَيْنَآ إِلَىٰ مُوسَىٰ وَأَخِيهِ أَن تَبَوَّءَا لِقَوْمِكُمَا بِمِصْرَ بُيُوتًۭا وَٱجْعَلُوا۟ بُيُوتَكُمْ قِبْلَةًۭ وَأَقِيمُوا۟ ٱلصَّلَوٰةَ ۗ وَبَشِّرِ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,10,' وَقَالَ مُوسَىٰ رَبَّنَآ إِنَّكَ ءَاتَيْتَ فِرْعَوْنَ وَمَلَأَهُۥ زِينَةًۭ وَأَمْوَلًۭا فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا رَبَّنَا لِيُضِلُّوا۟ عَن سَبِيلِكَ ۖ رَبَّنَا ٱطْمِسْ عَلَىٰٓ أَمْوَلِهِمْ وَٱشْدُدْ عَلَىٰ قُلُوبِهِمْ فَلَا يُؤْمِنُوا۟ حَتَّىٰ يَرَوُا۟ ٱلْعَذَابَ ٱلْأَلِيمَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,10,' قَالَ قَدْ أُجِيبَت دَّعْوَتُكُمَا فَٱسْتَقِيمَا وَلَا تَتَّبِعَآنِّ سَبِيلَ ٱلَّذِينَ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,10,' وَجَوَزْنَا بِبَنِىٓ إِسْرَٓءِيلَ ٱلْبَحْرَ فَأَتْبَعَهُمْ فِرْعَوْنُ وَجُنُودُهُۥ بَغْيًۭا وَعَدْوًا ۖ حَتَّىٰٓ إِذَآ أَدْرَكَهُ ٱلْغَرَقُ قَالَ ءَامَنتُ أَنَّهُۥ لَآ إِلَهَ إِلَّا ٱلَّذِىٓ ءَامَنَتْ بِهِۦ بَنُوٓا۟ إِسْرَٓءِيلَ وَأَنَا۠ مِنَ ٱلْمُسْلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,10,' ءَآلْـَٔنَ وَقَدْ عَصَيْتَ قَبْلُ وَكُنتَ مِنَ ٱلْمُفْسِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,10,' فَٱلْيَوْمَ نُنَجِّيكَ بِبَدَنِكَ لِتَكُونَ لِمَنْ خَلْفَكَ ءَايَةًۭ ۚ وَإِنَّ كَثِيرًۭا مِّنَ ٱلنَّاسِ عَنْ ءَايَتِنَا لَغَفِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,10,' وَلَقَدْ بَوَّأْنَا بَنِىٓ إِسْرَٓءِيلَ مُبَوَّأَ صِدْقٍۢ وَرَزَقْنَهُم مِّنَ ٱلطَّيِّبَتِ فَمَا ٱخْتَلَفُوا۟ حَتَّىٰ جَآءَهُمُ ٱلْعِلْمُ ۚ إِنَّ رَبَّكَ يَقْضِى بَيْنَهُمْ يَوْمَ ٱلْقِيَمَةِ فِيمَا كَانُوا۟ فِيهِ يَخْتَلِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,10,' فَإِن كُنتَ فِى شَكٍّۢ مِّمَّآ أَنزَلْنَآ إِلَيْكَ فَسْـَٔلِ ٱلَّذِينَ يَقْرَءُونَ ٱلْكِتَبَ مِن قَبْلِكَ ۚ لَقَدْ جَآءَكَ ٱلْحَقُّ مِن رَّبِّكَ فَلَا تَكُونَنَّ مِنَ ٱلْمُمْتَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,10,' وَلَا تَكُونَنَّ مِنَ ٱلَّذِينَ كَذَّبُوا۟ بِـَٔايَتِ ٱللَّهِ فَتَكُونَ مِنَ ٱلْخَسِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,10,' إِنَّ ٱلَّذِينَ حَقَّتْ عَلَيْهِمْ كَلِمَتُ رَبِّكَ لَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,10,' وَلَوْ جَآءَتْهُمْ كُلُّ ءَايَةٍ حَتَّىٰ يَرَوُا۟ ٱلْعَذَابَ ٱلْأَلِيمَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,10,' فَلَوْلَا كَانَتْ قَرْيَةٌ ءَامَنَتْ فَنَفَعَهَآ إِيمَنُهَآ إِلَّا قَوْمَ يُونُسَ لَمَّآ ءَامَنُوا۟ كَشَفْنَا عَنْهُمْ عَذَابَ ٱلْخِزْىِ فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا وَمَتَّعْنَهُمْ إِلَىٰ حِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,10,' وَلَوْ شَآءَ رَبُّكَ لَءَامَنَ مَن فِى ٱلْأَرْضِ كُلُّهُمْ جَمِيعًا ۚ أَفَأَنتَ تُكْرِهُ ٱلنَّاسَ حَتَّىٰ يَكُونُوا۟ مُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,1,10,' وَمَا كَانَ لِنَفْسٍ أَن تُؤْمِنَ إِلَّا بِإِذْنِ ٱللَّهِ ۚ وَيَجْعَلُ ٱلرِّجْسَ عَلَى ٱلَّذِينَ لَا يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,1,10,' قُلِ ٱنظُرُوا۟ مَاذَا فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ وَمَا تُغْنِى ٱلْءَايَتُ وَٱلنُّذُرُ عَن قَوْمٍۢ لَّا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,1,10,' فَهَلْ يَنتَظِرُونَ إِلَّا مِثْلَ أَيَّامِ ٱلَّذِينَ خَلَوْا۟ مِن قَبْلِهِمْ ۚ قُلْ فَٱنتَظِرُوٓا۟ إِنِّى مَعَكُم مِّنَ ٱلْمُنتَظِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,1,10,' ثُمَّ نُنَجِّى رُسُلَنَا وَٱلَّذِينَ ءَامَنُوا۟ ۚ كَذَلِكَ حَقًّا عَلَيْنَا نُنجِ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,1,10,' قُلْ يَٓأَيُّهَا ٱلنَّاسُ إِن كُنتُمْ فِى شَكٍّۢ مِّن دِينِى فَلَآ أَعْبُدُ ٱلَّذِينَ تَعْبُدُونَ مِن دُونِ ٱللَّهِ وَلَكِنْ أَعْبُدُ ٱللَّهَ ٱلَّذِى يَتَوَفَّىٰكُمْ ۖ وَأُمِرْتُ أَنْ أَكُونَ مِنَ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,1,10,' وَأَنْ أَقِمْ وَجْهَكَ لِلدِّينِ حَنِيفًۭا وَلَا تَكُونَنَّ مِنَ ٱلْمُشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,1,10,' وَلَا تَدْعُ مِن دُونِ ٱللَّهِ مَا لَا يَنفَعُكَ وَلَا يَضُرُّكَ ۖ فَإِن فَعَلْتَ فَإِنَّكَ إِذًۭا مِّنَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,1,10,' وَإِن يَمْسَسْكَ ٱللَّهُ بِضُرٍّۢ فَلَا كَاشِفَ لَهُۥٓ إِلَّا هُوَ ۖ وَإِن يُرِدْكَ بِخَيْرٍۢ فَلَا رَآدَّ لِفَضْلِهِۦ ۚ يُصِيبُ بِهِۦ مَن يَشَآءُ مِنْ عِبَادِهِۦ ۚ وَهُوَ ٱلْغَفُورُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,1,10,' قُلْ يَٓأَيُّهَا ٱلنَّاسُ قَدْ جَآءَكُمُ ٱلْحَقُّ مِن رَّبِّكُمْ ۖ فَمَنِ ٱهْتَدَىٰ فَإِنَّمَا يَهْتَدِى لِنَفْسِهِۦ ۖ وَمَن ضَلَّ فَإِنَّمَا يَضِلُّ عَلَيْهَا ۖ وَمَآ أَنَا۠ عَلَيْكُم بِوَكِيلٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,1,10,' وَٱتَّبِعْ مَا يُوحَىٰٓ إِلَيْكَ وَٱصْبِرْ حَتَّىٰ يَحْكُمَ ٱللَّهُ ۚ وَهُوَ خَيْرُ ٱلْحَكِمِينَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(11,11,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,11,' الٓر ۚ كِتَبٌ أُحْكِمَتْ ءَايَتُهُۥ ثُمَّ فُصِّلَتْ مِن لَّدُنْ حَكِيمٍ خَبِيرٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,11,' أَلَّا تَعْبُدُوٓا۟ إِلَّا ٱللَّهَ ۚ إِنَّنِى لَكُم مِّنْهُ نَذِيرٌۭ وَبَشِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,11,' وَأَنِ ٱسْتَغْفِرُوا۟ رَبَّكُمْ ثُمَّ تُوبُوٓا۟ إِلَيْهِ يُمَتِّعْكُم مَّتَعًا حَسَنًا إِلَىٰٓ أَجَلٍۢ مُّسَمًّۭى وَيُؤْتِ كُلَّ ذِى فَضْلٍۢ فَضْلَهُۥ ۖ وَإِن تَوَلَّوْا۟ فَإِنِّىٓ أَخَافُ عَلَيْكُمْ عَذَابَ يَوْمٍۢ كَبِيرٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,11,' إِلَى ٱللَّهِ مَرْجِعُكُمْ ۖ وَهُوَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,11,' أَلَآ إِنَّهُمْ يَثْنُونَ صُدُورَهُمْ لِيَسْتَخْفُوا۟ مِنْهُ ۚ أَلَا حِينَ يَسْتَغْشُونَ ثِيَابَهُمْ يَعْلَمُ مَا يُسِرُّونَ وَمَا يُعْلِنُونَ ۚ إِنَّهُۥ عَلِيمٌۢ بِذَاتِ ٱلصُّدُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,11,' وَمَا مِن دَآبَّةٍۢ فِى ٱلْأَرْضِ إِلَّا عَلَى ٱللَّهِ رِزْقُهَا وَيَعْلَمُ مُسْتَقَرَّهَا وَمُسْتَوْدَعَهَا ۚ كُلٌّۭ فِى كِتَبٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,11,' وَهُوَ ٱلَّذِى خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ فِى سِتَّةِ أَيَّامٍۢ وَكَانَ عَرْشُهُۥ عَلَى ٱلْمَآءِ لِيَبْلُوَكُمْ أَيُّكُمْ أَحْسَنُ عَمَلًۭا ۗ وَلَىِٕن قُلْتَ إِنَّكُم مَّبْعُوثُونَ مِنۢ بَعْدِ ٱلْمَوْتِ لَيَقُولَنَّ ٱلَّذِينَ كَفَرُوٓا۟ إِنْ هَذَآ إِلَّا سِحْرٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,11,' وَلَىِٕنْ أَخَّرْنَا عَنْهُمُ ٱلْعَذَابَ إِلَىٰٓ أُمَّةٍۢ مَّعْدُودَةٍۢ لَّيَقُولُنَّ مَا يَحْبِسُهُۥٓ ۗ أَلَا يَوْمَ يَأْتِيهِمْ لَيْسَ مَصْرُوفًا عَنْهُمْ وَحَاقَ بِهِم مَّا كَانُوا۟ بِهِۦ يَسْتَهْزِءُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,11,' وَلَىِٕنْ أَذَقْنَا ٱلْإِنسَنَ مِنَّا رَحْمَةًۭ ثُمَّ نَزَعْنَهَا مِنْهُ إِنَّهُۥ لَيَـُٔوسٌۭ كَفُورٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,11,' وَلَىِٕنْ أَذَقْنَهُ نَعْمَآءَ بَعْدَ ضَرَّآءَ مَسَّتْهُ لَيَقُولَنَّ ذَهَبَ ٱلسَّيِّـَٔاتُ عَنِّىٓ ۚ إِنَّهُۥ لَفَرِحٌۭ فَخُورٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,11,' إِلَّا ٱلَّذِينَ صَبَرُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ أُو۟لَٓئِكَ لَهُم مَّغْفِرَةٌۭ وَأَجْرٌۭ كَبِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,11,' فَلَعَلَّكَ تَارِكٌۢ بَعْضَ مَا يُوحَىٰٓ إِلَيْكَ وَضَآئِقٌۢ بِهِۦ صَدْرُكَ أَن يَقُولُوا۟ لَوْلَآ أُنزِلَ عَلَيْهِ كَنزٌ أَوْ جَآءَ مَعَهُۥ مَلَكٌ ۚ إِنَّمَآ أَنتَ نَذِيرٌۭ ۚ وَٱللَّهُ عَلَىٰ كُلِّ شَىْءٍۢ وَكِيلٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,11,' أَمْ يَقُولُونَ ٱفْتَرَىٰهُ ۖ قُلْ فَأْتُوا۟ بِعَشْرِ سُوَرٍۢ مِّثْلِهِۦ مُفْتَرَيَتٍۢ وَٱدْعُوا۟ مَنِ ٱسْتَطَعْتُم مِّن دُونِ ٱللَّهِ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,11,' فَإِلَّمْ يَسْتَجِيبُوا۟ لَكُمْ فَٱعْلَمُوٓا۟ أَنَّمَآ أُنزِلَ بِعِلْمِ ٱللَّهِ وَأَن لَّآ إِلَهَ إِلَّا هُوَ ۖ فَهَلْ أَنتُم مُّسْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,11,' مَن كَانَ يُرِيدُ ٱلْحَيَوٰةَ ٱلدُّنْيَا وَزِينَتَهَا نُوَفِّ إِلَيْهِمْ أَعْمَلَهُمْ فِيهَا وَهُمْ فِيهَا لَا يُبْخَسُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,11,' أُو۟لَٓئِكَ ٱلَّذِينَ لَيْسَ لَهُمْ فِى ٱلْءَاخِرَةِ إِلَّا ٱلنَّارُ ۖ وَحَبِطَ مَا صَنَعُوا۟ فِيهَا وَبَطِلٌۭ مَّا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,11,' أَفَمَن كَانَ عَلَىٰ بَيِّنَةٍۢ مِّن رَّبِّهِۦ وَيَتْلُوهُ شَاهِدٌۭ مِّنْهُ وَمِن قَبْلِهِۦ كِتَبُ مُوسَىٰٓ إِمَامًۭا وَرَحْمَةً ۚ أُو۟لَٓئِكَ يُؤْمِنُونَ بِهِۦ ۚ وَمَن يَكْفُرْ بِهِۦ مِنَ ٱلْأَحْزَابِ فَٱلنَّارُ مَوْعِدُهُۥ ۚ فَلَا تَكُ فِى مِرْيَةٍۢ مِّنْهُ ۚ إِنَّهُ ٱلْحَقُّ مِن رَّبِّكَ وَلَكِنَّ أَكْثَرَ ٱلنَّاسِ لَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,11,' وَمَنْ أَظْلَمُ مِمَّنِ ٱفْتَرَىٰ عَلَى ٱللَّهِ كَذِبًا ۚ أُو۟لَٓئِكَ يُعْرَضُونَ عَلَىٰ رَبِّهِمْ وَيَقُولُ ٱلْأَشْهَدُ هَٓؤُلَآءِ ٱلَّذِينَ كَذَبُوا۟ عَلَىٰ رَبِّهِمْ ۚ أَلَا لَعْنَةُ ٱللَّهِ عَلَى ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,11,' ٱلَّذِينَ يَصُدُّونَ عَن سَبِيلِ ٱللَّهِ وَيَبْغُونَهَا عِوَجًۭا وَهُم بِٱلْءَاخِرَةِ هُمْ كَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,11,' أُو۟لَٓئِكَ لَمْ يَكُونُوا۟ مُعْجِزِينَ فِى ٱلْأَرْضِ وَمَا كَانَ لَهُم مِّن دُونِ ٱللَّهِ مِنْ أَوْلِيَآءَ ۘ يُضَعَفُ لَهُمُ ٱلْعَذَابُ ۚ مَا كَانُوا۟ يَسْتَطِيعُونَ ٱلسَّمْعَ وَمَا كَانُوا۟ يُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,11,' أُو۟لَٓئِكَ ٱلَّذِينَ خَسِرُوٓا۟ أَنفُسَهُمْ وَضَلَّ عَنْهُم مَّا كَانُوا۟ يَفْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,11,' لَا جَرَمَ أَنَّهُمْ فِى ٱلْءَاخِرَةِ هُمُ ٱلْأَخْسَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,11,' إِنَّ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ وَأَخْبَتُوٓا۟ إِلَىٰ رَبِّهِمْ أُو۟لَٓئِكَ أَصْحَبُ ٱلْجَنَّةِ ۖ هُمْ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,11,' ئ مَثَلُ ٱلْفَرِيقَيْنِ كَٱلْأَعْمَىٰ وَٱلْأَصَمِّ وَٱلْبَصِيرِ وَٱلسَّمِيعِ ۚ هَلْ يَسْتَوِيَانِ مَثَلًا ۚ أَفَلَا تَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,11,' وَلَقَدْ أَرْسَلْنَا نُوحًا إِلَىٰ قَوْمِهِۦٓ إِنِّى لَكُمْ نَذِيرٌۭ مُّبِينٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,11,' أَن لَّا تَعْبُدُوٓا۟ إِلَّا ٱللَّهَ ۖ إِنِّىٓ أَخَافُ عَلَيْكُمْ عَذَابَ يَوْمٍ أَلِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,11,' فَقَالَ ٱلْمَلَأُ ٱلَّذِينَ كَفَرُوا۟ مِن قَوْمِهِۦ مَا نَرَىٰكَ إِلَّا بَشَرًۭا مِّثْلَنَا وَمَا نَرَىٰكَ ٱتَّبَعَكَ إِلَّا ٱلَّذِينَ هُمْ أَرَاذِلُنَا بَادِىَ ٱلرَّأْىِ وَمَا نَرَىٰ لَكُمْ عَلَيْنَا مِن فَضْلٍۭ بَلْ نَظُنُّكُمْ كَذِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,11,' قَالَ يَقَوْمِ أَرَءَيْتُمْ إِن كُنتُ عَلَىٰ بَيِّنَةٍۢ مِّن رَّبِّى وَءَاتَىٰنِى رَحْمَةًۭ مِّنْ عِندِهِۦ فَعُمِّيَتْ عَلَيْكُمْ أَنُلْزِمُكُمُوهَا وَأَنتُمْ لَهَا كَرِهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,11,' وَيَقَوْمِ لَآ أَسْـَٔلُكُمْ عَلَيْهِ مَالًا ۖ إِنْ أَجْرِىَ إِلَّا عَلَى ٱللَّهِ ۚ وَمَآ أَنَا۠ بِطَارِدِ ٱلَّذِينَ ءَامَنُوٓا۟ ۚ إِنَّهُم مُّلَقُوا۟ رَبِّهِمْ وَلَكِنِّىٓ أَرَىٰكُمْ قَوْمًۭا تَجْهَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,11,' وَيَقَوْمِ مَن يَنصُرُنِى مِنَ ٱللَّهِ إِن طَرَدتُّهُمْ ۚ أَفَلَا تَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,11,' وَلَآ أَقُولُ لَكُمْ عِندِى خَزَآىِٕنُ ٱللَّهِ وَلَآ أَعْلَمُ ٱلْغَيْبَ وَلَآ أَقُولُ إِنِّى مَلَكٌۭ وَلَآ أَقُولُ لِلَّذِينَ تَزْدَرِىٓ أَعْيُنُكُمْ لَن يُؤْتِيَهُمُ ٱللَّهُ خَيْرًا ۖ ٱللَّهُ أَعْلَمُ بِمَا فِىٓ أَنفُسِهِمْ ۖ إِنِّىٓ إِذًۭا لَّمِنَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,11,' قَالُوا۟ يَنُوحُ قَدْ جَدَلْتَنَا فَأَكْثَرْتَ جِدَلَنَا فَأْتِنَا بِمَا تَعِدُنَآ إِن كُنتَ مِنَ ٱلصَّدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,11,' قَالَ إِنَّمَا يَأْتِيكُم بِهِ ٱللَّهُ إِن شَآءَ وَمَآ أَنتُم بِمُعْجِزِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,11,' وَلَا يَنفَعُكُمْ نُصْحِىٓ إِنْ أَرَدتُّ أَنْ أَنصَحَ لَكُمْ إِن كَانَ ٱللَّهُ يُرِيدُ أَن يُغْوِيَكُمْ ۚ هُوَ رَبُّكُمْ وَإِلَيْهِ تُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,11,' أَمْ يَقُولُونَ ٱفْتَرَىٰهُ ۖ قُلْ إِنِ ٱفْتَرَيْتُهُۥ فَعَلَىَّ إِجْرَامِى وَأَنَا۠ بَرِىٓءٌۭ مِّمَّا تُجْرِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,11,' وَأُوحِىَ إِلَىٰ نُوحٍ أَنَّهُۥ لَن يُؤْمِنَ مِن قَوْمِكَ إِلَّا مَن قَدْ ءَامَنَ فَلَا تَبْتَئِسْ بِمَا كَانُوا۟ يَفْعَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,11,' وَٱصْنَعِ ٱلْفُلْكَ بِأَعْيُنِنَا وَوَحْيِنَا وَلَا تُخَطِبْنِى فِى ٱلَّذِينَ ظَلَمُوٓا۟ ۚ إِنَّهُم مُّغْرَقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,11,' وَيَصْنَعُ ٱلْفُلْكَ وَكُلَّمَا مَرَّ عَلَيْهِ مَلَأٌۭ مِّن قَوْمِهِۦ سَخِرُوا۟ مِنْهُ ۚ قَالَ إِن تَسْخَرُوا۟ مِنَّا فَإِنَّا نَسْخَرُ مِنكُمْ كَمَا تَسْخَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,11,' فَسَوْفَ تَعْلَمُونَ مَن يَأْتِيهِ عَذَابٌۭ يُخْزِيهِ وَيَحِلُّ عَلَيْهِ عَذَابٌۭ مُّقِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,11,' حَتَّىٰٓ إِذَا جَآءَ أَمْرُنَا وَفَارَ ٱلتَّنُّورُ قُلْنَا ٱحْمِلْ فِيهَا مِن كُلٍّۢ زَوْجَيْنِ ٱثْنَيْنِ وَأَهْلَكَ إِلَّا مَن سَبَقَ عَلَيْهِ ٱلْقَوْلُ وَمَنْ ءَامَنَ ۚ وَمَآ ءَامَنَ مَعَهُۥٓ إِلَّا قَلِيلٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,11,' وَقَالَ ٱرْكَبُوا۟ فِيهَا بِسْمِ ٱللَّهِ مَجْر۪ىٰهَا وَمُرْسَىٰهَآ ۚ إِنَّ رَبِّى لَغَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,11,' وَهِىَ تَجْرِى بِهِمْ فِى مَوْجٍۢ كَٱلْجِبَالِ وَنَادَىٰ نُوحٌ ٱبْنَهُۥ وَكَانَ فِى مَعْزِلٍۢ يَبُنَىَّ ٱرْكَب مَّعَنَا وَلَا تَكُن مَّعَ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,11,' قَالَ سَـَٔاوِىٓ إِلَىٰ جَبَلٍۢ يَعْصِمُنِى مِنَ ٱلْمَآءِ ۚ قَالَ لَا عَاصِمَ ٱلْيَوْمَ مِنْ أَمْرِ ٱللَّهِ إِلَّا مَن رَّحِمَ ۚ وَحَالَ بَيْنَهُمَا ٱلْمَوْجُ فَكَانَ مِنَ ٱلْمُغْرَقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,11,' وَقِيلَ يَٓأَرْضُ ٱبْلَعِى مَآءَكِ وَيَسَمَآءُ أَقْلِعِى وَغِيضَ ٱلْمَآءُ وَقُضِىَ ٱلْأَمْرُ وَٱسْتَوَتْ عَلَى ٱلْجُودِىِّ ۖ وَقِيلَ بُعْدًۭا لِّلْقَوْمِ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,11,' وَنَادَىٰ نُوحٌۭ رَّبَّهُۥ فَقَالَ رَبِّ إِنَّ ٱبْنِى مِنْ أَهْلِى وَإِنَّ وَعْدَكَ ٱلْحَقُّ وَأَنتَ أَحْكَمُ ٱلْحَكِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,11,' قَالَ يَنُوحُ إِنَّهُۥ لَيْسَ مِنْ أَهْلِكَ ۖ إِنَّهُۥ عَمَلٌ غَيْرُ صَلِحٍۢ ۖ فَلَا تَسْـَٔلْنِ مَا لَيْسَ لَكَ بِهِۦ عِلْمٌ ۖ إِنِّىٓ أَعِظُكَ أَن تَكُونَ مِنَ ٱلْجَهِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,11,' قَالَ رَبِّ إِنِّىٓ أَعُوذُ بِكَ أَنْ أَسْـَٔلَكَ مَا لَيْسَ لِى بِهِۦ عِلْمٌۭ ۖ وَإِلَّا تَغْفِرْ لِى وَتَرْحَمْنِىٓ أَكُن مِّنَ ٱلْخَسِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,11,' قِيلَ يَنُوحُ ٱهْبِطْ بِسَلَمٍۢ مِّنَّا وَبَرَكَتٍ عَلَيْكَ وَعَلَىٰٓ أُمَمٍۢ مِّمَّن مَّعَكَ ۚ وَأُمَمٌۭ سَنُمَتِّعُهُمْ ثُمَّ يَمَسُّهُم مِّنَّا عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,11,' تِلْكَ مِنْ أَنۢبَآءِ ٱلْغَيْبِ نُوحِيهَآ إِلَيْكَ ۖ مَا كُنتَ تَعْلَمُهَآ أَنتَ وَلَا قَوْمُكَ مِن قَبْلِ هَذَا ۖ فَٱصْبِرْ ۖ إِنَّ ٱلْعَقِبَةَ لِلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,11,' وَإِلَىٰ عَادٍ أَخَاهُمْ هُودًۭا ۚ قَالَ يَقَوْمِ ٱعْبُدُوا۟ ٱللَّهَ مَا لَكُم مِّنْ إِلَهٍ غَيْرُهُۥٓ ۖ إِنْ أَنتُمْ إِلَّا مُفْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,11,' يَقَوْمِ لَآ أَسْـَٔلُكُمْ عَلَيْهِ أَجْرًا ۖ إِنْ أَجْرِىَ إِلَّا عَلَى ٱلَّذِى فَطَرَنِىٓ ۚ أَفَلَا تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,11,' وَيَقَوْمِ ٱسْتَغْفِرُوا۟ رَبَّكُمْ ثُمَّ تُوبُوٓا۟ إِلَيْهِ يُرْسِلِ ٱلسَّمَآءَ عَلَيْكُم مِّدْرَارًۭا وَيَزِدْكُمْ قُوَّةً إِلَىٰ قُوَّتِكُمْ وَلَا تَتَوَلَّوْا۟ مُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,11,' قَالُوا۟ يَهُودُ مَا جِئْتَنَا بِبَيِّنَةٍۢ وَمَا نَحْنُ بِتَارِكِىٓ ءَالِهَتِنَا عَن قَوْلِكَ وَمَا نَحْنُ لَكَ بِمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,11,' إِن نَّقُولُ إِلَّا ٱعْتَرَىٰكَ بَعْضُ ءَالِهَتِنَا بِسُوٓءٍۢ ۗ قَالَ إِنِّىٓ أُشْهِدُ ٱللَّهَ وَٱشْهَدُوٓا۟ أَنِّى بَرِىٓءٌۭ مِّمَّا تُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,11,' مِن دُونِهِۦ ۖ فَكِيدُونِى جَمِيعًۭا ثُمَّ لَا تُنظِرُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,11,' إِنِّى تَوَكَّلْتُ عَلَى ٱللَّهِ رَبِّى وَرَبِّكُم ۚ مَّا مِن دَآبَّةٍ إِلَّا هُوَ ءَاخِذٌۢ بِنَاصِيَتِهَآ ۚ إِنَّ رَبِّى عَلَىٰ صِرَطٍۢ مُّسْتَقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,11,' فَإِن تَوَلَّوْا۟ فَقَدْ أَبْلَغْتُكُم مَّآ أُرْسِلْتُ بِهِۦٓ إِلَيْكُمْ ۚ وَيَسْتَخْلِفُ رَبِّى قَوْمًا غَيْرَكُمْ وَلَا تَضُرُّونَهُۥ شَيْـًٔا ۚ إِنَّ رَبِّى عَلَىٰ كُلِّ شَىْءٍ حَفِيظٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,11,' وَلَمَّا جَآءَ أَمْرُنَا نَجَّيْنَا هُودًۭا وَٱلَّذِينَ ءَامَنُوا۟ مَعَهُۥ بِرَحْمَةٍۢ مِّنَّا وَنَجَّيْنَهُم مِّنْ عَذَابٍ غَلِيظٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,11,' وَتِلْكَ عَادٌۭ ۖ جَحَدُوا۟ بِـَٔايَتِ رَبِّهِمْ وَعَصَوْا۟ رُسُلَهُۥ وَٱتَّبَعُوٓا۟ أَمْرَ كُلِّ جَبَّارٍ عَنِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,11,' وَأُتْبِعُوا۟ فِى هَذِهِ ٱلدُّنْيَا لَعْنَةًۭ وَيَوْمَ ٱلْقِيَمَةِ ۗ أَلَآ إِنَّ عَادًۭا كَفَرُوا۟ رَبَّهُمْ ۗ أَلَا بُعْدًۭا لِّعَادٍۢ قَوْمِ هُودٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,11,' وَإِلَىٰ ثَمُودَ أَخَاهُمْ صَلِحًۭا ۚ قَالَ يَقَوْمِ ٱعْبُدُوا۟ ٱللَّهَ مَا لَكُم مِّنْ إِلَهٍ غَيْرُهُۥ ۖ هُوَ أَنشَأَكُم مِّنَ ٱلْأَرْضِ وَٱسْتَعْمَرَكُمْ فِيهَا فَٱسْتَغْفِرُوهُ ثُمَّ تُوبُوٓا۟ إِلَيْهِ ۚ إِنَّ رَبِّى قَرِيبٌۭ مُّجِيبٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,11,' قَالُوا۟ يَصَلِحُ قَدْ كُنتَ فِينَا مَرْجُوًّۭا قَبْلَ هَذَآ ۖ أَتَنْهَىٰنَآ أَن نَّعْبُدَ مَا يَعْبُدُ ءَابَآؤُنَا وَإِنَّنَا لَفِى شَكٍّۢ مِّمَّا تَدْعُونَآ إِلَيْهِ مُرِيبٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,11,' قَالَ يَقَوْمِ أَرَءَيْتُمْ إِن كُنتُ عَلَىٰ بَيِّنَةٍۢ مِّن رَّبِّى وَءَاتَىٰنِى مِنْهُ رَحْمَةًۭ فَمَن يَنصُرُنِى مِنَ ٱللَّهِ إِنْ عَصَيْتُهُۥ ۖ فَمَا تَزِيدُونَنِى غَيْرَ تَخْسِيرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,11,' وَيَقَوْمِ هَذِهِۦ نَاقَةُ ٱللَّهِ لَكُمْ ءَايَةًۭ فَذَرُوهَا تَأْكُلْ فِىٓ أَرْضِ ٱللَّهِ وَلَا تَمَسُّوهَا بِسُوٓءٍۢ فَيَأْخُذَكُمْ عَذَابٌۭ قَرِيبٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,11,' فَعَقَرُوهَا فَقَالَ تَمَتَّعُوا۟ فِى دَارِكُمْ ثَلَثَةَ أَيَّامٍۢ ۖ ذَلِكَ وَعْدٌ غَيْرُ مَكْذُوبٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,11,' فَلَمَّا جَآءَ أَمْرُنَا نَجَّيْنَا صَلِحًۭا وَٱلَّذِينَ ءَامَنُوا۟ مَعَهُۥ بِرَحْمَةٍۢ مِّنَّا وَمِنْ خِزْىِ يَوْمِئِذٍ ۗ إِنَّ رَبَّكَ هُوَ ٱلْقَوِىُّ ٱلْعَزِيزُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,11,' وَأَخَذَ ٱلَّذِينَ ظَلَمُوا۟ ٱلصَّيْحَةُ فَأَصْبَحُوا۟ فِى دِيَرِهِمْ جَثِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,11,' كَأَن لَّمْ يَغْنَوْا۟ فِيهَآ ۗ أَلَآ إِنَّ ثَمُودَا۟ كَفَرُوا۟ رَبَّهُمْ ۗ أَلَا بُعْدًۭا لِّثَمُودَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,11,' وَلَقَدْ جَآءَتْ رُسُلُنَآ إِبْرَهِيمَ بِٱلْبُشْرَىٰ قَالُوا۟ سَلَمًۭا ۖ قَالَ سَلَمٌۭ ۖ فَمَا لَبِثَ أَن جَآءَ بِعِجْلٍ حَنِيذٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,11,' فَلَمَّا رَءَآ أَيْدِيَهُمْ لَا تَصِلُ إِلَيْهِ نَكِرَهُمْ وَأَوْجَسَ مِنْهُمْ خِيفَةًۭ ۚ قَالُوا۟ لَا تَخَفْ إِنَّآ أُرْسِلْنَآ إِلَىٰ قَوْمِ لُوطٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,11,' وَٱمْرَأَتُهُۥ قَآئِمَةٌۭ فَضَحِكَتْ فَبَشَّرْنَهَا بِإِسْحَقَ وَمِن وَرَآءِ إِسْحَقَ يَعْقُوبَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,11,' قَالَتْ يَوَيْلَتَىٰٓ ءَأَلِدُ وَأَنَا۠ عَجُوزٌۭ وَهَذَا بَعْلِى شَيْخًا ۖ إِنَّ هَذَا لَشَىْءٌ عَجِيبٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,11,' قَالُوٓا۟ أَتَعْجَبِينَ مِنْ أَمْرِ ٱللَّهِ ۖ رَحْمَتُ ٱللَّهِ وَبَرَكَتُهُۥ عَلَيْكُمْ أَهْلَ ٱلْبَيْتِ ۚ إِنَّهُۥ حَمِيدٌۭ مَّجِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,11,' فَلَمَّا ذَهَبَ عَنْ إِبْرَهِيمَ ٱلرَّوْعُ وَجَآءَتْهُ ٱلْبُشْرَىٰ يُجَدِلُنَا فِى قَوْمِ لُوطٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,11,' إِنَّ إِبْرَهِيمَ لَحَلِيمٌ أَوَّهٌۭ مُّنِيبٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,11,' يَٓإِبْرَهِيمُ أَعْرِضْ عَنْ هَذَآ ۖ إِنَّهُۥ قَدْ جَآءَ أَمْرُ رَبِّكَ ۖ وَإِنَّهُمْ ءَاتِيهِمْ عَذَابٌ غَيْرُ مَرْدُودٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,11,' وَلَمَّا جَآءَتْ رُسُلُنَا لُوطًۭا سِىٓءَ بِهِمْ وَضَاقَ بِهِمْ ذَرْعًۭا وَقَالَ هَذَا يَوْمٌ عَصِيبٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,11,' وَجَآءَهُۥ قَوْمُهُۥ يُهْرَعُونَ إِلَيْهِ وَمِن قَبْلُ كَانُوا۟ يَعْمَلُونَ ٱلسَّيِّـَٔاتِ ۚ قَالَ يَقَوْمِ هَٓؤُلَآءِ بَنَاتِى هُنَّ أَطْهَرُ لَكُمْ ۖ فَٱتَّقُوا۟ ٱللَّهَ وَلَا تُخْزُونِ فِى ضَيْفِىٓ ۖ أَلَيْسَ مِنكُمْ رَجُلٌۭ رَّشِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,11,' قَالُوا۟ لَقَدْ عَلِمْتَ مَا لَنَا فِى بَنَاتِكَ مِنْ حَقٍّۢ وَإِنَّكَ لَتَعْلَمُ مَا نُرِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,11,' قَالَ لَوْ أَنَّ لِى بِكُمْ قُوَّةً أَوْ ءَاوِىٓ إِلَىٰ رُكْنٍۢ شَدِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,11,' قَالُوا۟ يَلُوطُ إِنَّا رُسُلُ رَبِّكَ لَن يَصِلُوٓا۟ إِلَيْكَ ۖ فَأَسْرِ بِأَهْلِكَ بِقِطْعٍۢ مِّنَ ٱلَّيْلِ وَلَا يَلْتَفِتْ مِنكُمْ أَحَدٌ إِلَّا ٱمْرَأَتَكَ ۖ إِنَّهُۥ مُصِيبُهَا مَآ أَصَابَهُمْ ۚ إِنَّ مَوْعِدَهُمُ ٱلصُّبْحُ ۚ أَلَيْسَ ٱلصُّبْحُ بِقَرِيبٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,11,' فَلَمَّا جَآءَ أَمْرُنَا جَعَلْنَا عَلِيَهَا سَافِلَهَا وَأَمْطَرْنَا عَلَيْهَا حِجَارَةًۭ مِّن سِجِّيلٍۢ مَّنضُودٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,11,' مُّسَوَّمَةً عِندَ رَبِّكَ ۖ وَمَا هِىَ مِنَ ٱلظَّلِمِينَ بِبَعِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,11,' وَإِلَىٰ مَدْيَنَ أَخَاهُمْ شُعَيْبًۭا ۚ قَالَ يَقَوْمِ ٱعْبُدُوا۟ ٱللَّهَ مَا لَكُم مِّنْ إِلَهٍ غَيْرُهُۥ ۖ وَلَا تَنقُصُوا۟ ٱلْمِكْيَالَ وَٱلْمِيزَانَ ۚ إِنِّىٓ أَرَىٰكُم بِخَيْرٍۢ وَإِنِّىٓ أَخَافُ عَلَيْكُمْ عَذَابَ يَوْمٍۢ مُّحِيطٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,11,' وَيَقَوْمِ أَوْفُوا۟ ٱلْمِكْيَالَ وَٱلْمِيزَانَ بِٱلْقِسْطِ ۖ وَلَا تَبْخَسُوا۟ ٱلنَّاسَ أَشْيَآءَهُمْ وَلَا تَعْثَوْا۟ فِى ٱلْأَرْضِ مُفْسِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,11,' بَقِيَّتُ ٱللَّهِ خَيْرٌۭ لَّكُمْ إِن كُنتُم مُّؤْمِنِينَ ۚ وَمَآ أَنَا۠ عَلَيْكُم بِحَفِيظٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,11,' قَالُوا۟ يَشُعَيْبُ أَصَلَوٰتُكَ تَأْمُرُكَ أَن نَّتْرُكَ مَا يَعْبُدُ ءَابَآؤُنَآ أَوْ أَن نَّفْعَلَ فِىٓ أَمْوَلِنَا مَا نَشَٓؤُا۟ ۖ إِنَّكَ لَأَنتَ ٱلْحَلِيمُ ٱلرَّشِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,11,' قَالَ يَقَوْمِ أَرَءَيْتُمْ إِن كُنتُ عَلَىٰ بَيِّنَةٍۢ مِّن رَّبِّى وَرَزَقَنِى مِنْهُ رِزْقًا حَسَنًۭا ۚ وَمَآ أُرِيدُ أَنْ أُخَالِفَكُمْ إِلَىٰ مَآ أَنْهَىٰكُمْ عَنْهُ ۚ إِنْ أُرِيدُ إِلَّا ٱلْإِصْلَحَ مَا ٱسْتَطَعْتُ ۚ وَمَا تَوْفِيقِىٓ إِلَّا بِٱللَّهِ ۚ عَلَيْهِ تَوَكَّلْتُ وَإِلَيْهِ أُنِيبُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,11,' وَيَقَوْمِ لَا يَجْرِمَنَّكُمْ شِقَاقِىٓ أَن يُصِيبَكُم مِّثْلُ مَآ أَصَابَ قَوْمَ نُوحٍ أَوْ قَوْمَ هُودٍ أَوْ قَوْمَ صَلِحٍۢ ۚ وَمَا قَوْمُ لُوطٍۢ مِّنكُم بِبَعِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,11,' وَٱسْتَغْفِرُوا۟ رَبَّكُمْ ثُمَّ تُوبُوٓا۟ إِلَيْهِ ۚ إِنَّ رَبِّى رَحِيمٌۭ وَدُودٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,11,' قَالُوا۟ يَشُعَيْبُ مَا نَفْقَهُ كَثِيرًۭا مِّمَّا تَقُولُ وَإِنَّا لَنَرَىٰكَ فِينَا ضَعِيفًۭا ۖ وَلَوْلَا رَهْطُكَ لَرَجَمْنَكَ ۖ وَمَآ أَنتَ عَلَيْنَا بِعَزِيزٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,11,' قَالَ يَقَوْمِ أَرَهْطِىٓ أَعَزُّ عَلَيْكُم مِّنَ ٱللَّهِ وَٱتَّخَذْتُمُوهُ وَرَآءَكُمْ ظِهْرِيًّا ۖ إِنَّ رَبِّى بِمَا تَعْمَلُونَ مُحِيطٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,11,' وَيَقَوْمِ ٱعْمَلُوا۟ عَلَىٰ مَكَانَتِكُمْ إِنِّى عَمِلٌۭ ۖ سَوْفَ تَعْلَمُونَ مَن يَأْتِيهِ عَذَابٌۭ يُخْزِيهِ وَمَنْ هُوَ كَذِبٌۭ ۖ وَٱرْتَقِبُوٓا۟ إِنِّى مَعَكُمْ رَقِيبٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,11,' وَلَمَّا جَآءَ أَمْرُنَا نَجَّيْنَا شُعَيْبًۭا وَٱلَّذِينَ ءَامَنُوا۟ مَعَهُۥ بِرَحْمَةٍۢ مِّنَّا وَأَخَذَتِ ٱلَّذِينَ ظَلَمُوا۟ ٱلصَّيْحَةُ فَأَصْبَحُوا۟ فِى دِيَرِهِمْ جَثِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,11,' كَأَن لَّمْ يَغْنَوْا۟ فِيهَآ ۗ أَلَا بُعْدًۭا لِّمَدْيَنَ كَمَا بَعِدَتْ ثَمُودُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,11,' وَلَقَدْ أَرْسَلْنَا مُوسَىٰ بِـَٔايَتِنَا وَسُلْطَنٍۢ مُّبِينٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,11,' إِلَىٰ فِرْعَوْنَ وَمَلَإِي۟هِۦ فَٱتَّبَعُوٓا۟ أَمْرَ فِرْعَوْنَ ۖ وَمَآ أَمْرُ فِرْعَوْنَ بِرَشِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,11,' يَقْدُمُ قَوْمَهُۥ يَوْمَ ٱلْقِيَمَةِ فَأَوْرَدَهُمُ ٱلنَّارَ ۖ وَبِئْسَ ٱلْوِرْدُ ٱلْمَوْرُودُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,11,' وَأُتْبِعُوا۟ فِى هَذِهِۦ لَعْنَةًۭ وَيَوْمَ ٱلْقِيَمَةِ ۚ بِئْسَ ٱلرِّفْدُ ٱلْمَرْفُودُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,1,11,' ذَلِكَ مِنْ أَنۢبَآءِ ٱلْقُرَىٰ نَقُصُّهُۥ عَلَيْكَ ۖ مِنْهَا قَآئِمٌۭ وَحَصِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,1,11,' وَمَا ظَلَمْنَهُمْ وَلَكِن ظَلَمُوٓا۟ أَنفُسَهُمْ ۖ فَمَآ أَغْنَتْ عَنْهُمْ ءَالِهَتُهُمُ ٱلَّتِى يَدْعُونَ مِن دُونِ ٱللَّهِ مِن شَىْءٍۢ لَّمَّا جَآءَ أَمْرُ رَبِّكَ ۖ وَمَا زَادُوهُمْ غَيْرَ تَتْبِيبٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,1,11,' وَكَذَلِكَ أَخْذُ رَبِّكَ إِذَآ أَخَذَ ٱلْقُرَىٰ وَهِىَ ظَلِمَةٌ ۚ إِنَّ أَخْذَهُۥٓ أَلِيمٌۭ شَدِيدٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,1,11,' إِنَّ فِى ذَلِكَ لَءَايَةًۭ لِّمَنْ خَافَ عَذَابَ ٱلْءَاخِرَةِ ۚ ذَلِكَ يَوْمٌۭ مَّجْمُوعٌۭ لَّهُ ٱلنَّاسُ وَذَلِكَ يَوْمٌۭ مَّشْهُودٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,1,11,' وَمَا نُؤَخِّرُهُۥٓ إِلَّا لِأَجَلٍۢ مَّعْدُودٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,1,11,' يَوْمَ يَأْتِ لَا تَكَلَّمُ نَفْسٌ إِلَّا بِإِذْنِهِۦ ۚ فَمِنْهُمْ شَقِىٌّۭ وَسَعِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,1,11,' فَأَمَّا ٱلَّذِينَ شَقُوا۟ فَفِى ٱلنَّارِ لَهُمْ فِيهَا زَفِيرٌۭ وَشَهِيقٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,1,11,' خَلِدِينَ فِيهَا مَا دَامَتِ ٱلسَّمَوَتُ وَٱلْأَرْضُ إِلَّا مَا شَآءَ رَبُّكَ ۚ إِنَّ رَبَّكَ فَعَّالٌۭ لِّمَا يُرِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,1,11,' وَأَمَّا ٱلَّذِينَ سُعِدُوا۟ فَفِى ٱلْجَنَّةِ خَلِدِينَ فِيهَا مَا دَامَتِ ٱلسَّمَوَتُ وَٱلْأَرْضُ إِلَّا مَا شَآءَ رَبُّكَ ۖ عَطَآءً غَيْرَ مَجْذُوذٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,1,11,' فَلَا تَكُ فِى مِرْيَةٍۢ مِّمَّا يَعْبُدُ هَٓؤُلَآءِ ۚ مَا يَعْبُدُونَ إِلَّا كَمَا يَعْبُدُ ءَابَآؤُهُم مِّن قَبْلُ ۚ وَإِنَّا لَمُوَفُّوهُمْ نَصِيبَهُمْ غَيْرَ مَنقُوصٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,1,11,' وَلَقَدْ ءَاتَيْنَا مُوسَى ٱلْكِتَبَ فَٱخْتُلِفَ فِيهِ ۚ وَلَوْلَا كَلِمَةٌۭ سَبَقَتْ مِن رَّبِّكَ لَقُضِىَ بَيْنَهُمْ ۚ وَإِنَّهُمْ لَفِى شَكٍّۢ مِّنْهُ مُرِيبٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,1,11,' وَإِنَّ كُلًّۭا لَّمَّا لَيُوَفِّيَنَّهُمْ رَبُّكَ أَعْمَلَهُمْ ۚ إِنَّهُۥ بِمَا يَعْمَلُونَ خَبِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,1,11,' فَٱسْتَقِمْ كَمَآ أُمِرْتَ وَمَن تَابَ مَعَكَ وَلَا تَطْغَوْا۟ ۚ إِنَّهُۥ بِمَا تَعْمَلُونَ بَصِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,1,11,' وَلَا تَرْكَنُوٓا۟ إِلَى ٱلَّذِينَ ظَلَمُوا۟ فَتَمَسَّكُمُ ٱلنَّارُ وَمَا لَكُم مِّن دُونِ ٱللَّهِ مِنْ أَوْلِيَآءَ ثُمَّ لَا تُنصَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,1,11,' وَأَقِمِ ٱلصَّلَوٰةَ طَرَفَىِ ٱلنَّهَارِ وَزُلَفًۭا مِّنَ ٱلَّيْلِ ۚ إِنَّ ٱلْحَسَنَتِ يُذْهِبْنَ ٱلسَّيِّـَٔاتِ ۚ ذَلِكَ ذِكْرَىٰ لِلذَّكِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,1,11,' وَٱصْبِرْ فَإِنَّ ٱللَّهَ لَا يُضِيعُ أَجْرَ ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,1,11,' فَلَوْلَا كَانَ مِنَ ٱلْقُرُونِ مِن قَبْلِكُمْ أُو۟لُوا۟ بَقِيَّةٍۢ يَنْهَوْنَ عَنِ ٱلْفَسَادِ فِى ٱلْأَرْضِ إِلَّا قَلِيلًۭا مِّمَّنْ أَنجَيْنَا مِنْهُمْ ۗ وَٱتَّبَعَ ٱلَّذِينَ ظَلَمُوا۟ مَآ أُتْرِفُوا۟ فِيهِ وَكَانُوا۟ مُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,1,11,' وَمَا كَانَ رَبُّكَ لِيُهْلِكَ ٱلْقُرَىٰ بِظُلْمٍۢ وَأَهْلُهَا مُصْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,1,11,' وَلَوْ شَآءَ رَبُّكَ لَجَعَلَ ٱلنَّاسَ أُمَّةًۭ وَحِدَةًۭ ۖ وَلَا يَزَالُونَ مُخْتَلِفِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,1,11,' إِلَّا مَن رَّحِمَ رَبُّكَ ۚ وَلِذَلِكَ خَلَقَهُمْ ۗ وَتَمَّتْ كَلِمَةُ رَبِّكَ لَأَمْلَأَنَّ جَهَنَّمَ مِنَ ٱلْجِنَّةِ وَٱلنَّاسِ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,1,11,' وَكُلًّۭا نَّقُصُّ عَلَيْكَ مِنْ أَنۢبَآءِ ٱلرُّسُلِ مَا نُثَبِّتُ بِهِۦ فُؤَادَكَ ۚ وَجَآءَكَ فِى هَذِهِ ٱلْحَقُّ وَمَوْعِظَةٌۭ وَذِكْرَىٰ لِلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,1,11,' وَقُل لِّلَّذِينَ لَا يُؤْمِنُونَ ٱعْمَلُوا۟ عَلَىٰ مَكَانَتِكُمْ إِنَّا عَمِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,1,11,' وَٱنتَظِرُوٓا۟ إِنَّا مُنتَظِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,1,11,' وَلِلَّهِ غَيْبُ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَإِلَيْهِ يُرْجَعُ ٱلْأَمْرُ كُلُّهُۥ فَٱعْبُدْهُ وَتَوَكَّلْ عَلَيْهِ ۚ وَمَا رَبُّكَ بِغَفِلٍ عَمَّا تَعْمَلُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(12,12,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,12,' الٓر ۚ تِلْكَ ءَايَتُ ٱلْكِتَبِ ٱلْمُبِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,12,' إِنَّآ أَنزَلْنَهُ قُرْءَنًا عَرَبِيًّۭا لَّعَلَّكُمْ تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,12,' نَحْنُ نَقُصُّ عَلَيْكَ أَحْسَنَ ٱلْقَصَصِ بِمَآ أَوْحَيْنَآ إِلَيْكَ هَذَا ٱلْقُرْءَانَ وَإِن كُنتَ مِن قَبْلِهِۦ لَمِنَ ٱلْغَفِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,12,' إِذْ قَالَ يُوسُفُ لِأَبِيهِ يَٓأَبَتِ إِنِّى رَأَيْتُ أَحَدَ عَشَرَ كَوْكَبًۭا وَٱلشَّمْسَ وَٱلْقَمَرَ رَأَيْتُهُمْ لِى سَجِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,12,' قَالَ يَبُنَىَّ لَا تَقْصُصْ رُءْيَاكَ عَلَىٰٓ إِخْوَتِكَ فَيَكِيدُوا۟ لَكَ كَيْدًا ۖ إِنَّ ٱلشَّيْطَنَ لِلْإِنسَنِ عَدُوٌّۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,12,' وَكَذَلِكَ يَجْتَبِيكَ رَبُّكَ وَيُعَلِّمُكَ مِن تَأْوِيلِ ٱلْأَحَادِيثِ وَيُتِمُّ نِعْمَتَهُۥ عَلَيْكَ وَعَلَىٰٓ ءَالِ يَعْقُوبَ كَمَآ أَتَمَّهَا عَلَىٰٓ أَبَوَيْكَ مِن قَبْلُ إِبْرَهِيمَ وَإِسْحَقَ ۚ إِنَّ رَبَّكَ عَلِيمٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,12,' لَّقَدْ كَانَ فِى يُوسُفَ وَإِخْوَتِهِۦٓ ءَايَتٌۭ لِّلسَّآئِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,12,' إِذْ قَالُوا۟ لَيُوسُفُ وَأَخُوهُ أَحَبُّ إِلَىٰٓ أَبِينَا مِنَّا وَنَحْنُ عُصْبَةٌ إِنَّ أَبَانَا لَفِى ضَلَلٍۢ مُّبِينٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,12,' ٱقْتُلُوا۟ يُوسُفَ أَوِ ٱطْرَحُوهُ أَرْضًۭا يَخْلُ لَكُمْ وَجْهُ أَبِيكُمْ وَتَكُونُوا۟ مِنۢ بَعْدِهِۦ قَوْمًۭا صَلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,12,' قَالَ قَآئِلٌۭ مِّنْهُمْ لَا تَقْتُلُوا۟ يُوسُفَ وَأَلْقُوهُ فِى غَيَبَتِ ٱلْجُبِّ يَلْتَقِطْهُ بَعْضُ ٱلسَّيَّارَةِ إِن كُنتُمْ فَعِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,12,' قَالُوا۟ يَٓأَبَانَا مَا لَكَ لَا تَأْمَ۫نَّا عَلَىٰ يُوسُفَ وَإِنَّا لَهُۥ لَنَصِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,12,' أَرْسِلْهُ مَعَنَا غَدًۭا يَرْتَعْ وَيَلْعَبْ وَإِنَّا لَهُۥ لَحَفِظُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,12,' قَالَ إِنِّى لَيَحْزُنُنِىٓ أَن تَذْهَبُوا۟ بِهِۦ وَأَخَافُ أَن يَأْكُلَهُ ٱلذِّئْبُ وَأَنتُمْ عَنْهُ غَفِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,12,' قَالُوا۟ لَىِٕنْ أَكَلَهُ ٱلذِّئْبُ وَنَحْنُ عُصْبَةٌ إِنَّآ إِذًۭا لَّخَسِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,12,' فَلَمَّا ذَهَبُوا۟ بِهِۦ وَأَجْمَعُوٓا۟ أَن يَجْعَلُوهُ فِى غَيَبَتِ ٱلْجُبِّ ۚ وَأَوْحَيْنَآ إِلَيْهِ لَتُنَبِّئَنَّهُم بِأَمْرِهِمْ هَذَا وَهُمْ لَا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,12,' وَجَآءُوٓ أَبَاهُمْ عِشَآءًۭ يَبْكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,12,' قَالُوا۟ يَٓأَبَانَآ إِنَّا ذَهَبْنَا نَسْتَبِقُ وَتَرَكْنَا يُوسُفَ عِندَ مَتَعِنَا فَأَكَلَهُ ٱلذِّئْبُ ۖ وَمَآ أَنتَ بِمُؤْمِنٍۢ لَّنَا وَلَوْ كُنَّا صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,12,' وَجَآءُو عَلَىٰ قَمِيصِهِۦ بِدَمٍۢ كَذِبٍۢ ۚ قَالَ بَلْ سَوَّلَتْ لَكُمْ أَنفُسُكُمْ أَمْرًۭا ۖ فَصَبْرٌۭ جَمِيلٌۭ ۖ وَٱللَّهُ ٱلْمُسْتَعَانُ عَلَىٰ مَا تَصِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,12,' وَجَآءَتْ سَيَّارَةٌۭ فَأَرْسَلُوا۟ وَارِدَهُمْ فَأَدْلَىٰ دَلْوَهُۥ ۖ قَالَ يَبُشْرَىٰ هَذَا غُلَمٌۭ ۚ وَأَسَرُّوهُ بِضَعَةًۭ ۚ وَٱللَّهُ عَلِيمٌۢ بِمَا يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,12,' وَشَرَوْهُ بِثَمَنٍۭ بَخْسٍۢ دَرَهِمَ مَعْدُودَةٍۢ وَكَانُوا۟ فِيهِ مِنَ ٱلزَّهِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,12,' وَقَالَ ٱلَّذِى ٱشْتَرَىٰهُ مِن مِّصْرَ لِٱمْرَأَتِهِۦٓ أَكْرِمِى مَثْوَىٰهُ عَسَىٰٓ أَن يَنفَعَنَآ أَوْ نَتَّخِذَهُۥ وَلَدًۭا ۚ وَكَذَلِكَ مَكَّنَّا لِيُوسُفَ فِى ٱلْأَرْضِ وَلِنُعَلِّمَهُۥ مِن تَأْوِيلِ ٱلْأَحَادِيثِ ۚ وَٱللَّهُ غَالِبٌ عَلَىٰٓ أَمْرِهِۦ وَلَكِنَّ أَكْثَرَ ٱلنَّاسِ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,12,' وَلَمَّا بَلَغَ أَشُدَّهُۥٓ ءَاتَيْنَهُ حُكْمًۭا وَعِلْمًۭا ۚ وَكَذَلِكَ نَجْزِى ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,12,' وَرَوَدَتْهُ ٱلَّتِى هُوَ فِى بَيْتِهَا عَن نَّفْسِهِۦ وَغَلَّقَتِ ٱلْأَبْوَبَ وَقَالَتْ هَيْتَ لَكَ ۚ قَالَ مَعَاذَ ٱللَّهِ ۖ إِنَّهُۥ رَبِّىٓ أَحْسَنَ مَثْوَاىَ ۖ إِنَّهُۥ لَا يُفْلِحُ ٱلظَّلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,12,' وَلَقَدْ هَمَّتْ بِهِۦ ۖ وَهَمَّ بِهَا لَوْلَآ أَن رَّءَا بُرْهَنَ رَبِّهِۦ ۚ كَذَلِكَ لِنَصْرِفَ عَنْهُ ٱلسُّوٓءَ وَٱلْفَحْشَآءَ ۚ إِنَّهُۥ مِنْ عِبَادِنَا ٱلْمُخْلَصِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,12,' وَٱسْتَبَقَا ٱلْبَابَ وَقَدَّتْ قَمِيصَهُۥ مِن دُبُرٍۢ وَأَلْفَيَا سَيِّدَهَا لَدَا ٱلْبَابِ ۚ قَالَتْ مَا جَزَآءُ مَنْ أَرَادَ بِأَهْلِكَ سُوٓءًا إِلَّآ أَن يُسْجَنَ أَوْ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,12,' قَالَ هِىَ رَوَدَتْنِى عَن نَّفْسِى ۚ وَشَهِدَ شَاهِدٌۭ مِّنْ أَهْلِهَآ إِن كَانَ قَمِيصُهُۥ قُدَّ مِن قُبُلٍۢ فَصَدَقَتْ وَهُوَ مِنَ ٱلْكَذِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,12,' وَإِن كَانَ قَمِيصُهُۥ قُدَّ مِن دُبُرٍۢ فَكَذَبَتْ وَهُوَ مِنَ ٱلصَّدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,12,' فَلَمَّا رَءَا قَمِيصَهُۥ قُدَّ مِن دُبُرٍۢ قَالَ إِنَّهُۥ مِن كَيْدِكُنَّ ۖ إِنَّ كَيْدَكُنَّ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,12,' يُوسُفُ أَعْرِضْ عَنْ هَذَا ۚ وَٱسْتَغْفِرِى لِذَنۢبِكِ ۖ إِنَّكِ كُنتِ مِنَ ٱلْخَاطِـِٔينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,12,' وَقَالَ نِسْوَةٌۭ فِى ٱلْمَدِينَةِ ٱمْرَأَتُ ٱلْعَزِيزِ تُرَوِدُ فَتَىٰهَا عَن نَّفْسِهِۦ ۖ قَدْ شَغَفَهَا حُبًّا ۖ إِنَّا لَنَرَىٰهَا فِى ضَلَلٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,12,' فَلَمَّا سَمِعَتْ بِمَكْرِهِنَّ أَرْسَلَتْ إِلَيْهِنَّ وَأَعْتَدَتْ لَهُنَّ مُتَّكَـًۭٔا وَءَاتَتْ كُلَّ وَحِدَةٍۢ مِّنْهُنَّ سِكِّينًۭا وَقَالَتِ ٱخْرُجْ عَلَيْهِنَّ ۖ فَلَمَّا رَأَيْنَهُۥٓ أَكْبَرْنَهُۥ وَقَطَّعْنَ أَيْدِيَهُنَّ وَقُلْنَ حَشَ لِلَّهِ مَا هَذَا بَشَرًا إِنْ هَذَآ إِلَّا مَلَكٌۭ كَرِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,12,' قَالَتْ فَذَلِكُنَّ ٱلَّذِى لُمْتُنَّنِى فِيهِ ۖ وَلَقَدْ رَوَدتُّهُۥ عَن نَّفْسِهِۦ فَٱسْتَعْصَمَ ۖ وَلَىِٕن لَّمْ يَفْعَلْ مَآ ءَامُرُهُۥ لَيُسْجَنَنَّ وَلَيَكُونًۭا مِّنَ ٱلصَّغِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,12,' قَالَ رَبِّ ٱلسِّجْنُ أَحَبُّ إِلَىَّ مِمَّا يَدْعُونَنِىٓ إِلَيْهِ ۖ وَإِلَّا تَصْرِفْ عَنِّى كَيْدَهُنَّ أَصْبُ إِلَيْهِنَّ وَأَكُن مِّنَ ٱلْجَهِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,12,' فَٱسْتَجَابَ لَهُۥ رَبُّهُۥ فَصَرَفَ عَنْهُ كَيْدَهُنَّ ۚ إِنَّهُۥ هُوَ ٱلسَّمِيعُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,12,' ثُمَّ بَدَا لَهُم مِّنۢ بَعْدِ مَا رَأَوُا۟ ٱلْءَايَتِ لَيَسْجُنُنَّهُۥ حَتَّىٰ حِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,12,' وَدَخَلَ مَعَهُ ٱلسِّجْنَ فَتَيَانِ ۖ قَالَ أَحَدُهُمَآ إِنِّىٓ أَرَىٰنِىٓ أَعْصِرُ خَمْرًۭا ۖ وَقَالَ ٱلْءَاخَرُ إِنِّىٓ أَرَىٰنِىٓ أَحْمِلُ فَوْقَ رَأْسِى خُبْزًۭا تَأْكُلُ ٱلطَّيْرُ مِنْهُ ۖ نَبِّئْنَا بِتَأْوِيلِهِۦٓ ۖ إِنَّا نَرَىٰكَ مِنَ ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,12,' قَالَ لَا يَأْتِيكُمَا طَعَامٌۭ تُرْزَقَانِهِۦٓ إِلَّا نَبَّأْتُكُمَا بِتَأْوِيلِهِۦ قَبْلَ أَن يَأْتِيَكُمَا ۚ ذَلِكُمَا مِمَّا عَلَّمَنِى رَبِّىٓ ۚ إِنِّى تَرَكْتُ مِلَّةَ قَوْمٍۢ لَّا يُؤْمِنُونَ بِٱللَّهِ وَهُم بِٱلْءَاخِرَةِ هُمْ كَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,12,' وَٱتَّبَعْتُ مِلَّةَ ءَابَآءِىٓ إِبْرَهِيمَ وَإِسْحَقَ وَيَعْقُوبَ ۚ مَا كَانَ لَنَآ أَن نُّشْرِكَ بِٱللَّهِ مِن شَىْءٍۢ ۚ ذَلِكَ مِن فَضْلِ ٱللَّهِ عَلَيْنَا وَعَلَى ٱلنَّاسِ وَلَكِنَّ أَكْثَرَ ٱلنَّاسِ لَا يَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,12,' يَصَىٰحِبَىِ ٱلسِّجْنِ ءَأَرْبَابٌۭ مُّتَفَرِّقُونَ خَيْرٌ أَمِ ٱللَّهُ ٱلْوَحِدُ ٱلْقَهَّارُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,12,' مَا تَعْبُدُونَ مِن دُونِهِۦٓ إِلَّآ أَسْمَآءًۭ سَمَّيْتُمُوهَآ أَنتُمْ وَءَابَآؤُكُم مَّآ أَنزَلَ ٱللَّهُ بِهَا مِن سُلْطَنٍ ۚ إِنِ ٱلْحُكْمُ إِلَّا لِلَّهِ ۚ أَمَرَ أَلَّا تَعْبُدُوٓا۟ إِلَّآ إِيَّاهُ ۚ ذَلِكَ ٱلدِّينُ ٱلْقَيِّمُ وَلَكِنَّ أَكْثَرَ ٱلنَّاسِ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,12,' يَصَىٰحِبَىِ ٱلسِّجْنِ أَمَّآ أَحَدُكُمَا فَيَسْقِى رَبَّهُۥ خَمْرًۭا ۖ وَأَمَّا ٱلْءَاخَرُ فَيُصْلَبُ فَتَأْكُلُ ٱلطَّيْرُ مِن رَّأْسِهِۦ ۚ قُضِىَ ٱلْأَمْرُ ٱلَّذِى فِيهِ تَسْتَفْتِيَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,12,' وَقَالَ لِلَّذِى ظَنَّ أَنَّهُۥ نَاجٍۢ مِّنْهُمَا ٱذْكُرْنِى عِندَ رَبِّكَ فَأَنسَىٰهُ ٱلشَّيْطَنُ ذِكْرَ رَبِّهِۦ فَلَبِثَ فِى ٱلسِّجْنِ بِضْعَ سِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,12,' وَقَالَ ٱلْمَلِكُ إِنِّىٓ أَرَىٰ سَبْعَ بَقَرَتٍۢ سِمَانٍۢ يَأْكُلُهُنَّ سَبْعٌ عِجَافٌۭ وَسَبْعَ سُنۢبُلَتٍ خُضْرٍۢ وَأُخَرَ يَابِسَتٍۢ ۖ يَٓأَيُّهَا ٱلْمَلَأُ أَفْتُونِى فِى رُءْيَىَ إِن كُنتُمْ لِلرُّءْيَا تَعْبُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,12,' قَالُوٓا۟ أَضْغَثُ أَحْلَمٍۢ ۖ وَمَا نَحْنُ بِتَأْوِيلِ ٱلْأَحْلَمِ بِعَلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,12,' وَقَالَ ٱلَّذِى نَجَا مِنْهُمَا وَٱدَّكَرَ بَعْدَ أُمَّةٍ أَنَا۠ أُنَبِّئُكُم بِتَأْوِيلِهِۦ فَأَرْسِلُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,12,' يُوسُفُ أَيُّهَا ٱلصِّدِّيقُ أَفْتِنَا فِى سَبْعِ بَقَرَتٍۢ سِمَانٍۢ يَأْكُلُهُنَّ سَبْعٌ عِجَافٌۭ وَسَبْعِ سُنۢبُلَتٍ خُضْرٍۢ وَأُخَرَ يَابِسَتٍۢ لَّعَلِّىٓ أَرْجِعُ إِلَى ٱلنَّاسِ لَعَلَّهُمْ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,12,' قَالَ تَزْرَعُونَ سَبْعَ سِنِينَ دَأَبًۭا فَمَا حَصَدتُّمْ فَذَرُوهُ فِى سُنۢبُلِهِۦٓ إِلَّا قَلِيلًۭا مِّمَّا تَأْكُلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,12,' ثُمَّ يَأْتِى مِنۢ بَعْدِ ذَلِكَ سَبْعٌۭ شِدَادٌۭ يَأْكُلْنَ مَا قَدَّمْتُمْ لَهُنَّ إِلَّا قَلِيلًۭا مِّمَّا تُحْصِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,12,' ثُمَّ يَأْتِى مِنۢ بَعْدِ ذَلِكَ عَامٌۭ فِيهِ يُغَاثُ ٱلنَّاسُ وَفِيهِ يَعْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,12,' وَقَالَ ٱلْمَلِكُ ٱئْتُونِى بِهِۦ ۖ فَلَمَّا جَآءَهُ ٱلرَّسُولُ قَالَ ٱرْجِعْ إِلَىٰ رَبِّكَ فَسْـَٔلْهُ مَا بَالُ ٱلنِّسْوَةِ ٱلَّتِى قَطَّعْنَ أَيْدِيَهُنَّ ۚ إِنَّ رَبِّى بِكَيْدِهِنَّ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,12,' قَالَ مَا خَطْبُكُنَّ إِذْ رَوَدتُّنَّ يُوسُفَ عَن نَّفْسِهِۦ ۚ قُلْنَ حَشَ لِلَّهِ مَا عَلِمْنَا عَلَيْهِ مِن سُوٓءٍۢ ۚ قَالَتِ ٱمْرَأَتُ ٱلْعَزِيزِ ٱلْـَٔنَ حَصْحَصَ ٱلْحَقُّ أَنَا۠ رَوَدتُّهُۥ عَن نَّفْسِهِۦ وَإِنَّهُۥ لَمِنَ ٱلصَّدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,12,' ذَلِكَ لِيَعْلَمَ أَنِّى لَمْ أَخُنْهُ بِٱلْغَيْبِ وَأَنَّ ٱللَّهَ لَا يَهْدِى كَيْدَ ٱلْخَآئِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,12,' وَمَآ أُبَرِّئُ نَفْسِىٓ ۚ إِنَّ ٱلنَّفْسَ لَأَمَّارَةٌۢ بِٱلسُّوٓءِ إِلَّا مَا رَحِمَ رَبِّىٓ ۚ إِنَّ رَبِّى غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,12,' وَقَالَ ٱلْمَلِكُ ٱئْتُونِى بِهِۦٓ أَسْتَخْلِصْهُ لِنَفْسِى ۖ فَلَمَّا كَلَّمَهُۥ قَالَ إِنَّكَ ٱلْيَوْمَ لَدَيْنَا مَكِينٌ أَمِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,12,' قَالَ ٱجْعَلْنِى عَلَىٰ خَزَآىِٕنِ ٱلْأَرْضِ ۖ إِنِّى حَفِيظٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,12,' وَكَذَلِكَ مَكَّنَّا لِيُوسُفَ فِى ٱلْأَرْضِ يَتَبَوَّأُ مِنْهَا حَيْثُ يَشَآءُ ۚ نُصِيبُ بِرَحْمَتِنَا مَن نَّشَآءُ ۖ وَلَا نُضِيعُ أَجْرَ ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,12,' وَلَأَجْرُ ٱلْءَاخِرَةِ خَيْرٌۭ لِّلَّذِينَ ءَامَنُوا۟ وَكَانُوا۟ يَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,12,' وَجَآءَ إِخْوَةُ يُوسُفَ فَدَخَلُوا۟ عَلَيْهِ فَعَرَفَهُمْ وَهُمْ لَهُۥ مُنكِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,12,' وَلَمَّا جَهَّزَهُم بِجَهَازِهِمْ قَالَ ٱئْتُونِى بِأَخٍۢ لَّكُم مِّنْ أَبِيكُمْ ۚ أَلَا تَرَوْنَ أَنِّىٓ أُوفِى ٱلْكَيْلَ وَأَنَا۠ خَيْرُ ٱلْمُنزِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,12,' فَإِن لَّمْ تَأْتُونِى بِهِۦ فَلَا كَيْلَ لَكُمْ عِندِى وَلَا تَقْرَبُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,12,' قَالُوا۟ سَنُرَوِدُ عَنْهُ أَبَاهُ وَإِنَّا لَفَعِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,12,' وَقَالَ لِفِتْيَنِهِ ٱجْعَلُوا۟ بِضَعَتَهُمْ فِى رِحَالِهِمْ لَعَلَّهُمْ يَعْرِفُونَهَآ إِذَا ٱنقَلَبُوٓا۟ إِلَىٰٓ أَهْلِهِمْ لَعَلَّهُمْ يَرْجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,12,' فَلَمَّا رَجَعُوٓا۟ إِلَىٰٓ أَبِيهِمْ قَالُوا۟ يَٓأَبَانَا مُنِعَ مِنَّا ٱلْكَيْلُ فَأَرْسِلْ مَعَنَآ أَخَانَا نَكْتَلْ وَإِنَّا لَهُۥ لَحَفِظُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,12,' قَالَ هَلْ ءَامَنُكُمْ عَلَيْهِ إِلَّا كَمَآ أَمِنتُكُمْ عَلَىٰٓ أَخِيهِ مِن قَبْلُ ۖ فَٱللَّهُ خَيْرٌ حَفِظًۭا ۖ وَهُوَ أَرْحَمُ ٱلرَّحِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,12,' وَلَمَّا فَتَحُوا۟ مَتَعَهُمْ وَجَدُوا۟ بِضَعَتَهُمْ رُدَّتْ إِلَيْهِمْ ۖ قَالُوا۟ يَٓأَبَانَا مَا نَبْغِى ۖ هَذِهِۦ بِضَعَتُنَا رُدَّتْ إِلَيْنَا ۖ وَنَمِيرُ أَهْلَنَا وَنَحْفَظُ أَخَانَا وَنَزْدَادُ كَيْلَ بَعِيرٍۢ ۖ ذَلِكَ كَيْلٌۭ يَسِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,12,' قَالَ لَنْ أُرْسِلَهُۥ مَعَكُمْ حَتَّىٰ تُؤْتُونِ مَوْثِقًۭا مِّنَ ٱللَّهِ لَتَأْتُنَّنِى بِهِۦٓ إِلَّآ أَن يُحَاطَ بِكُمْ ۖ فَلَمَّآ ءَاتَوْهُ مَوْثِقَهُمْ قَالَ ٱللَّهُ عَلَىٰ مَا نَقُولُ وَكِيلٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,12,' وَقَالَ يَبَنِىَّ لَا تَدْخُلُوا۟ مِنۢ بَابٍۢ وَحِدٍۢ وَٱدْخُلُوا۟ مِنْ أَبْوَبٍۢ مُّتَفَرِّقَةٍۢ ۖ وَمَآ أُغْنِى عَنكُم مِّنَ ٱللَّهِ مِن شَىْءٍ ۖ إِنِ ٱلْحُكْمُ إِلَّا لِلَّهِ ۖ عَلَيْهِ تَوَكَّلْتُ ۖ وَعَلَيْهِ فَلْيَتَوَكَّلِ ٱلْمُتَوَكِّلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,12,' وَلَمَّا دَخَلُوا۟ مِنْ حَيْثُ أَمَرَهُمْ أَبُوهُم مَّا كَانَ يُغْنِى عَنْهُم مِّنَ ٱللَّهِ مِن شَىْءٍ إِلَّا حَاجَةًۭ فِى نَفْسِ يَعْقُوبَ قَضَىٰهَا ۚ وَإِنَّهُۥ لَذُو عِلْمٍۢ لِّمَا عَلَّمْنَهُ وَلَكِنَّ أَكْثَرَ ٱلنَّاسِ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,12,' وَلَمَّا دَخَلُوا۟ عَلَىٰ يُوسُفَ ءَاوَىٰٓ إِلَيْهِ أَخَاهُ ۖ قَالَ إِنِّىٓ أَنَا۠ أَخُوكَ فَلَا تَبْتَئِسْ بِمَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,12,' فَلَمَّا جَهَّزَهُم بِجَهَازِهِمْ جَعَلَ ٱلسِّقَايَةَ فِى رَحْلِ أَخِيهِ ثُمَّ أَذَّنَ مُؤَذِّنٌ أَيَّتُهَا ٱلْعِيرُ إِنَّكُمْ لَسَرِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,12,' قَالُوا۟ وَأَقْبَلُوا۟ عَلَيْهِم مَّاذَا تَفْقِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,12,' قَالُوا۟ نَفْقِدُ صُوَاعَ ٱلْمَلِكِ وَلِمَن جَآءَ بِهِۦ حِمْلُ بَعِيرٍۢ وَأَنَا۠ بِهِۦ زَعِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,12,' قَالُوا۟ تَٱللَّهِ لَقَدْ عَلِمْتُم مَّا جِئْنَا لِنُفْسِدَ فِى ٱلْأَرْضِ وَمَا كُنَّا سَرِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,12,' قَالُوا۟ فَمَا جَزَٓؤُهُۥٓ إِن كُنتُمْ كَذِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,12,' قَالُوا۟ جَزَٓؤُهُۥ مَن وُجِدَ فِى رَحْلِهِۦ فَهُوَ جَزَٓؤُهُۥ ۚ كَذَلِكَ نَجْزِى ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,12,' فَبَدَأَ بِأَوْعِيَتِهِمْ قَبْلَ وِعَآءِ أَخِيهِ ثُمَّ ٱسْتَخْرَجَهَا مِن وِعَآءِ أَخِيهِ ۚ كَذَلِكَ كِدْنَا لِيُوسُفَ ۖ مَا كَانَ لِيَأْخُذَ أَخَاهُ فِى دِينِ ٱلْمَلِكِ إِلَّآ أَن يَشَآءَ ٱللَّهُ ۚ نَرْفَعُ دَرَجَتٍۢ مَّن نَّشَآءُ ۗ وَفَوْقَ كُلِّ ذِى عِلْمٍ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,12,' قَالُوٓا۟ إِن يَسْرِقْ فَقَدْ سَرَقَ أَخٌۭ لَّهُۥ مِن قَبْلُ ۚ فَأَسَرَّهَا يُوسُفُ فِى نَفْسِهِۦ وَلَمْ يُبْدِهَا لَهُمْ ۚ قَالَ أَنتُمْ شَرٌّۭ مَّكَانًۭا ۖ وَٱللَّهُ أَعْلَمُ بِمَا تَصِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,12,' قَالُوا۟ يَٓأَيُّهَا ٱلْعَزِيزُ إِنَّ لَهُۥٓ أَبًۭا شَيْخًۭا كَبِيرًۭا فَخُذْ أَحَدَنَا مَكَانَهُۥٓ ۖ إِنَّا نَرَىٰكَ مِنَ ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,12,' قَالَ مَعَاذَ ٱللَّهِ أَن نَّأْخُذَ إِلَّا مَن وَجَدْنَا مَتَعَنَا عِندَهُۥٓ إِنَّآ إِذًۭا لَّظَلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,12,' فَلَمَّا ٱسْتَيْـَٔسُوا۟ مِنْهُ خَلَصُوا۟ نَجِيًّۭا ۖ قَالَ كَبِيرُهُمْ أَلَمْ تَعْلَمُوٓا۟ أَنَّ أَبَاكُمْ قَدْ أَخَذَ عَلَيْكُم مَّوْثِقًۭا مِّنَ ٱللَّهِ وَمِن قَبْلُ مَا فَرَّطتُمْ فِى يُوسُفَ ۖ فَلَنْ أَبْرَحَ ٱلْأَرْضَ حَتَّىٰ يَأْذَنَ لِىٓ أَبِىٓ أَوْ يَحْكُمَ ٱللَّهُ لِى ۖ وَهُوَ خَيْرُ ٱلْحَكِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,12,' ٱرْجِعُوٓا۟ إِلَىٰٓ أَبِيكُمْ فَقُولُوا۟ يَٓأَبَانَآ إِنَّ ٱبْنَكَ سَرَقَ وَمَا شَهِدْنَآ إِلَّا بِمَا عَلِمْنَا وَمَا كُنَّا لِلْغَيْبِ حَفِظِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,12,' وَسْـَٔلِ ٱلْقَرْيَةَ ٱلَّتِى كُنَّا فِيهَا وَٱلْعِيرَ ٱلَّتِىٓ أَقْبَلْنَا فِيهَا ۖ وَإِنَّا لَصَدِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,12,' قَالَ بَلْ سَوَّلَتْ لَكُمْ أَنفُسُكُمْ أَمْرًۭا ۖ فَصَبْرٌۭ جَمِيلٌ ۖ عَسَى ٱللَّهُ أَن يَأْتِيَنِى بِهِمْ جَمِيعًا ۚ إِنَّهُۥ هُوَ ٱلْعَلِيمُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,12,' وَتَوَلَّىٰ عَنْهُمْ وَقَالَ يَٓأَسَفَىٰ عَلَىٰ يُوسُفَ وَٱبْيَضَّتْ عَيْنَاهُ مِنَ ٱلْحُزْنِ فَهُوَ كَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,12,' قَالُوا۟ تَٱللَّهِ تَفْتَؤُا۟ تَذْكُرُ يُوسُفَ حَتَّىٰ تَكُونَ حَرَضًا أَوْ تَكُونَ مِنَ ٱلْهَلِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,12,' قَالَ إِنَّمَآ أَشْكُوا۟ بَثِّى وَحُزْنِىٓ إِلَى ٱللَّهِ وَأَعْلَمُ مِنَ ٱللَّهِ مَا لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,12,' يَبَنِىَّ ٱذْهَبُوا۟ فَتَحَسَّسُوا۟ مِن يُوسُفَ وَأَخِيهِ وَلَا تَا۟يْـَٔسُوا۟ مِن رَّوْحِ ٱللَّهِ ۖ إِنَّهُۥ لَا يَا۟يْـَٔسُ مِن رَّوْحِ ٱللَّهِ إِلَّا ٱلْقَوْمُ ٱلْكَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,12,' فَلَمَّا دَخَلُوا۟ عَلَيْهِ قَالُوا۟ يَٓأَيُّهَا ٱلْعَزِيزُ مَسَّنَا وَأَهْلَنَا ٱلضُّرُّ وَجِئْنَا بِبِضَعَةٍۢ مُّزْجَىٰةٍۢ فَأَوْفِ لَنَا ٱلْكَيْلَ وَتَصَدَّقْ عَلَيْنَآ ۖ إِنَّ ٱللَّهَ يَجْزِى ٱلْمُتَصَدِّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,12,' قَالَ هَلْ عَلِمْتُم مَّا فَعَلْتُم بِيُوسُفَ وَأَخِيهِ إِذْ أَنتُمْ جَهِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,12,' قَالُوٓا۟ أَءِنَّكَ لَأَنتَ يُوسُفُ ۖ قَالَ أَنَا۠ يُوسُفُ وَهَذَآ أَخِى ۖ قَدْ مَنَّ ٱللَّهُ عَلَيْنَآ ۖ إِنَّهُۥ مَن يَتَّقِ وَيَصْبِرْ فَإِنَّ ٱللَّهَ لَا يُضِيعُ أَجْرَ ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,12,' قَالُوا۟ تَٱللَّهِ لَقَدْ ءَاثَرَكَ ٱللَّهُ عَلَيْنَا وَإِن كُنَّا لَخَطِـِٔينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,12,' قَالَ لَا تَثْرِيبَ عَلَيْكُمُ ٱلْيَوْمَ ۖ يَغْفِرُ ٱللَّهُ لَكُمْ ۖ وَهُوَ أَرْحَمُ ٱلرَّحِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,12,' ٱذْهَبُوا۟ بِقَمِيصِى هَذَا فَأَلْقُوهُ عَلَىٰ وَجْهِ أَبِى يَأْتِ بَصِيرًۭا وَأْتُونِى بِأَهْلِكُمْ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,12,' وَلَمَّا فَصَلَتِ ٱلْعِيرُ قَالَ أَبُوهُمْ إِنِّى لَأَجِدُ رِيحَ يُوسُفَ ۖ لَوْلَآ أَن تُفَنِّدُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,12,' قَالُوا۟ تَٱللَّهِ إِنَّكَ لَفِى ضَلَلِكَ ٱلْقَدِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,12,' فَلَمَّآ أَن جَآءَ ٱلْبَشِيرُ أَلْقَىٰهُ عَلَىٰ وَجْهِهِۦ فَٱرْتَدَّ بَصِيرًۭا ۖ قَالَ أَلَمْ أَقُل لَّكُمْ إِنِّىٓ أَعْلَمُ مِنَ ٱللَّهِ مَا لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,12,' قَالُوا۟ يَٓأَبَانَا ٱسْتَغْفِرْ لَنَا ذُنُوبَنَآ إِنَّا كُنَّا خَطِـِٔينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,12,' قَالَ سَوْفَ أَسْتَغْفِرُ لَكُمْ رَبِّىٓ ۖ إِنَّهُۥ هُوَ ٱلْغَفُورُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,12,' فَلَمَّا دَخَلُوا۟ عَلَىٰ يُوسُفَ ءَاوَىٰٓ إِلَيْهِ أَبَوَيْهِ وَقَالَ ٱدْخُلُوا۟ مِصْرَ إِن شَآءَ ٱللَّهُ ءَامِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,1,12,' وَرَفَعَ أَبَوَيْهِ عَلَى ٱلْعَرْشِ وَخَرُّوا۟ لَهُۥ سُجَّدًۭا ۖ وَقَالَ يَٓأَبَتِ هَذَا تَأْوِيلُ رُءْيَىَ مِن قَبْلُ قَدْ جَعَلَهَا رَبِّى حَقًّۭا ۖ وَقَدْ أَحْسَنَ بِىٓ إِذْ أَخْرَجَنِى مِنَ ٱلسِّجْنِ وَجَآءَ بِكُم مِّنَ ٱلْبَدْوِ مِنۢ بَعْدِ أَن نَّزَغَ ٱلشَّيْطَنُ بَيْنِى وَبَيْنَ إِخْوَتِىٓ ۚ إِنَّ رَبِّى لَطِيفٌۭ لِّمَا يَشَآءُ ۚ إِنَّهُۥ هُوَ ٱلْعَلِيمُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,1,12,' رَبِّ قَدْ ءَاتَيْتَنِى مِنَ ٱلْمُلْكِ وَعَلَّمْتَنِى مِن تَأْوِيلِ ٱلْأَحَادِيثِ ۚ فَاطِرَ ٱلسَّمَوَتِ وَٱلْأَرْضِ أَنتَ وَلِىِّۦ فِى ٱلدُّنْيَا وَٱلْءَاخِرَةِ ۖ تَوَفَّنِى مُسْلِمًۭا وَأَلْحِقْنِى بِٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,1,12,' ذَلِكَ مِنْ أَنۢبَآءِ ٱلْغَيْبِ نُوحِيهِ إِلَيْكَ ۖ وَمَا كُنتَ لَدَيْهِمْ إِذْ أَجْمَعُوٓا۟ أَمْرَهُمْ وَهُمْ يَمْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,1,12,' وَمَآ أَكْثَرُ ٱلنَّاسِ وَلَوْ حَرَصْتَ بِمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,1,12,' وَمَا تَسْـَٔلُهُمْ عَلَيْهِ مِنْ أَجْرٍ ۚ إِنْ هُوَ إِلَّا ذِكْرٌۭ لِّلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,1,12,' وَكَأَيِّن مِّنْ ءَايَةٍۢ فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ يَمُرُّونَ عَلَيْهَا وَهُمْ عَنْهَا مُعْرِضُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,1,12,' وَمَا يُؤْمِنُ أَكْثَرُهُم بِٱللَّهِ إِلَّا وَهُم مُّشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,1,12,' أَفَأَمِنُوٓا۟ أَن تَأْتِيَهُمْ غَشِيَةٌۭ مِّنْ عَذَابِ ٱللَّهِ أَوْ تَأْتِيَهُمُ ٱلسَّاعَةُ بَغْتَةًۭ وَهُمْ لَا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,1,12,' قُلْ هَذِهِۦ سَبِيلِىٓ أَدْعُوٓا۟ إِلَى ٱللَّهِ ۚ عَلَىٰ بَصِيرَةٍ أَنَا۠ وَمَنِ ٱتَّبَعَنِى ۖ وَسُبْحَنَ ٱللَّهِ وَمَآ أَنَا۠ مِنَ ٱلْمُشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,1,12,' وَمَآ أَرْسَلْنَا مِن قَبْلِكَ إِلَّا رِجَالًۭا نُّوحِىٓ إِلَيْهِم مِّنْ أَهْلِ ٱلْقُرَىٰٓ ۗ أَفَلَمْ يَسِيرُوا۟ فِى ٱلْأَرْضِ فَيَنظُرُوا۟ كَيْفَ كَانَ عَقِبَةُ ٱلَّذِينَ مِن قَبْلِهِمْ ۗ وَلَدَارُ ٱلْءَاخِرَةِ خَيْرٌۭ لِّلَّذِينَ ٱتَّقَوْا۟ ۗ أَفَلَا تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,1,12,' حَتَّىٰٓ إِذَا ٱسْتَيْـَٔسَ ٱلرُّسُلُ وَظَنُّوٓا۟ أَنَّهُمْ قَدْ كُذِبُوا۟ جَآءَهُمْ نَصْرُنَا فَنُجِّىَ مَن نَّشَآءُ ۖ وَلَا يُرَدُّ بَأْسُنَا عَنِ ٱلْقَوْمِ ٱلْمُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,1,12,' لَقَدْ كَانَ فِى قَصَصِهِمْ عِبْرَةٌۭ لِّأُو۟لِى ٱلْأَلْبَبِ ۗ مَا كَانَ حَدِيثًۭا يُفْتَرَىٰ وَلَكِن تَصْدِيقَ ٱلَّذِى بَيْنَ يَدَيْهِ وَتَفْصِيلَ كُلِّ شَىْءٍۢ وَهُدًۭى وَرَحْمَةًۭ لِّقَوْمٍۢ يُؤْمِنُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(13,13,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,13,' الٓمٓر ۚ تِلْكَ ءَايَتُ ٱلْكِتَبِ ۗ وَٱلَّذِىٓ أُنزِلَ إِلَيْكَ مِن رَّبِّكَ ٱلْحَقُّ وَلَكِنَّ أَكْثَرَ ٱلنَّاسِ لَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,13,' ٱللَّهُ ٱلَّذِى رَفَعَ ٱلسَّمَوَتِ بِغَيْرِ عَمَدٍۢ تَرَوْنَهَا ۖ ثُمَّ ٱسْتَوَىٰ عَلَى ٱلْعَرْشِ ۖ وَسَخَّرَ ٱلشَّمْسَ وَٱلْقَمَرَ ۖ كُلٌّۭ يَجْرِى لِأَجَلٍۢ مُّسَمًّۭى ۚ يُدَبِّرُ ٱلْأَمْرَ يُفَصِّلُ ٱلْءَايَتِ لَعَلَّكُم بِلِقَآءِ رَبِّكُمْ تُوقِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,13,' وَهُوَ ٱلَّذِى مَدَّ ٱلْأَرْضَ وَجَعَلَ فِيهَا رَوَسِىَ وَأَنْهَرًۭا ۖ وَمِن كُلِّ ٱلثَّمَرَتِ جَعَلَ فِيهَا زَوْجَيْنِ ٱثْنَيْنِ ۖ يُغْشِى ٱلَّيْلَ ٱلنَّهَارَ ۚ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّقَوْمٍۢ يَتَفَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,13,' وَفِى ٱلْأَرْضِ قِطَعٌۭ مُّتَجَوِرَتٌۭ وَجَنَّتٌۭ مِّنْ أَعْنَبٍۢ وَزَرْعٌۭ وَنَخِيلٌۭ صِنْوَانٌۭ وَغَيْرُ صِنْوَانٍۢ يُسْقَىٰ بِمَآءٍۢ وَحِدٍۢ وَنُفَضِّلُ بَعْضَهَا عَلَىٰ بَعْضٍۢ فِى ٱلْأُكُلِ ۚ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّقَوْمٍۢ يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,13,' ئ وَإِن تَعْجَبْ فَعَجَبٌۭ قَوْلُهُمْ أَءِذَا كُنَّا تُرَبًا أَءِنَّا لَفِى خَلْقٍۢ جَدِيدٍ ۗ أُو۟لَٓئِكَ ٱلَّذِينَ كَفَرُوا۟ بِرَبِّهِمْ ۖ وَأُو۟لَٓئِكَ ٱلْأَغْلَلُ فِىٓ أَعْنَاقِهِمْ ۖ وَأُو۟لَٓئِكَ أَصْحَبُ ٱلنَّارِ ۖ هُمْ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,13,' وَيَسْتَعْجِلُونَكَ بِٱلسَّيِّئَةِ قَبْلَ ٱلْحَسَنَةِ وَقَدْ خَلَتْ مِن قَبْلِهِمُ ٱلْمَثُلَتُ ۗ وَإِنَّ رَبَّكَ لَذُو مَغْفِرَةٍۢ لِّلنَّاسِ عَلَىٰ ظُلْمِهِمْ ۖ وَإِنَّ رَبَّكَ لَشَدِيدُ ٱلْعِقَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,13,' وَيَقُولُ ٱلَّذِينَ كَفَرُوا۟ لَوْلَآ أُنزِلَ عَلَيْهِ ءَايَةٌۭ مِّن رَّبِّهِۦٓ ۗ إِنَّمَآ أَنتَ مُنذِرٌۭ ۖ وَلِكُلِّ قَوْمٍ هَادٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,13,' ٱللَّهُ يَعْلَمُ مَا تَحْمِلُ كُلُّ أُنثَىٰ وَمَا تَغِيضُ ٱلْأَرْحَامُ وَمَا تَزْدَادُ ۖ وَكُلُّ شَىْءٍ عِندَهُۥ بِمِقْدَارٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,13,' عَلِمُ ٱلْغَيْبِ وَٱلشَّهَدَةِ ٱلْكَبِيرُ ٱلْمُتَعَالِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,13,' سَوَآءٌۭ مِّنكُم مَّنْ أَسَرَّ ٱلْقَوْلَ وَمَن جَهَرَ بِهِۦ وَمَنْ هُوَ مُسْتَخْفٍۭ بِٱلَّيْلِ وَسَارِبٌۢ بِٱلنَّهَارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,13,' لَهُۥ مُعَقِّبَتٌۭ مِّنۢ بَيْنِ يَدَيْهِ وَمِنْ خَلْفِهِۦ يَحْفَظُونَهُۥ مِنْ أَمْرِ ٱللَّهِ ۗ إِنَّ ٱللَّهَ لَا يُغَيِّرُ مَا بِقَوْمٍ حَتَّىٰ يُغَيِّرُوا۟ مَا بِأَنفُسِهِمْ ۗ وَإِذَآ أَرَادَ ٱللَّهُ بِقَوْمٍۢ سُوٓءًۭا فَلَا مَرَدَّ لَهُۥ ۚ وَمَا لَهُم مِّن دُونِهِۦ مِن وَالٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,13,' هُوَ ٱلَّذِى يُرِيكُمُ ٱلْبَرْقَ خَوْفًۭا وَطَمَعًۭا وَيُنشِئُ ٱلسَّحَابَ ٱلثِّقَالَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,13,' وَيُسَبِّحُ ٱلرَّعْدُ بِحَمْدِهِۦ وَٱلْمَلَٓئِكَةُ مِنْ خِيفَتِهِۦ وَيُرْسِلُ ٱلصَّوَعِقَ فَيُصِيبُ بِهَا مَن يَشَآءُ وَهُمْ يُجَدِلُونَ فِى ٱللَّهِ وَهُوَ شَدِيدُ ٱلْمِحَالِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,13,' لَهُۥ دَعْوَةُ ٱلْحَقِّ ۖ وَٱلَّذِينَ يَدْعُونَ مِن دُونِهِۦ لَا يَسْتَجِيبُونَ لَهُم بِشَىْءٍ إِلَّا كَبَسِطِ كَفَّيْهِ إِلَى ٱلْمَآءِ لِيَبْلُغَ فَاهُ وَمَا هُوَ بِبَلِغِهِۦ ۚ وَمَا دُعَآءُ ٱلْكَفِرِينَ إِلَّا فِى ضَلَلٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,13,' وَلِلَّهِ يَسْجُدُ مَن فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ طَوْعًۭا وَكَرْهًۭا وَظِلَلُهُم بِٱلْغُدُوِّ وَٱلْءَاصَالِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,13,' قُلْ مَن رَّبُّ ٱلسَّمَوَتِ وَٱلْأَرْضِ قُلِ ٱللَّهُ ۚ قُلْ أَفَٱتَّخَذْتُم مِّن دُونِهِۦٓ أَوْلِيَآءَ لَا يَمْلِكُونَ لِأَنفُسِهِمْ نَفْعًۭا وَلَا ضَرًّۭا ۚ قُلْ هَلْ يَسْتَوِى ٱلْأَعْمَىٰ وَٱلْبَصِيرُ أَمْ هَلْ تَسْتَوِى ٱلظُّلُمَتُ وَٱلنُّورُ ۗ أَمْ جَعَلُوا۟ لِلَّهِ شُرَكَآءَ خَلَقُوا۟ كَخَلْقِهِۦ فَتَشَبَهَ ٱلْخَلْقُ عَلَيْهِمْ ۚ قُلِ ٱللَّهُ خَلِقُ كُلِّ شَىْءٍۢ وَهُوَ ٱلْوَحِدُ ٱلْقَهَّرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,13,' أَنزَلَ مِنَ ٱلسَّمَآءِ مَآءًۭ فَسَالَتْ أَوْدِيَةٌۢ بِقَدَرِهَا فَٱحْتَمَلَ ٱلسَّيْلُ زَبَدًۭا رَّابِيًۭا ۚ وَمِمَّا يُوقِدُونَ عَلَيْهِ فِى ٱلنَّارِ ٱبْتِغَآءَ حِلْيَةٍ أَوْ مَتَعٍۢ زَبَدٌۭ مِّثْلُهُۥ ۚ كَذَلِكَ يَضْرِبُ ٱللَّهُ ٱلْحَقَّ وَٱلْبَطِلَ ۚ فَأَمَّا ٱلزَّبَدُ فَيَذْهَبُ جُفَآءًۭ ۖ وَأَمَّا مَا يَنفَعُ ٱلنَّاسَ فَيَمْكُثُ فِى ٱلْأَرْضِ ۚ كَذَلِكَ يَضْرِبُ ٱللَّهُ ٱلْأَمْثَالَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,13,' لِلَّذِينَ ٱسْتَجَابُوا۟ لِرَبِّهِمُ ٱلْحُسْنَىٰ ۚ وَٱلَّذِينَ لَمْ يَسْتَجِيبُوا۟ لَهُۥ لَوْ أَنَّ لَهُم مَّا فِى ٱلْأَرْضِ جَمِيعًۭا وَمِثْلَهُۥ مَعَهُۥ لَٱفْتَدَوْا۟ بِهِۦٓ ۚ أُو۟لَٓئِكَ لَهُمْ سُوٓءُ ٱلْحِسَابِ وَمَأْوَىٰهُمْ جَهَنَّمُ ۖ وَبِئْسَ ٱلْمِهَادُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,13,' أَفَمَن يَعْلَمُ أَنَّمَآ أُنزِلَ إِلَيْكَ مِن رَّبِّكَ ٱلْحَقُّ كَمَنْ هُوَ أَعْمَىٰٓ ۚ إِنَّمَا يَتَذَكَّرُ أُو۟لُوا۟ ٱلْأَلْبَبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,13,' ٱلَّذِينَ يُوفُونَ بِعَهْدِ ٱللَّهِ وَلَا يَنقُضُونَ ٱلْمِيثَقَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,13,' وَٱلَّذِينَ يَصِلُونَ مَآ أَمَرَ ٱللَّهُ بِهِۦٓ أَن يُوصَلَ وَيَخْشَوْنَ رَبَّهُمْ وَيَخَافُونَ سُوٓءَ ٱلْحِسَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,13,' وَٱلَّذِينَ صَبَرُوا۟ ٱبْتِغَآءَ وَجْهِ رَبِّهِمْ وَأَقَامُوا۟ ٱلصَّلَوٰةَ وَأَنفَقُوا۟ مِمَّا رَزَقْنَهُمْ سِرًّۭا وَعَلَانِيَةًۭ وَيَدْرَءُونَ بِٱلْحَسَنَةِ ٱلسَّيِّئَةَ أُو۟لَٓئِكَ لَهُمْ عُقْبَى ٱلدَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,13,' جَنَّتُ عَدْنٍۢ يَدْخُلُونَهَا وَمَن صَلَحَ مِنْ ءَابَآئِهِمْ وَأَزْوَجِهِمْ وَذُرِّيَّتِهِمْ ۖ وَٱلْمَلَٓئِكَةُ يَدْخُلُونَ عَلَيْهِم مِّن كُلِّ بَابٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,13,' سَلَمٌ عَلَيْكُم بِمَا صَبَرْتُمْ ۚ فَنِعْمَ عُقْبَى ٱلدَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,13,' وَٱلَّذِينَ يَنقُضُونَ عَهْدَ ٱللَّهِ مِنۢ بَعْدِ مِيثَقِهِۦ وَيَقْطَعُونَ مَآ أَمَرَ ٱللَّهُ بِهِۦٓ أَن يُوصَلَ وَيُفْسِدُونَ فِى ٱلْأَرْضِ ۙ أُو۟لَٓئِكَ لَهُمُ ٱللَّعْنَةُ وَلَهُمْ سُوٓءُ ٱلدَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,13,' ٱللَّهُ يَبْسُطُ ٱلرِّزْقَ لِمَن يَشَآءُ وَيَقْدِرُ ۚ وَفَرِحُوا۟ بِٱلْحَيَوٰةِ ٱلدُّنْيَا وَمَا ٱلْحَيَوٰةُ ٱلدُّنْيَا فِى ٱلْءَاخِرَةِ إِلَّا مَتَعٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,13,' وَيَقُولُ ٱلَّذِينَ كَفَرُوا۟ لَوْلَآ أُنزِلَ عَلَيْهِ ءَايَةٌۭ مِّن رَّبِّهِۦ ۗ قُلْ إِنَّ ٱللَّهَ يُضِلُّ مَن يَشَآءُ وَيَهْدِىٓ إِلَيْهِ مَنْ أَنَابَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,13,' ٱلَّذِينَ ءَامَنُوا۟ وَتَطْمَىِٕنُّ قُلُوبُهُم بِذِكْرِ ٱللَّهِ ۗ أَلَا بِذِكْرِ ٱللَّهِ تَطْمَىِٕنُّ ٱلْقُلُوبُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,13,' ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ طُوبَىٰ لَهُمْ وَحُسْنُ مَـَٔابٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,13,' كَذَلِكَ أَرْسَلْنَكَ فِىٓ أُمَّةٍۢ قَدْ خَلَتْ مِن قَبْلِهَآ أُمَمٌۭ لِّتَتْلُوَا۟ عَلَيْهِمُ ٱلَّذِىٓ أَوْحَيْنَآ إِلَيْكَ وَهُمْ يَكْفُرُونَ بِٱلرَّحْمَنِ ۚ قُلْ هُوَ رَبِّى لَآ إِلَهَ إِلَّا هُوَ عَلَيْهِ تَوَكَّلْتُ وَإِلَيْهِ مَتَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,13,' وَلَوْ أَنَّ قُرْءَانًۭا سُيِّرَتْ بِهِ ٱلْجِبَالُ أَوْ قُطِّعَتْ بِهِ ٱلْأَرْضُ أَوْ كُلِّمَ بِهِ ٱلْمَوْتَىٰ ۗ بَل لِّلَّهِ ٱلْأَمْرُ جَمِيعًا ۗ أَفَلَمْ يَا۟يْـَٔسِ ٱلَّذِينَ ءَامَنُوٓا۟ أَن لَّوْ يَشَآءُ ٱللَّهُ لَهَدَى ٱلنَّاسَ جَمِيعًۭا ۗ وَلَا يَزَالُ ٱلَّذِينَ كَفَرُوا۟ تُصِيبُهُم بِمَا صَنَعُوا۟ قَارِعَةٌ أَوْ تَحُلُّ قَرِيبًۭا مِّن دَارِهِمْ حَتَّىٰ يَأْتِىَ وَعْدُ ٱللَّهِ ۚ إِنَّ ٱللَّهَ لَا يُخْلِفُ ٱلْمِيعَادَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,13,' وَلَقَدِ ٱسْتُهْزِئَ بِرُسُلٍۢ مِّن قَبْلِكَ فَأَمْلَيْتُ لِلَّذِينَ كَفَرُوا۟ ثُمَّ أَخَذْتُهُمْ ۖ فَكَيْفَ كَانَ عِقَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,13,' أَفَمَنْ هُوَ قَآئِمٌ عَلَىٰ كُلِّ نَفْسٍۭ بِمَا كَسَبَتْ ۗ وَجَعَلُوا۟ لِلَّهِ شُرَكَآءَ قُلْ سَمُّوهُمْ ۚ أَمْ تُنَبِّـُٔونَهُۥ بِمَا لَا يَعْلَمُ فِى ٱلْأَرْضِ أَم بِظَهِرٍۢ مِّنَ ٱلْقَوْلِ ۗ بَلْ زُيِّنَ لِلَّذِينَ كَفَرُوا۟ مَكْرُهُمْ وَصُدُّوا۟ عَنِ ٱلسَّبِيلِ ۗ وَمَن يُضْلِلِ ٱللَّهُ فَمَا لَهُۥ مِنْ هَادٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,13,' لَّهُمْ عَذَابٌۭ فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا ۖ وَلَعَذَابُ ٱلْءَاخِرَةِ أَشَقُّ ۖ وَمَا لَهُم مِّنَ ٱللَّهِ مِن وَاقٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,13,' ئ مَّثَلُ ٱلْجَنَّةِ ٱلَّتِى وُعِدَ ٱلْمُتَّقُونَ ۖ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ ۖ أُكُلُهَا دَآئِمٌۭ وَظِلُّهَا ۚ تِلْكَ عُقْبَى ٱلَّذِينَ ٱتَّقَوا۟ ۖ وَّعُقْبَى ٱلْكَفِرِينَ ٱلنَّارُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,13,' وَٱلَّذِينَ ءَاتَيْنَهُمُ ٱلْكِتَبَ يَفْرَحُونَ بِمَآ أُنزِلَ إِلَيْكَ ۖ وَمِنَ ٱلْأَحْزَابِ مَن يُنكِرُ بَعْضَهُۥ ۚ قُلْ إِنَّمَآ أُمِرْتُ أَنْ أَعْبُدَ ٱللَّهَ وَلَآ أُشْرِكَ بِهِۦٓ ۚ إِلَيْهِ أَدْعُوا۟ وَإِلَيْهِ مَـَٔابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,13,' وَكَذَلِكَ أَنزَلْنَهُ حُكْمًا عَرَبِيًّۭا ۚ وَلَىِٕنِ ٱتَّبَعْتَ أَهْوَآءَهُم بَعْدَمَا جَآءَكَ مِنَ ٱلْعِلْمِ مَا لَكَ مِنَ ٱللَّهِ مِن وَلِىٍّۢ وَلَا وَاقٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,13,' وَلَقَدْ أَرْسَلْنَا رُسُلًۭا مِّن قَبْلِكَ وَجَعَلْنَا لَهُمْ أَزْوَجًۭا وَذُرِّيَّةًۭ ۚ وَمَا كَانَ لِرَسُولٍ أَن يَأْتِىَ بِـَٔايَةٍ إِلَّا بِإِذْنِ ٱللَّهِ ۗ لِكُلِّ أَجَلٍۢ كِتَابٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,13,' يَمْحُوا۟ ٱللَّهُ مَا يَشَآءُ وَيُثْبِتُ ۖ وَعِندَهُۥٓ أُمُّ ٱلْكِتَبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,13,' وَإِن مَّا نُرِيَنَّكَ بَعْضَ ٱلَّذِى نَعِدُهُمْ أَوْ نَتَوَفَّيَنَّكَ فَإِنَّمَا عَلَيْكَ ٱلْبَلَغُ وَعَلَيْنَا ٱلْحِسَابُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,13,' أَوَلَمْ يَرَوْا۟ أَنَّا نَأْتِى ٱلْأَرْضَ نَنقُصُهَا مِنْ أَطْرَافِهَا ۚ وَٱللَّهُ يَحْكُمُ لَا مُعَقِّبَ لِحُكْمِهِۦ ۚ وَهُوَ سَرِيعُ ٱلْحِسَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,13,' وَقَدْ مَكَرَ ٱلَّذِينَ مِن قَبْلِهِمْ فَلِلَّهِ ٱلْمَكْرُ جَمِيعًۭا ۖ يَعْلَمُ مَا تَكْسِبُ كُلُّ نَفْسٍۢ ۗ وَسَيَعْلَمُ ٱلْكُفَّرُ لِمَنْ عُقْبَى ٱلدَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,13,' وَيَقُولُ ٱلَّذِينَ كَفَرُوا۟ لَسْتَ مُرْسَلًۭا ۚ قُلْ كَفَىٰ بِٱللَّهِ شَهِيدًۢا بَيْنِى وَبَيْنَكُمْ وَمَنْ عِندَهُۥ عِلْمُ ٱلْكِتَبِ');
+INSERT INTO chapters (id, number, quran_id) VALUES(14,14,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,14,' الٓر ۚ كِتَبٌ أَنزَلْنَهُ إِلَيْكَ لِتُخْرِجَ ٱلنَّاسَ مِنَ ٱلظُّلُمَتِ إِلَى ٱلنُّورِ بِإِذْنِ رَبِّهِمْ إِلَىٰ صِرَطِ ٱلْعَزِيزِ ٱلْحَمِيدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,14,' ٱللَّهِ ٱلَّذِى لَهُۥ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۗ وَوَيْلٌۭ لِّلْكَفِرِينَ مِنْ عَذَابٍۢ شَدِيدٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,14,' ٱلَّذِينَ يَسْتَحِبُّونَ ٱلْحَيَوٰةَ ٱلدُّنْيَا عَلَى ٱلْءَاخِرَةِ وَيَصُدُّونَ عَن سَبِيلِ ٱللَّهِ وَيَبْغُونَهَا عِوَجًا ۚ أُو۟لَٓئِكَ فِى ضَلَلٍۭ بَعِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,14,' وَمَآ أَرْسَلْنَا مِن رَّسُولٍ إِلَّا بِلِسَانِ قَوْمِهِۦ لِيُبَيِّنَ لَهُمْ ۖ فَيُضِلُّ ٱللَّهُ مَن يَشَآءُ وَيَهْدِى مَن يَشَآءُ ۚ وَهُوَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,14,' وَلَقَدْ أَرْسَلْنَا مُوسَىٰ بِـَٔايَتِنَآ أَنْ أَخْرِجْ قَوْمَكَ مِنَ ٱلظُّلُمَتِ إِلَى ٱلنُّورِ وَذَكِّرْهُم بِأَيَّىٰمِ ٱللَّهِ ۚ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّكُلِّ صَبَّارٍۢ شَكُورٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,14,' وَإِذْ قَالَ مُوسَىٰ لِقَوْمِهِ ٱذْكُرُوا۟ نِعْمَةَ ٱللَّهِ عَلَيْكُمْ إِذْ أَنجَىٰكُم مِّنْ ءَالِ فِرْعَوْنَ يَسُومُونَكُمْ سُوٓءَ ٱلْعَذَابِ وَيُذَبِّحُونَ أَبْنَآءَكُمْ وَيَسْتَحْيُونَ نِسَآءَكُمْ ۚ وَفِى ذَلِكُم بَلَآءٌۭ مِّن رَّبِّكُمْ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,14,' وَإِذْ تَأَذَّنَ رَبُّكُمْ لَىِٕن شَكَرْتُمْ لَأَزِيدَنَّكُمْ ۖ وَلَىِٕن كَفَرْتُمْ إِنَّ عَذَابِى لَشَدِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,14,' وَقَالَ مُوسَىٰٓ إِن تَكْفُرُوٓا۟ أَنتُمْ وَمَن فِى ٱلْأَرْضِ جَمِيعًۭا فَإِنَّ ٱللَّهَ لَغَنِىٌّ حَمِيدٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,14,' أَلَمْ يَأْتِكُمْ نَبَؤُا۟ ٱلَّذِينَ مِن قَبْلِكُمْ قَوْمِ نُوحٍۢ وَعَادٍۢ وَثَمُودَ ۛ وَٱلَّذِينَ مِنۢ بَعْدِهِمْ ۛ لَا يَعْلَمُهُمْ إِلَّا ٱللَّهُ ۚ جَآءَتْهُمْ رُسُلُهُم بِٱلْبَيِّنَتِ فَرَدُّوٓا۟ أَيْدِيَهُمْ فِىٓ أَفْوَهِهِمْ وَقَالُوٓا۟ إِنَّا كَفَرْنَا بِمَآ أُرْسِلْتُم بِهِۦ وَإِنَّا لَفِى شَكٍّۢ مِّمَّا تَدْعُونَنَآ إِلَيْهِ مُرِيبٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,14,' قَالَتْ رُسُلُهُمْ أَفِى ٱللَّهِ شَكٌّۭ فَاطِرِ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۖ يَدْعُوكُمْ لِيَغْفِرَ لَكُم مِّن ذُنُوبِكُمْ وَيُؤَخِّرَكُمْ إِلَىٰٓ أَجَلٍۢ مُّسَمًّۭى ۚ قَالُوٓا۟ إِنْ أَنتُمْ إِلَّا بَشَرٌۭ مِّثْلُنَا تُرِيدُونَ أَن تَصُدُّونَا عَمَّا كَانَ يَعْبُدُ ءَابَآؤُنَا فَأْتُونَا بِسُلْطَنٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,14,' قَالَتْ لَهُمْ رُسُلُهُمْ إِن نَّحْنُ إِلَّا بَشَرٌۭ مِّثْلُكُمْ وَلَكِنَّ ٱللَّهَ يَمُنُّ عَلَىٰ مَن يَشَآءُ مِنْ عِبَادِهِۦ ۖ وَمَا كَانَ لَنَآ أَن نَّأْتِيَكُم بِسُلْطَنٍ إِلَّا بِإِذْنِ ٱللَّهِ ۚ وَعَلَى ٱللَّهِ فَلْيَتَوَكَّلِ ٱلْمُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,14,' وَمَا لَنَآ أَلَّا نَتَوَكَّلَ عَلَى ٱللَّهِ وَقَدْ هَدَىٰنَا سُبُلَنَا ۚ وَلَنَصْبِرَنَّ عَلَىٰ مَآ ءَاذَيْتُمُونَا ۚ وَعَلَى ٱللَّهِ فَلْيَتَوَكَّلِ ٱلْمُتَوَكِّلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,14,' وَقَالَ ٱلَّذِينَ كَفَرُوا۟ لِرُسُلِهِمْ لَنُخْرِجَنَّكُم مِّنْ أَرْضِنَآ أَوْ لَتَعُودُنَّ فِى مِلَّتِنَا ۖ فَأَوْحَىٰٓ إِلَيْهِمْ رَبُّهُمْ لَنُهْلِكَنَّ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,14,' وَلَنُسْكِنَنَّكُمُ ٱلْأَرْضَ مِنۢ بَعْدِهِمْ ۚ ذَلِكَ لِمَنْ خَافَ مَقَامِى وَخَافَ وَعِيدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,14,' وَٱسْتَفْتَحُوا۟ وَخَابَ كُلُّ جَبَّارٍ عَنِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,14,' مِّن وَرَآئِهِۦ جَهَنَّمُ وَيُسْقَىٰ مِن مَّآءٍۢ صَدِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,14,' يَتَجَرَّعُهُۥ وَلَا يَكَادُ يُسِيغُهُۥ وَيَأْتِيهِ ٱلْمَوْتُ مِن كُلِّ مَكَانٍۢ وَمَا هُوَ بِمَيِّتٍۢ ۖ وَمِن وَرَآئِهِۦ عَذَابٌ غَلِيظٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,14,' مَّثَلُ ٱلَّذِينَ كَفَرُوا۟ بِرَبِّهِمْ ۖ أَعْمَلُهُمْ كَرَمَادٍ ٱشْتَدَّتْ بِهِ ٱلرِّيحُ فِى يَوْمٍ عَاصِفٍۢ ۖ لَّا يَقْدِرُونَ مِمَّا كَسَبُوا۟ عَلَىٰ شَىْءٍۢ ۚ ذَلِكَ هُوَ ٱلضَّلَلُ ٱلْبَعِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,14,' أَلَمْ تَرَ أَنَّ ٱللَّهَ خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ بِٱلْحَقِّ ۚ إِن يَشَأْ يُذْهِبْكُمْ وَيَأْتِ بِخَلْقٍۢ جَدِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,14,' وَمَا ذَلِكَ عَلَى ٱللَّهِ بِعَزِيزٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,14,' وَبَرَزُوا۟ لِلَّهِ جَمِيعًۭا فَقَالَ ٱلضُّعَفَٓؤُا۟ لِلَّذِينَ ٱسْتَكْبَرُوٓا۟ إِنَّا كُنَّا لَكُمْ تَبَعًۭا فَهَلْ أَنتُم مُّغْنُونَ عَنَّا مِنْ عَذَابِ ٱللَّهِ مِن شَىْءٍۢ ۚ قَالُوا۟ لَوْ هَدَىٰنَا ٱللَّهُ لَهَدَيْنَكُمْ ۖ سَوَآءٌ عَلَيْنَآ أَجَزِعْنَآ أَمْ صَبَرْنَا مَا لَنَا مِن مَّحِيصٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,14,' وَقَالَ ٱلشَّيْطَنُ لَمَّا قُضِىَ ٱلْأَمْرُ إِنَّ ٱللَّهَ وَعَدَكُمْ وَعْدَ ٱلْحَقِّ وَوَعَدتُّكُمْ فَأَخْلَفْتُكُمْ ۖ وَمَا كَانَ لِىَ عَلَيْكُم مِّن سُلْطَنٍ إِلَّآ أَن دَعَوْتُكُمْ فَٱسْتَجَبْتُمْ لِى ۖ فَلَا تَلُومُونِى وَلُومُوٓا۟ أَنفُسَكُم ۖ مَّآ أَنَا۠ بِمُصْرِخِكُمْ وَمَآ أَنتُم بِمُصْرِخِىَّ ۖ إِنِّى كَفَرْتُ بِمَآ أَشْرَكْتُمُونِ مِن قَبْلُ ۗ إِنَّ ٱلظَّلِمِينَ لَهُمْ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,14,' وَأُدْخِلَ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَا بِإِذْنِ رَبِّهِمْ ۖ تَحِيَّتُهُمْ فِيهَا سَلَمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,14,' أَلَمْ تَرَ كَيْفَ ضَرَبَ ٱللَّهُ مَثَلًۭا كَلِمَةًۭ طَيِّبَةًۭ كَشَجَرَةٍۢ طَيِّبَةٍ أَصْلُهَا ثَابِتٌۭ وَفَرْعُهَا فِى ٱلسَّمَآءِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,14,' تُؤْتِىٓ أُكُلَهَا كُلَّ حِينٍۭ بِإِذْنِ رَبِّهَا ۗ وَيَضْرِبُ ٱللَّهُ ٱلْأَمْثَالَ لِلنَّاسِ لَعَلَّهُمْ يَتَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,14,' وَمَثَلُ كَلِمَةٍ خَبِيثَةٍۢ كَشَجَرَةٍ خَبِيثَةٍ ٱجْتُثَّتْ مِن فَوْقِ ٱلْأَرْضِ مَا لَهَا مِن قَرَارٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,14,' يُثَبِّتُ ٱللَّهُ ٱلَّذِينَ ءَامَنُوا۟ بِٱلْقَوْلِ ٱلثَّابِتِ فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا وَفِى ٱلْءَاخِرَةِ ۖ وَيُضِلُّ ٱللَّهُ ٱلظَّلِمِينَ ۚ وَيَفْعَلُ ٱللَّهُ مَا يَشَآءُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,14,' أَلَمْ تَرَ إِلَى ٱلَّذِينَ بَدَّلُوا۟ نِعْمَتَ ٱللَّهِ كُفْرًۭا وَأَحَلُّوا۟ قَوْمَهُمْ دَارَ ٱلْبَوَارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,14,' جَهَنَّمَ يَصْلَوْنَهَا ۖ وَبِئْسَ ٱلْقَرَارُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,14,' وَجَعَلُوا۟ لِلَّهِ أَندَادًۭا لِّيُضِلُّوا۟ عَن سَبِيلِهِۦ ۗ قُلْ تَمَتَّعُوا۟ فَإِنَّ مَصِيرَكُمْ إِلَى ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,14,' قُل لِّعِبَادِىَ ٱلَّذِينَ ءَامَنُوا۟ يُقِيمُوا۟ ٱلصَّلَوٰةَ وَيُنفِقُوا۟ مِمَّا رَزَقْنَهُمْ سِرًّۭا وَعَلَانِيَةًۭ مِّن قَبْلِ أَن يَأْتِىَ يَوْمٌۭ لَّا بَيْعٌۭ فِيهِ وَلَا خِلَلٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,14,' ٱللَّهُ ٱلَّذِى خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ وَأَنزَلَ مِنَ ٱلسَّمَآءِ مَآءًۭ فَأَخْرَجَ بِهِۦ مِنَ ٱلثَّمَرَتِ رِزْقًۭا لَّكُمْ ۖ وَسَخَّرَ لَكُمُ ٱلْفُلْكَ لِتَجْرِىَ فِى ٱلْبَحْرِ بِأَمْرِهِۦ ۖ وَسَخَّرَ لَكُمُ ٱلْأَنْهَرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,14,' وَسَخَّرَ لَكُمُ ٱلشَّمْسَ وَٱلْقَمَرَ دَآئِبَيْنِ ۖ وَسَخَّرَ لَكُمُ ٱلَّيْلَ وَٱلنَّهَارَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,14,' وَءَاتَىٰكُم مِّن كُلِّ مَا سَأَلْتُمُوهُ ۚ وَإِن تَعُدُّوا۟ نِعْمَتَ ٱللَّهِ لَا تُحْصُوهَآ ۗ إِنَّ ٱلْإِنسَنَ لَظَلُومٌۭ كَفَّارٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,14,' وَإِذْ قَالَ إِبْرَهِيمُ رَبِّ ٱجْعَلْ هَذَا ٱلْبَلَدَ ءَامِنًۭا وَٱجْنُبْنِى وَبَنِىَّ أَن نَّعْبُدَ ٱلْأَصْنَامَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,14,' رَبِّ إِنَّهُنَّ أَضْلَلْنَ كَثِيرًۭا مِّنَ ٱلنَّاسِ ۖ فَمَن تَبِعَنِى فَإِنَّهُۥ مِنِّى ۖ وَمَنْ عَصَانِى فَإِنَّكَ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,14,' رَّبَّنَآ إِنِّىٓ أَسْكَنتُ مِن ذُرِّيَّتِى بِوَادٍ غَيْرِ ذِى زَرْعٍ عِندَ بَيْتِكَ ٱلْمُحَرَّمِ رَبَّنَا لِيُقِيمُوا۟ ٱلصَّلَوٰةَ فَٱجْعَلْ أَفْـِٔدَةًۭ مِّنَ ٱلنَّاسِ تَهْوِىٓ إِلَيْهِمْ وَٱرْزُقْهُم مِّنَ ٱلثَّمَرَتِ لَعَلَّهُمْ يَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,14,' رَبَّنَآ إِنَّكَ تَعْلَمُ مَا نُخْفِى وَمَا نُعْلِنُ ۗ وَمَا يَخْفَىٰ عَلَى ٱللَّهِ مِن شَىْءٍۢ فِى ٱلْأَرْضِ وَلَا فِى ٱلسَّمَآءِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,14,' ٱلْحَمْدُ لِلَّهِ ٱلَّذِى وَهَبَ لِى عَلَى ٱلْكِبَرِ إِسْمَعِيلَ وَإِسْحَقَ ۚ إِنَّ رَبِّى لَسَمِيعُ ٱلدُّعَآءِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,14,' رَبِّ ٱجْعَلْنِى مُقِيمَ ٱلصَّلَوٰةِ وَمِن ذُرِّيَّتِى ۚ رَبَّنَا وَتَقَبَّلْ دُعَآءِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,14,' رَبَّنَا ٱغْفِرْ لِى وَلِوَلِدَىَّ وَلِلْمُؤْمِنِينَ يَوْمَ يَقُومُ ٱلْحِسَابُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,14,' وَلَا تَحْسَبَنَّ ٱللَّهَ غَفِلًا عَمَّا يَعْمَلُ ٱلظَّلِمُونَ ۚ إِنَّمَا يُؤَخِّرُهُمْ لِيَوْمٍۢ تَشْخَصُ فِيهِ ٱلْأَبْصَرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,14,' مُهْطِعِينَ مُقْنِعِى رُءُوسِهِمْ لَا يَرْتَدُّ إِلَيْهِمْ طَرْفُهُمْ ۖ وَأَفْـِٔدَتُهُمْ هَوَآءٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,14,' وَأَنذِرِ ٱلنَّاسَ يَوْمَ يَأْتِيهِمُ ٱلْعَذَابُ فَيَقُولُ ٱلَّذِينَ ظَلَمُوا۟ رَبَّنَآ أَخِّرْنَآ إِلَىٰٓ أَجَلٍۢ قَرِيبٍۢ نُّجِبْ دَعْوَتَكَ وَنَتَّبِعِ ٱلرُّسُلَ ۗ أَوَلَمْ تَكُونُوٓا۟ أَقْسَمْتُم مِّن قَبْلُ مَا لَكُم مِّن زَوَالٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,14,' وَسَكَنتُمْ فِى مَسَكِنِ ٱلَّذِينَ ظَلَمُوٓا۟ أَنفُسَهُمْ وَتَبَيَّنَ لَكُمْ كَيْفَ فَعَلْنَا بِهِمْ وَضَرَبْنَا لَكُمُ ٱلْأَمْثَالَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,14,' وَقَدْ مَكَرُوا۟ مَكْرَهُمْ وَعِندَ ٱللَّهِ مَكْرُهُمْ وَإِن كَانَ مَكْرُهُمْ لِتَزُولَ مِنْهُ ٱلْجِبَالُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,14,' فَلَا تَحْسَبَنَّ ٱللَّهَ مُخْلِفَ وَعْدِهِۦ رُسُلَهُۥٓ ۗ إِنَّ ٱللَّهَ عَزِيزٌۭ ذُو ٱنتِقَامٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,14,' يَوْمَ تُبَدَّلُ ٱلْأَرْضُ غَيْرَ ٱلْأَرْضِ وَٱلسَّمَوَتُ ۖ وَبَرَزُوا۟ لِلَّهِ ٱلْوَحِدِ ٱلْقَهَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,14,' وَتَرَى ٱلْمُجْرِمِينَ يَوْمَئِذٍۢ مُّقَرَّنِينَ فِى ٱلْأَصْفَادِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,14,' سَرَابِيلُهُم مِّن قَطِرَانٍۢ وَتَغْشَىٰ وُجُوهَهُمُ ٱلنَّارُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,14,' لِيَجْزِىَ ٱللَّهُ كُلَّ نَفْسٍۢ مَّا كَسَبَتْ ۚ إِنَّ ٱللَّهَ سَرِيعُ ٱلْحِسَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,14,' هَذَا بَلَغٌۭ لِّلنَّاسِ وَلِيُنذَرُوا۟ بِهِۦ وَلِيَعْلَمُوٓا۟ أَنَّمَا هُوَ إِلَهٌۭ وَحِدٌۭ وَلِيَذَّكَّرَ أُو۟لُوا۟ ٱلْأَلْبَبِ');
+INSERT INTO chapters (id, number, quran_id) VALUES(15,15,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,15,' الٓر ۚ تِلْكَ ءَايَتُ ٱلْكِتَبِ وَقُرْءَانٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,15,' رُّبَمَا يَوَدُّ ٱلَّذِينَ كَفَرُوا۟ لَوْ كَانُوا۟ مُسْلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,15,' ذَرْهُمْ يَأْكُلُوا۟ وَيَتَمَتَّعُوا۟ وَيُلْهِهِمُ ٱلْأَمَلُ ۖ فَسَوْفَ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,15,' وَمَآ أَهْلَكْنَا مِن قَرْيَةٍ إِلَّا وَلَهَا كِتَابٌۭ مَّعْلُومٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,15,' مَّا تَسْبِقُ مِنْ أُمَّةٍ أَجَلَهَا وَمَا يَسْتَـْٔخِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,15,' وَقَالُوا۟ يَٓأَيُّهَا ٱلَّذِى نُزِّلَ عَلَيْهِ ٱلذِّكْرُ إِنَّكَ لَمَجْنُونٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,15,' لَّوْ مَا تَأْتِينَا بِٱلْمَلَٓئِكَةِ إِن كُنتَ مِنَ ٱلصَّدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,15,' مَا نُنَزِّلُ ٱلْمَلَٓئِكَةَ إِلَّا بِٱلْحَقِّ وَمَا كَانُوٓا۟ إِذًۭا مُّنظَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,15,' إِنَّا نَحْنُ نَزَّلْنَا ٱلذِّكْرَ وَإِنَّا لَهُۥ لَحَفِظُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,15,' وَلَقَدْ أَرْسَلْنَا مِن قَبْلِكَ فِى شِيَعِ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,15,' وَمَا يَأْتِيهِم مِّن رَّسُولٍ إِلَّا كَانُوا۟ بِهِۦ يَسْتَهْزِءُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,15,' كَذَلِكَ نَسْلُكُهُۥ فِى قُلُوبِ ٱلْمُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,15,' لَا يُؤْمِنُونَ بِهِۦ ۖ وَقَدْ خَلَتْ سُنَّةُ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,15,' وَلَوْ فَتَحْنَا عَلَيْهِم بَابًۭا مِّنَ ٱلسَّمَآءِ فَظَلُّوا۟ فِيهِ يَعْرُجُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,15,' لَقَالُوٓا۟ إِنَّمَا سُكِّرَتْ أَبْصَرُنَا بَلْ نَحْنُ قَوْمٌۭ مَّسْحُورُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,15,' وَلَقَدْ جَعَلْنَا فِى ٱلسَّمَآءِ بُرُوجًۭا وَزَيَّنَّهَا لِلنَّظِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,15,' وَحَفِظْنَهَا مِن كُلِّ شَيْطَنٍۢ رَّجِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,15,' إِلَّا مَنِ ٱسْتَرَقَ ٱلسَّمْعَ فَأَتْبَعَهُۥ شِهَابٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,15,' وَٱلْأَرْضَ مَدَدْنَهَا وَأَلْقَيْنَا فِيهَا رَوَسِىَ وَأَنۢبَتْنَا فِيهَا مِن كُلِّ شَىْءٍۢ مَّوْزُونٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,15,' وَجَعَلْنَا لَكُمْ فِيهَا مَعَيِشَ وَمَن لَّسْتُمْ لَهُۥ بِرَزِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,15,' وَإِن مِّن شَىْءٍ إِلَّا عِندَنَا خَزَآئِنُهُۥ وَمَا نُنَزِّلُهُۥٓ إِلَّا بِقَدَرٍۢ مَّعْلُومٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,15,' وَأَرْسَلْنَا ٱلرِّيَحَ لَوَقِحَ فَأَنزَلْنَا مِنَ ٱلسَّمَآءِ مَآءًۭ فَأَسْقَيْنَكُمُوهُ وَمَآ أَنتُمْ لَهُۥ بِخَزِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,15,' وَإِنَّا لَنَحْنُ نُحْىِۦ وَنُمِيتُ وَنَحْنُ ٱلْوَرِثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,15,' وَلَقَدْ عَلِمْنَا ٱلْمُسْتَقْدِمِينَ مِنكُمْ وَلَقَدْ عَلِمْنَا ٱلْمُسْتَـْٔخِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,15,' وَإِنَّ رَبَّكَ هُوَ يَحْشُرُهُمْ ۚ إِنَّهُۥ حَكِيمٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,15,' وَلَقَدْ خَلَقْنَا ٱلْإِنسَنَ مِن صَلْصَلٍۢ مِّنْ حَمَإٍۢ مَّسْنُونٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,15,' وَٱلْجَآنَّ خَلَقْنَهُ مِن قَبْلُ مِن نَّارِ ٱلسَّمُومِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,15,' وَإِذْ قَالَ رَبُّكَ لِلْمَلَٓئِكَةِ إِنِّى خَلِقٌۢ بَشَرًۭا مِّن صَلْصَلٍۢ مِّنْ حَمَإٍۢ مَّسْنُونٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,15,' فَإِذَا سَوَّيْتُهُۥ وَنَفَخْتُ فِيهِ مِن رُّوحِى فَقَعُوا۟ لَهُۥ سَجِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,15,' فَسَجَدَ ٱلْمَلَٓئِكَةُ كُلُّهُمْ أَجْمَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,15,' إِلَّآ إِبْلِيسَ أَبَىٰٓ أَن يَكُونَ مَعَ ٱلسَّجِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,15,' قَالَ يَٓإِبْلِيسُ مَا لَكَ أَلَّا تَكُونَ مَعَ ٱلسَّجِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,15,' قَالَ لَمْ أَكُن لِأَسْجُدَ لِبَشَرٍ خَلَقْتَهُۥ مِن صَلْصَلٍۢ مِّنْ حَمَإٍۢ مَّسْنُونٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,15,' قَالَ فَٱخْرُجْ مِنْهَا فَإِنَّكَ رَجِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,15,' وَإِنَّ عَلَيْكَ ٱللَّعْنَةَ إِلَىٰ يَوْمِ ٱلدِّينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,15,' قَالَ رَبِّ فَأَنظِرْنِىٓ إِلَىٰ يَوْمِ يُبْعَثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,15,' قَالَ فَإِنَّكَ مِنَ ٱلْمُنظَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,15,' إِلَىٰ يَوْمِ ٱلْوَقْتِ ٱلْمَعْلُومِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,15,' قَالَ رَبِّ بِمَآ أَغْوَيْتَنِى لَأُزَيِّنَنَّ لَهُمْ فِى ٱلْأَرْضِ وَلَأُغْوِيَنَّهُمْ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,15,' إِلَّا عِبَادَكَ مِنْهُمُ ٱلْمُخْلَصِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,15,' قَالَ هَذَا صِرَطٌ عَلَىَّ مُسْتَقِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,15,' إِنَّ عِبَادِى لَيْسَ لَكَ عَلَيْهِمْ سُلْطَنٌ إِلَّا مَنِ ٱتَّبَعَكَ مِنَ ٱلْغَاوِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,15,' وَإِنَّ جَهَنَّمَ لَمَوْعِدُهُمْ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,15,' لَهَا سَبْعَةُ أَبْوَبٍۢ لِّكُلِّ بَابٍۢ مِّنْهُمْ جُزْءٌۭ مَّقْسُومٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,15,' إِنَّ ٱلْمُتَّقِينَ فِى جَنَّتٍۢ وَعُيُونٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,15,' ٱدْخُلُوهَا بِسَلَمٍ ءَامِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,15,' وَنَزَعْنَا مَا فِى صُدُورِهِم مِّنْ غِلٍّ إِخْوَنًا عَلَىٰ سُرُرٍۢ مُّتَقَبِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,15,' لَا يَمَسُّهُمْ فِيهَا نَصَبٌۭ وَمَا هُم مِّنْهَا بِمُخْرَجِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,15,' نَبِّئْ عِبَادِىٓ أَنِّىٓ أَنَا ٱلْغَفُورُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,15,' وَأَنَّ عَذَابِى هُوَ ٱلْعَذَابُ ٱلْأَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,15,' وَنَبِّئْهُمْ عَن ضَيْفِ إِبْرَهِيمَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,15,' إِذْ دَخَلُوا۟ عَلَيْهِ فَقَالُوا۟ سَلَمًۭا قَالَ إِنَّا مِنكُمْ وَجِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,15,' قَالُوا۟ لَا تَوْجَلْ إِنَّا نُبَشِّرُكَ بِغُلَمٍ عَلِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,15,' قَالَ أَبَشَّرْتُمُونِى عَلَىٰٓ أَن مَّسَّنِىَ ٱلْكِبَرُ فَبِمَ تُبَشِّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,15,' قَالُوا۟ بَشَّرْنَكَ بِٱلْحَقِّ فَلَا تَكُن مِّنَ ٱلْقَنِطِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,15,' قَالَ وَمَن يَقْنَطُ مِن رَّحْمَةِ رَبِّهِۦٓ إِلَّا ٱلضَّآلُّونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,15,' قَالَ فَمَا خَطْبُكُمْ أَيُّهَا ٱلْمُرْسَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,15,' قَالُوٓا۟ إِنَّآ أُرْسِلْنَآ إِلَىٰ قَوْمٍۢ مُّجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,15,' إِلَّآ ءَالَ لُوطٍ إِنَّا لَمُنَجُّوهُمْ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,15,' إِلَّا ٱمْرَأَتَهُۥ قَدَّرْنَآ ۙ إِنَّهَا لَمِنَ ٱلْغَبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,15,' فَلَمَّا جَآءَ ءَالَ لُوطٍ ٱلْمُرْسَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,15,' قَالَ إِنَّكُمْ قَوْمٌۭ مُّنكَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,15,' قَالُوا۟ بَلْ جِئْنَكَ بِمَا كَانُوا۟ فِيهِ يَمْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,15,' وَأَتَيْنَكَ بِٱلْحَقِّ وَإِنَّا لَصَدِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,15,' فَأَسْرِ بِأَهْلِكَ بِقِطْعٍۢ مِّنَ ٱلَّيْلِ وَٱتَّبِعْ أَدْبَرَهُمْ وَلَا يَلْتَفِتْ مِنكُمْ أَحَدٌۭ وَٱمْضُوا۟ حَيْثُ تُؤْمَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,15,' وَقَضَيْنَآ إِلَيْهِ ذَلِكَ ٱلْأَمْرَ أَنَّ دَابِرَ هَٓؤُلَآءِ مَقْطُوعٌۭ مُّصْبِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,15,' وَجَآءَ أَهْلُ ٱلْمَدِينَةِ يَسْتَبْشِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,15,' قَالَ إِنَّ هَٓؤُلَآءِ ضَيْفِى فَلَا تَفْضَحُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,15,' وَٱتَّقُوا۟ ٱللَّهَ وَلَا تُخْزُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,15,' قَالُوٓا۟ أَوَلَمْ نَنْهَكَ عَنِ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,15,' قَالَ هَٓؤُلَآءِ بَنَاتِىٓ إِن كُنتُمْ فَعِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,15,' لَعَمْرُكَ إِنَّهُمْ لَفِى سَكْرَتِهِمْ يَعْمَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,15,' فَأَخَذَتْهُمُ ٱلصَّيْحَةُ مُشْرِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,15,' فَجَعَلْنَا عَلِيَهَا سَافِلَهَا وَأَمْطَرْنَا عَلَيْهِمْ حِجَارَةًۭ مِّن سِجِّيلٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,15,' إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّلْمُتَوَسِّمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,15,' وَإِنَّهَا لَبِسَبِيلٍۢ مُّقِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,15,' إِنَّ فِى ذَلِكَ لَءَايَةًۭ لِّلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,15,' وَإِن كَانَ أَصْحَبُ ٱلْأَيْكَةِ لَظَلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,15,' فَٱنتَقَمْنَا مِنْهُمْ وَإِنَّهُمَا لَبِإِمَامٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,15,' وَلَقَدْ كَذَّبَ أَصْحَبُ ٱلْحِجْرِ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,15,' وَءَاتَيْنَهُمْ ءَايَتِنَا فَكَانُوا۟ عَنْهَا مُعْرِضِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,15,' وَكَانُوا۟ يَنْحِتُونَ مِنَ ٱلْجِبَالِ بُيُوتًا ءَامِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,15,' فَأَخَذَتْهُمُ ٱلصَّيْحَةُ مُصْبِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,15,' فَمَآ أَغْنَىٰ عَنْهُم مَّا كَانُوا۟ يَكْسِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,15,' وَمَا خَلَقْنَا ٱلسَّمَوَتِ وَٱلْأَرْضَ وَمَا بَيْنَهُمَآ إِلَّا بِٱلْحَقِّ ۗ وَإِنَّ ٱلسَّاعَةَ لَءَاتِيَةٌۭ ۖ فَٱصْفَحِ ٱلصَّفْحَ ٱلْجَمِيلَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,15,' إِنَّ رَبَّكَ هُوَ ٱلْخَلَّقُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,15,' وَلَقَدْ ءَاتَيْنَكَ سَبْعًۭا مِّنَ ٱلْمَثَانِى وَٱلْقُرْءَانَ ٱلْعَظِيمَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,15,' لَا تَمُدَّنَّ عَيْنَيْكَ إِلَىٰ مَا مَتَّعْنَا بِهِۦٓ أَزْوَجًۭا مِّنْهُمْ وَلَا تَحْزَنْ عَلَيْهِمْ وَٱخْفِضْ جَنَاحَكَ لِلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,15,' وَقُلْ إِنِّىٓ أَنَا ٱلنَّذِيرُ ٱلْمُبِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,15,' كَمَآ أَنزَلْنَا عَلَى ٱلْمُقْتَسِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,15,' ٱلَّذِينَ جَعَلُوا۟ ٱلْقُرْءَانَ عِضِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,15,' فَوَرَبِّكَ لَنَسْـَٔلَنَّهُمْ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,15,' عَمَّا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,15,' فَٱصْدَعْ بِمَا تُؤْمَرُ وَأَعْرِضْ عَنِ ٱلْمُشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,15,' إِنَّا كَفَيْنَكَ ٱلْمُسْتَهْزِءِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,15,' ٱلَّذِينَ يَجْعَلُونَ مَعَ ٱللَّهِ إِلَهًا ءَاخَرَ ۚ فَسَوْفَ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,15,' وَلَقَدْ نَعْلَمُ أَنَّكَ يَضِيقُ صَدْرُكَ بِمَا يَقُولُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,15,' فَسَبِّحْ بِحَمْدِ رَبِّكَ وَكُن مِّنَ ٱلسَّجِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,15,' وَٱعْبُدْ رَبَّكَ حَتَّىٰ يَأْتِيَكَ ٱلْيَقِينُ');
+INSERT INTO chapters (id, number, quran_id) VALUES(16,16,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,16,' أَتَىٰٓ أَمْرُ ٱللَّهِ فَلَا تَسْتَعْجِلُوهُ ۚ سُبْحَنَهُۥ وَتَعَلَىٰ عَمَّا يُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,16,' يُنَزِّلُ ٱلْمَلَٓئِكَةَ بِٱلرُّوحِ مِنْ أَمْرِهِۦ عَلَىٰ مَن يَشَآءُ مِنْ عِبَادِهِۦٓ أَنْ أَنذِرُوٓا۟ أَنَّهُۥ لَآ إِلَهَ إِلَّآ أَنَا۠ فَٱتَّقُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,16,' خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ بِٱلْحَقِّ ۚ تَعَلَىٰ عَمَّا يُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,16,' خَلَقَ ٱلْإِنسَنَ مِن نُّطْفَةٍۢ فَإِذَا هُوَ خَصِيمٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,16,' وَٱلْأَنْعَمَ خَلَقَهَا ۗ لَكُمْ فِيهَا دِفْءٌۭ وَمَنَفِعُ وَمِنْهَا تَأْكُلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,16,' وَلَكُمْ فِيهَا جَمَالٌ حِينَ تُرِيحُونَ وَحِينَ تَسْرَحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,16,' وَتَحْمِلُ أَثْقَالَكُمْ إِلَىٰ بَلَدٍۢ لَّمْ تَكُونُوا۟ بَلِغِيهِ إِلَّا بِشِقِّ ٱلْأَنفُسِ ۚ إِنَّ رَبَّكُمْ لَرَءُوفٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,16,' وَٱلْخَيْلَ وَٱلْبِغَالَ وَٱلْحَمِيرَ لِتَرْكَبُوهَا وَزِينَةًۭ ۚ وَيَخْلُقُ مَا لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,16,' وَعَلَى ٱللَّهِ قَصْدُ ٱلسَّبِيلِ وَمِنْهَا جَآئِرٌۭ ۚ وَلَوْ شَآءَ لَهَدَىٰكُمْ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,16,' هُوَ ٱلَّذِىٓ أَنزَلَ مِنَ ٱلسَّمَآءِ مَآءًۭ ۖ لَّكُم مِّنْهُ شَرَابٌۭ وَمِنْهُ شَجَرٌۭ فِيهِ تُسِيمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,16,' يُنۢبِتُ لَكُم بِهِ ٱلزَّرْعَ وَٱلزَّيْتُونَ وَٱلنَّخِيلَ وَٱلْأَعْنَبَ وَمِن كُلِّ ٱلثَّمَرَتِ ۗ إِنَّ فِى ذَلِكَ لَءَايَةًۭ لِّقَوْمٍۢ يَتَفَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,16,' وَسَخَّرَ لَكُمُ ٱلَّيْلَ وَٱلنَّهَارَ وَٱلشَّمْسَ وَٱلْقَمَرَ ۖ وَٱلنُّجُومُ مُسَخَّرَتٌۢ بِأَمْرِهِۦٓ ۗ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّقَوْمٍۢ يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,16,' وَمَا ذَرَأَ لَكُمْ فِى ٱلْأَرْضِ مُخْتَلِفًا أَلْوَنُهُۥٓ ۗ إِنَّ فِى ذَلِكَ لَءَايَةًۭ لِّقَوْمٍۢ يَذَّكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,16,' وَهُوَ ٱلَّذِى سَخَّرَ ٱلْبَحْرَ لِتَأْكُلُوا۟ مِنْهُ لَحْمًۭا طَرِيًّۭا وَتَسْتَخْرِجُوا۟ مِنْهُ حِلْيَةًۭ تَلْبَسُونَهَا وَتَرَى ٱلْفُلْكَ مَوَاخِرَ فِيهِ وَلِتَبْتَغُوا۟ مِن فَضْلِهِۦ وَلَعَلَّكُمْ تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,16,' وَأَلْقَىٰ فِى ٱلْأَرْضِ رَوَسِىَ أَن تَمِيدَ بِكُمْ وَأَنْهَرًۭا وَسُبُلًۭا لَّعَلَّكُمْ تَهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,16,' وَعَلَمَتٍۢ ۚ وَبِٱلنَّجْمِ هُمْ يَهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,16,' أَفَمَن يَخْلُقُ كَمَن لَّا يَخْلُقُ ۗ أَفَلَا تَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,16,' وَإِن تَعُدُّوا۟ نِعْمَةَ ٱللَّهِ لَا تُحْصُوهَآ ۗ إِنَّ ٱللَّهَ لَغَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,16,' وَٱللَّهُ يَعْلَمُ مَا تُسِرُّونَ وَمَا تُعْلِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,16,' وَٱلَّذِينَ يَدْعُونَ مِن دُونِ ٱللَّهِ لَا يَخْلُقُونَ شَيْـًۭٔا وَهُمْ يُخْلَقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,16,' أَمْوَتٌ غَيْرُ أَحْيَآءٍۢ ۖ وَمَا يَشْعُرُونَ أَيَّانَ يُبْعَثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,16,' إِلَهُكُمْ إِلَهٌۭ وَحِدٌۭ ۚ فَٱلَّذِينَ لَا يُؤْمِنُونَ بِٱلْءَاخِرَةِ قُلُوبُهُم مُّنكِرَةٌۭ وَهُم مُّسْتَكْبِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,16,' لَا جَرَمَ أَنَّ ٱللَّهَ يَعْلَمُ مَا يُسِرُّونَ وَمَا يُعْلِنُونَ ۚ إِنَّهُۥ لَا يُحِبُّ ٱلْمُسْتَكْبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,16,' وَإِذَا قِيلَ لَهُم مَّاذَآ أَنزَلَ رَبُّكُمْ ۙ قَالُوٓا۟ أَسَطِيرُ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,16,' لِيَحْمِلُوٓا۟ أَوْزَارَهُمْ كَامِلَةًۭ يَوْمَ ٱلْقِيَمَةِ ۙ وَمِنْ أَوْزَارِ ٱلَّذِينَ يُضِلُّونَهُم بِغَيْرِ عِلْمٍ ۗ أَلَا سَآءَ مَا يَزِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,16,' قَدْ مَكَرَ ٱلَّذِينَ مِن قَبْلِهِمْ فَأَتَى ٱللَّهُ بُنْيَنَهُم مِّنَ ٱلْقَوَاعِدِ فَخَرَّ عَلَيْهِمُ ٱلسَّقْفُ مِن فَوْقِهِمْ وَأَتَىٰهُمُ ٱلْعَذَابُ مِنْ حَيْثُ لَا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,16,' ثُمَّ يَوْمَ ٱلْقِيَمَةِ يُخْزِيهِمْ وَيَقُولُ أَيْنَ شُرَكَآءِىَ ٱلَّذِينَ كُنتُمْ تُشَٓقُّونَ فِيهِمْ ۚ قَالَ ٱلَّذِينَ أُوتُوا۟ ٱلْعِلْمَ إِنَّ ٱلْخِزْىَ ٱلْيَوْمَ وَٱلسُّوٓءَ عَلَى ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,16,' ٱلَّذِينَ تَتَوَفَّىٰهُمُ ٱلْمَلَٓئِكَةُ ظَالِمِىٓ أَنفُسِهِمْ ۖ فَأَلْقَوُا۟ ٱلسَّلَمَ مَا كُنَّا نَعْمَلُ مِن سُوٓءٍۭ ۚ بَلَىٰٓ إِنَّ ٱللَّهَ عَلِيمٌۢ بِمَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,16,' فَٱدْخُلُوٓا۟ أَبْوَبَ جَهَنَّمَ خَلِدِينَ فِيهَا ۖ فَلَبِئْسَ مَثْوَى ٱلْمُتَكَبِّرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,16,' وَقِيلَ لِلَّذِينَ ٱتَّقَوْا۟ مَاذَآ أَنزَلَ رَبُّكُمْ ۚ قَالُوا۟ خَيْرًۭا ۗ لِّلَّذِينَ أَحْسَنُوا۟ فِى هَذِهِ ٱلدُّنْيَا حَسَنَةٌۭ ۚ وَلَدَارُ ٱلْءَاخِرَةِ خَيْرٌۭ ۚ وَلَنِعْمَ دَارُ ٱلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,16,' جَنَّتُ عَدْنٍۢ يَدْخُلُونَهَا تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ ۖ لَهُمْ فِيهَا مَا يَشَآءُونَ ۚ كَذَلِكَ يَجْزِى ٱللَّهُ ٱلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,16,' ٱلَّذِينَ تَتَوَفَّىٰهُمُ ٱلْمَلَٓئِكَةُ طَيِّبِينَ ۙ يَقُولُونَ سَلَمٌ عَلَيْكُمُ ٱدْخُلُوا۟ ٱلْجَنَّةَ بِمَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,16,' هَلْ يَنظُرُونَ إِلَّآ أَن تَأْتِيَهُمُ ٱلْمَلَٓئِكَةُ أَوْ يَأْتِىَ أَمْرُ رَبِّكَ ۚ كَذَلِكَ فَعَلَ ٱلَّذِينَ مِن قَبْلِهِمْ ۚ وَمَا ظَلَمَهُمُ ٱللَّهُ وَلَكِن كَانُوٓا۟ أَنفُسَهُمْ يَظْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,16,' فَأَصَابَهُمْ سَيِّـَٔاتُ مَا عَمِلُوا۟ وَحَاقَ بِهِم مَّا كَانُوا۟ بِهِۦ يَسْتَهْزِءُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,16,' وَقَالَ ٱلَّذِينَ أَشْرَكُوا۟ لَوْ شَآءَ ٱللَّهُ مَا عَبَدْنَا مِن دُونِهِۦ مِن شَىْءٍۢ نَّحْنُ وَلَآ ءَابَآؤُنَا وَلَا حَرَّمْنَا مِن دُونِهِۦ مِن شَىْءٍۢ ۚ كَذَلِكَ فَعَلَ ٱلَّذِينَ مِن قَبْلِهِمْ ۚ فَهَلْ عَلَى ٱلرُّسُلِ إِلَّا ٱلْبَلَغُ ٱلْمُبِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,16,' وَلَقَدْ بَعَثْنَا فِى كُلِّ أُمَّةٍۢ رَّسُولًا أَنِ ٱعْبُدُوا۟ ٱللَّهَ وَٱجْتَنِبُوا۟ ٱلطَّغُوتَ ۖ فَمِنْهُم مَّنْ هَدَى ٱللَّهُ وَمِنْهُم مَّنْ حَقَّتْ عَلَيْهِ ٱلضَّلَلَةُ ۚ فَسِيرُوا۟ فِى ٱلْأَرْضِ فَٱنظُرُوا۟ كَيْفَ كَانَ عَقِبَةُ ٱلْمُكَذِّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,16,' إِن تَحْرِصْ عَلَىٰ هُدَىٰهُمْ فَإِنَّ ٱللَّهَ لَا يَهْدِى مَن يُضِلُّ ۖ وَمَا لَهُم مِّن نَّصِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,16,' وَأَقْسَمُوا۟ بِٱللَّهِ جَهْدَ أَيْمَنِهِمْ ۙ لَا يَبْعَثُ ٱللَّهُ مَن يَمُوتُ ۚ بَلَىٰ وَعْدًا عَلَيْهِ حَقًّۭا وَلَكِنَّ أَكْثَرَ ٱلنَّاسِ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,16,' لِيُبَيِّنَ لَهُمُ ٱلَّذِى يَخْتَلِفُونَ فِيهِ وَلِيَعْلَمَ ٱلَّذِينَ كَفَرُوٓا۟ أَنَّهُمْ كَانُوا۟ كَذِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,16,' إِنَّمَا قَوْلُنَا لِشَىْءٍ إِذَآ أَرَدْنَهُ أَن نَّقُولَ لَهُۥ كُن فَيَكُونُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,16,' وَٱلَّذِينَ هَاجَرُوا۟ فِى ٱللَّهِ مِنۢ بَعْدِ مَا ظُلِمُوا۟ لَنُبَوِّئَنَّهُمْ فِى ٱلدُّنْيَا حَسَنَةًۭ ۖ وَلَأَجْرُ ٱلْءَاخِرَةِ أَكْبَرُ ۚ لَوْ كَانُوا۟ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,16,' ٱلَّذِينَ صَبَرُوا۟ وَعَلَىٰ رَبِّهِمْ يَتَوَكَّلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,16,' وَمَآ أَرْسَلْنَا مِن قَبْلِكَ إِلَّا رِجَالًۭا نُّوحِىٓ إِلَيْهِمْ ۚ فَسْـَٔلُوٓا۟ أَهْلَ ٱلذِّكْرِ إِن كُنتُمْ لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,16,' بِٱلْبَيِّنَتِ وَٱلزُّبُرِ ۗ وَأَنزَلْنَآ إِلَيْكَ ٱلذِّكْرَ لِتُبَيِّنَ لِلنَّاسِ مَا نُزِّلَ إِلَيْهِمْ وَلَعَلَّهُمْ يَتَفَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,16,' أَفَأَمِنَ ٱلَّذِينَ مَكَرُوا۟ ٱلسَّيِّـَٔاتِ أَن يَخْسِفَ ٱللَّهُ بِهِمُ ٱلْأَرْضَ أَوْ يَأْتِيَهُمُ ٱلْعَذَابُ مِنْ حَيْثُ لَا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,16,' أَوْ يَأْخُذَهُمْ فِى تَقَلُّبِهِمْ فَمَا هُم بِمُعْجِزِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,16,' أَوْ يَأْخُذَهُمْ عَلَىٰ تَخَوُّفٍۢ فَإِنَّ رَبَّكُمْ لَرَءُوفٌۭ رَّحِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,16,' أَوَلَمْ يَرَوْا۟ إِلَىٰ مَا خَلَقَ ٱللَّهُ مِن شَىْءٍۢ يَتَفَيَّؤُا۟ ظِلَلُهُۥ عَنِ ٱلْيَمِينِ وَٱلشَّمَآئِلِ سُجَّدًۭا لِّلَّهِ وَهُمْ دَخِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,16,' وَلِلَّهِ يَسْجُدُ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ مِن دَآبَّةٍۢ وَٱلْمَلَٓئِكَةُ وَهُمْ لَا يَسْتَكْبِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,16,' يَخَافُونَ رَبَّهُم مِّن فَوْقِهِمْ وَيَفْعَلُونَ مَا يُؤْمَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,16,' وَقَالَ ٱللَّهُ لَا تَتَّخِذُوٓا۟ إِلَهَيْنِ ٱثْنَيْنِ ۖ إِنَّمَا هُوَ إِلَهٌۭ وَحِدٌۭ ۖ فَإِيَّىَ فَٱرْهَبُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,16,' وَلَهُۥ مَا فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ وَلَهُ ٱلدِّينُ وَاصِبًا ۚ أَفَغَيْرَ ٱللَّهِ تَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,16,' وَمَا بِكُم مِّن نِّعْمَةٍۢ فَمِنَ ٱللَّهِ ۖ ثُمَّ إِذَا مَسَّكُمُ ٱلضُّرُّ فَإِلَيْهِ تَجْـَٔرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,16,' ثُمَّ إِذَا كَشَفَ ٱلضُّرَّ عَنكُمْ إِذَا فَرِيقٌۭ مِّنكُم بِرَبِّهِمْ يُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,16,' لِيَكْفُرُوا۟ بِمَآ ءَاتَيْنَهُمْ ۚ فَتَمَتَّعُوا۟ ۖ فَسَوْفَ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,16,' وَيَجْعَلُونَ لِمَا لَا يَعْلَمُونَ نَصِيبًۭا مِّمَّا رَزَقْنَهُمْ ۗ تَٱللَّهِ لَتُسْـَٔلُنَّ عَمَّا كُنتُمْ تَفْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,16,' وَيَجْعَلُونَ لِلَّهِ ٱلْبَنَتِ سُبْحَنَهُۥ ۙ وَلَهُم مَّا يَشْتَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,16,' وَإِذَا بُشِّرَ أَحَدُهُم بِٱلْأُنثَىٰ ظَلَّ وَجْهُهُۥ مُسْوَدًّۭا وَهُوَ كَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,16,' يَتَوَرَىٰ مِنَ ٱلْقَوْمِ مِن سُوٓءِ مَا بُشِّرَ بِهِۦٓ ۚ أَيُمْسِكُهُۥ عَلَىٰ هُونٍ أَمْ يَدُسُّهُۥ فِى ٱلتُّرَابِ ۗ أَلَا سَآءَ مَا يَحْكُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,16,' لِلَّذِينَ لَا يُؤْمِنُونَ بِٱلْءَاخِرَةِ مَثَلُ ٱلسَّوْءِ ۖ وَلِلَّهِ ٱلْمَثَلُ ٱلْأَعْلَىٰ ۚ وَهُوَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,16,' وَلَوْ يُؤَاخِذُ ٱللَّهُ ٱلنَّاسَ بِظُلْمِهِم مَّا تَرَكَ عَلَيْهَا مِن دَآبَّةٍۢ وَلَكِن يُؤَخِّرُهُمْ إِلَىٰٓ أَجَلٍۢ مُّسَمًّۭى ۖ فَإِذَا جَآءَ أَجَلُهُمْ لَا يَسْتَـْٔخِرُونَ سَاعَةًۭ ۖ وَلَا يَسْتَقْدِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,16,' وَيَجْعَلُونَ لِلَّهِ مَا يَكْرَهُونَ وَتَصِفُ أَلْسِنَتُهُمُ ٱلْكَذِبَ أَنَّ لَهُمُ ٱلْحُسْنَىٰ ۖ لَا جَرَمَ أَنَّ لَهُمُ ٱلنَّارَ وَأَنَّهُم مُّفْرَطُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,16,' تَٱللَّهِ لَقَدْ أَرْسَلْنَآ إِلَىٰٓ أُمَمٍۢ مِّن قَبْلِكَ فَزَيَّنَ لَهُمُ ٱلشَّيْطَنُ أَعْمَلَهُمْ فَهُوَ وَلِيُّهُمُ ٱلْيَوْمَ وَلَهُمْ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,16,' وَمَآ أَنزَلْنَا عَلَيْكَ ٱلْكِتَبَ إِلَّا لِتُبَيِّنَ لَهُمُ ٱلَّذِى ٱخْتَلَفُوا۟ فِيهِ ۙ وَهُدًۭى وَرَحْمَةًۭ لِّقَوْمٍۢ يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,16,' وَٱللَّهُ أَنزَلَ مِنَ ٱلسَّمَآءِ مَآءًۭ فَأَحْيَا بِهِ ٱلْأَرْضَ بَعْدَ مَوْتِهَآ ۚ إِنَّ فِى ذَلِكَ لَءَايَةًۭ لِّقَوْمٍۢ يَسْمَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,16,' وَإِنَّ لَكُمْ فِى ٱلْأَنْعَمِ لَعِبْرَةًۭ ۖ نُّسْقِيكُم مِّمَّا فِى بُطُونِهِۦ مِنۢ بَيْنِ فَرْثٍۢ وَدَمٍۢ لَّبَنًا خَالِصًۭا سَآئِغًۭا لِّلشَّرِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,16,' وَمِن ثَمَرَتِ ٱلنَّخِيلِ وَٱلْأَعْنَبِ تَتَّخِذُونَ مِنْهُ سَكَرًۭا وَرِزْقًا حَسَنًا ۗ إِنَّ فِى ذَلِكَ لَءَايَةًۭ لِّقَوْمٍۢ يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,16,' وَأَوْحَىٰ رَبُّكَ إِلَى ٱلنَّحْلِ أَنِ ٱتَّخِذِى مِنَ ٱلْجِبَالِ بُيُوتًۭا وَمِنَ ٱلشَّجَرِ وَمِمَّا يَعْرِشُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,16,' ثُمَّ كُلِى مِن كُلِّ ٱلثَّمَرَتِ فَٱسْلُكِى سُبُلَ رَبِّكِ ذُلُلًۭا ۚ يَخْرُجُ مِنۢ بُطُونِهَا شَرَابٌۭ مُّخْتَلِفٌ أَلْوَنُهُۥ فِيهِ شِفَآءٌۭ لِّلنَّاسِ ۗ إِنَّ فِى ذَلِكَ لَءَايَةًۭ لِّقَوْمٍۢ يَتَفَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,16,' وَٱللَّهُ خَلَقَكُمْ ثُمَّ يَتَوَفَّىٰكُمْ ۚ وَمِنكُم مَّن يُرَدُّ إِلَىٰٓ أَرْذَلِ ٱلْعُمُرِ لِكَىْ لَا يَعْلَمَ بَعْدَ عِلْمٍۢ شَيْـًٔا ۚ إِنَّ ٱللَّهَ عَلِيمٌۭ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,16,' وَٱللَّهُ فَضَّلَ بَعْضَكُمْ عَلَىٰ بَعْضٍۢ فِى ٱلرِّزْقِ ۚ فَمَا ٱلَّذِينَ فُضِّلُوا۟ بِرَآدِّى رِزْقِهِمْ عَلَىٰ مَا مَلَكَتْ أَيْمَنُهُمْ فَهُمْ فِيهِ سَوَآءٌ ۚ أَفَبِنِعْمَةِ ٱللَّهِ يَجْحَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,16,' وَٱللَّهُ جَعَلَ لَكُم مِّنْ أَنفُسِكُمْ أَزْوَجًۭا وَجَعَلَ لَكُم مِّنْ أَزْوَجِكُم بَنِينَ وَحَفَدَةًۭ وَرَزَقَكُم مِّنَ ٱلطَّيِّبَتِ ۚ أَفَبِٱلْبَطِلِ يُؤْمِنُونَ وَبِنِعْمَتِ ٱللَّهِ هُمْ يَكْفُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,16,' وَيَعْبُدُونَ مِن دُونِ ٱللَّهِ مَا لَا يَمْلِكُ لَهُمْ رِزْقًۭا مِّنَ ٱلسَّمَوَتِ وَٱلْأَرْضِ شَيْـًۭٔا وَلَا يَسْتَطِيعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,16,' فَلَا تَضْرِبُوا۟ لِلَّهِ ٱلْأَمْثَالَ ۚ إِنَّ ٱللَّهَ يَعْلَمُ وَأَنتُمْ لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,16,' ضَرَبَ ٱللَّهُ مَثَلًا عَبْدًۭا مَّمْلُوكًۭا لَّا يَقْدِرُ عَلَىٰ شَىْءٍۢ وَمَن رَّزَقْنَهُ مِنَّا رِزْقًا حَسَنًۭا فَهُوَ يُنفِقُ مِنْهُ سِرًّۭا وَجَهْرًا ۖ هَلْ يَسْتَوُۥنَ ۚ ٱلْحَمْدُ لِلَّهِ ۚ بَلْ أَكْثَرُهُمْ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,16,' وَضَرَبَ ٱللَّهُ مَثَلًۭا رَّجُلَيْنِ أَحَدُهُمَآ أَبْكَمُ لَا يَقْدِرُ عَلَىٰ شَىْءٍۢ وَهُوَ كَلٌّ عَلَىٰ مَوْلَىٰهُ أَيْنَمَا يُوَجِّههُّ لَا يَأْتِ بِخَيْرٍ ۖ هَلْ يَسْتَوِى هُوَ وَمَن يَأْمُرُ بِٱلْعَدْلِ ۙ وَهُوَ عَلَىٰ صِرَطٍۢ مُّسْتَقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,16,' وَلِلَّهِ غَيْبُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ وَمَآ أَمْرُ ٱلسَّاعَةِ إِلَّا كَلَمْحِ ٱلْبَصَرِ أَوْ هُوَ أَقْرَبُ ۚ إِنَّ ٱللَّهَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,16,' وَٱللَّهُ أَخْرَجَكُم مِّنۢ بُطُونِ أُمَّهَتِكُمْ لَا تَعْلَمُونَ شَيْـًۭٔا وَجَعَلَ لَكُمُ ٱلسَّمْعَ وَٱلْأَبْصَرَ وَٱلْأَفْـِٔدَةَ ۙ لَعَلَّكُمْ تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,16,' أَلَمْ يَرَوْا۟ إِلَى ٱلطَّيْرِ مُسَخَّرَتٍۢ فِى جَوِّ ٱلسَّمَآءِ مَا يُمْسِكُهُنَّ إِلَّا ٱللَّهُ ۗ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّقَوْمٍۢ يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,16,' وَٱللَّهُ جَعَلَ لَكُم مِّنۢ بُيُوتِكُمْ سَكَنًۭا وَجَعَلَ لَكُم مِّن جُلُودِ ٱلْأَنْعَمِ بُيُوتًۭا تَسْتَخِفُّونَهَا يَوْمَ ظَعْنِكُمْ وَيَوْمَ إِقَامَتِكُمْ ۙ وَمِنْ أَصْوَافِهَا وَأَوْبَارِهَا وَأَشْعَارِهَآ أَثَثًۭا وَمَتَعًا إِلَىٰ حِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,16,' وَٱللَّهُ جَعَلَ لَكُم مِّمَّا خَلَقَ ظِلَلًۭا وَجَعَلَ لَكُم مِّنَ ٱلْجِبَالِ أَكْنَنًۭا وَجَعَلَ لَكُمْ سَرَبِيلَ تَقِيكُمُ ٱلْحَرَّ وَسَرَبِيلَ تَقِيكُم بَأْسَكُمْ ۚ كَذَلِكَ يُتِمُّ نِعْمَتَهُۥ عَلَيْكُمْ لَعَلَّكُمْ تُسْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,16,' فَإِن تَوَلَّوْا۟ فَإِنَّمَا عَلَيْكَ ٱلْبَلَغُ ٱلْمُبِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,16,' يَعْرِفُونَ نِعْمَتَ ٱللَّهِ ثُمَّ يُنكِرُونَهَا وَأَكْثَرُهُمُ ٱلْكَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,16,' وَيَوْمَ نَبْعَثُ مِن كُلِّ أُمَّةٍۢ شَهِيدًۭا ثُمَّ لَا يُؤْذَنُ لِلَّذِينَ كَفَرُوا۟ وَلَا هُمْ يُسْتَعْتَبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,16,' وَإِذَا رَءَا ٱلَّذِينَ ظَلَمُوا۟ ٱلْعَذَابَ فَلَا يُخَفَّفُ عَنْهُمْ وَلَا هُمْ يُنظَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,16,' وَإِذَا رَءَا ٱلَّذِينَ أَشْرَكُوا۟ شُرَكَآءَهُمْ قَالُوا۟ رَبَّنَا هَٓؤُلَآءِ شُرَكَآؤُنَا ٱلَّذِينَ كُنَّا نَدْعُوا۟ مِن دُونِكَ ۖ فَأَلْقَوْا۟ إِلَيْهِمُ ٱلْقَوْلَ إِنَّكُمْ لَكَذِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,16,' وَأَلْقَوْا۟ إِلَى ٱللَّهِ يَوْمَئِذٍ ٱلسَّلَمَ ۖ وَضَلَّ عَنْهُم مَّا كَانُوا۟ يَفْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,16,' ٱلَّذِينَ كَفَرُوا۟ وَصَدُّوا۟ عَن سَبِيلِ ٱللَّهِ زِدْنَهُمْ عَذَابًۭا فَوْقَ ٱلْعَذَابِ بِمَا كَانُوا۟ يُفْسِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,16,' وَيَوْمَ نَبْعَثُ فِى كُلِّ أُمَّةٍۢ شَهِيدًا عَلَيْهِم مِّنْ أَنفُسِهِمْ ۖ وَجِئْنَا بِكَ شَهِيدًا عَلَىٰ هَٓؤُلَآءِ ۚ وَنَزَّلْنَا عَلَيْكَ ٱلْكِتَبَ تِبْيَنًۭا لِّكُلِّ شَىْءٍۢ وَهُدًۭى وَرَحْمَةًۭ وَبُشْرَىٰ لِلْمُسْلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,16,' إِنَّ ٱللَّهَ يَأْمُرُ بِٱلْعَدْلِ وَٱلْإِحْسَنِ وَإِيتَآئِ ذِى ٱلْقُرْبَىٰ وَيَنْهَىٰ عَنِ ٱلْفَحْشَآءِ وَٱلْمُنكَرِ وَٱلْبَغْىِ ۚ يَعِظُكُمْ لَعَلَّكُمْ تَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,16,' وَأَوْفُوا۟ بِعَهْدِ ٱللَّهِ إِذَا عَهَدتُّمْ وَلَا تَنقُضُوا۟ ٱلْأَيْمَنَ بَعْدَ تَوْكِيدِهَا وَقَدْ جَعَلْتُمُ ٱللَّهَ عَلَيْكُمْ كَفِيلًا ۚ إِنَّ ٱللَّهَ يَعْلَمُ مَا تَفْعَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,16,' وَلَا تَكُونُوا۟ كَٱلَّتِى نَقَضَتْ غَزْلَهَا مِنۢ بَعْدِ قُوَّةٍ أَنكَثًۭا تَتَّخِذُونَ أَيْمَنَكُمْ دَخَلًۢا بَيْنَكُمْ أَن تَكُونَ أُمَّةٌ هِىَ أَرْبَىٰ مِنْ أُمَّةٍ ۚ إِنَّمَا يَبْلُوكُمُ ٱللَّهُ بِهِۦ ۚ وَلَيُبَيِّنَنَّ لَكُمْ يَوْمَ ٱلْقِيَمَةِ مَا كُنتُمْ فِيهِ تَخْتَلِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,16,' وَلَوْ شَآءَ ٱللَّهُ لَجَعَلَكُمْ أُمَّةًۭ وَحِدَةًۭ وَلَكِن يُضِلُّ مَن يَشَآءُ وَيَهْدِى مَن يَشَآءُ ۚ وَلَتُسْـَٔلُنَّ عَمَّا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,16,' وَلَا تَتَّخِذُوٓا۟ أَيْمَنَكُمْ دَخَلًۢا بَيْنَكُمْ فَتَزِلَّ قَدَمٌۢ بَعْدَ ثُبُوتِهَا وَتَذُوقُوا۟ ٱلسُّوٓءَ بِمَا صَدَدتُّمْ عَن سَبِيلِ ٱللَّهِ ۖ وَلَكُمْ عَذَابٌ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,16,' وَلَا تَشْتَرُوا۟ بِعَهْدِ ٱللَّهِ ثَمَنًۭا قَلِيلًا ۚ إِنَّمَا عِندَ ٱللَّهِ هُوَ خَيْرٌۭ لَّكُمْ إِن كُنتُمْ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,16,' مَا عِندَكُمْ يَنفَدُ ۖ وَمَا عِندَ ٱللَّهِ بَاقٍۢ ۗ وَلَنَجْزِيَنَّ ٱلَّذِينَ صَبَرُوٓا۟ أَجْرَهُم بِأَحْسَنِ مَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,16,' مَنْ عَمِلَ صَلِحًۭا مِّن ذَكَرٍ أَوْ أُنثَىٰ وَهُوَ مُؤْمِنٌۭ فَلَنُحْيِيَنَّهُۥ حَيَوٰةًۭ طَيِّبَةًۭ ۖ وَلَنَجْزِيَنَّهُمْ أَجْرَهُم بِأَحْسَنِ مَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,16,' فَإِذَا قَرَأْتَ ٱلْقُرْءَانَ فَٱسْتَعِذْ بِٱللَّهِ مِنَ ٱلشَّيْطَنِ ٱلرَّجِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,16,' إِنَّهُۥ لَيْسَ لَهُۥ سُلْطَنٌ عَلَى ٱلَّذِينَ ءَامَنُوا۟ وَعَلَىٰ رَبِّهِمْ يَتَوَكَّلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,1,16,' إِنَّمَا سُلْطَنُهُۥ عَلَى ٱلَّذِينَ يَتَوَلَّوْنَهُۥ وَٱلَّذِينَ هُم بِهِۦ مُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,1,16,' وَإِذَا بَدَّلْنَآ ءَايَةًۭ مَّكَانَ ءَايَةٍۢ ۙ وَٱللَّهُ أَعْلَمُ بِمَا يُنَزِّلُ قَالُوٓا۟ إِنَّمَآ أَنتَ مُفْتَرٍۭ ۚ بَلْ أَكْثَرُهُمْ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,1,16,' قُلْ نَزَّلَهُۥ رُوحُ ٱلْقُدُسِ مِن رَّبِّكَ بِٱلْحَقِّ لِيُثَبِّتَ ٱلَّذِينَ ءَامَنُوا۟ وَهُدًۭى وَبُشْرَىٰ لِلْمُسْلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,1,16,' وَلَقَدْ نَعْلَمُ أَنَّهُمْ يَقُولُونَ إِنَّمَا يُعَلِّمُهُۥ بَشَرٌۭ ۗ لِّسَانُ ٱلَّذِى يُلْحِدُونَ إِلَيْهِ أَعْجَمِىٌّۭ وَهَذَا لِسَانٌ عَرَبِىٌّۭ مُّبِينٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,1,16,' إِنَّ ٱلَّذِينَ لَا يُؤْمِنُونَ بِـَٔايَتِ ٱللَّهِ لَا يَهْدِيهِمُ ٱللَّهُ وَلَهُمْ عَذَابٌ أَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,1,16,' إِنَّمَا يَفْتَرِى ٱلْكَذِبَ ٱلَّذِينَ لَا يُؤْمِنُونَ بِـَٔايَتِ ٱللَّهِ ۖ وَأُو۟لَٓئِكَ هُمُ ٱلْكَذِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,1,16,' مَن كَفَرَ بِٱللَّهِ مِنۢ بَعْدِ إِيمَنِهِۦٓ إِلَّا مَنْ أُكْرِهَ وَقَلْبُهُۥ مُطْمَىِٕنٌّۢ بِٱلْإِيمَنِ وَلَكِن مَّن شَرَحَ بِٱلْكُفْرِ صَدْرًۭا فَعَلَيْهِمْ غَضَبٌۭ مِّنَ ٱللَّهِ وَلَهُمْ عَذَابٌ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,1,16,' ذَلِكَ بِأَنَّهُمُ ٱسْتَحَبُّوا۟ ٱلْحَيَوٰةَ ٱلدُّنْيَا عَلَى ٱلْءَاخِرَةِ وَأَنَّ ٱللَّهَ لَا يَهْدِى ٱلْقَوْمَ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,1,16,' أُو۟لَٓئِكَ ٱلَّذِينَ طَبَعَ ٱللَّهُ عَلَىٰ قُلُوبِهِمْ وَسَمْعِهِمْ وَأَبْصَرِهِمْ ۖ وَأُو۟لَٓئِكَ هُمُ ٱلْغَفِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,1,16,' لَا جَرَمَ أَنَّهُمْ فِى ٱلْءَاخِرَةِ هُمُ ٱلْخَسِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,1,16,' ثُمَّ إِنَّ رَبَّكَ لِلَّذِينَ هَاجَرُوا۟ مِنۢ بَعْدِ مَا فُتِنُوا۟ ثُمَّ جَهَدُوا۟ وَصَبَرُوٓا۟ إِنَّ رَبَّكَ مِنۢ بَعْدِهَا لَغَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,1,16,' يَوْمَ تَأْتِى كُلُّ نَفْسٍۢ تُجَدِلُ عَن نَّفْسِهَا وَتُوَفَّىٰ كُلُّ نَفْسٍۢ مَّا عَمِلَتْ وَهُمْ لَا يُظْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,1,16,' وَضَرَبَ ٱللَّهُ مَثَلًۭا قَرْيَةًۭ كَانَتْ ءَامِنَةًۭ مُّطْمَئِنَّةًۭ يَأْتِيهَا رِزْقُهَا رَغَدًۭا مِّن كُلِّ مَكَانٍۢ فَكَفَرَتْ بِأَنْعُمِ ٱللَّهِ فَأَذَقَهَا ٱللَّهُ لِبَاسَ ٱلْجُوعِ وَٱلْخَوْفِ بِمَا كَانُوا۟ يَصْنَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,1,16,' وَلَقَدْ جَآءَهُمْ رَسُولٌۭ مِّنْهُمْ فَكَذَّبُوهُ فَأَخَذَهُمُ ٱلْعَذَابُ وَهُمْ ظَلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,1,16,' فَكُلُوا۟ مِمَّا رَزَقَكُمُ ٱللَّهُ حَلَلًۭا طَيِّبًۭا وَٱشْكُرُوا۟ نِعْمَتَ ٱللَّهِ إِن كُنتُمْ إِيَّاهُ تَعْبُدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,1,16,' إِنَّمَا حَرَّمَ عَلَيْكُمُ ٱلْمَيْتَةَ وَٱلدَّمَ وَلَحْمَ ٱلْخِنزِيرِ وَمَآ أُهِلَّ لِغَيْرِ ٱللَّهِ بِهِۦ ۖ فَمَنِ ٱضْطُرَّ غَيْرَ بَاغٍۢ وَلَا عَادٍۢ فَإِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,1,16,' وَلَا تَقُولُوا۟ لِمَا تَصِفُ أَلْسِنَتُكُمُ ٱلْكَذِبَ هَذَا حَلَلٌۭ وَهَذَا حَرَامٌۭ لِّتَفْتَرُوا۟ عَلَى ٱللَّهِ ٱلْكَذِبَ ۚ إِنَّ ٱلَّذِينَ يَفْتَرُونَ عَلَى ٱللَّهِ ٱلْكَذِبَ لَا يُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,1,16,' مَتَعٌۭ قَلِيلٌۭ وَلَهُمْ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,1,16,' وَعَلَى ٱلَّذِينَ هَادُوا۟ حَرَّمْنَا مَا قَصَصْنَا عَلَيْكَ مِن قَبْلُ ۖ وَمَا ظَلَمْنَهُمْ وَلَكِن كَانُوٓا۟ أَنفُسَهُمْ يَظْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,1,16,' ثُمَّ إِنَّ رَبَّكَ لِلَّذِينَ عَمِلُوا۟ ٱلسُّوٓءَ بِجَهَلَةٍۢ ثُمَّ تَابُوا۟ مِنۢ بَعْدِ ذَلِكَ وَأَصْلَحُوٓا۟ إِنَّ رَبَّكَ مِنۢ بَعْدِهَا لَغَفُورٌۭ رَّحِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,1,16,' إِنَّ إِبْرَهِيمَ كَانَ أُمَّةًۭ قَانِتًۭا لِّلَّهِ حَنِيفًۭا وَلَمْ يَكُ مِنَ ٱلْمُشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,1,16,' شَاكِرًۭا لِأَنْعُمِهِ ۚ ٱجْتَبَىٰهُ وَهَدَىٰهُ إِلَىٰ صِرَطٍۢ مُّسْتَقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,1,16,' وَءَاتَيْنَهُ فِى ٱلدُّنْيَا حَسَنَةًۭ ۖ وَإِنَّهُۥ فِى ٱلْءَاخِرَةِ لَمِنَ ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,1,16,' ثُمَّ أَوْحَيْنَآ إِلَيْكَ أَنِ ٱتَّبِعْ مِلَّةَ إِبْرَهِيمَ حَنِيفًۭا ۖ وَمَا كَانَ مِنَ ٱلْمُشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,1,16,' إِنَّمَا جُعِلَ ٱلسَّبْتُ عَلَى ٱلَّذِينَ ٱخْتَلَفُوا۟ فِيهِ ۚ وَإِنَّ رَبَّكَ لَيَحْكُمُ بَيْنَهُمْ يَوْمَ ٱلْقِيَمَةِ فِيمَا كَانُوا۟ فِيهِ يَخْتَلِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,1,16,' ٱدْعُ إِلَىٰ سَبِيلِ رَبِّكَ بِٱلْحِكْمَةِ وَٱلْمَوْعِظَةِ ٱلْحَسَنَةِ ۖ وَجَدِلْهُم بِٱلَّتِى هِىَ أَحْسَنُ ۚ إِنَّ رَبَّكَ هُوَ أَعْلَمُ بِمَن ضَلَّ عَن سَبِيلِهِۦ ۖ وَهُوَ أَعْلَمُ بِٱلْمُهْتَدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,1,16,' وَإِنْ عَاقَبْتُمْ فَعَاقِبُوا۟ بِمِثْلِ مَا عُوقِبْتُم بِهِۦ ۖ وَلَىِٕن صَبَرْتُمْ لَهُوَ خَيْرٌۭ لِّلصَّبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,1,16,' وَٱصْبِرْ وَمَا صَبْرُكَ إِلَّا بِٱللَّهِ ۚ وَلَا تَحْزَنْ عَلَيْهِمْ وَلَا تَكُ فِى ضَيْقٍۢ مِّمَّا يَمْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,1,16,' إِنَّ ٱللَّهَ مَعَ ٱلَّذِينَ ٱتَّقَوا۟ وَّٱلَّذِينَ هُم مُّحْسِنُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(17,17,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,17,' سُبْحَنَ ٱلَّذِىٓ أَسْرَىٰ بِعَبْدِهِۦ لَيْلًۭا مِّنَ ٱلْمَسْجِدِ ٱلْحَرَامِ إِلَى ٱلْمَسْجِدِ ٱلْأَقْصَا ٱلَّذِى بَرَكْنَا حَوْلَهُۥ لِنُرِيَهُۥ مِنْ ءَايَتِنَآ ۚ إِنَّهُۥ هُوَ ٱلسَّمِيعُ ٱلْبَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,17,' وَءَاتَيْنَا مُوسَى ٱلْكِتَبَ وَجَعَلْنَهُ هُدًۭى لِّبَنِىٓ إِسْرَٓءِيلَ أَلَّا تَتَّخِذُوا۟ مِن دُونِى وَكِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,17,' ذُرِّيَّةَ مَنْ حَمَلْنَا مَعَ نُوحٍ ۚ إِنَّهُۥ كَانَ عَبْدًۭا شَكُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,17,' وَقَضَيْنَآ إِلَىٰ بَنِىٓ إِسْرَٓءِيلَ فِى ٱلْكِتَبِ لَتُفْسِدُنَّ فِى ٱلْأَرْضِ مَرَّتَيْنِ وَلَتَعْلُنَّ عُلُوًّۭا كَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,17,' فَإِذَا جَآءَ وَعْدُ أُولَىٰهُمَا بَعَثْنَا عَلَيْكُمْ عِبَادًۭا لَّنَآ أُو۟لِى بَأْسٍۢ شَدِيدٍۢ فَجَاسُوا۟ خِلَلَ ٱلدِّيَارِ ۚ وَكَانَ وَعْدًۭا مَّفْعُولًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,17,' ثُمَّ رَدَدْنَا لَكُمُ ٱلْكَرَّةَ عَلَيْهِمْ وَأَمْدَدْنَكُم بِأَمْوَلٍۢ وَبَنِينَ وَجَعَلْنَكُمْ أَكْثَرَ نَفِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,17,' إِنْ أَحْسَنتُمْ أَحْسَنتُمْ لِأَنفُسِكُمْ ۖ وَإِنْ أَسَأْتُمْ فَلَهَا ۚ فَإِذَا جَآءَ وَعْدُ ٱلْءَاخِرَةِ لِيَسُۥٓـُٔوا۟ وُجُوهَكُمْ وَلِيَدْخُلُوا۟ ٱلْمَسْجِدَ كَمَا دَخَلُوهُ أَوَّلَ مَرَّةٍۢ وَلِيُتَبِّرُوا۟ مَا عَلَوْا۟ تَتْبِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,17,' عَسَىٰ رَبُّكُمْ أَن يَرْحَمَكُمْ ۚ وَإِنْ عُدتُّمْ عُدْنَا ۘ وَجَعَلْنَا جَهَنَّمَ لِلْكَفِرِينَ حَصِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,17,' إِنَّ هَذَا ٱلْقُرْءَانَ يَهْدِى لِلَّتِى هِىَ أَقْوَمُ وَيُبَشِّرُ ٱلْمُؤْمِنِينَ ٱلَّذِينَ يَعْمَلُونَ ٱلصَّلِحَتِ أَنَّ لَهُمْ أَجْرًۭا كَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,17,' وَأَنَّ ٱلَّذِينَ لَا يُؤْمِنُونَ بِٱلْءَاخِرَةِ أَعْتَدْنَا لَهُمْ عَذَابًا أَلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,17,' وَيَدْعُ ٱلْإِنسَنُ بِٱلشَّرِّ دُعَآءَهُۥ بِٱلْخَيْرِ ۖ وَكَانَ ٱلْإِنسَنُ عَجُولًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,17,' وَجَعَلْنَا ٱلَّيْلَ وَٱلنَّهَارَ ءَايَتَيْنِ ۖ فَمَحَوْنَآ ءَايَةَ ٱلَّيْلِ وَجَعَلْنَآ ءَايَةَ ٱلنَّهَارِ مُبْصِرَةًۭ لِّتَبْتَغُوا۟ فَضْلًۭا مِّن رَّبِّكُمْ وَلِتَعْلَمُوا۟ عَدَدَ ٱلسِّنِينَ وَٱلْحِسَابَ ۚ وَكُلَّ شَىْءٍۢ فَصَّلْنَهُ تَفْصِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,17,' وَكُلَّ إِنسَنٍ أَلْزَمْنَهُ طَٓئِرَهُۥ فِى عُنُقِهِۦ ۖ وَنُخْرِجُ لَهُۥ يَوْمَ ٱلْقِيَمَةِ كِتَبًۭا يَلْقَىٰهُ مَنشُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,17,' ٱقْرَأْ كِتَبَكَ كَفَىٰ بِنَفْسِكَ ٱلْيَوْمَ عَلَيْكَ حَسِيبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,17,' مَّنِ ٱهْتَدَىٰ فَإِنَّمَا يَهْتَدِى لِنَفْسِهِۦ ۖ وَمَن ضَلَّ فَإِنَّمَا يَضِلُّ عَلَيْهَا ۚ وَلَا تَزِرُ وَازِرَةٌۭ وِزْرَ أُخْرَىٰ ۗ وَمَا كُنَّا مُعَذِّبِينَ حَتَّىٰ نَبْعَثَ رَسُولًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,17,' وَإِذَآ أَرَدْنَآ أَن نُّهْلِكَ قَرْيَةً أَمَرْنَا مُتْرَفِيهَا فَفَسَقُوا۟ فِيهَا فَحَقَّ عَلَيْهَا ٱلْقَوْلُ فَدَمَّرْنَهَا تَدْمِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,17,' وَكَمْ أَهْلَكْنَا مِنَ ٱلْقُرُونِ مِنۢ بَعْدِ نُوحٍۢ ۗ وَكَفَىٰ بِرَبِّكَ بِذُنُوبِ عِبَادِهِۦ خَبِيرًۢا بَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,17,' مَّن كَانَ يُرِيدُ ٱلْعَاجِلَةَ عَجَّلْنَا لَهُۥ فِيهَا مَا نَشَآءُ لِمَن نُّرِيدُ ثُمَّ جَعَلْنَا لَهُۥ جَهَنَّمَ يَصْلَىٰهَا مَذْمُومًۭا مَّدْحُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,17,' وَمَنْ أَرَادَ ٱلْءَاخِرَةَ وَسَعَىٰ لَهَا سَعْيَهَا وَهُوَ مُؤْمِنٌۭ فَأُو۟لَٓئِكَ كَانَ سَعْيُهُم مَّشْكُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,17,' كُلًّۭا نُّمِدُّ هَٓؤُلَآءِ وَهَٓؤُلَآءِ مِنْ عَطَآءِ رَبِّكَ ۚ وَمَا كَانَ عَطَآءُ رَبِّكَ مَحْظُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,17,' ٱنظُرْ كَيْفَ فَضَّلْنَا بَعْضَهُمْ عَلَىٰ بَعْضٍۢ ۚ وَلَلْءَاخِرَةُ أَكْبَرُ دَرَجَتٍۢ وَأَكْبَرُ تَفْضِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,17,' لَّا تَجْعَلْ مَعَ ٱللَّهِ إِلَهًا ءَاخَرَ فَتَقْعُدَ مَذْمُومًۭا مَّخْذُولًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,17,' وَقَضَىٰ رَبُّكَ أَلَّا تَعْبُدُوٓا۟ إِلَّآ إِيَّاهُ وَبِٱلْوَلِدَيْنِ إِحْسَنًا ۚ إِمَّا يَبْلُغَنَّ عِندَكَ ٱلْكِبَرَ أَحَدُهُمَآ أَوْ كِلَاهُمَا فَلَا تَقُل لَّهُمَآ أُفٍّۢ وَلَا تَنْهَرْهُمَا وَقُل لَّهُمَا قَوْلًۭا كَرِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,17,' وَٱخْفِضْ لَهُمَا جَنَاحَ ٱلذُّلِّ مِنَ ٱلرَّحْمَةِ وَقُل رَّبِّ ٱرْحَمْهُمَا كَمَا رَبَّيَانِى صَغِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,17,' رَّبُّكُمْ أَعْلَمُ بِمَا فِى نُفُوسِكُمْ ۚ إِن تَكُونُوا۟ صَلِحِينَ فَإِنَّهُۥ كَانَ لِلْأَوَّبِينَ غَفُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,17,' وَءَاتِ ذَا ٱلْقُرْبَىٰ حَقَّهُۥ وَٱلْمِسْكِينَ وَٱبْنَ ٱلسَّبِيلِ وَلَا تُبَذِّرْ تَبْذِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,17,' إِنَّ ٱلْمُبَذِّرِينَ كَانُوٓا۟ إِخْوَنَ ٱلشَّيَطِينِ ۖ وَكَانَ ٱلشَّيْطَنُ لِرَبِّهِۦ كَفُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,17,' وَإِمَّا تُعْرِضَنَّ عَنْهُمُ ٱبْتِغَآءَ رَحْمَةٍۢ مِّن رَّبِّكَ تَرْجُوهَا فَقُل لَّهُمْ قَوْلًۭا مَّيْسُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,17,' وَلَا تَجْعَلْ يَدَكَ مَغْلُولَةً إِلَىٰ عُنُقِكَ وَلَا تَبْسُطْهَا كُلَّ ٱلْبَسْطِ فَتَقْعُدَ مَلُومًۭا مَّحْسُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,17,' إِنَّ رَبَّكَ يَبْسُطُ ٱلرِّزْقَ لِمَن يَشَآءُ وَيَقْدِرُ ۚ إِنَّهُۥ كَانَ بِعِبَادِهِۦ خَبِيرًۢا بَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,17,' وَلَا تَقْتُلُوٓا۟ أَوْلَدَكُمْ خَشْيَةَ إِمْلَقٍۢ ۖ نَّحْنُ نَرْزُقُهُمْ وَإِيَّاكُمْ ۚ إِنَّ قَتْلَهُمْ كَانَ خِطْـًۭٔا كَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,17,' وَلَا تَقْرَبُوا۟ ٱلزِّنَىٰٓ ۖ إِنَّهُۥ كَانَ فَحِشَةًۭ وَسَآءَ سَبِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,17,' وَلَا تَقْتُلُوا۟ ٱلنَّفْسَ ٱلَّتِى حَرَّمَ ٱللَّهُ إِلَّا بِٱلْحَقِّ ۗ وَمَن قُتِلَ مَظْلُومًۭا فَقَدْ جَعَلْنَا لِوَلِيِّهِۦ سُلْطَنًۭا فَلَا يُسْرِف فِّى ٱلْقَتْلِ ۖ إِنَّهُۥ كَانَ مَنصُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,17,' وَلَا تَقْرَبُوا۟ مَالَ ٱلْيَتِيمِ إِلَّا بِٱلَّتِى هِىَ أَحْسَنُ حَتَّىٰ يَبْلُغَ أَشُدَّهُۥ ۚ وَأَوْفُوا۟ بِٱلْعَهْدِ ۖ إِنَّ ٱلْعَهْدَ كَانَ مَسْـُٔولًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,17,' وَأَوْفُوا۟ ٱلْكَيْلَ إِذَا كِلْتُمْ وَزِنُوا۟ بِٱلْقِسْطَاسِ ٱلْمُسْتَقِيمِ ۚ ذَلِكَ خَيْرٌۭ وَأَحْسَنُ تَأْوِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,17,' وَلَا تَقْفُ مَا لَيْسَ لَكَ بِهِۦ عِلْمٌ ۚ إِنَّ ٱلسَّمْعَ وَٱلْبَصَرَ وَٱلْفُؤَادَ كُلُّ أُو۟لَٓئِكَ كَانَ عَنْهُ مَسْـُٔولًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,17,' وَلَا تَمْشِ فِى ٱلْأَرْضِ مَرَحًا ۖ إِنَّكَ لَن تَخْرِقَ ٱلْأَرْضَ وَلَن تَبْلُغَ ٱلْجِبَالَ طُولًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,17,' كُلُّ ذَلِكَ كَانَ سَيِّئُهُۥ عِندَ رَبِّكَ مَكْرُوهًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,17,' ذَلِكَ مِمَّآ أَوْحَىٰٓ إِلَيْكَ رَبُّكَ مِنَ ٱلْحِكْمَةِ ۗ وَلَا تَجْعَلْ مَعَ ٱللَّهِ إِلَهًا ءَاخَرَ فَتُلْقَىٰ فِى جَهَنَّمَ مَلُومًۭا مَّدْحُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,17,' أَفَأَصْفَىٰكُمْ رَبُّكُم بِٱلْبَنِينَ وَٱتَّخَذَ مِنَ ٱلْمَلَٓئِكَةِ إِنَثًا ۚ إِنَّكُمْ لَتَقُولُونَ قَوْلًا عَظِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,17,' وَلَقَدْ صَرَّفْنَا فِى هَذَا ٱلْقُرْءَانِ لِيَذَّكَّرُوا۟ وَمَا يَزِيدُهُمْ إِلَّا نُفُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,17,' قُل لَّوْ كَانَ مَعَهُۥٓ ءَالِهَةٌۭ كَمَا يَقُولُونَ إِذًۭا لَّٱبْتَغَوْا۟ إِلَىٰ ذِى ٱلْعَرْشِ سَبِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,17,' سُبْحَنَهُۥ وَتَعَلَىٰ عَمَّا يَقُولُونَ عُلُوًّۭا كَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,17,' تُسَبِّحُ لَهُ ٱلسَّمَوَتُ ٱلسَّبْعُ وَٱلْأَرْضُ وَمَن فِيهِنَّ ۚ وَإِن مِّن شَىْءٍ إِلَّا يُسَبِّحُ بِحَمْدِهِۦ وَلَكِن لَّا تَفْقَهُونَ تَسْبِيحَهُمْ ۗ إِنَّهُۥ كَانَ حَلِيمًا غَفُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,17,' وَإِذَا قَرَأْتَ ٱلْقُرْءَانَ جَعَلْنَا بَيْنَكَ وَبَيْنَ ٱلَّذِينَ لَا يُؤْمِنُونَ بِٱلْءَاخِرَةِ حِجَابًۭا مَّسْتُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,17,' وَجَعَلْنَا عَلَىٰ قُلُوبِهِمْ أَكِنَّةً أَن يَفْقَهُوهُ وَفِىٓ ءَاذَانِهِمْ وَقْرًۭا ۚ وَإِذَا ذَكَرْتَ رَبَّكَ فِى ٱلْقُرْءَانِ وَحْدَهُۥ وَلَّوْا۟ عَلَىٰٓ أَدْبَرِهِمْ نُفُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,17,' نَّحْنُ أَعْلَمُ بِمَا يَسْتَمِعُونَ بِهِۦٓ إِذْ يَسْتَمِعُونَ إِلَيْكَ وَإِذْ هُمْ نَجْوَىٰٓ إِذْ يَقُولُ ٱلظَّلِمُونَ إِن تَتَّبِعُونَ إِلَّا رَجُلًۭا مَّسْحُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,17,' ٱنظُرْ كَيْفَ ضَرَبُوا۟ لَكَ ٱلْأَمْثَالَ فَضَلُّوا۟ فَلَا يَسْتَطِيعُونَ سَبِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,17,' وَقَالُوٓا۟ أَءِذَا كُنَّا عِظَمًۭا وَرُفَتًا أَءِنَّا لَمَبْعُوثُونَ خَلْقًۭا جَدِيدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,17,' قُلْ كُونُوا۟ حِجَارَةً أَوْ حَدِيدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,17,' أَوْ خَلْقًۭا مِّمَّا يَكْبُرُ فِى صُدُورِكُمْ ۚ فَسَيَقُولُونَ مَن يُعِيدُنَا ۖ قُلِ ٱلَّذِى فَطَرَكُمْ أَوَّلَ مَرَّةٍۢ ۚ فَسَيُنْغِضُونَ إِلَيْكَ رُءُوسَهُمْ وَيَقُولُونَ مَتَىٰ هُوَ ۖ قُلْ عَسَىٰٓ أَن يَكُونَ قَرِيبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,17,' يَوْمَ يَدْعُوكُمْ فَتَسْتَجِيبُونَ بِحَمْدِهِۦ وَتَظُنُّونَ إِن لَّبِثْتُمْ إِلَّا قَلِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,17,' وَقُل لِّعِبَادِى يَقُولُوا۟ ٱلَّتِى هِىَ أَحْسَنُ ۚ إِنَّ ٱلشَّيْطَنَ يَنزَغُ بَيْنَهُمْ ۚ إِنَّ ٱلشَّيْطَنَ كَانَ لِلْإِنسَنِ عَدُوًّۭا مُّبِينًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,17,' رَّبُّكُمْ أَعْلَمُ بِكُمْ ۖ إِن يَشَأْ يَرْحَمْكُمْ أَوْ إِن يَشَأْ يُعَذِّبْكُمْ ۚ وَمَآ أَرْسَلْنَكَ عَلَيْهِمْ وَكِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,17,' وَرَبُّكَ أَعْلَمُ بِمَن فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ۗ وَلَقَدْ فَضَّلْنَا بَعْضَ ٱلنَّبِيِّۦنَ عَلَىٰ بَعْضٍۢ ۖ وَءَاتَيْنَا دَاوُۥدَ زَبُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,17,' قُلِ ٱدْعُوا۟ ٱلَّذِينَ زَعَمْتُم مِّن دُونِهِۦ فَلَا يَمْلِكُونَ كَشْفَ ٱلضُّرِّ عَنكُمْ وَلَا تَحْوِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,17,' أُو۟لَٓئِكَ ٱلَّذِينَ يَدْعُونَ يَبْتَغُونَ إِلَىٰ رَبِّهِمُ ٱلْوَسِيلَةَ أَيُّهُمْ أَقْرَبُ وَيَرْجُونَ رَحْمَتَهُۥ وَيَخَافُونَ عَذَابَهُۥٓ ۚ إِنَّ عَذَابَ رَبِّكَ كَانَ مَحْذُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,17,' وَإِن مِّن قَرْيَةٍ إِلَّا نَحْنُ مُهْلِكُوهَا قَبْلَ يَوْمِ ٱلْقِيَمَةِ أَوْ مُعَذِّبُوهَا عَذَابًۭا شَدِيدًۭا ۚ كَانَ ذَلِكَ فِى ٱلْكِتَبِ مَسْطُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,17,' وَمَا مَنَعَنَآ أَن نُّرْسِلَ بِٱلْءَايَتِ إِلَّآ أَن كَذَّبَ بِهَا ٱلْأَوَّلُونَ ۚ وَءَاتَيْنَا ثَمُودَ ٱلنَّاقَةَ مُبْصِرَةًۭ فَظَلَمُوا۟ بِهَا ۚ وَمَا نُرْسِلُ بِٱلْءَايَتِ إِلَّا تَخْوِيفًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,17,' وَإِذْ قُلْنَا لَكَ إِنَّ رَبَّكَ أَحَاطَ بِٱلنَّاسِ ۚ وَمَا جَعَلْنَا ٱلرُّءْيَا ٱلَّتِىٓ أَرَيْنَكَ إِلَّا فِتْنَةًۭ لِّلنَّاسِ وَٱلشَّجَرَةَ ٱلْمَلْعُونَةَ فِى ٱلْقُرْءَانِ ۚ وَنُخَوِّفُهُمْ فَمَا يَزِيدُهُمْ إِلَّا طُغْيَنًۭا كَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,17,' وَإِذْ قُلْنَا لِلْمَلَٓئِكَةِ ٱسْجُدُوا۟ لِءَادَمَ فَسَجَدُوٓا۟ إِلَّآ إِبْلِيسَ قَالَ ءَأَسْجُدُ لِمَنْ خَلَقْتَ طِينًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,17,' قَالَ أَرَءَيْتَكَ هَذَا ٱلَّذِى كَرَّمْتَ عَلَىَّ لَىِٕنْ أَخَّرْتَنِ إِلَىٰ يَوْمِ ٱلْقِيَمَةِ لَأَحْتَنِكَنَّ ذُرِّيَّتَهُۥٓ إِلَّا قَلِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,17,' قَالَ ٱذْهَبْ فَمَن تَبِعَكَ مِنْهُمْ فَإِنَّ جَهَنَّمَ جَزَآؤُكُمْ جَزَآءًۭ مَّوْفُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,17,' وَٱسْتَفْزِزْ مَنِ ٱسْتَطَعْتَ مِنْهُم بِصَوْتِكَ وَأَجْلِبْ عَلَيْهِم بِخَيْلِكَ وَرَجِلِكَ وَشَارِكْهُمْ فِى ٱلْأَمْوَلِ وَٱلْأَوْلَدِ وَعِدْهُمْ ۚ وَمَا يَعِدُهُمُ ٱلشَّيْطَنُ إِلَّا غُرُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,17,' إِنَّ عِبَادِى لَيْسَ لَكَ عَلَيْهِمْ سُلْطَنٌۭ ۚ وَكَفَىٰ بِرَبِّكَ وَكِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,17,' رَّبُّكُمُ ٱلَّذِى يُزْجِى لَكُمُ ٱلْفُلْكَ فِى ٱلْبَحْرِ لِتَبْتَغُوا۟ مِن فَضْلِهِۦٓ ۚ إِنَّهُۥ كَانَ بِكُمْ رَحِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,17,' وَإِذَا مَسَّكُمُ ٱلضُّرُّ فِى ٱلْبَحْرِ ضَلَّ مَن تَدْعُونَ إِلَّآ إِيَّاهُ ۖ فَلَمَّا نَجَّىٰكُمْ إِلَى ٱلْبَرِّ أَعْرَضْتُمْ ۚ وَكَانَ ٱلْإِنسَنُ كَفُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,17,' أَفَأَمِنتُمْ أَن يَخْسِفَ بِكُمْ جَانِبَ ٱلْبَرِّ أَوْ يُرْسِلَ عَلَيْكُمْ حَاصِبًۭا ثُمَّ لَا تَجِدُوا۟ لَكُمْ وَكِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,17,' أَمْ أَمِنتُمْ أَن يُعِيدَكُمْ فِيهِ تَارَةً أُخْرَىٰ فَيُرْسِلَ عَلَيْكُمْ قَاصِفًۭا مِّنَ ٱلرِّيحِ فَيُغْرِقَكُم بِمَا كَفَرْتُمْ ۙ ثُمَّ لَا تَجِدُوا۟ لَكُمْ عَلَيْنَا بِهِۦ تَبِيعًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,17,' وَلَقَدْ كَرَّمْنَا بَنِىٓ ءَادَمَ وَحَمَلْنَهُمْ فِى ٱلْبَرِّ وَٱلْبَحْرِ وَرَزَقْنَهُم مِّنَ ٱلطَّيِّبَتِ وَفَضَّلْنَهُمْ عَلَىٰ كَثِيرٍۢ مِّمَّنْ خَلَقْنَا تَفْضِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,17,' يَوْمَ نَدْعُوا۟ كُلَّ أُنَاسٍۭ بِإِمَمِهِمْ ۖ فَمَنْ أُوتِىَ كِتَبَهُۥ بِيَمِينِهِۦ فَأُو۟لَٓئِكَ يَقْرَءُونَ كِتَبَهُمْ وَلَا يُظْلَمُونَ فَتِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,17,' وَمَن كَانَ فِى هَذِهِۦٓ أَعْمَىٰ فَهُوَ فِى ٱلْءَاخِرَةِ أَعْمَىٰ وَأَضَلُّ سَبِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,17,' وَإِن كَادُوا۟ لَيَفْتِنُونَكَ عَنِ ٱلَّذِىٓ أَوْحَيْنَآ إِلَيْكَ لِتَفْتَرِىَ عَلَيْنَا غَيْرَهُۥ ۖ وَإِذًۭا لَّٱتَّخَذُوكَ خَلِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,17,' وَلَوْلَآ أَن ثَبَّتْنَكَ لَقَدْ كِدتَّ تَرْكَنُ إِلَيْهِمْ شَيْـًۭٔا قَلِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,17,' إِذًۭا لَّأَذَقْنَكَ ضِعْفَ ٱلْحَيَوٰةِ وَضِعْفَ ٱلْمَمَاتِ ثُمَّ لَا تَجِدُ لَكَ عَلَيْنَا نَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,17,' وَإِن كَادُوا۟ لَيَسْتَفِزُّونَكَ مِنَ ٱلْأَرْضِ لِيُخْرِجُوكَ مِنْهَا ۖ وَإِذًۭا لَّا يَلْبَثُونَ خِلَفَكَ إِلَّا قَلِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,17,' سُنَّةَ مَن قَدْ أَرْسَلْنَا قَبْلَكَ مِن رُّسُلِنَا ۖ وَلَا تَجِدُ لِسُنَّتِنَا تَحْوِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,17,' أَقِمِ ٱلصَّلَوٰةَ لِدُلُوكِ ٱلشَّمْسِ إِلَىٰ غَسَقِ ٱلَّيْلِ وَقُرْءَانَ ٱلْفَجْرِ ۖ إِنَّ قُرْءَانَ ٱلْفَجْرِ كَانَ مَشْهُودًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,17,' وَمِنَ ٱلَّيْلِ فَتَهَجَّدْ بِهِۦ نَافِلَةًۭ لَّكَ عَسَىٰٓ أَن يَبْعَثَكَ رَبُّكَ مَقَامًۭا مَّحْمُودًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,17,' وَقُل رَّبِّ أَدْخِلْنِى مُدْخَلَ صِدْقٍۢ وَأَخْرِجْنِى مُخْرَجَ صِدْقٍۢ وَٱجْعَل لِّى مِن لَّدُنكَ سُلْطَنًۭا نَّصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,17,' وَقُلْ جَآءَ ٱلْحَقُّ وَزَهَقَ ٱلْبَطِلُ ۚ إِنَّ ٱلْبَطِلَ كَانَ زَهُوقًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,17,' وَنُنَزِّلُ مِنَ ٱلْقُرْءَانِ مَا هُوَ شِفَآءٌۭ وَرَحْمَةٌۭ لِّلْمُؤْمِنِينَ ۙ وَلَا يَزِيدُ ٱلظَّلِمِينَ إِلَّا خَسَارًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,17,' وَإِذَآ أَنْعَمْنَا عَلَى ٱلْإِنسَنِ أَعْرَضَ وَنَـَٔا بِجَانِبِهِۦ ۖ وَإِذَا مَسَّهُ ٱلشَّرُّ كَانَ يَـُٔوسًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,17,' قُلْ كُلٌّۭ يَعْمَلُ عَلَىٰ شَاكِلَتِهِۦ فَرَبُّكُمْ أَعْلَمُ بِمَنْ هُوَ أَهْدَىٰ سَبِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,17,' وَيَسْـَٔلُونَكَ عَنِ ٱلرُّوحِ ۖ قُلِ ٱلرُّوحُ مِنْ أَمْرِ رَبِّى وَمَآ أُوتِيتُم مِّنَ ٱلْعِلْمِ إِلَّا قَلِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,17,' وَلَىِٕن شِئْنَا لَنَذْهَبَنَّ بِٱلَّذِىٓ أَوْحَيْنَآ إِلَيْكَ ثُمَّ لَا تَجِدُ لَكَ بِهِۦ عَلَيْنَا وَكِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,17,' إِلَّا رَحْمَةًۭ مِّن رَّبِّكَ ۚ إِنَّ فَضْلَهُۥ كَانَ عَلَيْكَ كَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,17,' قُل لَّىِٕنِ ٱجْتَمَعَتِ ٱلْإِنسُ وَٱلْجِنُّ عَلَىٰٓ أَن يَأْتُوا۟ بِمِثْلِ هَذَا ٱلْقُرْءَانِ لَا يَأْتُونَ بِمِثْلِهِۦ وَلَوْ كَانَ بَعْضُهُمْ لِبَعْضٍۢ ظَهِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,17,' وَلَقَدْ صَرَّفْنَا لِلنَّاسِ فِى هَذَا ٱلْقُرْءَانِ مِن كُلِّ مَثَلٍۢ فَأَبَىٰٓ أَكْثَرُ ٱلنَّاسِ إِلَّا كُفُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,17,' وَقَالُوا۟ لَن نُّؤْمِنَ لَكَ حَتَّىٰ تَفْجُرَ لَنَا مِنَ ٱلْأَرْضِ يَنۢبُوعًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,17,' أَوْ تَكُونَ لَكَ جَنَّةٌۭ مِّن نَّخِيلٍۢ وَعِنَبٍۢ فَتُفَجِّرَ ٱلْأَنْهَرَ خِلَلَهَا تَفْجِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,17,' أَوْ تُسْقِطَ ٱلسَّمَآءَ كَمَا زَعَمْتَ عَلَيْنَا كِسَفًا أَوْ تَأْتِىَ بِٱللَّهِ وَٱلْمَلَٓئِكَةِ قَبِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,17,' أَوْ يَكُونَ لَكَ بَيْتٌۭ مِّن زُخْرُفٍ أَوْ تَرْقَىٰ فِى ٱلسَّمَآءِ وَلَن نُّؤْمِنَ لِرُقِيِّكَ حَتَّىٰ تُنَزِّلَ عَلَيْنَا كِتَبًۭا نَّقْرَؤُهُۥ ۗ قُلْ سُبْحَانَ رَبِّى هَلْ كُنتُ إِلَّا بَشَرًۭا رَّسُولًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,17,' وَمَا مَنَعَ ٱلنَّاسَ أَن يُؤْمِنُوٓا۟ إِذْ جَآءَهُمُ ٱلْهُدَىٰٓ إِلَّآ أَن قَالُوٓا۟ أَبَعَثَ ٱللَّهُ بَشَرًۭا رَّسُولًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,17,' قُل لَّوْ كَانَ فِى ٱلْأَرْضِ مَلَٓئِكَةٌۭ يَمْشُونَ مُطْمَئِنِّينَ لَنَزَّلْنَا عَلَيْهِم مِّنَ ٱلسَّمَآءِ مَلَكًۭا رَّسُولًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,17,' قُلْ كَفَىٰ بِٱللَّهِ شَهِيدًۢا بَيْنِى وَبَيْنَكُمْ ۚ إِنَّهُۥ كَانَ بِعِبَادِهِۦ خَبِيرًۢا بَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,17,' وَمَن يَهْدِ ٱللَّهُ فَهُوَ ٱلْمُهْتَدِ ۖ وَمَن يُضْلِلْ فَلَن تَجِدَ لَهُمْ أَوْلِيَآءَ مِن دُونِهِۦ ۖ وَنَحْشُرُهُمْ يَوْمَ ٱلْقِيَمَةِ عَلَىٰ وُجُوهِهِمْ عُمْيًۭا وَبُكْمًۭا وَصُمًّۭا ۖ مَّأْوَىٰهُمْ جَهَنَّمُ ۖ كُلَّمَا خَبَتْ زِدْنَهُمْ سَعِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,17,' ذَلِكَ جَزَآؤُهُم بِأَنَّهُمْ كَفَرُوا۟ بِـَٔايَتِنَا وَقَالُوٓا۟ أَءِذَا كُنَّا عِظَمًۭا وَرُفَتًا أَءِنَّا لَمَبْعُوثُونَ خَلْقًۭا جَدِيدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,17,' أَوَلَمْ يَرَوْا۟ أَنَّ ٱللَّهَ ٱلَّذِى خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ قَادِرٌ عَلَىٰٓ أَن يَخْلُقَ مِثْلَهُمْ وَجَعَلَ لَهُمْ أَجَلًۭا لَّا رَيْبَ فِيهِ فَأَبَى ٱلظَّلِمُونَ إِلَّا كُفُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,1,17,' قُل لَّوْ أَنتُمْ تَمْلِكُونَ خَزَآىِٕنَ رَحْمَةِ رَبِّىٓ إِذًۭا لَّأَمْسَكْتُمْ خَشْيَةَ ٱلْإِنفَاقِ ۚ وَكَانَ ٱلْإِنسَنُ قَتُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,1,17,' وَلَقَدْ ءَاتَيْنَا مُوسَىٰ تِسْعَ ءَايَتٍۭ بَيِّنَتٍۢ ۖ فَسْـَٔلْ بَنِىٓ إِسْرَٓءِيلَ إِذْ جَآءَهُمْ فَقَالَ لَهُۥ فِرْعَوْنُ إِنِّى لَأَظُنُّكَ يَمُوسَىٰ مَسْحُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,1,17,' قَالَ لَقَدْ عَلِمْتَ مَآ أَنزَلَ هَٓؤُلَآءِ إِلَّا رَبُّ ٱلسَّمَوَتِ وَٱلْأَرْضِ بَصَآئِرَ وَإِنِّى لَأَظُنُّكَ يَفِرْعَوْنُ مَثْبُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,1,17,' فَأَرَادَ أَن يَسْتَفِزَّهُم مِّنَ ٱلْأَرْضِ فَأَغْرَقْنَهُ وَمَن مَّعَهُۥ جَمِيعًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,1,17,' وَقُلْنَا مِنۢ بَعْدِهِۦ لِبَنِىٓ إِسْرَٓءِيلَ ٱسْكُنُوا۟ ٱلْأَرْضَ فَإِذَا جَآءَ وَعْدُ ٱلْءَاخِرَةِ جِئْنَا بِكُمْ لَفِيفًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,1,17,' وَبِٱلْحَقِّ أَنزَلْنَهُ وَبِٱلْحَقِّ نَزَلَ ۗ وَمَآ أَرْسَلْنَكَ إِلَّا مُبَشِّرًۭا وَنَذِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,1,17,' وَقُرْءَانًۭا فَرَقْنَهُ لِتَقْرَأَهُۥ عَلَى ٱلنَّاسِ عَلَىٰ مُكْثٍۢ وَنَزَّلْنَهُ تَنزِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,1,17,' قُلْ ءَامِنُوا۟ بِهِۦٓ أَوْ لَا تُؤْمِنُوٓا۟ ۚ إِنَّ ٱلَّذِينَ أُوتُوا۟ ٱلْعِلْمَ مِن قَبْلِهِۦٓ إِذَا يُتْلَىٰ عَلَيْهِمْ يَخِرُّونَ لِلْأَذْقَانِ سُجَّدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,1,17,' وَيَقُولُونَ سُبْحَنَ رَبِّنَآ إِن كَانَ وَعْدُ رَبِّنَا لَمَفْعُولًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,1,17,' وَيَخِرُّونَ لِلْأَذْقَانِ يَبْكُونَ وَيَزِيدُهُمْ خُشُوعًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,1,17,' قُلِ ٱدْعُوا۟ ٱللَّهَ أَوِ ٱدْعُوا۟ ٱلرَّحْمَنَ ۖ أَيًّۭا مَّا تَدْعُوا۟ فَلَهُ ٱلْأَسْمَآءُ ٱلْحُسْنَىٰ ۚ وَلَا تَجْهَرْ بِصَلَاتِكَ وَلَا تُخَافِتْ بِهَا وَٱبْتَغِ بَيْنَ ذَلِكَ سَبِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,1,17,' وَقُلِ ٱلْحَمْدُ لِلَّهِ ٱلَّذِى لَمْ يَتَّخِذْ وَلَدًۭا وَلَمْ يَكُن لَّهُۥ شَرِيكٌۭ فِى ٱلْمُلْكِ وَلَمْ يَكُن لَّهُۥ وَلِىٌّۭ مِّنَ ٱلذُّلِّ ۖ وَكَبِّرْهُ تَكْبِيرًۢا');
+INSERT INTO chapters (id, number, quran_id) VALUES(18,18,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,18,' ٱلْحَمْدُ لِلَّهِ ٱلَّذِىٓ أَنزَلَ عَلَىٰ عَبْدِهِ ٱلْكِتَبَ وَلَمْ يَجْعَل لَّهُۥ عِوَجَاۜ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,18,' قَيِّمًۭا لِّيُنذِرَ بَأْسًۭا شَدِيدًۭا مِّن لَّدُنْهُ وَيُبَشِّرَ ٱلْمُؤْمِنِينَ ٱلَّذِينَ يَعْمَلُونَ ٱلصَّلِحَتِ أَنَّ لَهُمْ أَجْرًا حَسَنًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,18,' مَّكِثِينَ فِيهِ أَبَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,18,' وَيُنذِرَ ٱلَّذِينَ قَالُوا۟ ٱتَّخَذَ ٱللَّهُ وَلَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,18,' مَّا لَهُم بِهِۦ مِنْ عِلْمٍۢ وَلَا لِءَابَآئِهِمْ ۚ كَبُرَتْ كَلِمَةًۭ تَخْرُجُ مِنْ أَفْوَهِهِمْ ۚ إِن يَقُولُونَ إِلَّا كَذِبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,18,' فَلَعَلَّكَ بَخِعٌۭ نَّفْسَكَ عَلَىٰٓ ءَاثَرِهِمْ إِن لَّمْ يُؤْمِنُوا۟ بِهَذَا ٱلْحَدِيثِ أَسَفًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,18,' إِنَّا جَعَلْنَا مَا عَلَى ٱلْأَرْضِ زِينَةًۭ لَّهَا لِنَبْلُوَهُمْ أَيُّهُمْ أَحْسَنُ عَمَلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,18,' وَإِنَّا لَجَعِلُونَ مَا عَلَيْهَا صَعِيدًۭا جُرُزًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,18,' أَمْ حَسِبْتَ أَنَّ أَصْحَبَ ٱلْكَهْفِ وَٱلرَّقِيمِ كَانُوا۟ مِنْ ءَايَتِنَا عَجَبًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,18,' إِذْ أَوَى ٱلْفِتْيَةُ إِلَى ٱلْكَهْفِ فَقَالُوا۟ رَبَّنَآ ءَاتِنَا مِن لَّدُنكَ رَحْمَةًۭ وَهَيِّئْ لَنَا مِنْ أَمْرِنَا رَشَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,18,' فَضَرَبْنَا عَلَىٰٓ ءَاذَانِهِمْ فِى ٱلْكَهْفِ سِنِينَ عَدَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,18,' ثُمَّ بَعَثْنَهُمْ لِنَعْلَمَ أَىُّ ٱلْحِزْبَيْنِ أَحْصَىٰ لِمَا لَبِثُوٓا۟ أَمَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,18,' نَّحْنُ نَقُصُّ عَلَيْكَ نَبَأَهُم بِٱلْحَقِّ ۚ إِنَّهُمْ فِتْيَةٌ ءَامَنُوا۟ بِرَبِّهِمْ وَزِدْنَهُمْ هُدًۭى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,18,' وَرَبَطْنَا عَلَىٰ قُلُوبِهِمْ إِذْ قَامُوا۟ فَقَالُوا۟ رَبُّنَا رَبُّ ٱلسَّمَوَتِ وَٱلْأَرْضِ لَن نَّدْعُوَا۟ مِن دُونِهِۦٓ إِلَهًۭا ۖ لَّقَدْ قُلْنَآ إِذًۭا شَطَطًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,18,' هَٓؤُلَآءِ قَوْمُنَا ٱتَّخَذُوا۟ مِن دُونِهِۦٓ ءَالِهَةًۭ ۖ لَّوْلَا يَأْتُونَ عَلَيْهِم بِسُلْطَنٍۭ بَيِّنٍۢ ۖ فَمَنْ أَظْلَمُ مِمَّنِ ٱفْتَرَىٰ عَلَى ٱللَّهِ كَذِبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,18,' وَإِذِ ٱعْتَزَلْتُمُوهُمْ وَمَا يَعْبُدُونَ إِلَّا ٱللَّهَ فَأْوُۥٓا۟ إِلَى ٱلْكَهْفِ يَنشُرْ لَكُمْ رَبُّكُم مِّن رَّحْمَتِهِۦ وَيُهَيِّئْ لَكُم مِّنْ أَمْرِكُم مِّرْفَقًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,18,' وَتَرَى ٱلشَّمْسَ إِذَا طَلَعَت تَّزَوَرُ عَن كَهْفِهِمْ ذَاتَ ٱلْيَمِينِ وَإِذَا غَرَبَت تَّقْرِضُهُمْ ذَاتَ ٱلشِّمَالِ وَهُمْ فِى فَجْوَةٍۢ مِّنْهُ ۚ ذَلِكَ مِنْ ءَايَتِ ٱللَّهِ ۗ مَن يَهْدِ ٱللَّهُ فَهُوَ ٱلْمُهْتَدِ ۖ وَمَن يُضْلِلْ فَلَن تَجِدَ لَهُۥ وَلِيًّۭا مُّرْشِدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,18,' وَتَحْسَبُهُمْ أَيْقَاظًۭا وَهُمْ رُقُودٌۭ ۚ وَنُقَلِّبُهُمْ ذَاتَ ٱلْيَمِينِ وَذَاتَ ٱلشِّمَالِ ۖ وَكَلْبُهُم بَسِطٌۭ ذِرَاعَيْهِ بِٱلْوَصِيدِ ۚ لَوِ ٱطَّلَعْتَ عَلَيْهِمْ لَوَلَّيْتَ مِنْهُمْ فِرَارًۭا وَلَمُلِئْتَ مِنْهُمْ رُعْبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,18,' وَكَذَلِكَ بَعَثْنَهُمْ لِيَتَسَآءَلُوا۟ بَيْنَهُمْ ۚ قَالَ قَآئِلٌۭ مِّنْهُمْ كَمْ لَبِثْتُمْ ۖ قَالُوا۟ لَبِثْنَا يَوْمًا أَوْ بَعْضَ يَوْمٍۢ ۚ قَالُوا۟ رَبُّكُمْ أَعْلَمُ بِمَا لَبِثْتُمْ فَٱبْعَثُوٓا۟ أَحَدَكُم بِوَرِقِكُمْ هَذِهِۦٓ إِلَى ٱلْمَدِينَةِ فَلْيَنظُرْ أَيُّهَآ أَزْكَىٰ طَعَامًۭا فَلْيَأْتِكُم بِرِزْقٍۢ مِّنْهُ وَلْيَتَلَطَّفْ وَلَا يُشْعِرَنَّ بِكُمْ أَحَدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,18,' إِنَّهُمْ إِن يَظْهَرُوا۟ عَلَيْكُمْ يَرْجُمُوكُمْ أَوْ يُعِيدُوكُمْ فِى مِلَّتِهِمْ وَلَن تُفْلِحُوٓا۟ إِذًا أَبَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,18,' وَكَذَلِكَ أَعْثَرْنَا عَلَيْهِمْ لِيَعْلَمُوٓا۟ أَنَّ وَعْدَ ٱللَّهِ حَقٌّۭ وَأَنَّ ٱلسَّاعَةَ لَا رَيْبَ فِيهَآ إِذْ يَتَنَزَعُونَ بَيْنَهُمْ أَمْرَهُمْ ۖ فَقَالُوا۟ ٱبْنُوا۟ عَلَيْهِم بُنْيَنًۭا ۖ رَّبُّهُمْ أَعْلَمُ بِهِمْ ۚ قَالَ ٱلَّذِينَ غَلَبُوا۟ عَلَىٰٓ أَمْرِهِمْ لَنَتَّخِذَنَّ عَلَيْهِم مَّسْجِدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,18,' سَيَقُولُونَ ثَلَثَةٌۭ رَّابِعُهُمْ كَلْبُهُمْ وَيَقُولُونَ خَمْسَةٌۭ سَادِسُهُمْ كَلْبُهُمْ رَجْمًۢا بِٱلْغَيْبِ ۖ وَيَقُولُونَ سَبْعَةٌۭ وَثَامِنُهُمْ كَلْبُهُمْ ۚ قُل رَّبِّىٓ أَعْلَمُ بِعِدَّتِهِم مَّا يَعْلَمُهُمْ إِلَّا قَلِيلٌۭ ۗ فَلَا تُمَارِ فِيهِمْ إِلَّا مِرَآءًۭ ظَهِرًۭا وَلَا تَسْتَفْتِ فِيهِم مِّنْهُمْ أَحَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,18,' وَلَا تَقُولَنَّ لِشَا۟ىْءٍ إِنِّى فَاعِلٌۭ ذَلِكَ غَدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,18,' إِلَّآ أَن يَشَآءَ ٱللَّهُ ۚ وَٱذْكُر رَّبَّكَ إِذَا نَسِيتَ وَقُلْ عَسَىٰٓ أَن يَهْدِيَنِ رَبِّى لِأَقْرَبَ مِنْ هَذَا رَشَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,18,' وَلَبِثُوا۟ فِى كَهْفِهِمْ ثَلَثَ مِا۟ئَةٍۢ سِنِينَ وَٱزْدَادُوا۟ تِسْعًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,18,' قُلِ ٱللَّهُ أَعْلَمُ بِمَا لَبِثُوا۟ ۖ لَهُۥ غَيْبُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۖ أَبْصِرْ بِهِۦ وَأَسْمِعْ ۚ مَا لَهُم مِّن دُونِهِۦ مِن وَلِىٍّۢ وَلَا يُشْرِكُ فِى حُكْمِهِۦٓ أَحَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,18,' وَٱتْلُ مَآ أُوحِىَ إِلَيْكَ مِن كِتَابِ رَبِّكَ ۖ لَا مُبَدِّلَ لِكَلِمَتِهِۦ وَلَن تَجِدَ مِن دُونِهِۦ مُلْتَحَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,18,' وَٱصْبِرْ نَفْسَكَ مَعَ ٱلَّذِينَ يَدْعُونَ رَبَّهُم بِٱلْغَدَوٰةِ وَٱلْعَشِىِّ يُرِيدُونَ وَجْهَهُۥ ۖ وَلَا تَعْدُ عَيْنَاكَ عَنْهُمْ تُرِيدُ زِينَةَ ٱلْحَيَوٰةِ ٱلدُّنْيَا ۖ وَلَا تُطِعْ مَنْ أَغْفَلْنَا قَلْبَهُۥ عَن ذِكْرِنَا وَٱتَّبَعَ هَوَىٰهُ وَكَانَ أَمْرُهُۥ فُرُطًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,18,' وَقُلِ ٱلْحَقُّ مِن رَّبِّكُمْ ۖ فَمَن شَآءَ فَلْيُؤْمِن وَمَن شَآءَ فَلْيَكْفُرْ ۚ إِنَّآ أَعْتَدْنَا لِلظَّلِمِينَ نَارًا أَحَاطَ بِهِمْ سُرَادِقُهَا ۚ وَإِن يَسْتَغِيثُوا۟ يُغَاثُوا۟ بِمَآءٍۢ كَٱلْمُهْلِ يَشْوِى ٱلْوُجُوهَ ۚ بِئْسَ ٱلشَّرَابُ وَسَآءَتْ مُرْتَفَقًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,18,' إِنَّ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ إِنَّا لَا نُضِيعُ أَجْرَ مَنْ أَحْسَنَ عَمَلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,18,' أُو۟لَٓئِكَ لَهُمْ جَنَّتُ عَدْنٍۢ تَجْرِى مِن تَحْتِهِمُ ٱلْأَنْهَرُ يُحَلَّوْنَ فِيهَا مِنْ أَسَاوِرَ مِن ذَهَبٍۢ وَيَلْبَسُونَ ثِيَابًا خُضْرًۭا مِّن سُندُسٍۢ وَإِسْتَبْرَقٍۢ مُّتَّكِـِٔينَ فِيهَا عَلَى ٱلْأَرَآئِكِ ۚ نِعْمَ ٱلثَّوَابُ وَحَسُنَتْ مُرْتَفَقًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,18,' وَٱضْرِبْ لَهُم مَّثَلًۭا رَّجُلَيْنِ جَعَلْنَا لِأَحَدِهِمَا جَنَّتَيْنِ مِنْ أَعْنَبٍۢ وَحَفَفْنَهُمَا بِنَخْلٍۢ وَجَعَلْنَا بَيْنَهُمَا زَرْعًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,18,' كِلْتَا ٱلْجَنَّتَيْنِ ءَاتَتْ أُكُلَهَا وَلَمْ تَظْلِم مِّنْهُ شَيْـًۭٔا ۚ وَفَجَّرْنَا خِلَلَهُمَا نَهَرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,18,' وَكَانَ لَهُۥ ثَمَرٌۭ فَقَالَ لِصَحِبِهِۦ وَهُوَ يُحَاوِرُهُۥٓ أَنَا۠ أَكْثَرُ مِنكَ مَالًۭا وَأَعَزُّ نَفَرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,18,' وَدَخَلَ جَنَّتَهُۥ وَهُوَ ظَالِمٌۭ لِّنَفْسِهِۦ قَالَ مَآ أَظُنُّ أَن تَبِيدَ هَذِهِۦٓ أَبَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,18,' وَمَآ أَظُنُّ ٱلسَّاعَةَ قَآئِمَةًۭ وَلَىِٕن رُّدِدتُّ إِلَىٰ رَبِّى لَأَجِدَنَّ خَيْرًۭا مِّنْهَا مُنقَلَبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,18,' قَالَ لَهُۥ صَاحِبُهُۥ وَهُوَ يُحَاوِرُهُۥٓ أَكَفَرْتَ بِٱلَّذِى خَلَقَكَ مِن تُرَابٍۢ ثُمَّ مِن نُّطْفَةٍۢ ثُمَّ سَوَّىٰكَ رَجُلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,18,' لَّكِنَّا۠ هُوَ ٱللَّهُ رَبِّى وَلَآ أُشْرِكُ بِرَبِّىٓ أَحَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,18,' وَلَوْلَآ إِذْ دَخَلْتَ جَنَّتَكَ قُلْتَ مَا شَآءَ ٱللَّهُ لَا قُوَّةَ إِلَّا بِٱللَّهِ ۚ إِن تَرَنِ أَنَا۠ أَقَلَّ مِنكَ مَالًۭا وَوَلَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,18,' فَعَسَىٰ رَبِّىٓ أَن يُؤْتِيَنِ خَيْرًۭا مِّن جَنَّتِكَ وَيُرْسِلَ عَلَيْهَا حُسْبَانًۭا مِّنَ ٱلسَّمَآءِ فَتُصْبِحَ صَعِيدًۭا زَلَقًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,18,' أَوْ يُصْبِحَ مَآؤُهَا غَوْرًۭا فَلَن تَسْتَطِيعَ لَهُۥ طَلَبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,18,' وَأُحِيطَ بِثَمَرِهِۦ فَأَصْبَحَ يُقَلِّبُ كَفَّيْهِ عَلَىٰ مَآ أَنفَقَ فِيهَا وَهِىَ خَاوِيَةٌ عَلَىٰ عُرُوشِهَا وَيَقُولُ يَلَيْتَنِى لَمْ أُشْرِكْ بِرَبِّىٓ أَحَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,18,' وَلَمْ تَكُن لَّهُۥ فِئَةٌۭ يَنصُرُونَهُۥ مِن دُونِ ٱللَّهِ وَمَا كَانَ مُنتَصِرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,18,' هُنَالِكَ ٱلْوَلَيَةُ لِلَّهِ ٱلْحَقِّ ۚ هُوَ خَيْرٌۭ ثَوَابًۭا وَخَيْرٌ عُقْبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,18,' وَٱضْرِبْ لَهُم مَّثَلَ ٱلْحَيَوٰةِ ٱلدُّنْيَا كَمَآءٍ أَنزَلْنَهُ مِنَ ٱلسَّمَآءِ فَٱخْتَلَطَ بِهِۦ نَبَاتُ ٱلْأَرْضِ فَأَصْبَحَ هَشِيمًۭا تَذْرُوهُ ٱلرِّيَحُ ۗ وَكَانَ ٱللَّهُ عَلَىٰ كُلِّ شَىْءٍۢ مُّقْتَدِرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,18,' ٱلْمَالُ وَٱلْبَنُونَ زِينَةُ ٱلْحَيَوٰةِ ٱلدُّنْيَا ۖ وَٱلْبَقِيَتُ ٱلصَّلِحَتُ خَيْرٌ عِندَ رَبِّكَ ثَوَابًۭا وَخَيْرٌ أَمَلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,18,' وَيَوْمَ نُسَيِّرُ ٱلْجِبَالَ وَتَرَى ٱلْأَرْضَ بَارِزَةًۭ وَحَشَرْنَهُمْ فَلَمْ نُغَادِرْ مِنْهُمْ أَحَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,18,' وَعُرِضُوا۟ عَلَىٰ رَبِّكَ صَفًّۭا لَّقَدْ جِئْتُمُونَا كَمَا خَلَقْنَكُمْ أَوَّلَ مَرَّةٍۭ ۚ بَلْ زَعَمْتُمْ أَلَّن نَّجْعَلَ لَكُم مَّوْعِدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,18,' وَوُضِعَ ٱلْكِتَبُ فَتَرَى ٱلْمُجْرِمِينَ مُشْفِقِينَ مِمَّا فِيهِ وَيَقُولُونَ يَوَيْلَتَنَا مَالِ هَذَا ٱلْكِتَبِ لَا يُغَادِرُ صَغِيرَةًۭ وَلَا كَبِيرَةً إِلَّآ أَحْصَىٰهَا ۚ وَوَجَدُوا۟ مَا عَمِلُوا۟ حَاضِرًۭا ۗ وَلَا يَظْلِمُ رَبُّكَ أَحَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,18,' وَإِذْ قُلْنَا لِلْمَلَٓئِكَةِ ٱسْجُدُوا۟ لِءَادَمَ فَسَجَدُوٓا۟ إِلَّآ إِبْلِيسَ كَانَ مِنَ ٱلْجِنِّ فَفَسَقَ عَنْ أَمْرِ رَبِّهِۦٓ ۗ أَفَتَتَّخِذُونَهُۥ وَذُرِّيَّتَهُۥٓ أَوْلِيَآءَ مِن دُونِى وَهُمْ لَكُمْ عَدُوٌّۢ ۚ بِئْسَ لِلظَّلِمِينَ بَدَلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,18,' مَّآ أَشْهَدتُّهُمْ خَلْقَ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَلَا خَلْقَ أَنفُسِهِمْ وَمَا كُنتُ مُتَّخِذَ ٱلْمُضِلِّينَ عَضُدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,18,' وَيَوْمَ يَقُولُ نَادُوا۟ شُرَكَآءِىَ ٱلَّذِينَ زَعَمْتُمْ فَدَعَوْهُمْ فَلَمْ يَسْتَجِيبُوا۟ لَهُمْ وَجَعَلْنَا بَيْنَهُم مَّوْبِقًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,18,' وَرَءَا ٱلْمُجْرِمُونَ ٱلنَّارَ فَظَنُّوٓا۟ أَنَّهُم مُّوَاقِعُوهَا وَلَمْ يَجِدُوا۟ عَنْهَا مَصْرِفًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,18,' وَلَقَدْ صَرَّفْنَا فِى هَذَا ٱلْقُرْءَانِ لِلنَّاسِ مِن كُلِّ مَثَلٍۢ ۚ وَكَانَ ٱلْإِنسَنُ أَكْثَرَ شَىْءٍۢ جَدَلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,18,' وَمَا مَنَعَ ٱلنَّاسَ أَن يُؤْمِنُوٓا۟ إِذْ جَآءَهُمُ ٱلْهُدَىٰ وَيَسْتَغْفِرُوا۟ رَبَّهُمْ إِلَّآ أَن تَأْتِيَهُمْ سُنَّةُ ٱلْأَوَّلِينَ أَوْ يَأْتِيَهُمُ ٱلْعَذَابُ قُبُلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,18,' وَمَا نُرْسِلُ ٱلْمُرْسَلِينَ إِلَّا مُبَشِّرِينَ وَمُنذِرِينَ ۚ وَيُجَدِلُ ٱلَّذِينَ كَفَرُوا۟ بِٱلْبَطِلِ لِيُدْحِضُوا۟ بِهِ ٱلْحَقَّ ۖ وَٱتَّخَذُوٓا۟ ءَايَتِى وَمَآ أُنذِرُوا۟ هُزُوًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,18,' وَمَنْ أَظْلَمُ مِمَّن ذُكِّرَ بِـَٔايَتِ رَبِّهِۦ فَأَعْرَضَ عَنْهَا وَنَسِىَ مَا قَدَّمَتْ يَدَاهُ ۚ إِنَّا جَعَلْنَا عَلَىٰ قُلُوبِهِمْ أَكِنَّةً أَن يَفْقَهُوهُ وَفِىٓ ءَاذَانِهِمْ وَقْرًۭا ۖ وَإِن تَدْعُهُمْ إِلَى ٱلْهُدَىٰ فَلَن يَهْتَدُوٓا۟ إِذًا أَبَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,18,' وَرَبُّكَ ٱلْغَفُورُ ذُو ٱلرَّحْمَةِ ۖ لَوْ يُؤَاخِذُهُم بِمَا كَسَبُوا۟ لَعَجَّلَ لَهُمُ ٱلْعَذَابَ ۚ بَل لَّهُم مَّوْعِدٌۭ لَّن يَجِدُوا۟ مِن دُونِهِۦ مَوْئِلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,18,' وَتِلْكَ ٱلْقُرَىٰٓ أَهْلَكْنَهُمْ لَمَّا ظَلَمُوا۟ وَجَعَلْنَا لِمَهْلِكِهِم مَّوْعِدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,18,' وَإِذْ قَالَ مُوسَىٰ لِفَتَىٰهُ لَآ أَبْرَحُ حَتَّىٰٓ أَبْلُغَ مَجْمَعَ ٱلْبَحْرَيْنِ أَوْ أَمْضِىَ حُقُبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,18,' فَلَمَّا بَلَغَا مَجْمَعَ بَيْنِهِمَا نَسِيَا حُوتَهُمَا فَٱتَّخَذَ سَبِيلَهُۥ فِى ٱلْبَحْرِ سَرَبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,18,' فَلَمَّا جَاوَزَا قَالَ لِفَتَىٰهُ ءَاتِنَا غَدَآءَنَا لَقَدْ لَقِينَا مِن سَفَرِنَا هَذَا نَصَبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,18,' قَالَ أَرَءَيْتَ إِذْ أَوَيْنَآ إِلَى ٱلصَّخْرَةِ فَإِنِّى نَسِيتُ ٱلْحُوتَ وَمَآ أَنْسَىٰنِيهُ إِلَّا ٱلشَّيْطَنُ أَنْ أَذْكُرَهُۥ ۚ وَٱتَّخَذَ سَبِيلَهُۥ فِى ٱلْبَحْرِ عَجَبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,18,' قَالَ ذَلِكَ مَا كُنَّا نَبْغِ ۚ فَٱرْتَدَّا عَلَىٰٓ ءَاثَارِهِمَا قَصَصًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,18,' فَوَجَدَا عَبْدًۭا مِّنْ عِبَادِنَآ ءَاتَيْنَهُ رَحْمَةًۭ مِّنْ عِندِنَا وَعَلَّمْنَهُ مِن لَّدُنَّا عِلْمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,18,' قَالَ لَهُۥ مُوسَىٰ هَلْ أَتَّبِعُكَ عَلَىٰٓ أَن تُعَلِّمَنِ مِمَّا عُلِّمْتَ رُشْدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,18,' قَالَ إِنَّكَ لَن تَسْتَطِيعَ مَعِىَ صَبْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,18,' وَكَيْفَ تَصْبِرُ عَلَىٰ مَا لَمْ تُحِطْ بِهِۦ خُبْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,18,' قَالَ سَتَجِدُنِىٓ إِن شَآءَ ٱللَّهُ صَابِرًۭا وَلَآ أَعْصِى لَكَ أَمْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,18,' قَالَ فَإِنِ ٱتَّبَعْتَنِى فَلَا تَسْـَٔلْنِى عَن شَىْءٍ حَتَّىٰٓ أُحْدِثَ لَكَ مِنْهُ ذِكْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,18,' فَٱنطَلَقَا حَتَّىٰٓ إِذَا رَكِبَا فِى ٱلسَّفِينَةِ خَرَقَهَا ۖ قَالَ أَخَرَقْتَهَا لِتُغْرِقَ أَهْلَهَا لَقَدْ جِئْتَ شَيْـًٔا إِمْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,18,' قَالَ أَلَمْ أَقُلْ إِنَّكَ لَن تَسْتَطِيعَ مَعِىَ صَبْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,18,' قَالَ لَا تُؤَاخِذْنِى بِمَا نَسِيتُ وَلَا تُرْهِقْنِى مِنْ أَمْرِى عُسْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,18,' فَٱنطَلَقَا حَتَّىٰٓ إِذَا لَقِيَا غُلَمًۭا فَقَتَلَهُۥ قَالَ أَقَتَلْتَ نَفْسًۭا زَكِيَّةًۢ بِغَيْرِ نَفْسٍۢ لَّقَدْ جِئْتَ شَيْـًۭٔا نُّكْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,18,' قَالَ أَلَمْ أَقُل لَّكَ إِنَّكَ لَن تَسْتَطِيعَ مَعِىَ صَبْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,18,' قَالَ إِن سَأَلْتُكَ عَن شَىْءٍۭ بَعْدَهَا فَلَا تُصَحِبْنِى ۖ قَدْ بَلَغْتَ مِن لَّدُنِّى عُذْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,18,' فَٱنطَلَقَا حَتَّىٰٓ إِذَآ أَتَيَآ أَهْلَ قَرْيَةٍ ٱسْتَطْعَمَآ أَهْلَهَا فَأَبَوْا۟ أَن يُضَيِّفُوهُمَا فَوَجَدَا فِيهَا جِدَارًۭا يُرِيدُ أَن يَنقَضَّ فَأَقَامَهُۥ ۖ قَالَ لَوْ شِئْتَ لَتَّخَذْتَ عَلَيْهِ أَجْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,18,' قَالَ هَذَا فِرَاقُ بَيْنِى وَبَيْنِكَ ۚ سَأُنَبِّئُكَ بِتَأْوِيلِ مَا لَمْ تَسْتَطِع عَّلَيْهِ صَبْرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,18,' أَمَّا ٱلسَّفِينَةُ فَكَانَتْ لِمَسَكِينَ يَعْمَلُونَ فِى ٱلْبَحْرِ فَأَرَدتُّ أَنْ أَعِيبَهَا وَكَانَ وَرَآءَهُم مَّلِكٌۭ يَأْخُذُ كُلَّ سَفِينَةٍ غَصْبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,18,' وَأَمَّا ٱلْغُلَمُ فَكَانَ أَبَوَاهُ مُؤْمِنَيْنِ فَخَشِينَآ أَن يُرْهِقَهُمَا طُغْيَنًۭا وَكُفْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,18,' فَأَرَدْنَآ أَن يُبْدِلَهُمَا رَبُّهُمَا خَيْرًۭا مِّنْهُ زَكَوٰةًۭ وَأَقْرَبَ رُحْمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,18,' وَأَمَّا ٱلْجِدَارُ فَكَانَ لِغُلَمَيْنِ يَتِيمَيْنِ فِى ٱلْمَدِينَةِ وَكَانَ تَحْتَهُۥ كَنزٌۭ لَّهُمَا وَكَانَ أَبُوهُمَا صَلِحًۭا فَأَرَادَ رَبُّكَ أَن يَبْلُغَآ أَشُدَّهُمَا وَيَسْتَخْرِجَا كَنزَهُمَا رَحْمَةًۭ مِّن رَّبِّكَ ۚ وَمَا فَعَلْتُهُۥ عَنْ أَمْرِى ۚ ذَلِكَ تَأْوِيلُ مَا لَمْ تَسْطِع عَّلَيْهِ صَبْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,18,' وَيَسْـَٔلُونَكَ عَن ذِى ٱلْقَرْنَيْنِ ۖ قُلْ سَأَتْلُوا۟ عَلَيْكُم مِّنْهُ ذِكْرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,18,' إِنَّا مَكَّنَّا لَهُۥ فِى ٱلْأَرْضِ وَءَاتَيْنَهُ مِن كُلِّ شَىْءٍۢ سَبَبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,18,' فَأَتْبَعَ سَبَبًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,18,' حَتَّىٰٓ إِذَا بَلَغَ مَغْرِبَ ٱلشَّمْسِ وَجَدَهَا تَغْرُبُ فِى عَيْنٍ حَمِئَةٍۢ وَوَجَدَ عِندَهَا قَوْمًۭا ۗ قُلْنَا يَذَا ٱلْقَرْنَيْنِ إِمَّآ أَن تُعَذِّبَ وَإِمَّآ أَن تَتَّخِذَ فِيهِمْ حُسْنًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,18,' قَالَ أَمَّا مَن ظَلَمَ فَسَوْفَ نُعَذِّبُهُۥ ثُمَّ يُرَدُّ إِلَىٰ رَبِّهِۦ فَيُعَذِّبُهُۥ عَذَابًۭا نُّكْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,18,' وَأَمَّا مَنْ ءَامَنَ وَعَمِلَ صَلِحًۭا فَلَهُۥ جَزَآءً ٱلْحُسْنَىٰ ۖ وَسَنَقُولُ لَهُۥ مِنْ أَمْرِنَا يُسْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,18,' ثُمَّ أَتْبَعَ سَبَبًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,18,' حَتَّىٰٓ إِذَا بَلَغَ مَطْلِعَ ٱلشَّمْسِ وَجَدَهَا تَطْلُعُ عَلَىٰ قَوْمٍۢ لَّمْ نَجْعَل لَّهُم مِّن دُونِهَا سِتْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,18,' كَذَلِكَ وَقَدْ أَحَطْنَا بِمَا لَدَيْهِ خُبْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,18,' ثُمَّ أَتْبَعَ سَبَبًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,18,' حَتَّىٰٓ إِذَا بَلَغَ بَيْنَ ٱلسَّدَّيْنِ وَجَدَ مِن دُونِهِمَا قَوْمًۭا لَّا يَكَادُونَ يَفْقَهُونَ قَوْلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,18,' قَالُوا۟ يَذَا ٱلْقَرْنَيْنِ إِنَّ يَأْجُوجَ وَمَأْجُوجَ مُفْسِدُونَ فِى ٱلْأَرْضِ فَهَلْ نَجْعَلُ لَكَ خَرْجًا عَلَىٰٓ أَن تَجْعَلَ بَيْنَنَا وَبَيْنَهُمْ سَدًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,18,' قَالَ مَا مَكَّنِّى فِيهِ رَبِّى خَيْرٌۭ فَأَعِينُونِى بِقُوَّةٍ أَجْعَلْ بَيْنَكُمْ وَبَيْنَهُمْ رَدْمًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,18,' ءَاتُونِى زُبَرَ ٱلْحَدِيدِ ۖ حَتَّىٰٓ إِذَا سَاوَىٰ بَيْنَ ٱلصَّدَفَيْنِ قَالَ ٱنفُخُوا۟ ۖ حَتَّىٰٓ إِذَا جَعَلَهُۥ نَارًۭا قَالَ ءَاتُونِىٓ أُفْرِغْ عَلَيْهِ قِطْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,18,' فَمَا ٱسْطَعُوٓا۟ أَن يَظْهَرُوهُ وَمَا ٱسْتَطَعُوا۟ لَهُۥ نَقْبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,18,' قَالَ هَذَا رَحْمَةٌۭ مِّن رَّبِّى ۖ فَإِذَا جَآءَ وَعْدُ رَبِّى جَعَلَهُۥ دَكَّآءَ ۖ وَكَانَ وَعْدُ رَبِّى حَقًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,18,' وَتَرَكْنَا بَعْضَهُمْ يَوْمَئِذٍۢ يَمُوجُ فِى بَعْضٍۢ ۖ وَنُفِخَ فِى ٱلصُّورِ فَجَمَعْنَهُمْ جَمْعًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,1,18,' وَعَرَضْنَا جَهَنَّمَ يَوْمَئِذٍۢ لِّلْكَفِرِينَ عَرْضًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,1,18,' ٱلَّذِينَ كَانَتْ أَعْيُنُهُمْ فِى غِطَآءٍ عَن ذِكْرِى وَكَانُوا۟ لَا يَسْتَطِيعُونَ سَمْعًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,1,18,' أَفَحَسِبَ ٱلَّذِينَ كَفَرُوٓا۟ أَن يَتَّخِذُوا۟ عِبَادِى مِن دُونِىٓ أَوْلِيَآءَ ۚ إِنَّآ أَعْتَدْنَا جَهَنَّمَ لِلْكَفِرِينَ نُزُلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,1,18,' قُلْ هَلْ نُنَبِّئُكُم بِٱلْأَخْسَرِينَ أَعْمَلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,1,18,' ٱلَّذِينَ ضَلَّ سَعْيُهُمْ فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا وَهُمْ يَحْسَبُونَ أَنَّهُمْ يُحْسِنُونَ صُنْعًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,1,18,' أُو۟لَٓئِكَ ٱلَّذِينَ كَفَرُوا۟ بِـَٔايَتِ رَبِّهِمْ وَلِقَآئِهِۦ فَحَبِطَتْ أَعْمَلُهُمْ فَلَا نُقِيمُ لَهُمْ يَوْمَ ٱلْقِيَمَةِ وَزْنًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,1,18,' ذَلِكَ جَزَآؤُهُمْ جَهَنَّمُ بِمَا كَفَرُوا۟ وَٱتَّخَذُوٓا۟ ءَايَتِى وَرُسُلِى هُزُوًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,1,18,' إِنَّ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ كَانَتْ لَهُمْ جَنَّتُ ٱلْفِرْدَوْسِ نُزُلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,1,18,' خَلِدِينَ فِيهَا لَا يَبْغُونَ عَنْهَا حِوَلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,1,18,' قُل لَّوْ كَانَ ٱلْبَحْرُ مِدَادًۭا لِّكَلِمَتِ رَبِّى لَنَفِدَ ٱلْبَحْرُ قَبْلَ أَن تَنفَدَ كَلِمَتُ رَبِّى وَلَوْ جِئْنَا بِمِثْلِهِۦ مَدَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,1,18,' قُلْ إِنَّمَآ أَنَا۠ بَشَرٌۭ مِّثْلُكُمْ يُوحَىٰٓ إِلَىَّ أَنَّمَآ إِلَهُكُمْ إِلَهٌۭ وَحِدٌۭ ۖ فَمَن كَانَ يَرْجُوا۟ لِقَآءَ رَبِّهِۦ فَلْيَعْمَلْ عَمَلًۭا صَلِحًۭا وَلَا يُشْرِكْ بِعِبَادَةِ رَبِّهِۦٓ أَحَدًۢا');
+INSERT INTO chapters (id, number, quran_id) VALUES(19,19,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,19,' كٓهيعٓصٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,19,' ذِكْرُ رَحْمَتِ رَبِّكَ عَبْدَهُۥ زَكَرِيَّآ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,19,' إِذْ نَادَىٰ رَبَّهُۥ نِدَآءً خَفِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,19,' قَالَ رَبِّ إِنِّى وَهَنَ ٱلْعَظْمُ مِنِّى وَٱشْتَعَلَ ٱلرَّأْسُ شَيْبًۭا وَلَمْ أَكُنۢ بِدُعَآئِكَ رَبِّ شَقِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,19,' وَإِنِّى خِفْتُ ٱلْمَوَلِىَ مِن وَرَآءِى وَكَانَتِ ٱمْرَأَتِى عَاقِرًۭا فَهَبْ لِى مِن لَّدُنكَ وَلِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,19,' يَرِثُنِى وَيَرِثُ مِنْ ءَالِ يَعْقُوبَ ۖ وَٱجْعَلْهُ رَبِّ رَضِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,19,' يَزَكَرِيَّآ إِنَّا نُبَشِّرُكَ بِغُلَمٍ ٱسْمُهُۥ يَحْيَىٰ لَمْ نَجْعَل لَّهُۥ مِن قَبْلُ سَمِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,19,' قَالَ رَبِّ أَنَّىٰ يَكُونُ لِى غُلَمٌۭ وَكَانَتِ ٱمْرَأَتِى عَاقِرًۭا وَقَدْ بَلَغْتُ مِنَ ٱلْكِبَرِ عِتِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,19,' قَالَ كَذَلِكَ قَالَ رَبُّكَ هُوَ عَلَىَّ هَيِّنٌۭ وَقَدْ خَلَقْتُكَ مِن قَبْلُ وَلَمْ تَكُ شَيْـًۭٔا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,19,' قَالَ رَبِّ ٱجْعَل لِّىٓ ءَايَةًۭ ۚ قَالَ ءَايَتُكَ أَلَّا تُكَلِّمَ ٱلنَّاسَ ثَلَثَ لَيَالٍۢ سَوِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,19,' فَخَرَجَ عَلَىٰ قَوْمِهِۦ مِنَ ٱلْمِحْرَابِ فَأَوْحَىٰٓ إِلَيْهِمْ أَن سَبِّحُوا۟ بُكْرَةًۭ وَعَشِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,19,' يَيَحْيَىٰ خُذِ ٱلْكِتَبَ بِقُوَّةٍۢ ۖ وَءَاتَيْنَهُ ٱلْحُكْمَ صَبِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,19,' وَحَنَانًۭا مِّن لَّدُنَّا وَزَكَوٰةًۭ ۖ وَكَانَ تَقِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,19,' وَبَرًّۢا بِوَلِدَيْهِ وَلَمْ يَكُن جَبَّارًا عَصِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,19,' وَسَلَمٌ عَلَيْهِ يَوْمَ وُلِدَ وَيَوْمَ يَمُوتُ وَيَوْمَ يُبْعَثُ حَيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,19,' وَٱذْكُرْ فِى ٱلْكِتَبِ مَرْيَمَ إِذِ ٱنتَبَذَتْ مِنْ أَهْلِهَا مَكَانًۭا شَرْقِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,19,' فَٱتَّخَذَتْ مِن دُونِهِمْ حِجَابًۭا فَأَرْسَلْنَآ إِلَيْهَا رُوحَنَا فَتَمَثَّلَ لَهَا بَشَرًۭا سَوِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,19,' قَالَتْ إِنِّىٓ أَعُوذُ بِٱلرَّحْمَنِ مِنكَ إِن كُنتَ تَقِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,19,' قَالَ إِنَّمَآ أَنَا۠ رَسُولُ رَبِّكِ لِأَهَبَ لَكِ غُلَمًۭا زَكِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,19,' قَالَتْ أَنَّىٰ يَكُونُ لِى غُلَمٌۭ وَلَمْ يَمْسَسْنِى بَشَرٌۭ وَلَمْ أَكُ بَغِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,19,' قَالَ كَذَلِكِ قَالَ رَبُّكِ هُوَ عَلَىَّ هَيِّنٌۭ ۖ وَلِنَجْعَلَهُۥٓ ءَايَةًۭ لِّلنَّاسِ وَرَحْمَةًۭ مِّنَّا ۚ وَكَانَ أَمْرًۭا مَّقْضِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,19,' فَحَمَلَتْهُ فَٱنتَبَذَتْ بِهِۦ مَكَانًۭا قَصِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,19,' فَأَجَآءَهَا ٱلْمَخَاضُ إِلَىٰ جِذْعِ ٱلنَّخْلَةِ قَالَتْ يَلَيْتَنِى مِتُّ قَبْلَ هَذَا وَكُنتُ نَسْيًۭا مَّنسِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,19,' فَنَادَىٰهَا مِن تَحْتِهَآ أَلَّا تَحْزَنِى قَدْ جَعَلَ رَبُّكِ تَحْتَكِ سَرِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,19,' وَهُزِّىٓ إِلَيْكِ بِجِذْعِ ٱلنَّخْلَةِ تُسَقِطْ عَلَيْكِ رُطَبًۭا جَنِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,19,' فَكُلِى وَٱشْرَبِى وَقَرِّى عَيْنًۭا ۖ فَإِمَّا تَرَيِنَّ مِنَ ٱلْبَشَرِ أَحَدًۭا فَقُولِىٓ إِنِّى نَذَرْتُ لِلرَّحْمَنِ صَوْمًۭا فَلَنْ أُكَلِّمَ ٱلْيَوْمَ إِنسِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,19,' فَأَتَتْ بِهِۦ قَوْمَهَا تَحْمِلُهُۥ ۖ قَالُوا۟ يَمَرْيَمُ لَقَدْ جِئْتِ شَيْـًۭٔا فَرِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,19,' يَٓأُخْتَ هَرُونَ مَا كَانَ أَبُوكِ ٱمْرَأَ سَوْءٍۢ وَمَا كَانَتْ أُمُّكِ بَغِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,19,' فَأَشَارَتْ إِلَيْهِ ۖ قَالُوا۟ كَيْفَ نُكَلِّمُ مَن كَانَ فِى ٱلْمَهْدِ صَبِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,19,' قَالَ إِنِّى عَبْدُ ٱللَّهِ ءَاتَىٰنِىَ ٱلْكِتَبَ وَجَعَلَنِى نَبِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,19,' وَجَعَلَنِى مُبَارَكًا أَيْنَ مَا كُنتُ وَأَوْصَنِى بِٱلصَّلَوٰةِ وَٱلزَّكَوٰةِ مَا دُمْتُ حَيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,19,' وَبَرًّۢا بِوَلِدَتِى وَلَمْ يَجْعَلْنِى جَبَّارًۭا شَقِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,19,' وَٱلسَّلَمُ عَلَىَّ يَوْمَ وُلِدتُّ وَيَوْمَ أَمُوتُ وَيَوْمَ أُبْعَثُ حَيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,19,' ذَلِكَ عِيسَى ٱبْنُ مَرْيَمَ ۚ قَوْلَ ٱلْحَقِّ ٱلَّذِى فِيهِ يَمْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,19,' مَا كَانَ لِلَّهِ أَن يَتَّخِذَ مِن وَلَدٍۢ ۖ سُبْحَنَهُۥٓ ۚ إِذَا قَضَىٰٓ أَمْرًۭا فَإِنَّمَا يَقُولُ لَهُۥ كُن فَيَكُونُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,19,' وَإِنَّ ٱللَّهَ رَبِّى وَرَبُّكُمْ فَٱعْبُدُوهُ ۚ هَذَا صِرَطٌۭ مُّسْتَقِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,19,' فَٱخْتَلَفَ ٱلْأَحْزَابُ مِنۢ بَيْنِهِمْ ۖ فَوَيْلٌۭ لِّلَّذِينَ كَفَرُوا۟ مِن مَّشْهَدِ يَوْمٍ عَظِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,19,' أَسْمِعْ بِهِمْ وَأَبْصِرْ يَوْمَ يَأْتُونَنَا ۖ لَكِنِ ٱلظَّلِمُونَ ٱلْيَوْمَ فِى ضَلَلٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,19,' وَأَنذِرْهُمْ يَوْمَ ٱلْحَسْرَةِ إِذْ قُضِىَ ٱلْأَمْرُ وَهُمْ فِى غَفْلَةٍۢ وَهُمْ لَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,19,' إِنَّا نَحْنُ نَرِثُ ٱلْأَرْضَ وَمَنْ عَلَيْهَا وَإِلَيْنَا يُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,19,' وَٱذْكُرْ فِى ٱلْكِتَبِ إِبْرَهِيمَ ۚ إِنَّهُۥ كَانَ صِدِّيقًۭا نَّبِيًّا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,19,' إِذْ قَالَ لِأَبِيهِ يَٓأَبَتِ لِمَ تَعْبُدُ مَا لَا يَسْمَعُ وَلَا يُبْصِرُ وَلَا يُغْنِى عَنكَ شَيْـًۭٔا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,19,' يَٓأَبَتِ إِنِّى قَدْ جَآءَنِى مِنَ ٱلْعِلْمِ مَا لَمْ يَأْتِكَ فَٱتَّبِعْنِىٓ أَهْدِكَ صِرَطًۭا سَوِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,19,' يَٓأَبَتِ لَا تَعْبُدِ ٱلشَّيْطَنَ ۖ إِنَّ ٱلشَّيْطَنَ كَانَ لِلرَّحْمَنِ عَصِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,19,' يَٓأَبَتِ إِنِّىٓ أَخَافُ أَن يَمَسَّكَ عَذَابٌۭ مِّنَ ٱلرَّحْمَنِ فَتَكُونَ لِلشَّيْطَنِ وَلِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,19,' قَالَ أَرَاغِبٌ أَنتَ عَنْ ءَالِهَتِى يَٓإِبْرَهِيمُ ۖ لَىِٕن لَّمْ تَنتَهِ لَأَرْجُمَنَّكَ ۖ وَٱهْجُرْنِى مَلِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,19,' قَالَ سَلَمٌ عَلَيْكَ ۖ سَأَسْتَغْفِرُ لَكَ رَبِّىٓ ۖ إِنَّهُۥ كَانَ بِى حَفِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,19,' وَأَعْتَزِلُكُمْ وَمَا تَدْعُونَ مِن دُونِ ٱللَّهِ وَأَدْعُوا۟ رَبِّى عَسَىٰٓ أَلَّآ أَكُونَ بِدُعَآءِ رَبِّى شَقِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,19,' فَلَمَّا ٱعْتَزَلَهُمْ وَمَا يَعْبُدُونَ مِن دُونِ ٱللَّهِ وَهَبْنَا لَهُۥٓ إِسْحَقَ وَيَعْقُوبَ ۖ وَكُلًّۭا جَعَلْنَا نَبِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,19,' وَوَهَبْنَا لَهُم مِّن رَّحْمَتِنَا وَجَعَلْنَا لَهُمْ لِسَانَ صِدْقٍ عَلِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,19,' وَٱذْكُرْ فِى ٱلْكِتَبِ مُوسَىٰٓ ۚ إِنَّهُۥ كَانَ مُخْلَصًۭا وَكَانَ رَسُولًۭا نَّبِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,19,' وَنَدَيْنَهُ مِن جَانِبِ ٱلطُّورِ ٱلْأَيْمَنِ وَقَرَّبْنَهُ نَجِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,19,' وَوَهَبْنَا لَهُۥ مِن رَّحْمَتِنَآ أَخَاهُ هَرُونَ نَبِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,19,' وَٱذْكُرْ فِى ٱلْكِتَبِ إِسْمَعِيلَ ۚ إِنَّهُۥ كَانَ صَادِقَ ٱلْوَعْدِ وَكَانَ رَسُولًۭا نَّبِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,19,' وَكَانَ يَأْمُرُ أَهْلَهُۥ بِٱلصَّلَوٰةِ وَٱلزَّكَوٰةِ وَكَانَ عِندَ رَبِّهِۦ مَرْضِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,19,' وَٱذْكُرْ فِى ٱلْكِتَبِ إِدْرِيسَ ۚ إِنَّهُۥ كَانَ صِدِّيقًۭا نَّبِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,19,' وَرَفَعْنَهُ مَكَانًا عَلِيًّا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,19,' أُو۟لَٓئِكَ ٱلَّذِينَ أَنْعَمَ ٱللَّهُ عَلَيْهِم مِّنَ ٱلنَّبِيِّۦنَ مِن ذُرِّيَّةِ ءَادَمَ وَمِمَّنْ حَمَلْنَا مَعَ نُوحٍۢ وَمِن ذُرِّيَّةِ إِبْرَهِيمَ وَإِسْرَٓءِيلَ وَمِمَّنْ هَدَيْنَا وَٱجْتَبَيْنَآ ۚ إِذَا تُتْلَىٰ عَلَيْهِمْ ءَايَتُ ٱلرَّحْمَنِ خَرُّوا۟ سُجَّدًۭا وَبُكِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,19,' فَخَلَفَ مِنۢ بَعْدِهِمْ خَلْفٌ أَضَاعُوا۟ ٱلصَّلَوٰةَ وَٱتَّبَعُوا۟ ٱلشَّهَوَتِ ۖ فَسَوْفَ يَلْقَوْنَ غَيًّا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,19,' إِلَّا مَن تَابَ وَءَامَنَ وَعَمِلَ صَلِحًۭا فَأُو۟لَٓئِكَ يَدْخُلُونَ ٱلْجَنَّةَ وَلَا يُظْلَمُونَ شَيْـًۭٔا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,19,' جَنَّتِ عَدْنٍ ٱلَّتِى وَعَدَ ٱلرَّحْمَنُ عِبَادَهُۥ بِٱلْغَيْبِ ۚ إِنَّهُۥ كَانَ وَعْدُهُۥ مَأْتِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,19,' لَّا يَسْمَعُونَ فِيهَا لَغْوًا إِلَّا سَلَمًۭا ۖ وَلَهُمْ رِزْقُهُمْ فِيهَا بُكْرَةًۭ وَعَشِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,19,' تِلْكَ ٱلْجَنَّةُ ٱلَّتِى نُورِثُ مِنْ عِبَادِنَا مَن كَانَ تَقِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,19,' وَمَا نَتَنَزَّلُ إِلَّا بِأَمْرِ رَبِّكَ ۖ لَهُۥ مَا بَيْنَ أَيْدِينَا وَمَا خَلْفَنَا وَمَا بَيْنَ ذَلِكَ ۚ وَمَا كَانَ رَبُّكَ نَسِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,19,' رَّبُّ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَمَا بَيْنَهُمَا فَٱعْبُدْهُ وَٱصْطَبِرْ لِعِبَدَتِهِۦ ۚ هَلْ تَعْلَمُ لَهُۥ سَمِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,19,' وَيَقُولُ ٱلْإِنسَنُ أَءِذَا مَا مِتُّ لَسَوْفَ أُخْرَجُ حَيًّا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,19,' أَوَلَا يَذْكُرُ ٱلْإِنسَنُ أَنَّا خَلَقْنَهُ مِن قَبْلُ وَلَمْ يَكُ شَيْـًۭٔا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,19,' فَوَرَبِّكَ لَنَحْشُرَنَّهُمْ وَٱلشَّيَطِينَ ثُمَّ لَنُحْضِرَنَّهُمْ حَوْلَ جَهَنَّمَ جِثِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,19,' ثُمَّ لَنَنزِعَنَّ مِن كُلِّ شِيعَةٍ أَيُّهُمْ أَشَدُّ عَلَى ٱلرَّحْمَنِ عِتِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,19,' ثُمَّ لَنَحْنُ أَعْلَمُ بِٱلَّذِينَ هُمْ أَوْلَىٰ بِهَا صِلِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,19,' وَإِن مِّنكُمْ إِلَّا وَارِدُهَا ۚ كَانَ عَلَىٰ رَبِّكَ حَتْمًۭا مَّقْضِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,19,' ثُمَّ نُنَجِّى ٱلَّذِينَ ٱتَّقَوا۟ وَّنَذَرُ ٱلظَّلِمِينَ فِيهَا جِثِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,19,' وَإِذَا تُتْلَىٰ عَلَيْهِمْ ءَايَتُنَا بَيِّنَتٍۢ قَالَ ٱلَّذِينَ كَفَرُوا۟ لِلَّذِينَ ءَامَنُوٓا۟ أَىُّ ٱلْفَرِيقَيْنِ خَيْرٌۭ مَّقَامًۭا وَأَحْسَنُ نَدِيًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,19,' وَكَمْ أَهْلَكْنَا قَبْلَهُم مِّن قَرْنٍ هُمْ أَحْسَنُ أَثَثًۭا وَرِءْيًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,19,' قُلْ مَن كَانَ فِى ٱلضَّلَلَةِ فَلْيَمْدُدْ لَهُ ٱلرَّحْمَنُ مَدًّا ۚ حَتَّىٰٓ إِذَا رَأَوْا۟ مَا يُوعَدُونَ إِمَّا ٱلْعَذَابَ وَإِمَّا ٱلسَّاعَةَ فَسَيَعْلَمُونَ مَنْ هُوَ شَرٌّۭ مَّكَانًۭا وَأَضْعَفُ جُندًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,19,' وَيَزِيدُ ٱللَّهُ ٱلَّذِينَ ٱهْتَدَوْا۟ هُدًۭى ۗ وَٱلْبَقِيَتُ ٱلصَّلِحَتُ خَيْرٌ عِندَ رَبِّكَ ثَوَابًۭا وَخَيْرٌۭ مَّرَدًّا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,19,' أَفَرَءَيْتَ ٱلَّذِى كَفَرَ بِـَٔايَتِنَا وَقَالَ لَأُوتَيَنَّ مَالًۭا وَوَلَدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,19,' أَطَّلَعَ ٱلْغَيْبَ أَمِ ٱتَّخَذَ عِندَ ٱلرَّحْمَنِ عَهْدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,19,' كَلَّا ۚ سَنَكْتُبُ مَا يَقُولُ وَنَمُدُّ لَهُۥ مِنَ ٱلْعَذَابِ مَدًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,19,' وَنَرِثُهُۥ مَا يَقُولُ وَيَأْتِينَا فَرْدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,19,' وَٱتَّخَذُوا۟ مِن دُونِ ٱللَّهِ ءَالِهَةًۭ لِّيَكُونُوا۟ لَهُمْ عِزًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,19,' كَلَّا ۚ سَيَكْفُرُونَ بِعِبَادَتِهِمْ وَيَكُونُونَ عَلَيْهِمْ ضِدًّا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,19,' أَلَمْ تَرَ أَنَّآ أَرْسَلْنَا ٱلشَّيَطِينَ عَلَى ٱلْكَفِرِينَ تَؤُزُّهُمْ أَزًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,19,' فَلَا تَعْجَلْ عَلَيْهِمْ ۖ إِنَّمَا نَعُدُّ لَهُمْ عَدًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,19,' يَوْمَ نَحْشُرُ ٱلْمُتَّقِينَ إِلَى ٱلرَّحْمَنِ وَفْدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,19,' وَنَسُوقُ ٱلْمُجْرِمِينَ إِلَىٰ جَهَنَّمَ وِرْدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,19,' لَّا يَمْلِكُونَ ٱلشَّفَعَةَ إِلَّا مَنِ ٱتَّخَذَ عِندَ ٱلرَّحْمَنِ عَهْدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,19,' وَقَالُوا۟ ٱتَّخَذَ ٱلرَّحْمَنُ وَلَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,19,' لَّقَدْ جِئْتُمْ شَيْـًٔا إِدًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,19,' تَكَادُ ٱلسَّمَوَتُ يَتَفَطَّرْنَ مِنْهُ وَتَنشَقُّ ٱلْأَرْضُ وَتَخِرُّ ٱلْجِبَالُ هَدًّا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,19,' أَن دَعَوْا۟ لِلرَّحْمَنِ وَلَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,19,' وَمَا يَنۢبَغِى لِلرَّحْمَنِ أَن يَتَّخِذَ وَلَدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,19,' إِن كُلُّ مَن فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ إِلَّآ ءَاتِى ٱلرَّحْمَنِ عَبْدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,19,' لَّقَدْ أَحْصَىٰهُمْ وَعَدَّهُمْ عَدًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,19,' وَكُلُّهُمْ ءَاتِيهِ يَوْمَ ٱلْقِيَمَةِ فَرْدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,19,' إِنَّ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ سَيَجْعَلُ لَهُمُ ٱلرَّحْمَنُ وُدًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,19,' فَإِنَّمَا يَسَّرْنَهُ بِلِسَانِكَ لِتُبَشِّرَ بِهِ ٱلْمُتَّقِينَ وَتُنذِرَ بِهِۦ قَوْمًۭا لُّدًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,19,' وَكَمْ أَهْلَكْنَا قَبْلَهُم مِّن قَرْنٍ هَلْ تُحِسُّ مِنْهُم مِّنْ أَحَدٍ أَوْ تَسْمَعُ لَهُمْ رِكْزًۢا');
+INSERT INTO chapters (id, number, quran_id) VALUES(20,20,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,20,' طه');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,20,' مَآ أَنزَلْنَا عَلَيْكَ ٱلْقُرْءَانَ لِتَشْقَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,20,' إِلَّا تَذْكِرَةًۭ لِّمَن يَخْشَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,20,' تَنزِيلًۭا مِّمَّنْ خَلَقَ ٱلْأَرْضَ وَٱلسَّمَوَتِ ٱلْعُلَى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,20,' ٱلرَّحْمَنُ عَلَى ٱلْعَرْشِ ٱسْتَوَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,20,' لَهُۥ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ وَمَا بَيْنَهُمَا وَمَا تَحْتَ ٱلثَّرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,20,' وَإِن تَجْهَرْ بِٱلْقَوْلِ فَإِنَّهُۥ يَعْلَمُ ٱلسِّرَّ وَأَخْفَى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,20,' ٱللَّهُ لَآ إِلَهَ إِلَّا هُوَ ۖ لَهُ ٱلْأَسْمَآءُ ٱلْحُسْنَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,20,' وَهَلْ أَتَىٰكَ حَدِيثُ مُوسَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,20,' إِذْ رَءَا نَارًۭا فَقَالَ لِأَهْلِهِ ٱمْكُثُوٓا۟ إِنِّىٓ ءَانَسْتُ نَارًۭا لَّعَلِّىٓ ءَاتِيكُم مِّنْهَا بِقَبَسٍ أَوْ أَجِدُ عَلَى ٱلنَّارِ هُدًۭى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,20,' فَلَمَّآ أَتَىٰهَا نُودِىَ يَمُوسَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,20,' إِنِّىٓ أَنَا۠ رَبُّكَ فَٱخْلَعْ نَعْلَيْكَ ۖ إِنَّكَ بِٱلْوَادِ ٱلْمُقَدَّسِ طُوًۭى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,20,' وَأَنَا ٱخْتَرْتُكَ فَٱسْتَمِعْ لِمَا يُوحَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,20,' إِنَّنِىٓ أَنَا ٱللَّهُ لَآ إِلَهَ إِلَّآ أَنَا۠ فَٱعْبُدْنِى وَأَقِمِ ٱلصَّلَوٰةَ لِذِكْرِىٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,20,' إِنَّ ٱلسَّاعَةَ ءَاتِيَةٌ أَكَادُ أُخْفِيهَا لِتُجْزَىٰ كُلُّ نَفْسٍۭ بِمَا تَسْعَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,20,' فَلَا يَصُدَّنَّكَ عَنْهَا مَن لَّا يُؤْمِنُ بِهَا وَٱتَّبَعَ هَوَىٰهُ فَتَرْدَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,20,' وَمَا تِلْكَ بِيَمِينِكَ يَمُوسَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,20,' قَالَ هِىَ عَصَاىَ أَتَوَكَّؤُا۟ عَلَيْهَا وَأَهُشُّ بِهَا عَلَىٰ غَنَمِى وَلِىَ فِيهَا مَـَٔارِبُ أُخْرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,20,' قَالَ أَلْقِهَا يَمُوسَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,20,' فَأَلْقَىٰهَا فَإِذَا هِىَ حَيَّةٌۭ تَسْعَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,20,' قَالَ خُذْهَا وَلَا تَخَفْ ۖ سَنُعِيدُهَا سِيرَتَهَا ٱلْأُولَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,20,' وَٱضْمُمْ يَدَكَ إِلَىٰ جَنَاحِكَ تَخْرُجْ بَيْضَآءَ مِنْ غَيْرِ سُوٓءٍ ءَايَةً أُخْرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,20,' لِنُرِيَكَ مِنْ ءَايَتِنَا ٱلْكُبْرَى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,20,' ٱذْهَبْ إِلَىٰ فِرْعَوْنَ إِنَّهُۥ طَغَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,20,' قَالَ رَبِّ ٱشْرَحْ لِى صَدْرِى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,20,' وَيَسِّرْ لِىٓ أَمْرِى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,20,' وَٱحْلُلْ عُقْدَةًۭ مِّن لِّسَانِى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,20,' يَفْقَهُوا۟ قَوْلِى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,20,' وَٱجْعَل لِّى وَزِيرًۭا مِّنْ أَهْلِى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,20,' هَرُونَ أَخِى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,20,' ٱشْدُدْ بِهِۦٓ أَزْرِى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,20,' وَأَشْرِكْهُ فِىٓ أَمْرِى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,20,' كَىْ نُسَبِّحَكَ كَثِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,20,' وَنَذْكُرَكَ كَثِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,20,' إِنَّكَ كُنتَ بِنَا بَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,20,' قَالَ قَدْ أُوتِيتَ سُؤْلَكَ يَمُوسَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,20,' وَلَقَدْ مَنَنَّا عَلَيْكَ مَرَّةً أُخْرَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,20,' إِذْ أَوْحَيْنَآ إِلَىٰٓ أُمِّكَ مَا يُوحَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,20,' أَنِ ٱقْذِفِيهِ فِى ٱلتَّابُوتِ فَٱقْذِفِيهِ فِى ٱلْيَمِّ فَلْيُلْقِهِ ٱلْيَمُّ بِٱلسَّاحِلِ يَأْخُذْهُ عَدُوٌّۭ لِّى وَعَدُوٌّۭ لَّهُۥ ۚ وَأَلْقَيْتُ عَلَيْكَ مَحَبَّةًۭ مِّنِّى وَلِتُصْنَعَ عَلَىٰ عَيْنِىٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,20,' إِذْ تَمْشِىٓ أُخْتُكَ فَتَقُولُ هَلْ أَدُلُّكُمْ عَلَىٰ مَن يَكْفُلُهُۥ ۖ فَرَجَعْنَكَ إِلَىٰٓ أُمِّكَ كَىْ تَقَرَّ عَيْنُهَا وَلَا تَحْزَنَ ۚ وَقَتَلْتَ نَفْسًۭا فَنَجَّيْنَكَ مِنَ ٱلْغَمِّ وَفَتَنَّكَ فُتُونًۭا ۚ فَلَبِثْتَ سِنِينَ فِىٓ أَهْلِ مَدْيَنَ ثُمَّ جِئْتَ عَلَىٰ قَدَرٍۢ يَمُوسَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,20,' وَٱصْطَنَعْتُكَ لِنَفْسِى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,20,' ٱذْهَبْ أَنتَ وَأَخُوكَ بِـَٔايَتِى وَلَا تَنِيَا فِى ذِكْرِى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,20,' ٱذْهَبَآ إِلَىٰ فِرْعَوْنَ إِنَّهُۥ طَغَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,20,' فَقُولَا لَهُۥ قَوْلًۭا لَّيِّنًۭا لَّعَلَّهُۥ يَتَذَكَّرُ أَوْ يَخْشَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,20,' قَالَا رَبَّنَآ إِنَّنَا نَخَافُ أَن يَفْرُطَ عَلَيْنَآ أَوْ أَن يَطْغَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,20,' قَالَ لَا تَخَافَآ ۖ إِنَّنِى مَعَكُمَآ أَسْمَعُ وَأَرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,20,' فَأْتِيَاهُ فَقُولَآ إِنَّا رَسُولَا رَبِّكَ فَأَرْسِلْ مَعَنَا بَنِىٓ إِسْرَٓءِيلَ وَلَا تُعَذِّبْهُمْ ۖ قَدْ جِئْنَكَ بِـَٔايَةٍۢ مِّن رَّبِّكَ ۖ وَٱلسَّلَمُ عَلَىٰ مَنِ ٱتَّبَعَ ٱلْهُدَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,20,' إِنَّا قَدْ أُوحِىَ إِلَيْنَآ أَنَّ ٱلْعَذَابَ عَلَىٰ مَن كَذَّبَ وَتَوَلَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,20,' قَالَ فَمَن رَّبُّكُمَا يَمُوسَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,20,' قَالَ رَبُّنَا ٱلَّذِىٓ أَعْطَىٰ كُلَّ شَىْءٍ خَلْقَهُۥ ثُمَّ هَدَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,20,' قَالَ فَمَا بَالُ ٱلْقُرُونِ ٱلْأُولَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,20,' قَالَ عِلْمُهَا عِندَ رَبِّى فِى كِتَبٍۢ ۖ لَّا يَضِلُّ رَبِّى وَلَا يَنسَى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,20,' ٱلَّذِى جَعَلَ لَكُمُ ٱلْأَرْضَ مَهْدًۭا وَسَلَكَ لَكُمْ فِيهَا سُبُلًۭا وَأَنزَلَ مِنَ ٱلسَّمَآءِ مَآءًۭ فَأَخْرَجْنَا بِهِۦٓ أَزْوَجًۭا مِّن نَّبَاتٍۢ شَتَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,20,' كُلُوا۟ وَٱرْعَوْا۟ أَنْعَمَكُمْ ۗ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّأُو۟لِى ٱلنُّهَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,20,' مِنْهَا خَلَقْنَكُمْ وَفِيهَا نُعِيدُكُمْ وَمِنْهَا نُخْرِجُكُمْ تَارَةً أُخْرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,20,' وَلَقَدْ أَرَيْنَهُ ءَايَتِنَا كُلَّهَا فَكَذَّبَ وَأَبَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,20,' قَالَ أَجِئْتَنَا لِتُخْرِجَنَا مِنْ أَرْضِنَا بِسِحْرِكَ يَمُوسَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,20,' فَلَنَأْتِيَنَّكَ بِسِحْرٍۢ مِّثْلِهِۦ فَٱجْعَلْ بَيْنَنَا وَبَيْنَكَ مَوْعِدًۭا لَّا نُخْلِفُهُۥ نَحْنُ وَلَآ أَنتَ مَكَانًۭا سُوًۭى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,20,' قَالَ مَوْعِدُكُمْ يَوْمُ ٱلزِّينَةِ وَأَن يُحْشَرَ ٱلنَّاسُ ضُحًۭى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,20,' فَتَوَلَّىٰ فِرْعَوْنُ فَجَمَعَ كَيْدَهُۥ ثُمَّ أَتَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,20,' قَالَ لَهُم مُّوسَىٰ وَيْلَكُمْ لَا تَفْتَرُوا۟ عَلَى ٱللَّهِ كَذِبًۭا فَيُسْحِتَكُم بِعَذَابٍۢ ۖ وَقَدْ خَابَ مَنِ ٱفْتَرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,20,' فَتَنَزَعُوٓا۟ أَمْرَهُم بَيْنَهُمْ وَأَسَرُّوا۟ ٱلنَّجْوَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,20,' قَالُوٓا۟ إِنْ هَذَنِ لَسَحِرَنِ يُرِيدَانِ أَن يُخْرِجَاكُم مِّنْ أَرْضِكُم بِسِحْرِهِمَا وَيَذْهَبَا بِطَرِيقَتِكُمُ ٱلْمُثْلَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,20,' فَأَجْمِعُوا۟ كَيْدَكُمْ ثُمَّ ٱئْتُوا۟ صَفًّۭا ۚ وَقَدْ أَفْلَحَ ٱلْيَوْمَ مَنِ ٱسْتَعْلَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,20,' قَالُوا۟ يَمُوسَىٰٓ إِمَّآ أَن تُلْقِىَ وَإِمَّآ أَن نَّكُونَ أَوَّلَ مَنْ أَلْقَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,20,' قَالَ بَلْ أَلْقُوا۟ ۖ فَإِذَا حِبَالُهُمْ وَعِصِيُّهُمْ يُخَيَّلُ إِلَيْهِ مِن سِحْرِهِمْ أَنَّهَا تَسْعَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,20,' فَأَوْجَسَ فِى نَفْسِهِۦ خِيفَةًۭ مُّوسَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,20,' قُلْنَا لَا تَخَفْ إِنَّكَ أَنتَ ٱلْأَعْلَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,20,' وَأَلْقِ مَا فِى يَمِينِكَ تَلْقَفْ مَا صَنَعُوٓا۟ ۖ إِنَّمَا صَنَعُوا۟ كَيْدُ سَحِرٍۢ ۖ وَلَا يُفْلِحُ ٱلسَّاحِرُ حَيْثُ أَتَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,20,' فَأُلْقِىَ ٱلسَّحَرَةُ سُجَّدًۭا قَالُوٓا۟ ءَامَنَّا بِرَبِّ هَرُونَ وَمُوسَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,20,' قَالَ ءَامَنتُمْ لَهُۥ قَبْلَ أَنْ ءَاذَنَ لَكُمْ ۖ إِنَّهُۥ لَكَبِيرُكُمُ ٱلَّذِى عَلَّمَكُمُ ٱلسِّحْرَ ۖ فَلَأُقَطِّعَنَّ أَيْدِيَكُمْ وَأَرْجُلَكُم مِّنْ خِلَفٍۢ وَلَأُصَلِّبَنَّكُمْ فِى جُذُوعِ ٱلنَّخْلِ وَلَتَعْلَمُنَّ أَيُّنَآ أَشَدُّ عَذَابًۭا وَأَبْقَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,20,' قَالُوا۟ لَن نُّؤْثِرَكَ عَلَىٰ مَا جَآءَنَا مِنَ ٱلْبَيِّنَتِ وَٱلَّذِى فَطَرَنَا ۖ فَٱقْضِ مَآ أَنتَ قَاضٍ ۖ إِنَّمَا تَقْضِى هَذِهِ ٱلْحَيَوٰةَ ٱلدُّنْيَآ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,20,' إِنَّآ ءَامَنَّا بِرَبِّنَا لِيَغْفِرَ لَنَا خَطَيَنَا وَمَآ أَكْرَهْتَنَا عَلَيْهِ مِنَ ٱلسِّحْرِ ۗ وَٱللَّهُ خَيْرٌۭ وَأَبْقَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,20,' إِنَّهُۥ مَن يَأْتِ رَبَّهُۥ مُجْرِمًۭا فَإِنَّ لَهُۥ جَهَنَّمَ لَا يَمُوتُ فِيهَا وَلَا يَحْيَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,20,' وَمَن يَأْتِهِۦ مُؤْمِنًۭا قَدْ عَمِلَ ٱلصَّلِحَتِ فَأُو۟لَٓئِكَ لَهُمُ ٱلدَّرَجَتُ ٱلْعُلَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,20,' جَنَّتُ عَدْنٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَا ۚ وَذَلِكَ جَزَآءُ مَن تَزَكَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,20,' وَلَقَدْ أَوْحَيْنَآ إِلَىٰ مُوسَىٰٓ أَنْ أَسْرِ بِعِبَادِى فَٱضْرِبْ لَهُمْ طَرِيقًۭا فِى ٱلْبَحْرِ يَبَسًۭا لَّا تَخَفُ دَرَكًۭا وَلَا تَخْشَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,20,' فَأَتْبَعَهُمْ فِرْعَوْنُ بِجُنُودِهِۦ فَغَشِيَهُم مِّنَ ٱلْيَمِّ مَا غَشِيَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,20,' وَأَضَلَّ فِرْعَوْنُ قَوْمَهُۥ وَمَا هَدَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,20,' يَبَنِىٓ إِسْرَٓءِيلَ قَدْ أَنجَيْنَكُم مِّنْ عَدُوِّكُمْ وَوَعَدْنَكُمْ جَانِبَ ٱلطُّورِ ٱلْأَيْمَنَ وَنَزَّلْنَا عَلَيْكُمُ ٱلْمَنَّ وَٱلسَّلْوَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,20,' كُلُوا۟ مِن طَيِّبَتِ مَا رَزَقْنَكُمْ وَلَا تَطْغَوْا۟ فِيهِ فَيَحِلَّ عَلَيْكُمْ غَضَبِى ۖ وَمَن يَحْلِلْ عَلَيْهِ غَضَبِى فَقَدْ هَوَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,20,' وَإِنِّى لَغَفَّارٌۭ لِّمَن تَابَ وَءَامَنَ وَعَمِلَ صَلِحًۭا ثُمَّ ٱهْتَدَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,20,' وَمَآ أَعْجَلَكَ عَن قَوْمِكَ يَمُوسَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,20,' قَالَ هُمْ أُو۟لَآءِ عَلَىٰٓ أَثَرِى وَعَجِلْتُ إِلَيْكَ رَبِّ لِتَرْضَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,20,' قَالَ فَإِنَّا قَدْ فَتَنَّا قَوْمَكَ مِنۢ بَعْدِكَ وَأَضَلَّهُمُ ٱلسَّامِرِىُّ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,20,' فَرَجَعَ مُوسَىٰٓ إِلَىٰ قَوْمِهِۦ غَضْبَنَ أَسِفًۭا ۚ قَالَ يَقَوْمِ أَلَمْ يَعِدْكُمْ رَبُّكُمْ وَعْدًا حَسَنًا ۚ أَفَطَالَ عَلَيْكُمُ ٱلْعَهْدُ أَمْ أَرَدتُّمْ أَن يَحِلَّ عَلَيْكُمْ غَضَبٌۭ مِّن رَّبِّكُمْ فَأَخْلَفْتُم مَّوْعِدِى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,20,' قَالُوا۟ مَآ أَخْلَفْنَا مَوْعِدَكَ بِمَلْكِنَا وَلَكِنَّا حُمِّلْنَآ أَوْزَارًۭا مِّن زِينَةِ ٱلْقَوْمِ فَقَذَفْنَهَا فَكَذَلِكَ أَلْقَى ٱلسَّامِرِىُّ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,20,' فَأَخْرَجَ لَهُمْ عِجْلًۭا جَسَدًۭا لَّهُۥ خُوَارٌۭ فَقَالُوا۟ هَذَآ إِلَهُكُمْ وَإِلَهُ مُوسَىٰ فَنَسِىَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,20,' أَفَلَا يَرَوْنَ أَلَّا يَرْجِعُ إِلَيْهِمْ قَوْلًۭا وَلَا يَمْلِكُ لَهُمْ ضَرًّۭا وَلَا نَفْعًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,20,' وَلَقَدْ قَالَ لَهُمْ هَرُونُ مِن قَبْلُ يَقَوْمِ إِنَّمَا فُتِنتُم بِهِۦ ۖ وَإِنَّ رَبَّكُمُ ٱلرَّحْمَنُ فَٱتَّبِعُونِى وَأَطِيعُوٓا۟ أَمْرِى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,20,' قَالُوا۟ لَن نَّبْرَحَ عَلَيْهِ عَكِفِينَ حَتَّىٰ يَرْجِعَ إِلَيْنَا مُوسَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,20,' قَالَ يَهَرُونُ مَا مَنَعَكَ إِذْ رَأَيْتَهُمْ ضَلُّوٓا۟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,20,' أَلَّا تَتَّبِعَنِ ۖ أَفَعَصَيْتَ أَمْرِى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,20,' قَالَ يَبْنَؤُمَّ لَا تَأْخُذْ بِلِحْيَتِى وَلَا بِرَأْسِىٓ ۖ إِنِّى خَشِيتُ أَن تَقُولَ فَرَّقْتَ بَيْنَ بَنِىٓ إِسْرَٓءِيلَ وَلَمْ تَرْقُبْ قَوْلِى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,20,' قَالَ فَمَا خَطْبُكَ يَسَمِرِىُّ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,20,' قَالَ بَصُرْتُ بِمَا لَمْ يَبْصُرُوا۟ بِهِۦ فَقَبَضْتُ قَبْضَةًۭ مِّنْ أَثَرِ ٱلرَّسُولِ فَنَبَذْتُهَا وَكَذَلِكَ سَوَّلَتْ لِى نَفْسِى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,20,' قَالَ فَٱذْهَبْ فَإِنَّ لَكَ فِى ٱلْحَيَوٰةِ أَن تَقُولَ لَا مِسَاسَ ۖ وَإِنَّ لَكَ مَوْعِدًۭا لَّن تُخْلَفَهُۥ ۖ وَٱنظُرْ إِلَىٰٓ إِلَهِكَ ٱلَّذِى ظَلْتَ عَلَيْهِ عَاكِفًۭا ۖ لَّنُحَرِّقَنَّهُۥ ثُمَّ لَنَنسِفَنَّهُۥ فِى ٱلْيَمِّ نَسْفًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,20,' إِنَّمَآ إِلَهُكُمُ ٱللَّهُ ٱلَّذِى لَآ إِلَهَ إِلَّا هُوَ ۚ وَسِعَ كُلَّ شَىْءٍ عِلْمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,20,' كَذَلِكَ نَقُصُّ عَلَيْكَ مِنْ أَنۢبَآءِ مَا قَدْ سَبَقَ ۚ وَقَدْ ءَاتَيْنَكَ مِن لَّدُنَّا ذِكْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,1,20,' مَّنْ أَعْرَضَ عَنْهُ فَإِنَّهُۥ يَحْمِلُ يَوْمَ ٱلْقِيَمَةِ وِزْرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,1,20,' خَلِدِينَ فِيهِ ۖ وَسَآءَ لَهُمْ يَوْمَ ٱلْقِيَمَةِ حِمْلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,1,20,' يَوْمَ يُنفَخُ فِى ٱلصُّورِ ۚ وَنَحْشُرُ ٱلْمُجْرِمِينَ يَوْمَئِذٍۢ زُرْقًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,1,20,' يَتَخَفَتُونَ بَيْنَهُمْ إِن لَّبِثْتُمْ إِلَّا عَشْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,1,20,' نَّحْنُ أَعْلَمُ بِمَا يَقُولُونَ إِذْ يَقُولُ أَمْثَلُهُمْ طَرِيقَةً إِن لَّبِثْتُمْ إِلَّا يَوْمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,1,20,' وَيَسْـَٔلُونَكَ عَنِ ٱلْجِبَالِ فَقُلْ يَنسِفُهَا رَبِّى نَسْفًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,1,20,' فَيَذَرُهَا قَاعًۭا صَفْصَفًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,1,20,' لَّا تَرَىٰ فِيهَا عِوَجًۭا وَلَآ أَمْتًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,1,20,' يَوْمَئِذٍۢ يَتَّبِعُونَ ٱلدَّاعِىَ لَا عِوَجَ لَهُۥ ۖ وَخَشَعَتِ ٱلْأَصْوَاتُ لِلرَّحْمَنِ فَلَا تَسْمَعُ إِلَّا هَمْسًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,1,20,' يَوْمَئِذٍۢ لَّا تَنفَعُ ٱلشَّفَعَةُ إِلَّا مَنْ أَذِنَ لَهُ ٱلرَّحْمَنُ وَرَضِىَ لَهُۥ قَوْلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,1,20,' يَعْلَمُ مَا بَيْنَ أَيْدِيهِمْ وَمَا خَلْفَهُمْ وَلَا يُحِيطُونَ بِهِۦ عِلْمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,1,20,' وَعَنَتِ ٱلْوُجُوهُ لِلْحَىِّ ٱلْقَيُّومِ ۖ وَقَدْ خَابَ مَنْ حَمَلَ ظُلْمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,1,20,' وَمَن يَعْمَلْ مِنَ ٱلصَّلِحَتِ وَهُوَ مُؤْمِنٌۭ فَلَا يَخَافُ ظُلْمًۭا وَلَا هَضْمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,1,20,' وَكَذَلِكَ أَنزَلْنَهُ قُرْءَانًا عَرَبِيًّۭا وَصَرَّفْنَا فِيهِ مِنَ ٱلْوَعِيدِ لَعَلَّهُمْ يَتَّقُونَ أَوْ يُحْدِثُ لَهُمْ ذِكْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,1,20,' فَتَعَلَى ٱللَّهُ ٱلْمَلِكُ ٱلْحَقُّ ۗ وَلَا تَعْجَلْ بِٱلْقُرْءَانِ مِن قَبْلِ أَن يُقْضَىٰٓ إِلَيْكَ وَحْيُهُۥ ۖ وَقُل رَّبِّ زِدْنِى عِلْمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,1,20,' وَلَقَدْ عَهِدْنَآ إِلَىٰٓ ءَادَمَ مِن قَبْلُ فَنَسِىَ وَلَمْ نَجِدْ لَهُۥ عَزْمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,1,20,' وَإِذْ قُلْنَا لِلْمَلَٓئِكَةِ ٱسْجُدُوا۟ لِءَادَمَ فَسَجَدُوٓا۟ إِلَّآ إِبْلِيسَ أَبَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,1,20,' فَقُلْنَا يَٓـَٔادَمُ إِنَّ هَذَا عَدُوٌّۭ لَّكَ وَلِزَوْجِكَ فَلَا يُخْرِجَنَّكُمَا مِنَ ٱلْجَنَّةِ فَتَشْقَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,1,20,' إِنَّ لَكَ أَلَّا تَجُوعَ فِيهَا وَلَا تَعْرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,1,20,' وَأَنَّكَ لَا تَظْمَؤُا۟ فِيهَا وَلَا تَضْحَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,1,20,' فَوَسْوَسَ إِلَيْهِ ٱلشَّيْطَنُ قَالَ يَٓـَٔادَمُ هَلْ أَدُلُّكَ عَلَىٰ شَجَرَةِ ٱلْخُلْدِ وَمُلْكٍۢ لَّا يَبْلَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,1,20,' فَأَكَلَا مِنْهَا فَبَدَتْ لَهُمَا سَوْءَتُهُمَا وَطَفِقَا يَخْصِفَانِ عَلَيْهِمَا مِن وَرَقِ ٱلْجَنَّةِ ۚ وَعَصَىٰٓ ءَادَمُ رَبَّهُۥ فَغَوَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,1,20,' ثُمَّ ٱجْتَبَهُ رَبُّهُۥ فَتَابَ عَلَيْهِ وَهَدَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,1,20,' قَالَ ٱهْبِطَا مِنْهَا جَمِيعًۢا ۖ بَعْضُكُمْ لِبَعْضٍ عَدُوٌّۭ ۖ فَإِمَّا يَأْتِيَنَّكُم مِّنِّى هُدًۭى فَمَنِ ٱتَّبَعَ هُدَاىَ فَلَا يَضِلُّ وَلَا يَشْقَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,1,20,' وَمَنْ أَعْرَضَ عَن ذِكْرِى فَإِنَّ لَهُۥ مَعِيشَةًۭ ضَنكًۭا وَنَحْشُرُهُۥ يَوْمَ ٱلْقِيَمَةِ أَعْمَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,1,20,' قَالَ رَبِّ لِمَ حَشَرْتَنِىٓ أَعْمَىٰ وَقَدْ كُنتُ بَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,1,20,' قَالَ كَذَلِكَ أَتَتْكَ ءَايَتُنَا فَنَسِيتَهَا ۖ وَكَذَلِكَ ٱلْيَوْمَ تُنسَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,1,20,' وَكَذَلِكَ نَجْزِى مَنْ أَسْرَفَ وَلَمْ يُؤْمِنۢ بِـَٔايَتِ رَبِّهِۦ ۚ وَلَعَذَابُ ٱلْءَاخِرَةِ أَشَدُّ وَأَبْقَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,1,20,' أَفَلَمْ يَهْدِ لَهُمْ كَمْ أَهْلَكْنَا قَبْلَهُم مِّنَ ٱلْقُرُونِ يَمْشُونَ فِى مَسَكِنِهِمْ ۗ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّأُو۟لِى ٱلنُّهَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,1,20,' وَلَوْلَا كَلِمَةٌۭ سَبَقَتْ مِن رَّبِّكَ لَكَانَ لِزَامًۭا وَأَجَلٌۭ مُّسَمًّۭى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,1,20,' فَٱصْبِرْ عَلَىٰ مَا يَقُولُونَ وَسَبِّحْ بِحَمْدِ رَبِّكَ قَبْلَ طُلُوعِ ٱلشَّمْسِ وَقَبْلَ غُرُوبِهَا ۖ وَمِنْ ءَانَآئِ ٱلَّيْلِ فَسَبِّحْ وَأَطْرَافَ ٱلنَّهَارِ لَعَلَّكَ تَرْضَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,1,20,' وَلَا تَمُدَّنَّ عَيْنَيْكَ إِلَىٰ مَا مَتَّعْنَا بِهِۦٓ أَزْوَجًۭا مِّنْهُمْ زَهْرَةَ ٱلْحَيَوٰةِ ٱلدُّنْيَا لِنَفْتِنَهُمْ فِيهِ ۚ وَرِزْقُ رَبِّكَ خَيْرٌۭ وَأَبْقَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,1,20,' وَأْمُرْ أَهْلَكَ بِٱلصَّلَوٰةِ وَٱصْطَبِرْ عَلَيْهَا ۖ لَا نَسْـَٔلُكَ رِزْقًۭا ۖ نَّحْنُ نَرْزُقُكَ ۗ وَٱلْعَقِبَةُ لِلتَّقْوَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,1,20,' وَقَالُوا۟ لَوْلَا يَأْتِينَا بِـَٔايَةٍۢ مِّن رَّبِّهِۦٓ ۚ أَوَلَمْ تَأْتِهِم بَيِّنَةُ مَا فِى ٱلصُّحُفِ ٱلْأُولَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,1,20,' وَلَوْ أَنَّآ أَهْلَكْنَهُم بِعَذَابٍۢ مِّن قَبْلِهِۦ لَقَالُوا۟ رَبَّنَا لَوْلَآ أَرْسَلْتَ إِلَيْنَا رَسُولًۭا فَنَتَّبِعَ ءَايَتِكَ مِن قَبْلِ أَن نَّذِلَّ وَنَخْزَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,1,20,' قُلْ كُلٌّۭ مُّتَرَبِّصٌۭ فَتَرَبَّصُوا۟ ۖ فَسَتَعْلَمُونَ مَنْ أَصْحَبُ ٱلصِّرَطِ ٱلسَّوِىِّ وَمَنِ ٱهْتَدَىٰ');
+INSERT INTO chapters (id, number, quran_id) VALUES(21,21,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,21,' ٱقْتَرَبَ لِلنَّاسِ حِسَابُهُمْ وَهُمْ فِى غَفْلَةٍۢ مُّعْرِضُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,21,' مَا يَأْتِيهِم مِّن ذِكْرٍۢ مِّن رَّبِّهِم مُّحْدَثٍ إِلَّا ٱسْتَمَعُوهُ وَهُمْ يَلْعَبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,21,' لَاهِيَةًۭ قُلُوبُهُمْ ۗ وَأَسَرُّوا۟ ٱلنَّجْوَى ٱلَّذِينَ ظَلَمُوا۟ هَلْ هَذَآ إِلَّا بَشَرٌۭ مِّثْلُكُمْ ۖ أَفَتَأْتُونَ ٱلسِّحْرَ وَأَنتُمْ تُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,21,' قَالَ رَبِّى يَعْلَمُ ٱلْقَوْلَ فِى ٱلسَّمَآءِ وَٱلْأَرْضِ ۖ وَهُوَ ٱلسَّمِيعُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,21,' بَلْ قَالُوٓا۟ أَضْغَثُ أَحْلَمٍۭ بَلِ ٱفْتَرَىٰهُ بَلْ هُوَ شَاعِرٌۭ فَلْيَأْتِنَا بِـَٔايَةٍۢ كَمَآ أُرْسِلَ ٱلْأَوَّلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,21,' مَآ ءَامَنَتْ قَبْلَهُم مِّن قَرْيَةٍ أَهْلَكْنَهَآ ۖ أَفَهُمْ يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,21,' وَمَآ أَرْسَلْنَا قَبْلَكَ إِلَّا رِجَالًۭا نُّوحِىٓ إِلَيْهِمْ ۖ فَسْـَٔلُوٓا۟ أَهْلَ ٱلذِّكْرِ إِن كُنتُمْ لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,21,' وَمَا جَعَلْنَهُمْ جَسَدًۭا لَّا يَأْكُلُونَ ٱلطَّعَامَ وَمَا كَانُوا۟ خَلِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,21,' ثُمَّ صَدَقْنَهُمُ ٱلْوَعْدَ فَأَنجَيْنَهُمْ وَمَن نَّشَآءُ وَأَهْلَكْنَا ٱلْمُسْرِفِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,21,' لَقَدْ أَنزَلْنَآ إِلَيْكُمْ كِتَبًۭا فِيهِ ذِكْرُكُمْ ۖ أَفَلَا تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,21,' وَكَمْ قَصَمْنَا مِن قَرْيَةٍۢ كَانَتْ ظَالِمَةًۭ وَأَنشَأْنَا بَعْدَهَا قَوْمًا ءَاخَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,21,' فَلَمَّآ أَحَسُّوا۟ بَأْسَنَآ إِذَا هُم مِّنْهَا يَرْكُضُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,21,' لَا تَرْكُضُوا۟ وَٱرْجِعُوٓا۟ إِلَىٰ مَآ أُتْرِفْتُمْ فِيهِ وَمَسَكِنِكُمْ لَعَلَّكُمْ تُسْـَٔلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,21,' قَالُوا۟ يَوَيْلَنَآ إِنَّا كُنَّا ظَلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,21,' فَمَا زَالَت تِّلْكَ دَعْوَىٰهُمْ حَتَّىٰ جَعَلْنَهُمْ حَصِيدًا خَمِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,21,' وَمَا خَلَقْنَا ٱلسَّمَآءَ وَٱلْأَرْضَ وَمَا بَيْنَهُمَا لَعِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,21,' لَوْ أَرَدْنَآ أَن نَّتَّخِذَ لَهْوًۭا لَّٱتَّخَذْنَهُ مِن لَّدُنَّآ إِن كُنَّا فَعِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,21,' بَلْ نَقْذِفُ بِٱلْحَقِّ عَلَى ٱلْبَطِلِ فَيَدْمَغُهُۥ فَإِذَا هُوَ زَاهِقٌۭ ۚ وَلَكُمُ ٱلْوَيْلُ مِمَّا تَصِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,21,' وَلَهُۥ مَن فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ وَمَنْ عِندَهُۥ لَا يَسْتَكْبِرُونَ عَنْ عِبَادَتِهِۦ وَلَا يَسْتَحْسِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,21,' يُسَبِّحُونَ ٱلَّيْلَ وَٱلنَّهَارَ لَا يَفْتُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,21,' أَمِ ٱتَّخَذُوٓا۟ ءَالِهَةًۭ مِّنَ ٱلْأَرْضِ هُمْ يُنشِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,21,' لَوْ كَانَ فِيهِمَآ ءَالِهَةٌ إِلَّا ٱللَّهُ لَفَسَدَتَا ۚ فَسُبْحَنَ ٱللَّهِ رَبِّ ٱلْعَرْشِ عَمَّا يَصِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,21,' لَا يُسْـَٔلُ عَمَّا يَفْعَلُ وَهُمْ يُسْـَٔلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,21,' أَمِ ٱتَّخَذُوا۟ مِن دُونِهِۦٓ ءَالِهَةًۭ ۖ قُلْ هَاتُوا۟ بُرْهَنَكُمْ ۖ هَذَا ذِكْرُ مَن مَّعِىَ وَذِكْرُ مَن قَبْلِى ۗ بَلْ أَكْثَرُهُمْ لَا يَعْلَمُونَ ٱلْحَقَّ ۖ فَهُم مُّعْرِضُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,21,' وَمَآ أَرْسَلْنَا مِن قَبْلِكَ مِن رَّسُولٍ إِلَّا نُوحِىٓ إِلَيْهِ أَنَّهُۥ لَآ إِلَهَ إِلَّآ أَنَا۠ فَٱعْبُدُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,21,' وَقَالُوا۟ ٱتَّخَذَ ٱلرَّحْمَنُ وَلَدًۭا ۗ سُبْحَنَهُۥ ۚ بَلْ عِبَادٌۭ مُّكْرَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,21,' لَا يَسْبِقُونَهُۥ بِٱلْقَوْلِ وَهُم بِأَمْرِهِۦ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,21,' يَعْلَمُ مَا بَيْنَ أَيْدِيهِمْ وَمَا خَلْفَهُمْ وَلَا يَشْفَعُونَ إِلَّا لِمَنِ ٱرْتَضَىٰ وَهُم مِّنْ خَشْيَتِهِۦ مُشْفِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,21,' وَمَن يَقُلْ مِنْهُمْ إِنِّىٓ إِلَهٌۭ مِّن دُونِهِۦ فَذَلِكَ نَجْزِيهِ جَهَنَّمَ ۚ كَذَلِكَ نَجْزِى ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,21,' أَوَلَمْ يَرَ ٱلَّذِينَ كَفَرُوٓا۟ أَنَّ ٱلسَّمَوَتِ وَٱلْأَرْضَ كَانَتَا رَتْقًۭا فَفَتَقْنَهُمَا ۖ وَجَعَلْنَا مِنَ ٱلْمَآءِ كُلَّ شَىْءٍ حَىٍّ ۖ أَفَلَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,21,' وَجَعَلْنَا فِى ٱلْأَرْضِ رَوَسِىَ أَن تَمِيدَ بِهِمْ وَجَعَلْنَا فِيهَا فِجَاجًۭا سُبُلًۭا لَّعَلَّهُمْ يَهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,21,' وَجَعَلْنَا ٱلسَّمَآءَ سَقْفًۭا مَّحْفُوظًۭا ۖ وَهُمْ عَنْ ءَايَتِهَا مُعْرِضُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,21,' وَهُوَ ٱلَّذِى خَلَقَ ٱلَّيْلَ وَٱلنَّهَارَ وَٱلشَّمْسَ وَٱلْقَمَرَ ۖ كُلٌّۭ فِى فَلَكٍۢ يَسْبَحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,21,' وَمَا جَعَلْنَا لِبَشَرٍۢ مِّن قَبْلِكَ ٱلْخُلْدَ ۖ أَفَإِي۟ن مِّتَّ فَهُمُ ٱلْخَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,21,' كُلُّ نَفْسٍۢ ذَآئِقَةُ ٱلْمَوْتِ ۗ وَنَبْلُوكُم بِٱلشَّرِّ وَٱلْخَيْرِ فِتْنَةًۭ ۖ وَإِلَيْنَا تُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,21,' وَإِذَا رَءَاكَ ٱلَّذِينَ كَفَرُوٓا۟ إِن يَتَّخِذُونَكَ إِلَّا هُزُوًا أَهَذَا ٱلَّذِى يَذْكُرُ ءَالِهَتَكُمْ وَهُم بِذِكْرِ ٱلرَّحْمَنِ هُمْ كَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,21,' خُلِقَ ٱلْإِنسَنُ مِنْ عَجَلٍۢ ۚ سَأُو۟رِيكُمْ ءَايَتِى فَلَا تَسْتَعْجِلُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,21,' وَيَقُولُونَ مَتَىٰ هَذَا ٱلْوَعْدُ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,21,' لَوْ يَعْلَمُ ٱلَّذِينَ كَفَرُوا۟ حِينَ لَا يَكُفُّونَ عَن وُجُوهِهِمُ ٱلنَّارَ وَلَا عَن ظُهُورِهِمْ وَلَا هُمْ يُنصَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,21,' بَلْ تَأْتِيهِم بَغْتَةًۭ فَتَبْهَتُهُمْ فَلَا يَسْتَطِيعُونَ رَدَّهَا وَلَا هُمْ يُنظَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,21,' وَلَقَدِ ٱسْتُهْزِئَ بِرُسُلٍۢ مِّن قَبْلِكَ فَحَاقَ بِٱلَّذِينَ سَخِرُوا۟ مِنْهُم مَّا كَانُوا۟ بِهِۦ يَسْتَهْزِءُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,21,' قُلْ مَن يَكْلَؤُكُم بِٱلَّيْلِ وَٱلنَّهَارِ مِنَ ٱلرَّحْمَنِ ۗ بَلْ هُمْ عَن ذِكْرِ رَبِّهِم مُّعْرِضُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,21,' أَمْ لَهُمْ ءَالِهَةٌۭ تَمْنَعُهُم مِّن دُونِنَا ۚ لَا يَسْتَطِيعُونَ نَصْرَ أَنفُسِهِمْ وَلَا هُم مِّنَّا يُصْحَبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,21,' بَلْ مَتَّعْنَا هَٓؤُلَآءِ وَءَابَآءَهُمْ حَتَّىٰ طَالَ عَلَيْهِمُ ٱلْعُمُرُ ۗ أَفَلَا يَرَوْنَ أَنَّا نَأْتِى ٱلْأَرْضَ نَنقُصُهَا مِنْ أَطْرَافِهَآ ۚ أَفَهُمُ ٱلْغَلِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,21,' قُلْ إِنَّمَآ أُنذِرُكُم بِٱلْوَحْىِ ۚ وَلَا يَسْمَعُ ٱلصُّمُّ ٱلدُّعَآءَ إِذَا مَا يُنذَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,21,' وَلَىِٕن مَّسَّتْهُمْ نَفْحَةٌۭ مِّنْ عَذَابِ رَبِّكَ لَيَقُولُنَّ يَوَيْلَنَآ إِنَّا كُنَّا ظَلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,21,' وَنَضَعُ ٱلْمَوَزِينَ ٱلْقِسْطَ لِيَوْمِ ٱلْقِيَمَةِ فَلَا تُظْلَمُ نَفْسٌۭ شَيْـًۭٔا ۖ وَإِن كَانَ مِثْقَالَ حَبَّةٍۢ مِّنْ خَرْدَلٍ أَتَيْنَا بِهَا ۗ وَكَفَىٰ بِنَا حَسِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,21,' وَلَقَدْ ءَاتَيْنَا مُوسَىٰ وَهَرُونَ ٱلْفُرْقَانَ وَضِيَآءًۭ وَذِكْرًۭا لِّلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,21,' ٱلَّذِينَ يَخْشَوْنَ رَبَّهُم بِٱلْغَيْبِ وَهُم مِّنَ ٱلسَّاعَةِ مُشْفِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,21,' وَهَذَا ذِكْرٌۭ مُّبَارَكٌ أَنزَلْنَهُ ۚ أَفَأَنتُمْ لَهُۥ مُنكِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,21,' وَلَقَدْ ءَاتَيْنَآ إِبْرَهِيمَ رُشْدَهُۥ مِن قَبْلُ وَكُنَّا بِهِۦ عَلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,21,' إِذْ قَالَ لِأَبِيهِ وَقَوْمِهِۦ مَا هَذِهِ ٱلتَّمَاثِيلُ ٱلَّتِىٓ أَنتُمْ لَهَا عَكِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,21,' قَالُوا۟ وَجَدْنَآ ءَابَآءَنَا لَهَا عَبِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,21,' قَالَ لَقَدْ كُنتُمْ أَنتُمْ وَءَابَآؤُكُمْ فِى ضَلَلٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,21,' قَالُوٓا۟ أَجِئْتَنَا بِٱلْحَقِّ أَمْ أَنتَ مِنَ ٱللَّعِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,21,' قَالَ بَل رَّبُّكُمْ رَبُّ ٱلسَّمَوَتِ وَٱلْأَرْضِ ٱلَّذِى فَطَرَهُنَّ وَأَنَا۠ عَلَىٰ ذَلِكُم مِّنَ ٱلشَّهِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,21,' وَتَٱللَّهِ لَأَكِيدَنَّ أَصْنَمَكُم بَعْدَ أَن تُوَلُّوا۟ مُدْبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,21,' فَجَعَلَهُمْ جُذَذًا إِلَّا كَبِيرًۭا لَّهُمْ لَعَلَّهُمْ إِلَيْهِ يَرْجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,21,' قَالُوا۟ مَن فَعَلَ هَذَا بِـَٔالِهَتِنَآ إِنَّهُۥ لَمِنَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,21,' قَالُوا۟ سَمِعْنَا فَتًۭى يَذْكُرُهُمْ يُقَالُ لَهُۥٓ إِبْرَهِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,21,' قَالُوا۟ فَأْتُوا۟ بِهِۦ عَلَىٰٓ أَعْيُنِ ٱلنَّاسِ لَعَلَّهُمْ يَشْهَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,21,' قَالُوٓا۟ ءَأَنتَ فَعَلْتَ هَذَا بِـَٔالِهَتِنَا يَٓإِبْرَهِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,21,' قَالَ بَلْ فَعَلَهُۥ كَبِيرُهُمْ هَذَا فَسْـَٔلُوهُمْ إِن كَانُوا۟ يَنطِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,21,' فَرَجَعُوٓا۟ إِلَىٰٓ أَنفُسِهِمْ فَقَالُوٓا۟ إِنَّكُمْ أَنتُمُ ٱلظَّلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,21,' ثُمَّ نُكِسُوا۟ عَلَىٰ رُءُوسِهِمْ لَقَدْ عَلِمْتَ مَا هَٓؤُلَآءِ يَنطِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,21,' قَالَ أَفَتَعْبُدُونَ مِن دُونِ ٱللَّهِ مَا لَا يَنفَعُكُمْ شَيْـًۭٔا وَلَا يَضُرُّكُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,21,' أُفٍّۢ لَّكُمْ وَلِمَا تَعْبُدُونَ مِن دُونِ ٱللَّهِ ۖ أَفَلَا تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,21,' قَالُوا۟ حَرِّقُوهُ وَٱنصُرُوٓا۟ ءَالِهَتَكُمْ إِن كُنتُمْ فَعِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,21,' قُلْنَا يَنَارُ كُونِى بَرْدًۭا وَسَلَمًا عَلَىٰٓ إِبْرَهِيمَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,21,' وَأَرَادُوا۟ بِهِۦ كَيْدًۭا فَجَعَلْنَهُمُ ٱلْأَخْسَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,21,' وَنَجَّيْنَهُ وَلُوطًا إِلَى ٱلْأَرْضِ ٱلَّتِى بَرَكْنَا فِيهَا لِلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,21,' وَوَهَبْنَا لَهُۥٓ إِسْحَقَ وَيَعْقُوبَ نَافِلَةًۭ ۖ وَكُلًّۭا جَعَلْنَا صَلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,21,' وَجَعَلْنَهُمْ أَئِمَّةًۭ يَهْدُونَ بِأَمْرِنَا وَأَوْحَيْنَآ إِلَيْهِمْ فِعْلَ ٱلْخَيْرَتِ وَإِقَامَ ٱلصَّلَوٰةِ وَإِيتَآءَ ٱلزَّكَوٰةِ ۖ وَكَانُوا۟ لَنَا عَبِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,21,' وَلُوطًا ءَاتَيْنَهُ حُكْمًۭا وَعِلْمًۭا وَنَجَّيْنَهُ مِنَ ٱلْقَرْيَةِ ٱلَّتِى كَانَت تَّعْمَلُ ٱلْخَبَٓئِثَ ۗ إِنَّهُمْ كَانُوا۟ قَوْمَ سَوْءٍۢ فَسِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,21,' وَأَدْخَلْنَهُ فِى رَحْمَتِنَآ ۖ إِنَّهُۥ مِنَ ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,21,' وَنُوحًا إِذْ نَادَىٰ مِن قَبْلُ فَٱسْتَجَبْنَا لَهُۥ فَنَجَّيْنَهُ وَأَهْلَهُۥ مِنَ ٱلْكَرْبِ ٱلْعَظِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,21,' وَنَصَرْنَهُ مِنَ ٱلْقَوْمِ ٱلَّذِينَ كَذَّبُوا۟ بِـَٔايَتِنَآ ۚ إِنَّهُمْ كَانُوا۟ قَوْمَ سَوْءٍۢ فَأَغْرَقْنَهُمْ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,21,' وَدَاوُۥدَ وَسُلَيْمَنَ إِذْ يَحْكُمَانِ فِى ٱلْحَرْثِ إِذْ نَفَشَتْ فِيهِ غَنَمُ ٱلْقَوْمِ وَكُنَّا لِحُكْمِهِمْ شَهِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,21,' فَفَهَّمْنَهَا سُلَيْمَنَ ۚ وَكُلًّا ءَاتَيْنَا حُكْمًۭا وَعِلْمًۭا ۚ وَسَخَّرْنَا مَعَ دَاوُۥدَ ٱلْجِبَالَ يُسَبِّحْنَ وَٱلطَّيْرَ ۚ وَكُنَّا فَعِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,21,' وَعَلَّمْنَهُ صَنْعَةَ لَبُوسٍۢ لَّكُمْ لِتُحْصِنَكُم مِّنۢ بَأْسِكُمْ ۖ فَهَلْ أَنتُمْ شَكِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,21,' وَلِسُلَيْمَنَ ٱلرِّيحَ عَاصِفَةًۭ تَجْرِى بِأَمْرِهِۦٓ إِلَى ٱلْأَرْضِ ٱلَّتِى بَرَكْنَا فِيهَا ۚ وَكُنَّا بِكُلِّ شَىْءٍ عَلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,21,' وَمِنَ ٱلشَّيَطِينِ مَن يَغُوصُونَ لَهُۥ وَيَعْمَلُونَ عَمَلًۭا دُونَ ذَلِكَ ۖ وَكُنَّا لَهُمْ حَفِظِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,21,' وَأَيُّوبَ إِذْ نَادَىٰ رَبَّهُۥٓ أَنِّى مَسَّنِىَ ٱلضُّرُّ وَأَنتَ أَرْحَمُ ٱلرَّحِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,21,' فَٱسْتَجَبْنَا لَهُۥ فَكَشَفْنَا مَا بِهِۦ مِن ضُرٍّۢ ۖ وَءَاتَيْنَهُ أَهْلَهُۥ وَمِثْلَهُم مَّعَهُمْ رَحْمَةًۭ مِّنْ عِندِنَا وَذِكْرَىٰ لِلْعَبِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,21,' وَإِسْمَعِيلَ وَإِدْرِيسَ وَذَا ٱلْكِفْلِ ۖ كُلٌّۭ مِّنَ ٱلصَّبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,21,' وَأَدْخَلْنَهُمْ فِى رَحْمَتِنَآ ۖ إِنَّهُم مِّنَ ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,21,' وَذَا ٱلنُّونِ إِذ ذَّهَبَ مُغَضِبًۭا فَظَنَّ أَن لَّن نَّقْدِرَ عَلَيْهِ فَنَادَىٰ فِى ٱلظُّلُمَتِ أَن لَّآ إِلَهَ إِلَّآ أَنتَ سُبْحَنَكَ إِنِّى كُنتُ مِنَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,21,' فَٱسْتَجَبْنَا لَهُۥ وَنَجَّيْنَهُ مِنَ ٱلْغَمِّ ۚ وَكَذَلِكَ نُۨجِى ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,21,' وَزَكَرِيَّآ إِذْ نَادَىٰ رَبَّهُۥ رَبِّ لَا تَذَرْنِى فَرْدًۭا وَأَنتَ خَيْرُ ٱلْوَرِثِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,21,' فَٱسْتَجَبْنَا لَهُۥ وَوَهَبْنَا لَهُۥ يَحْيَىٰ وَأَصْلَحْنَا لَهُۥ زَوْجَهُۥٓ ۚ إِنَّهُمْ كَانُوا۟ يُسَرِعُونَ فِى ٱلْخَيْرَتِ وَيَدْعُونَنَا رَغَبًۭا وَرَهَبًۭا ۖ وَكَانُوا۟ لَنَا خَشِعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,21,' وَٱلَّتِىٓ أَحْصَنَتْ فَرْجَهَا فَنَفَخْنَا فِيهَا مِن رُّوحِنَا وَجَعَلْنَهَا وَٱبْنَهَآ ءَايَةًۭ لِّلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,21,' إِنَّ هَذِهِۦٓ أُمَّتُكُمْ أُمَّةًۭ وَحِدَةًۭ وَأَنَا۠ رَبُّكُمْ فَٱعْبُدُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,21,' وَتَقَطَّعُوٓا۟ أَمْرَهُم بَيْنَهُمْ ۖ كُلٌّ إِلَيْنَا رَجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,21,' فَمَن يَعْمَلْ مِنَ ٱلصَّلِحَتِ وَهُوَ مُؤْمِنٌۭ فَلَا كُفْرَانَ لِسَعْيِهِۦ وَإِنَّا لَهُۥ كَتِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,21,' وَحَرَمٌ عَلَىٰ قَرْيَةٍ أَهْلَكْنَهَآ أَنَّهُمْ لَا يَرْجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,21,' حَتَّىٰٓ إِذَا فُتِحَتْ يَأْجُوجُ وَمَأْجُوجُ وَهُم مِّن كُلِّ حَدَبٍۢ يَنسِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,21,' وَٱقْتَرَبَ ٱلْوَعْدُ ٱلْحَقُّ فَإِذَا هِىَ شَخِصَةٌ أَبْصَرُ ٱلَّذِينَ كَفَرُوا۟ يَوَيْلَنَا قَدْ كُنَّا فِى غَفْلَةٍۢ مِّنْ هَذَا بَلْ كُنَّا ظَلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,21,' إِنَّكُمْ وَمَا تَعْبُدُونَ مِن دُونِ ٱللَّهِ حَصَبُ جَهَنَّمَ أَنتُمْ لَهَا وَرِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,21,' لَوْ كَانَ هَٓؤُلَآءِ ءَالِهَةًۭ مَّا وَرَدُوهَا ۖ وَكُلٌّۭ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,1,21,' لَهُمْ فِيهَا زَفِيرٌۭ وَهُمْ فِيهَا لَا يَسْمَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,1,21,' إِنَّ ٱلَّذِينَ سَبَقَتْ لَهُم مِّنَّا ٱلْحُسْنَىٰٓ أُو۟لَٓئِكَ عَنْهَا مُبْعَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,1,21,' لَا يَسْمَعُونَ حَسِيسَهَا ۖ وَهُمْ فِى مَا ٱشْتَهَتْ أَنفُسُهُمْ خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,1,21,' لَا يَحْزُنُهُمُ ٱلْفَزَعُ ٱلْأَكْبَرُ وَتَتَلَقَّىٰهُمُ ٱلْمَلَٓئِكَةُ هَذَا يَوْمُكُمُ ٱلَّذِى كُنتُمْ تُوعَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,1,21,' يَوْمَ نَطْوِى ٱلسَّمَآءَ كَطَىِّ ٱلسِّجِلِّ لِلْكُتُبِ ۚ كَمَا بَدَأْنَآ أَوَّلَ خَلْقٍۢ نُّعِيدُهُۥ ۚ وَعْدًا عَلَيْنَآ ۚ إِنَّا كُنَّا فَعِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,1,21,' وَلَقَدْ كَتَبْنَا فِى ٱلزَّبُورِ مِنۢ بَعْدِ ٱلذِّكْرِ أَنَّ ٱلْأَرْضَ يَرِثُهَا عِبَادِىَ ٱلصَّلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,1,21,' إِنَّ فِى هَذَا لَبَلَغًۭا لِّقَوْمٍ عَبِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,1,21,' وَمَآ أَرْسَلْنَكَ إِلَّا رَحْمَةًۭ لِّلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,1,21,' قُلْ إِنَّمَا يُوحَىٰٓ إِلَىَّ أَنَّمَآ إِلَهُكُمْ إِلَهٌۭ وَحِدٌۭ ۖ فَهَلْ أَنتُم مُّسْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,1,21,' فَإِن تَوَلَّوْا۟ فَقُلْ ءَاذَنتُكُمْ عَلَىٰ سَوَآءٍۢ ۖ وَإِنْ أَدْرِىٓ أَقَرِيبٌ أَم بَعِيدٌۭ مَّا تُوعَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,1,21,' إِنَّهُۥ يَعْلَمُ ٱلْجَهْرَ مِنَ ٱلْقَوْلِ وَيَعْلَمُ مَا تَكْتُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,1,21,' وَإِنْ أَدْرِى لَعَلَّهُۥ فِتْنَةٌۭ لَّكُمْ وَمَتَعٌ إِلَىٰ حِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,1,21,' قَلَ رَبِّ ٱحْكُم بِٱلْحَقِّ ۗ وَرَبُّنَا ٱلرَّحْمَنُ ٱلْمُسْتَعَانُ عَلَىٰ مَا تَصِفُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(22,22,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,22,' يَٓأَيُّهَا ٱلنَّاسُ ٱتَّقُوا۟ رَبَّكُمْ ۚ إِنَّ زَلْزَلَةَ ٱلسَّاعَةِ شَىْءٌ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,22,' يَوْمَ تَرَوْنَهَا تَذْهَلُ كُلُّ مُرْضِعَةٍ عَمَّآ أَرْضَعَتْ وَتَضَعُ كُلُّ ذَاتِ حَمْلٍ حَمْلَهَا وَتَرَى ٱلنَّاسَ سُكَرَىٰ وَمَا هُم بِسُكَرَىٰ وَلَكِنَّ عَذَابَ ٱللَّهِ شَدِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,22,' وَمِنَ ٱلنَّاسِ مَن يُجَدِلُ فِى ٱللَّهِ بِغَيْرِ عِلْمٍۢ وَيَتَّبِعُ كُلَّ شَيْطَنٍۢ مَّرِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,22,' كُتِبَ عَلَيْهِ أَنَّهُۥ مَن تَوَلَّاهُ فَأَنَّهُۥ يُضِلُّهُۥ وَيَهْدِيهِ إِلَىٰ عَذَابِ ٱلسَّعِيرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,22,' يَٓأَيُّهَا ٱلنَّاسُ إِن كُنتُمْ فِى رَيْبٍۢ مِّنَ ٱلْبَعْثِ فَإِنَّا خَلَقْنَكُم مِّن تُرَابٍۢ ثُمَّ مِن نُّطْفَةٍۢ ثُمَّ مِنْ عَلَقَةٍۢ ثُمَّ مِن مُّضْغَةٍۢ مُّخَلَّقَةٍۢ وَغَيْرِ مُخَلَّقَةٍۢ لِّنُبَيِّنَ لَكُمْ ۚ وَنُقِرُّ فِى ٱلْأَرْحَامِ مَا نَشَآءُ إِلَىٰٓ أَجَلٍۢ مُّسَمًّۭى ثُمَّ نُخْرِجُكُمْ طِفْلًۭا ثُمَّ لِتَبْلُغُوٓا۟ أَشُدَّكُمْ ۖ وَمِنكُم مَّن يُتَوَفَّىٰ وَمِنكُم مَّن يُرَدُّ إِلَىٰٓ أَرْذَلِ ٱلْعُمُرِ لِكَيْلَا يَعْلَمَ مِنۢ بَعْدِ عِلْمٍۢ شَيْـًۭٔا ۚ وَتَرَى ٱلْأَرْضَ هَامِدَةًۭ فَإِذَآ أَنزَلْنَا عَلَيْهَا ٱلْمَآءَ ٱهْتَزَّتْ وَرَبَتْ وَأَنۢبَتَتْ مِن كُلِّ زَوْجٍۭ بَهِيجٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,22,' ذَلِكَ بِأَنَّ ٱللَّهَ هُوَ ٱلْحَقُّ وَأَنَّهُۥ يُحْىِ ٱلْمَوْتَىٰ وَأَنَّهُۥ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,22,' وَأَنَّ ٱلسَّاعَةَ ءَاتِيَةٌۭ لَّا رَيْبَ فِيهَا وَأَنَّ ٱللَّهَ يَبْعَثُ مَن فِى ٱلْقُبُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,22,' وَمِنَ ٱلنَّاسِ مَن يُجَدِلُ فِى ٱللَّهِ بِغَيْرِ عِلْمٍۢ وَلَا هُدًۭى وَلَا كِتَبٍۢ مُّنِيرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,22,' ثَانِىَ عِطْفِهِۦ لِيُضِلَّ عَن سَبِيلِ ٱللَّهِ ۖ لَهُۥ فِى ٱلدُّنْيَا خِزْىٌۭ ۖ وَنُذِيقُهُۥ يَوْمَ ٱلْقِيَمَةِ عَذَابَ ٱلْحَرِيقِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,22,' ذَلِكَ بِمَا قَدَّمَتْ يَدَاكَ وَأَنَّ ٱللَّهَ لَيْسَ بِظَلَّمٍۢ لِّلْعَبِيدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,22,' وَمِنَ ٱلنَّاسِ مَن يَعْبُدُ ٱللَّهَ عَلَىٰ حَرْفٍۢ ۖ فَإِنْ أَصَابَهُۥ خَيْرٌ ٱطْمَأَنَّ بِهِۦ ۖ وَإِنْ أَصَابَتْهُ فِتْنَةٌ ٱنقَلَبَ عَلَىٰ وَجْهِهِۦ خَسِرَ ٱلدُّنْيَا وَٱلْءَاخِرَةَ ۚ ذَلِكَ هُوَ ٱلْخُسْرَانُ ٱلْمُبِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,22,' يَدْعُوا۟ مِن دُونِ ٱللَّهِ مَا لَا يَضُرُّهُۥ وَمَا لَا يَنفَعُهُۥ ۚ ذَلِكَ هُوَ ٱلضَّلَلُ ٱلْبَعِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,22,' يَدْعُوا۟ لَمَن ضَرُّهُۥٓ أَقْرَبُ مِن نَّفْعِهِۦ ۚ لَبِئْسَ ٱلْمَوْلَىٰ وَلَبِئْسَ ٱلْعَشِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,22,' إِنَّ ٱللَّهَ يُدْخِلُ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ ۚ إِنَّ ٱللَّهَ يَفْعَلُ مَا يُرِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,22,' مَن كَانَ يَظُنُّ أَن لَّن يَنصُرَهُ ٱللَّهُ فِى ٱلدُّنْيَا وَٱلْءَاخِرَةِ فَلْيَمْدُدْ بِسَبَبٍ إِلَى ٱلسَّمَآءِ ثُمَّ لْيَقْطَعْ فَلْيَنظُرْ هَلْ يُذْهِبَنَّ كَيْدُهُۥ مَا يَغِيظُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,22,' وَكَذَلِكَ أَنزَلْنَهُ ءَايَتٍۭ بَيِّنَتٍۢ وَأَنَّ ٱللَّهَ يَهْدِى مَن يُرِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,22,' إِنَّ ٱلَّذِينَ ءَامَنُوا۟ وَٱلَّذِينَ هَادُوا۟ وَٱلصَّبِـِٔينَ وَٱلنَّصَرَىٰ وَٱلْمَجُوسَ وَٱلَّذِينَ أَشْرَكُوٓا۟ إِنَّ ٱللَّهَ يَفْصِلُ بَيْنَهُمْ يَوْمَ ٱلْقِيَمَةِ ۚ إِنَّ ٱللَّهَ عَلَىٰ كُلِّ شَىْءٍۢ شَهِيدٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,22,' أَلَمْ تَرَ أَنَّ ٱللَّهَ يَسْجُدُ لَهُۥ مَن فِى ٱلسَّمَوَتِ وَمَن فِى ٱلْأَرْضِ وَٱلشَّمْسُ وَٱلْقَمَرُ وَٱلنُّجُومُ وَٱلْجِبَالُ وَٱلشَّجَرُ وَٱلدَّوَآبُّ وَكَثِيرٌۭ مِّنَ ٱلنَّاسِ ۖ وَكَثِيرٌ حَقَّ عَلَيْهِ ٱلْعَذَابُ ۗ وَمَن يُهِنِ ٱللَّهُ فَمَا لَهُۥ مِن مُّكْرِمٍ ۚ إِنَّ ٱللَّهَ يَفْعَلُ مَا يَشَآءُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,22,' هَذَانِ خَصْمَانِ ٱخْتَصَمُوا۟ فِى رَبِّهِمْ ۖ فَٱلَّذِينَ كَفَرُوا۟ قُطِّعَتْ لَهُمْ ثِيَابٌۭ مِّن نَّارٍۢ يُصَبُّ مِن فَوْقِ رُءُوسِهِمُ ٱلْحَمِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,22,' يُصْهَرُ بِهِۦ مَا فِى بُطُونِهِمْ وَٱلْجُلُودُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,22,' وَلَهُم مَّقَمِعُ مِنْ حَدِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,22,' كُلَّمَآ أَرَادُوٓا۟ أَن يَخْرُجُوا۟ مِنْهَا مِنْ غَمٍّ أُعِيدُوا۟ فِيهَا وَذُوقُوا۟ عَذَابَ ٱلْحَرِيقِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,22,' إِنَّ ٱللَّهَ يُدْخِلُ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ يُحَلَّوْنَ فِيهَا مِنْ أَسَاوِرَ مِن ذَهَبٍۢ وَلُؤْلُؤًۭا ۖ وَلِبَاسُهُمْ فِيهَا حَرِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,22,' وَهُدُوٓا۟ إِلَى ٱلطَّيِّبِ مِنَ ٱلْقَوْلِ وَهُدُوٓا۟ إِلَىٰ صِرَطِ ٱلْحَمِيدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,22,' إِنَّ ٱلَّذِينَ كَفَرُوا۟ وَيَصُدُّونَ عَن سَبِيلِ ٱللَّهِ وَٱلْمَسْجِدِ ٱلْحَرَامِ ٱلَّذِى جَعَلْنَهُ لِلنَّاسِ سَوَآءً ٱلْعَكِفُ فِيهِ وَٱلْبَادِ ۚ وَمَن يُرِدْ فِيهِ بِإِلْحَادٍۭ بِظُلْمٍۢ نُّذِقْهُ مِنْ عَذَابٍ أَلِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,22,' وَإِذْ بَوَّأْنَا لِإِبْرَهِيمَ مَكَانَ ٱلْبَيْتِ أَن لَّا تُشْرِكْ بِى شَيْـًۭٔا وَطَهِّرْ بَيْتِىَ لِلطَّآئِفِينَ وَٱلْقَآئِمِينَ وَٱلرُّكَّعِ ٱلسُّجُودِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,22,' وَأَذِّن فِى ٱلنَّاسِ بِٱلْحَجِّ يَأْتُوكَ رِجَالًۭا وَعَلَىٰ كُلِّ ضَامِرٍۢ يَأْتِينَ مِن كُلِّ فَجٍّ عَمِيقٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,22,' لِّيَشْهَدُوا۟ مَنَفِعَ لَهُمْ وَيَذْكُرُوا۟ ٱسْمَ ٱللَّهِ فِىٓ أَيَّامٍۢ مَّعْلُومَتٍ عَلَىٰ مَا رَزَقَهُم مِّنۢ بَهِيمَةِ ٱلْأَنْعَمِ ۖ فَكُلُوا۟ مِنْهَا وَأَطْعِمُوا۟ ٱلْبَآئِسَ ٱلْفَقِيرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,22,' ثُمَّ لْيَقْضُوا۟ تَفَثَهُمْ وَلْيُوفُوا۟ نُذُورَهُمْ وَلْيَطَّوَّفُوا۟ بِٱلْبَيْتِ ٱلْعَتِيقِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,22,' ذَلِكَ وَمَن يُعَظِّمْ حُرُمَتِ ٱللَّهِ فَهُوَ خَيْرٌۭ لَّهُۥ عِندَ رَبِّهِۦ ۗ وَأُحِلَّتْ لَكُمُ ٱلْأَنْعَمُ إِلَّا مَا يُتْلَىٰ عَلَيْكُمْ ۖ فَٱجْتَنِبُوا۟ ٱلرِّجْسَ مِنَ ٱلْأَوْثَنِ وَٱجْتَنِبُوا۟ قَوْلَ ٱلزُّورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,22,' حُنَفَآءَ لِلَّهِ غَيْرَ مُشْرِكِينَ بِهِۦ ۚ وَمَن يُشْرِكْ بِٱللَّهِ فَكَأَنَّمَا خَرَّ مِنَ ٱلسَّمَآءِ فَتَخْطَفُهُ ٱلطَّيْرُ أَوْ تَهْوِى بِهِ ٱلرِّيحُ فِى مَكَانٍۢ سَحِيقٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,22,' ذَلِكَ وَمَن يُعَظِّمْ شَعَٓئِرَ ٱللَّهِ فَإِنَّهَا مِن تَقْوَى ٱلْقُلُوبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,22,' لَكُمْ فِيهَا مَنَفِعُ إِلَىٰٓ أَجَلٍۢ مُّسَمًّۭى ثُمَّ مَحِلُّهَآ إِلَى ٱلْبَيْتِ ٱلْعَتِيقِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,22,' وَلِكُلِّ أُمَّةٍۢ جَعَلْنَا مَنسَكًۭا لِّيَذْكُرُوا۟ ٱسْمَ ٱللَّهِ عَلَىٰ مَا رَزَقَهُم مِّنۢ بَهِيمَةِ ٱلْأَنْعَمِ ۗ فَإِلَهُكُمْ إِلَهٌۭ وَحِدٌۭ فَلَهُۥٓ أَسْلِمُوا۟ ۗ وَبَشِّرِ ٱلْمُخْبِتِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,22,' ٱلَّذِينَ إِذَا ذُكِرَ ٱللَّهُ وَجِلَتْ قُلُوبُهُمْ وَٱلصَّبِرِينَ عَلَىٰ مَآ أَصَابَهُمْ وَٱلْمُقِيمِى ٱلصَّلَوٰةِ وَمِمَّا رَزَقْنَهُمْ يُنفِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,22,' وَٱلْبُدْنَ جَعَلْنَهَا لَكُم مِّن شَعَٓئِرِ ٱللَّهِ لَكُمْ فِيهَا خَيْرٌۭ ۖ فَٱذْكُرُوا۟ ٱسْمَ ٱللَّهِ عَلَيْهَا صَوَآفَّ ۖ فَإِذَا وَجَبَتْ جُنُوبُهَا فَكُلُوا۟ مِنْهَا وَأَطْعِمُوا۟ ٱلْقَانِعَ وَٱلْمُعْتَرَّ ۚ كَذَلِكَ سَخَّرْنَهَا لَكُمْ لَعَلَّكُمْ تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,22,' لَن يَنَالَ ٱللَّهَ لُحُومُهَا وَلَا دِمَآؤُهَا وَلَكِن يَنَالُهُ ٱلتَّقْوَىٰ مِنكُمْ ۚ كَذَلِكَ سَخَّرَهَا لَكُمْ لِتُكَبِّرُوا۟ ٱللَّهَ عَلَىٰ مَا هَدَىٰكُمْ ۗ وَبَشِّرِ ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,22,' إِنَّ ٱللَّهَ يُدَفِعُ عَنِ ٱلَّذِينَ ءَامَنُوٓا۟ ۗ إِنَّ ٱللَّهَ لَا يُحِبُّ كُلَّ خَوَّانٍۢ كَفُورٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,22,' أُذِنَ لِلَّذِينَ يُقَتَلُونَ بِأَنَّهُمْ ظُلِمُوا۟ ۚ وَإِنَّ ٱللَّهَ عَلَىٰ نَصْرِهِمْ لَقَدِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,22,' ٱلَّذِينَ أُخْرِجُوا۟ مِن دِيَرِهِم بِغَيْرِ حَقٍّ إِلَّآ أَن يَقُولُوا۟ رَبُّنَا ٱللَّهُ ۗ وَلَوْلَا دَفْعُ ٱللَّهِ ٱلنَّاسَ بَعْضَهُم بِبَعْضٍۢ لَّهُدِّمَتْ صَوَمِعُ وَبِيَعٌۭ وَصَلَوَتٌۭ وَمَسَجِدُ يُذْكَرُ فِيهَا ٱسْمُ ٱللَّهِ كَثِيرًۭا ۗ وَلَيَنصُرَنَّ ٱللَّهُ مَن يَنصُرُهُۥٓ ۗ إِنَّ ٱللَّهَ لَقَوِىٌّ عَزِيزٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,22,' ٱلَّذِينَ إِن مَّكَّنَّهُمْ فِى ٱلْأَرْضِ أَقَامُوا۟ ٱلصَّلَوٰةَ وَءَاتَوُا۟ ٱلزَّكَوٰةَ وَأَمَرُوا۟ بِٱلْمَعْرُوفِ وَنَهَوْا۟ عَنِ ٱلْمُنكَرِ ۗ وَلِلَّهِ عَقِبَةُ ٱلْأُمُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,22,' وَإِن يُكَذِّبُوكَ فَقَدْ كَذَّبَتْ قَبْلَهُمْ قَوْمُ نُوحٍۢ وَعَادٌۭ وَثَمُودُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,22,' وَقَوْمُ إِبْرَهِيمَ وَقَوْمُ لُوطٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,22,' وَأَصْحَبُ مَدْيَنَ ۖ وَكُذِّبَ مُوسَىٰ فَأَمْلَيْتُ لِلْكَفِرِينَ ثُمَّ أَخَذْتُهُمْ ۖ فَكَيْفَ كَانَ نَكِيرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,22,' فَكَأَيِّن مِّن قَرْيَةٍ أَهْلَكْنَهَا وَهِىَ ظَالِمَةٌۭ فَهِىَ خَاوِيَةٌ عَلَىٰ عُرُوشِهَا وَبِئْرٍۢ مُّعَطَّلَةٍۢ وَقَصْرٍۢ مَّشِيدٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,22,' أَفَلَمْ يَسِيرُوا۟ فِى ٱلْأَرْضِ فَتَكُونَ لَهُمْ قُلُوبٌۭ يَعْقِلُونَ بِهَآ أَوْ ءَاذَانٌۭ يَسْمَعُونَ بِهَا ۖ فَإِنَّهَا لَا تَعْمَى ٱلْأَبْصَرُ وَلَكِن تَعْمَى ٱلْقُلُوبُ ٱلَّتِى فِى ٱلصُّدُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,22,' وَيَسْتَعْجِلُونَكَ بِٱلْعَذَابِ وَلَن يُخْلِفَ ٱللَّهُ وَعْدَهُۥ ۚ وَإِنَّ يَوْمًا عِندَ رَبِّكَ كَأَلْفِ سَنَةٍۢ مِّمَّا تَعُدُّونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,22,' وَكَأَيِّن مِّن قَرْيَةٍ أَمْلَيْتُ لَهَا وَهِىَ ظَالِمَةٌۭ ثُمَّ أَخَذْتُهَا وَإِلَىَّ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,22,' قُلْ يَٓأَيُّهَا ٱلنَّاسُ إِنَّمَآ أَنَا۠ لَكُمْ نَذِيرٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,22,' فَٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ لَهُم مَّغْفِرَةٌۭ وَرِزْقٌۭ كَرِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,22,' وَٱلَّذِينَ سَعَوْا۟ فِىٓ ءَايَتِنَا مُعَجِزِينَ أُو۟لَٓئِكَ أَصْحَبُ ٱلْجَحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,22,' وَمَآ أَرْسَلْنَا مِن قَبْلِكَ مِن رَّسُولٍۢ وَلَا نَبِىٍّ إِلَّآ إِذَا تَمَنَّىٰٓ أَلْقَى ٱلشَّيْطَنُ فِىٓ أُمْنِيَّتِهِۦ فَيَنسَخُ ٱللَّهُ مَا يُلْقِى ٱلشَّيْطَنُ ثُمَّ يُحْكِمُ ٱللَّهُ ءَايَتِهِۦ ۗ وَٱللَّهُ عَلِيمٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,22,' لِّيَجْعَلَ مَا يُلْقِى ٱلشَّيْطَنُ فِتْنَةًۭ لِّلَّذِينَ فِى قُلُوبِهِم مَّرَضٌۭ وَٱلْقَاسِيَةِ قُلُوبُهُمْ ۗ وَإِنَّ ٱلظَّلِمِينَ لَفِى شِقَاقٍۭ بَعِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,22,' وَلِيَعْلَمَ ٱلَّذِينَ أُوتُوا۟ ٱلْعِلْمَ أَنَّهُ ٱلْحَقُّ مِن رَّبِّكَ فَيُؤْمِنُوا۟ بِهِۦ فَتُخْبِتَ لَهُۥ قُلُوبُهُمْ ۗ وَإِنَّ ٱللَّهَ لَهَادِ ٱلَّذِينَ ءَامَنُوٓا۟ إِلَىٰ صِرَطٍۢ مُّسْتَقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,22,' وَلَا يَزَالُ ٱلَّذِينَ كَفَرُوا۟ فِى مِرْيَةٍۢ مِّنْهُ حَتَّىٰ تَأْتِيَهُمُ ٱلسَّاعَةُ بَغْتَةً أَوْ يَأْتِيَهُمْ عَذَابُ يَوْمٍ عَقِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,22,' ٱلْمُلْكُ يَوْمَئِذٍۢ لِّلَّهِ يَحْكُمُ بَيْنَهُمْ ۚ فَٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ فِى جَنَّتِ ٱلنَّعِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,22,' وَٱلَّذِينَ كَفَرُوا۟ وَكَذَّبُوا۟ بِـَٔايَتِنَا فَأُو۟لَٓئِكَ لَهُمْ عَذَابٌۭ مُّهِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,22,' وَٱلَّذِينَ هَاجَرُوا۟ فِى سَبِيلِ ٱللَّهِ ثُمَّ قُتِلُوٓا۟ أَوْ مَاتُوا۟ لَيَرْزُقَنَّهُمُ ٱللَّهُ رِزْقًا حَسَنًۭا ۚ وَإِنَّ ٱللَّهَ لَهُوَ خَيْرُ ٱلرَّزِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,22,' لَيُدْخِلَنَّهُم مُّدْخَلًۭا يَرْضَوْنَهُۥ ۗ وَإِنَّ ٱللَّهَ لَعَلِيمٌ حَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,22,' ذَلِكَ وَمَنْ عَاقَبَ بِمِثْلِ مَا عُوقِبَ بِهِۦ ثُمَّ بُغِىَ عَلَيْهِ لَيَنصُرَنَّهُ ٱللَّهُ ۗ إِنَّ ٱللَّهَ لَعَفُوٌّ غَفُورٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,22,' ذَلِكَ بِأَنَّ ٱللَّهَ يُولِجُ ٱلَّيْلَ فِى ٱلنَّهَارِ وَيُولِجُ ٱلنَّهَارَ فِى ٱلَّيْلِ وَأَنَّ ٱللَّهَ سَمِيعٌۢ بَصِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,22,' ذَلِكَ بِأَنَّ ٱللَّهَ هُوَ ٱلْحَقُّ وَأَنَّ مَا يَدْعُونَ مِن دُونِهِۦ هُوَ ٱلْبَطِلُ وَأَنَّ ٱللَّهَ هُوَ ٱلْعَلِىُّ ٱلْكَبِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,22,' أَلَمْ تَرَ أَنَّ ٱللَّهَ أَنزَلَ مِنَ ٱلسَّمَآءِ مَآءًۭ فَتُصْبِحُ ٱلْأَرْضُ مُخْضَرَّةً ۗ إِنَّ ٱللَّهَ لَطِيفٌ خَبِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,22,' لَّهُۥ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۗ وَإِنَّ ٱللَّهَ لَهُوَ ٱلْغَنِىُّ ٱلْحَمِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,22,' أَلَمْ تَرَ أَنَّ ٱللَّهَ سَخَّرَ لَكُم مَّا فِى ٱلْأَرْضِ وَٱلْفُلْكَ تَجْرِى فِى ٱلْبَحْرِ بِأَمْرِهِۦ وَيُمْسِكُ ٱلسَّمَآءَ أَن تَقَعَ عَلَى ٱلْأَرْضِ إِلَّا بِإِذْنِهِۦٓ ۗ إِنَّ ٱللَّهَ بِٱلنَّاسِ لَرَءُوفٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,22,' وَهُوَ ٱلَّذِىٓ أَحْيَاكُمْ ثُمَّ يُمِيتُكُمْ ثُمَّ يُحْيِيكُمْ ۗ إِنَّ ٱلْإِنسَنَ لَكَفُورٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,22,' لِّكُلِّ أُمَّةٍۢ جَعَلْنَا مَنسَكًا هُمْ نَاسِكُوهُ ۖ فَلَا يُنَزِعُنَّكَ فِى ٱلْأَمْرِ ۚ وَٱدْعُ إِلَىٰ رَبِّكَ ۖ إِنَّكَ لَعَلَىٰ هُدًۭى مُّسْتَقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,22,' وَإِن جَدَلُوكَ فَقُلِ ٱللَّهُ أَعْلَمُ بِمَا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,22,' ٱللَّهُ يَحْكُمُ بَيْنَكُمْ يَوْمَ ٱلْقِيَمَةِ فِيمَا كُنتُمْ فِيهِ تَخْتَلِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,22,' أَلَمْ تَعْلَمْ أَنَّ ٱللَّهَ يَعْلَمُ مَا فِى ٱلسَّمَآءِ وَٱلْأَرْضِ ۗ إِنَّ ذَلِكَ فِى كِتَبٍ ۚ إِنَّ ذَلِكَ عَلَى ٱللَّهِ يَسِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,22,' وَيَعْبُدُونَ مِن دُونِ ٱللَّهِ مَا لَمْ يُنَزِّلْ بِهِۦ سُلْطَنًۭا وَمَا لَيْسَ لَهُم بِهِۦ عِلْمٌۭ ۗ وَمَا لِلظَّلِمِينَ مِن نَّصِيرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,22,' وَإِذَا تُتْلَىٰ عَلَيْهِمْ ءَايَتُنَا بَيِّنَتٍۢ تَعْرِفُ فِى وُجُوهِ ٱلَّذِينَ كَفَرُوا۟ ٱلْمُنكَرَ ۖ يَكَادُونَ يَسْطُونَ بِٱلَّذِينَ يَتْلُونَ عَلَيْهِمْ ءَايَتِنَا ۗ قُلْ أَفَأُنَبِّئُكُم بِشَرٍّۢ مِّن ذَلِكُمُ ۗ ٱلنَّارُ وَعَدَهَا ٱللَّهُ ٱلَّذِينَ كَفَرُوا۟ ۖ وَبِئْسَ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,22,' يَٓأَيُّهَا ٱلنَّاسُ ضُرِبَ مَثَلٌۭ فَٱسْتَمِعُوا۟ لَهُۥٓ ۚ إِنَّ ٱلَّذِينَ تَدْعُونَ مِن دُونِ ٱللَّهِ لَن يَخْلُقُوا۟ ذُبَابًۭا وَلَوِ ٱجْتَمَعُوا۟ لَهُۥ ۖ وَإِن يَسْلُبْهُمُ ٱلذُّبَابُ شَيْـًۭٔا لَّا يَسْتَنقِذُوهُ مِنْهُ ۚ ضَعُفَ ٱلطَّالِبُ وَٱلْمَطْلُوبُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,22,' مَا قَدَرُوا۟ ٱللَّهَ حَقَّ قَدْرِهِۦٓ ۗ إِنَّ ٱللَّهَ لَقَوِىٌّ عَزِيزٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,22,' ٱللَّهُ يَصْطَفِى مِنَ ٱلْمَلَٓئِكَةِ رُسُلًۭا وَمِنَ ٱلنَّاسِ ۚ إِنَّ ٱللَّهَ سَمِيعٌۢ بَصِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,22,' يَعْلَمُ مَا بَيْنَ أَيْدِيهِمْ وَمَا خَلْفَهُمْ ۗ وَإِلَى ٱللَّهِ تُرْجَعُ ٱلْأُمُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,22,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ ٱرْكَعُوا۟ وَٱسْجُدُوا۟ وَٱعْبُدُوا۟ رَبَّكُمْ وَٱفْعَلُوا۟ ٱلْخَيْرَ لَعَلَّكُمْ تُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,22,' وَجَهِدُوا۟ فِى ٱللَّهِ حَقَّ جِهَادِهِۦ ۚ هُوَ ٱجْتَبَىٰكُمْ وَمَا جَعَلَ عَلَيْكُمْ فِى ٱلدِّينِ مِنْ حَرَجٍۢ ۚ مِّلَّةَ أَبِيكُمْ إِبْرَهِيمَ ۚ هُوَ سَمَّىٰكُمُ ٱلْمُسْلِمِينَ مِن قَبْلُ وَفِى هَذَا لِيَكُونَ ٱلرَّسُولُ شَهِيدًا عَلَيْكُمْ وَتَكُونُوا۟ شُهَدَآءَ عَلَى ٱلنَّاسِ ۚ فَأَقِيمُوا۟ ٱلصَّلَوٰةَ وَءَاتُوا۟ ٱلزَّكَوٰةَ وَٱعْتَصِمُوا۟ بِٱللَّهِ هُوَ مَوْلَىٰكُمْ ۖ فَنِعْمَ ٱلْمَوْلَىٰ وَنِعْمَ ٱلنَّصِيرُ');
+INSERT INTO chapters (id, number, quran_id) VALUES(23,23,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,23,' قَدْ أَفْلَحَ ٱلْمُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,23,' ٱلَّذِينَ هُمْ فِى صَلَاتِهِمْ خَشِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,23,' وَٱلَّذِينَ هُمْ عَنِ ٱللَّغْوِ مُعْرِضُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,23,' وَٱلَّذِينَ هُمْ لِلزَّكَوٰةِ فَعِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,23,' وَٱلَّذِينَ هُمْ لِفُرُوجِهِمْ حَفِظُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,23,' إِلَّا عَلَىٰٓ أَزْوَجِهِمْ أَوْ مَا مَلَكَتْ أَيْمَنُهُمْ فَإِنَّهُمْ غَيْرُ مَلُومِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,23,' فَمَنِ ٱبْتَغَىٰ وَرَآءَ ذَلِكَ فَأُو۟لَٓئِكَ هُمُ ٱلْعَادُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,23,' وَٱلَّذِينَ هُمْ لِأَمَنَتِهِمْ وَعَهْدِهِمْ رَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,23,' وَٱلَّذِينَ هُمْ عَلَىٰ صَلَوَتِهِمْ يُحَافِظُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,23,' أُو۟لَٓئِكَ هُمُ ٱلْوَرِثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,23,' ٱلَّذِينَ يَرِثُونَ ٱلْفِرْدَوْسَ هُمْ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,23,' وَلَقَدْ خَلَقْنَا ٱلْإِنسَنَ مِن سُلَلَةٍۢ مِّن طِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,23,' ثُمَّ جَعَلْنَهُ نُطْفَةًۭ فِى قَرَارٍۢ مَّكِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,23,' ثُمَّ خَلَقْنَا ٱلنُّطْفَةَ عَلَقَةًۭ فَخَلَقْنَا ٱلْعَلَقَةَ مُضْغَةًۭ فَخَلَقْنَا ٱلْمُضْغَةَ عِظَمًۭا فَكَسَوْنَا ٱلْعِظَمَ لَحْمًۭا ثُمَّ أَنشَأْنَهُ خَلْقًا ءَاخَرَ ۚ فَتَبَارَكَ ٱللَّهُ أَحْسَنُ ٱلْخَلِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,23,' ثُمَّ إِنَّكُم بَعْدَ ذَلِكَ لَمَيِّتُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,23,' ثُمَّ إِنَّكُمْ يَوْمَ ٱلْقِيَمَةِ تُبْعَثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,23,' وَلَقَدْ خَلَقْنَا فَوْقَكُمْ سَبْعَ طَرَآئِقَ وَمَا كُنَّا عَنِ ٱلْخَلْقِ غَفِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,23,' وَأَنزَلْنَا مِنَ ٱلسَّمَآءِ مَآءًۢ بِقَدَرٍۢ فَأَسْكَنَّهُ فِى ٱلْأَرْضِ ۖ وَإِنَّا عَلَىٰ ذَهَابٍۭ بِهِۦ لَقَدِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,23,' فَأَنشَأْنَا لَكُم بِهِۦ جَنَّتٍۢ مِّن نَّخِيلٍۢ وَأَعْنَبٍۢ لَّكُمْ فِيهَا فَوَكِهُ كَثِيرَةٌۭ وَمِنْهَا تَأْكُلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,23,' وَشَجَرَةًۭ تَخْرُجُ مِن طُورِ سَيْنَآءَ تَنۢبُتُ بِٱلدُّهْنِ وَصِبْغٍۢ لِّلْءَاكِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,23,' وَإِنَّ لَكُمْ فِى ٱلْأَنْعَمِ لَعِبْرَةًۭ ۖ نُّسْقِيكُم مِّمَّا فِى بُطُونِهَا وَلَكُمْ فِيهَا مَنَفِعُ كَثِيرَةٌۭ وَمِنْهَا تَأْكُلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,23,' وَعَلَيْهَا وَعَلَى ٱلْفُلْكِ تُحْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,23,' وَلَقَدْ أَرْسَلْنَا نُوحًا إِلَىٰ قَوْمِهِۦ فَقَالَ يَقَوْمِ ٱعْبُدُوا۟ ٱللَّهَ مَا لَكُم مِّنْ إِلَهٍ غَيْرُهُۥٓ ۖ أَفَلَا تَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,23,' فَقَالَ ٱلْمَلَؤُا۟ ٱلَّذِينَ كَفَرُوا۟ مِن قَوْمِهِۦ مَا هَذَآ إِلَّا بَشَرٌۭ مِّثْلُكُمْ يُرِيدُ أَن يَتَفَضَّلَ عَلَيْكُمْ وَلَوْ شَآءَ ٱللَّهُ لَأَنزَلَ مَلَٓئِكَةًۭ مَّا سَمِعْنَا بِهَذَا فِىٓ ءَابَآئِنَا ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,23,' إِنْ هُوَ إِلَّا رَجُلٌۢ بِهِۦ جِنَّةٌۭ فَتَرَبَّصُوا۟ بِهِۦ حَتَّىٰ حِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,23,' قَالَ رَبِّ ٱنصُرْنِى بِمَا كَذَّبُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,23,' فَأَوْحَيْنَآ إِلَيْهِ أَنِ ٱصْنَعِ ٱلْفُلْكَ بِأَعْيُنِنَا وَوَحْيِنَا فَإِذَا جَآءَ أَمْرُنَا وَفَارَ ٱلتَّنُّورُ ۙ فَٱسْلُكْ فِيهَا مِن كُلٍّۢ زَوْجَيْنِ ٱثْنَيْنِ وَأَهْلَكَ إِلَّا مَن سَبَقَ عَلَيْهِ ٱلْقَوْلُ مِنْهُمْ ۖ وَلَا تُخَطِبْنِى فِى ٱلَّذِينَ ظَلَمُوٓا۟ ۖ إِنَّهُم مُّغْرَقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,23,' فَإِذَا ٱسْتَوَيْتَ أَنتَ وَمَن مَّعَكَ عَلَى ٱلْفُلْكِ فَقُلِ ٱلْحَمْدُ لِلَّهِ ٱلَّذِى نَجَّىٰنَا مِنَ ٱلْقَوْمِ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,23,' وَقُل رَّبِّ أَنزِلْنِى مُنزَلًۭا مُّبَارَكًۭا وَأَنتَ خَيْرُ ٱلْمُنزِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,23,' إِنَّ فِى ذَلِكَ لَءَايَتٍۢ وَإِن كُنَّا لَمُبْتَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,23,' ثُمَّ أَنشَأْنَا مِنۢ بَعْدِهِمْ قَرْنًا ءَاخَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,23,' فَأَرْسَلْنَا فِيهِمْ رَسُولًۭا مِّنْهُمْ أَنِ ٱعْبُدُوا۟ ٱللَّهَ مَا لَكُم مِّنْ إِلَهٍ غَيْرُهُۥٓ ۖ أَفَلَا تَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,23,' وَقَالَ ٱلْمَلَأُ مِن قَوْمِهِ ٱلَّذِينَ كَفَرُوا۟ وَكَذَّبُوا۟ بِلِقَآءِ ٱلْءَاخِرَةِ وَأَتْرَفْنَهُمْ فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا مَا هَذَآ إِلَّا بَشَرٌۭ مِّثْلُكُمْ يَأْكُلُ مِمَّا تَأْكُلُونَ مِنْهُ وَيَشْرَبُ مِمَّا تَشْرَبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,23,' وَلَىِٕنْ أَطَعْتُم بَشَرًۭا مِّثْلَكُمْ إِنَّكُمْ إِذًۭا لَّخَسِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,23,' أَيَعِدُكُمْ أَنَّكُمْ إِذَا مِتُّمْ وَكُنتُمْ تُرَابًۭا وَعِظَمًا أَنَّكُم مُّخْرَجُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,23,' هَيْهَاتَ هَيْهَاتَ لِمَا تُوعَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,23,' إِنْ هِىَ إِلَّا حَيَاتُنَا ٱلدُّنْيَا نَمُوتُ وَنَحْيَا وَمَا نَحْنُ بِمَبْعُوثِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,23,' إِنْ هُوَ إِلَّا رَجُلٌ ٱفْتَرَىٰ عَلَى ٱللَّهِ كَذِبًۭا وَمَا نَحْنُ لَهُۥ بِمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,23,' قَالَ رَبِّ ٱنصُرْنِى بِمَا كَذَّبُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,23,' قَالَ عَمَّا قَلِيلٍۢ لَّيُصْبِحُنَّ نَدِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,23,' فَأَخَذَتْهُمُ ٱلصَّيْحَةُ بِٱلْحَقِّ فَجَعَلْنَهُمْ غُثَآءًۭ ۚ فَبُعْدًۭا لِّلْقَوْمِ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,23,' ثُمَّ أَنشَأْنَا مِنۢ بَعْدِهِمْ قُرُونًا ءَاخَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,23,' مَا تَسْبِقُ مِنْ أُمَّةٍ أَجَلَهَا وَمَا يَسْتَـْٔخِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,23,' ثُمَّ أَرْسَلْنَا رُسُلَنَا تَتْرَا ۖ كُلَّ مَا جَآءَ أُمَّةًۭ رَّسُولُهَا كَذَّبُوهُ ۚ فَأَتْبَعْنَا بَعْضَهُم بَعْضًۭا وَجَعَلْنَهُمْ أَحَادِيثَ ۚ فَبُعْدًۭا لِّقَوْمٍۢ لَّا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,23,' ثُمَّ أَرْسَلْنَا مُوسَىٰ وَأَخَاهُ هَرُونَ بِـَٔايَتِنَا وَسُلْطَنٍۢ مُّبِينٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,23,' إِلَىٰ فِرْعَوْنَ وَمَلَإِي۟هِۦ فَٱسْتَكْبَرُوا۟ وَكَانُوا۟ قَوْمًا عَالِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,23,' فَقَالُوٓا۟ أَنُؤْمِنُ لِبَشَرَيْنِ مِثْلِنَا وَقَوْمُهُمَا لَنَا عَبِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,23,' فَكَذَّبُوهُمَا فَكَانُوا۟ مِنَ ٱلْمُهْلَكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,23,' وَلَقَدْ ءَاتَيْنَا مُوسَى ٱلْكِتَبَ لَعَلَّهُمْ يَهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,23,' وَجَعَلْنَا ٱبْنَ مَرْيَمَ وَأُمَّهُۥٓ ءَايَةًۭ وَءَاوَيْنَهُمَآ إِلَىٰ رَبْوَةٍۢ ذَاتِ قَرَارٍۢ وَمَعِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,23,' يَٓأَيُّهَا ٱلرُّسُلُ كُلُوا۟ مِنَ ٱلطَّيِّبَتِ وَٱعْمَلُوا۟ صَلِحًا ۖ إِنِّى بِمَا تَعْمَلُونَ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,23,' وَإِنَّ هَذِهِۦٓ أُمَّتُكُمْ أُمَّةًۭ وَحِدَةًۭ وَأَنَا۠ رَبُّكُمْ فَٱتَّقُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,23,' فَتَقَطَّعُوٓا۟ أَمْرَهُم بَيْنَهُمْ زُبُرًۭا ۖ كُلُّ حِزْبٍۭ بِمَا لَدَيْهِمْ فَرِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,23,' فَذَرْهُمْ فِى غَمْرَتِهِمْ حَتَّىٰ حِينٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,23,' أَيَحْسَبُونَ أَنَّمَا نُمِدُّهُم بِهِۦ مِن مَّالٍۢ وَبَنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,23,' نُسَارِعُ لَهُمْ فِى ٱلْخَيْرَتِ ۚ بَل لَّا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,23,' إِنَّ ٱلَّذِينَ هُم مِّنْ خَشْيَةِ رَبِّهِم مُّشْفِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,23,' وَٱلَّذِينَ هُم بِـَٔايَتِ رَبِّهِمْ يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,23,' وَٱلَّذِينَ هُم بِرَبِّهِمْ لَا يُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,23,' وَٱلَّذِينَ يُؤْتُونَ مَآ ءَاتَوا۟ وَّقُلُوبُهُمْ وَجِلَةٌ أَنَّهُمْ إِلَىٰ رَبِّهِمْ رَجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,23,' أُو۟لَٓئِكَ يُسَرِعُونَ فِى ٱلْخَيْرَتِ وَهُمْ لَهَا سَبِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,23,' وَلَا نُكَلِّفُ نَفْسًا إِلَّا وُسْعَهَا ۖ وَلَدَيْنَا كِتَبٌۭ يَنطِقُ بِٱلْحَقِّ ۚ وَهُمْ لَا يُظْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,23,' بَلْ قُلُوبُهُمْ فِى غَمْرَةٍۢ مِّنْ هَذَا وَلَهُمْ أَعْمَلٌۭ مِّن دُونِ ذَلِكَ هُمْ لَهَا عَمِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,23,' حَتَّىٰٓ إِذَآ أَخَذْنَا مُتْرَفِيهِم بِٱلْعَذَابِ إِذَا هُمْ يَجْـَٔرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,23,' لَا تَجْـَٔرُوا۟ ٱلْيَوْمَ ۖ إِنَّكُم مِّنَّا لَا تُنصَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,23,' قَدْ كَانَتْ ءَايَتِى تُتْلَىٰ عَلَيْكُمْ فَكُنتُمْ عَلَىٰٓ أَعْقَبِكُمْ تَنكِصُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,23,' مُسْتَكْبِرِينَ بِهِۦ سَمِرًۭا تَهْجُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,23,' أَفَلَمْ يَدَّبَّرُوا۟ ٱلْقَوْلَ أَمْ جَآءَهُم مَّا لَمْ يَأْتِ ءَابَآءَهُمُ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,23,' أَمْ لَمْ يَعْرِفُوا۟ رَسُولَهُمْ فَهُمْ لَهُۥ مُنكِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,23,' أَمْ يَقُولُونَ بِهِۦ جِنَّةٌۢ ۚ بَلْ جَآءَهُم بِٱلْحَقِّ وَأَكْثَرُهُمْ لِلْحَقِّ كَرِهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,23,' وَلَوِ ٱتَّبَعَ ٱلْحَقُّ أَهْوَآءَهُمْ لَفَسَدَتِ ٱلسَّمَوَتُ وَٱلْأَرْضُ وَمَن فِيهِنَّ ۚ بَلْ أَتَيْنَهُم بِذِكْرِهِمْ فَهُمْ عَن ذِكْرِهِم مُّعْرِضُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,23,' أَمْ تَسْـَٔلُهُمْ خَرْجًۭا فَخَرَاجُ رَبِّكَ خَيْرٌۭ ۖ وَهُوَ خَيْرُ ٱلرَّزِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,23,' وَإِنَّكَ لَتَدْعُوهُمْ إِلَىٰ صِرَطٍۢ مُّسْتَقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,23,' وَإِنَّ ٱلَّذِينَ لَا يُؤْمِنُونَ بِٱلْءَاخِرَةِ عَنِ ٱلصِّرَطِ لَنَكِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,23,' وَلَوْ رَحِمْنَهُمْ وَكَشَفْنَا مَا بِهِم مِّن ضُرٍّۢ لَّلَجُّوا۟ فِى طُغْيَنِهِمْ يَعْمَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,23,' وَلَقَدْ أَخَذْنَهُم بِٱلْعَذَابِ فَمَا ٱسْتَكَانُوا۟ لِرَبِّهِمْ وَمَا يَتَضَرَّعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,23,' حَتَّىٰٓ إِذَا فَتَحْنَا عَلَيْهِم بَابًۭا ذَا عَذَابٍۢ شَدِيدٍ إِذَا هُمْ فِيهِ مُبْلِسُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,23,' وَهُوَ ٱلَّذِىٓ أَنشَأَ لَكُمُ ٱلسَّمْعَ وَٱلْأَبْصَرَ وَٱلْأَفْـِٔدَةَ ۚ قَلِيلًۭا مَّا تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,23,' وَهُوَ ٱلَّذِى ذَرَأَكُمْ فِى ٱلْأَرْضِ وَإِلَيْهِ تُحْشَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,23,' وَهُوَ ٱلَّذِى يُحْىِۦ وَيُمِيتُ وَلَهُ ٱخْتِلَفُ ٱلَّيْلِ وَٱلنَّهَارِ ۚ أَفَلَا تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,23,' بَلْ قَالُوا۟ مِثْلَ مَا قَالَ ٱلْأَوَّلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,23,' قَالُوٓا۟ أَءِذَا مِتْنَا وَكُنَّا تُرَابًۭا وَعِظَمًا أَءِنَّا لَمَبْعُوثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,23,' لَقَدْ وُعِدْنَا نَحْنُ وَءَابَآؤُنَا هَذَا مِن قَبْلُ إِنْ هَذَآ إِلَّآ أَسَطِيرُ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,23,' قُل لِّمَنِ ٱلْأَرْضُ وَمَن فِيهَآ إِن كُنتُمْ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,23,' سَيَقُولُونَ لِلَّهِ ۚ قُلْ أَفَلَا تَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,23,' قُلْ مَن رَّبُّ ٱلسَّمَوَتِ ٱلسَّبْعِ وَرَبُّ ٱلْعَرْشِ ٱلْعَظِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,23,' سَيَقُولُونَ لِلَّهِ ۚ قُلْ أَفَلَا تَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,23,' قُلْ مَنۢ بِيَدِهِۦ مَلَكُوتُ كُلِّ شَىْءٍۢ وَهُوَ يُجِيرُ وَلَا يُجَارُ عَلَيْهِ إِن كُنتُمْ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,23,' سَيَقُولُونَ لِلَّهِ ۚ قُلْ فَأَنَّىٰ تُسْحَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,23,' بَلْ أَتَيْنَهُم بِٱلْحَقِّ وَإِنَّهُمْ لَكَذِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,23,' مَا ٱتَّخَذَ ٱللَّهُ مِن وَلَدٍۢ وَمَا كَانَ مَعَهُۥ مِنْ إِلَهٍ ۚ إِذًۭا لَّذَهَبَ كُلُّ إِلَهٍۭ بِمَا خَلَقَ وَلَعَلَا بَعْضُهُمْ عَلَىٰ بَعْضٍۢ ۚ سُبْحَنَ ٱللَّهِ عَمَّا يَصِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,23,' عَلِمِ ٱلْغَيْبِ وَٱلشَّهَدَةِ فَتَعَلَىٰ عَمَّا يُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,23,' قُل رَّبِّ إِمَّا تُرِيَنِّى مَا يُوعَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,23,' رَبِّ فَلَا تَجْعَلْنِى فِى ٱلْقَوْمِ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,23,' وَإِنَّا عَلَىٰٓ أَن نُّرِيَكَ مَا نَعِدُهُمْ لَقَدِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,23,' ٱدْفَعْ بِٱلَّتِى هِىَ أَحْسَنُ ٱلسَّيِّئَةَ ۚ نَحْنُ أَعْلَمُ بِمَا يَصِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,23,' وَقُل رَّبِّ أَعُوذُ بِكَ مِنْ هَمَزَتِ ٱلشَّيَطِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,23,' وَأَعُوذُ بِكَ رَبِّ أَن يَحْضُرُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,23,' حَتَّىٰٓ إِذَا جَآءَ أَحَدَهُمُ ٱلْمَوْتُ قَالَ رَبِّ ٱرْجِعُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,1,23,' لَعَلِّىٓ أَعْمَلُ صَلِحًۭا فِيمَا تَرَكْتُ ۚ كَلَّآ ۚ إِنَّهَا كَلِمَةٌ هُوَ قَآئِلُهَا ۖ وَمِن وَرَآئِهِم بَرْزَخٌ إِلَىٰ يَوْمِ يُبْعَثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,1,23,' فَإِذَا نُفِخَ فِى ٱلصُّورِ فَلَآ أَنسَابَ بَيْنَهُمْ يَوْمَئِذٍۢ وَلَا يَتَسَآءَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,1,23,' فَمَن ثَقُلَتْ مَوَزِينُهُۥ فَأُو۟لَٓئِكَ هُمُ ٱلْمُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,1,23,' وَمَنْ خَفَّتْ مَوَزِينُهُۥ فَأُو۟لَٓئِكَ ٱلَّذِينَ خَسِرُوٓا۟ أَنفُسَهُمْ فِى جَهَنَّمَ خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,1,23,' تَلْفَحُ وُجُوهَهُمُ ٱلنَّارُ وَهُمْ فِيهَا كَلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,1,23,' أَلَمْ تَكُنْ ءَايَتِى تُتْلَىٰ عَلَيْكُمْ فَكُنتُم بِهَا تُكَذِّبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,1,23,' قَالُوا۟ رَبَّنَا غَلَبَتْ عَلَيْنَا شِقْوَتُنَا وَكُنَّا قَوْمًۭا ضَآلِّينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,1,23,' رَبَّنَآ أَخْرِجْنَا مِنْهَا فَإِنْ عُدْنَا فَإِنَّا ظَلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,1,23,' قَالَ ٱخْسَـُٔوا۟ فِيهَا وَلَا تُكَلِّمُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,1,23,' إِنَّهُۥ كَانَ فَرِيقٌۭ مِّنْ عِبَادِى يَقُولُونَ رَبَّنَآ ءَامَنَّا فَٱغْفِرْ لَنَا وَٱرْحَمْنَا وَأَنتَ خَيْرُ ٱلرَّحِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,1,23,' فَٱتَّخَذْتُمُوهُمْ سِخْرِيًّا حَتَّىٰٓ أَنسَوْكُمْ ذِكْرِى وَكُنتُم مِّنْهُمْ تَضْحَكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,1,23,' إِنِّى جَزَيْتُهُمُ ٱلْيَوْمَ بِمَا صَبَرُوٓا۟ أَنَّهُمْ هُمُ ٱلْفَآئِزُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,1,23,' قَلَ كَمْ لَبِثْتُمْ فِى ٱلْأَرْضِ عَدَدَ سِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,1,23,' قَالُوا۟ لَبِثْنَا يَوْمًا أَوْ بَعْضَ يَوْمٍۢ فَسْـَٔلِ ٱلْعَآدِّينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,1,23,' قَلَ إِن لَّبِثْتُمْ إِلَّا قَلِيلًۭا ۖ لَّوْ أَنَّكُمْ كُنتُمْ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,1,23,' أَفَحَسِبْتُمْ أَنَّمَا خَلَقْنَكُمْ عَبَثًۭا وَأَنَّكُمْ إِلَيْنَا لَا تُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,1,23,' فَتَعَلَى ٱللَّهُ ٱلْمَلِكُ ٱلْحَقُّ ۖ لَآ إِلَهَ إِلَّا هُوَ رَبُّ ٱلْعَرْشِ ٱلْكَرِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,1,23,' وَمَن يَدْعُ مَعَ ٱللَّهِ إِلَهًا ءَاخَرَ لَا بُرْهَنَ لَهُۥ بِهِۦ فَإِنَّمَا حِسَابُهُۥ عِندَ رَبِّهِۦٓ ۚ إِنَّهُۥ لَا يُفْلِحُ ٱلْكَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,1,23,' وَقُل رَّبِّ ٱغْفِرْ وَٱرْحَمْ وَأَنتَ خَيْرُ ٱلرَّحِمِينَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(24,24,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,24,' سُورَةٌ أَنزَلْنَهَا وَفَرَضْنَهَا وَأَنزَلْنَا فِيهَآ ءَايَتٍۭ بَيِّنَتٍۢ لَّعَلَّكُمْ تَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,24,' ٱلزَّانِيَةُ وَٱلزَّانِى فَٱجْلِدُوا۟ كُلَّ وَحِدٍۢ مِّنْهُمَا مِا۟ئَةَ جَلْدَةٍۢ ۖ وَلَا تَأْخُذْكُم بِهِمَا رَأْفَةٌۭ فِى دِينِ ٱللَّهِ إِن كُنتُمْ تُؤْمِنُونَ بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ ۖ وَلْيَشْهَدْ عَذَابَهُمَا طَآئِفَةٌۭ مِّنَ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,24,' ٱلزَّانِى لَا يَنكِحُ إِلَّا زَانِيَةً أَوْ مُشْرِكَةًۭ وَٱلزَّانِيَةُ لَا يَنكِحُهَآ إِلَّا زَانٍ أَوْ مُشْرِكٌۭ ۚ وَحُرِّمَ ذَلِكَ عَلَى ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,24,' وَٱلَّذِينَ يَرْمُونَ ٱلْمُحْصَنَتِ ثُمَّ لَمْ يَأْتُوا۟ بِأَرْبَعَةِ شُهَدَآءَ فَٱجْلِدُوهُمْ ثَمَنِينَ جَلْدَةًۭ وَلَا تَقْبَلُوا۟ لَهُمْ شَهَدَةً أَبَدًۭا ۚ وَأُو۟لَٓئِكَ هُمُ ٱلْفَسِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,24,' إِلَّا ٱلَّذِينَ تَابُوا۟ مِنۢ بَعْدِ ذَلِكَ وَأَصْلَحُوا۟ فَإِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,24,' وَٱلَّذِينَ يَرْمُونَ أَزْوَجَهُمْ وَلَمْ يَكُن لَّهُمْ شُهَدَآءُ إِلَّآ أَنفُسُهُمْ فَشَهَدَةُ أَحَدِهِمْ أَرْبَعُ شَهَدَتٍۭ بِٱللَّهِ ۙ إِنَّهُۥ لَمِنَ ٱلصَّدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,24,' وَٱلْخَمِسَةُ أَنَّ لَعْنَتَ ٱللَّهِ عَلَيْهِ إِن كَانَ مِنَ ٱلْكَذِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,24,' وَيَدْرَؤُا۟ عَنْهَا ٱلْعَذَابَ أَن تَشْهَدَ أَرْبَعَ شَهَدَتٍۭ بِٱللَّهِ ۙ إِنَّهُۥ لَمِنَ ٱلْكَذِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,24,' وَٱلْخَمِسَةَ أَنَّ غَضَبَ ٱللَّهِ عَلَيْهَآ إِن كَانَ مِنَ ٱلصَّدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,24,' وَلَوْلَا فَضْلُ ٱللَّهِ عَلَيْكُمْ وَرَحْمَتُهُۥ وَأَنَّ ٱللَّهَ تَوَّابٌ حَكِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,24,' إِنَّ ٱلَّذِينَ جَآءُو بِٱلْإِفْكِ عُصْبَةٌۭ مِّنكُمْ ۚ لَا تَحْسَبُوهُ شَرًّۭا لَّكُم ۖ بَلْ هُوَ خَيْرٌۭ لَّكُمْ ۚ لِكُلِّ ٱمْرِئٍۢ مِّنْهُم مَّا ٱكْتَسَبَ مِنَ ٱلْإِثْمِ ۚ وَٱلَّذِى تَوَلَّىٰ كِبْرَهُۥ مِنْهُمْ لَهُۥ عَذَابٌ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,24,' لَّوْلَآ إِذْ سَمِعْتُمُوهُ ظَنَّ ٱلْمُؤْمِنُونَ وَٱلْمُؤْمِنَتُ بِأَنفُسِهِمْ خَيْرًۭا وَقَالُوا۟ هَذَآ إِفْكٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,24,' لَّوْلَا جَآءُو عَلَيْهِ بِأَرْبَعَةِ شُهَدَآءَ ۚ فَإِذْ لَمْ يَأْتُوا۟ بِٱلشُّهَدَآءِ فَأُو۟لَٓئِكَ عِندَ ٱللَّهِ هُمُ ٱلْكَذِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,24,' وَلَوْلَا فَضْلُ ٱللَّهِ عَلَيْكُمْ وَرَحْمَتُهُۥ فِى ٱلدُّنْيَا وَٱلْءَاخِرَةِ لَمَسَّكُمْ فِى مَآ أَفَضْتُمْ فِيهِ عَذَابٌ عَظِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,24,' إِذْ تَلَقَّوْنَهُۥ بِأَلْسِنَتِكُمْ وَتَقُولُونَ بِأَفْوَاهِكُم مَّا لَيْسَ لَكُم بِهِۦ عِلْمٌۭ وَتَحْسَبُونَهُۥ هَيِّنًۭا وَهُوَ عِندَ ٱللَّهِ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,24,' وَلَوْلَآ إِذْ سَمِعْتُمُوهُ قُلْتُم مَّا يَكُونُ لَنَآ أَن نَّتَكَلَّمَ بِهَذَا سُبْحَنَكَ هَذَا بُهْتَنٌ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,24,' يَعِظُكُمُ ٱللَّهُ أَن تَعُودُوا۟ لِمِثْلِهِۦٓ أَبَدًا إِن كُنتُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,24,' وَيُبَيِّنُ ٱللَّهُ لَكُمُ ٱلْءَايَتِ ۚ وَٱللَّهُ عَلِيمٌ حَكِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,24,' إِنَّ ٱلَّذِينَ يُحِبُّونَ أَن تَشِيعَ ٱلْفَحِشَةُ فِى ٱلَّذِينَ ءَامَنُوا۟ لَهُمْ عَذَابٌ أَلِيمٌۭ فِى ٱلدُّنْيَا وَٱلْءَاخِرَةِ ۚ وَٱللَّهُ يَعْلَمُ وَأَنتُمْ لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,24,' وَلَوْلَا فَضْلُ ٱللَّهِ عَلَيْكُمْ وَرَحْمَتُهُۥ وَأَنَّ ٱللَّهَ رَءُوفٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,24,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَتَّبِعُوا۟ خُطُوَتِ ٱلشَّيْطَنِ ۚ وَمَن يَتَّبِعْ خُطُوَتِ ٱلشَّيْطَنِ فَإِنَّهُۥ يَأْمُرُ بِٱلْفَحْشَآءِ وَٱلْمُنكَرِ ۚ وَلَوْلَا فَضْلُ ٱللَّهِ عَلَيْكُمْ وَرَحْمَتُهُۥ مَا زَكَىٰ مِنكُم مِّنْ أَحَدٍ أَبَدًۭا وَلَكِنَّ ٱللَّهَ يُزَكِّى مَن يَشَآءُ ۗ وَٱللَّهُ سَمِيعٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,24,' وَلَا يَأْتَلِ أُو۟لُوا۟ ٱلْفَضْلِ مِنكُمْ وَٱلسَّعَةِ أَن يُؤْتُوٓا۟ أُو۟لِى ٱلْقُرْبَىٰ وَٱلْمَسَكِينَ وَٱلْمُهَجِرِينَ فِى سَبِيلِ ٱللَّهِ ۖ وَلْيَعْفُوا۟ وَلْيَصْفَحُوٓا۟ ۗ أَلَا تُحِبُّونَ أَن يَغْفِرَ ٱللَّهُ لَكُمْ ۗ وَٱللَّهُ غَفُورٌۭ رَّحِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,24,' إِنَّ ٱلَّذِينَ يَرْمُونَ ٱلْمُحْصَنَتِ ٱلْغَفِلَتِ ٱلْمُؤْمِنَتِ لُعِنُوا۟ فِى ٱلدُّنْيَا وَٱلْءَاخِرَةِ وَلَهُمْ عَذَابٌ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,24,' يَوْمَ تَشْهَدُ عَلَيْهِمْ أَلْسِنَتُهُمْ وَأَيْدِيهِمْ وَأَرْجُلُهُم بِمَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,24,' يَوْمَئِذٍۢ يُوَفِّيهِمُ ٱللَّهُ دِينَهُمُ ٱلْحَقَّ وَيَعْلَمُونَ أَنَّ ٱللَّهَ هُوَ ٱلْحَقُّ ٱلْمُبِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,24,' ٱلْخَبِيثَتُ لِلْخَبِيثِينَ وَٱلْخَبِيثُونَ لِلْخَبِيثَتِ ۖ وَٱلطَّيِّبَتُ لِلطَّيِّبِينَ وَٱلطَّيِّبُونَ لِلطَّيِّبَتِ ۚ أُو۟لَٓئِكَ مُبَرَّءُونَ مِمَّا يَقُولُونَ ۖ لَهُم مَّغْفِرَةٌۭ وَرِزْقٌۭ كَرِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,24,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَدْخُلُوا۟ بُيُوتًا غَيْرَ بُيُوتِكُمْ حَتَّىٰ تَسْتَأْنِسُوا۟ وَتُسَلِّمُوا۟ عَلَىٰٓ أَهْلِهَا ۚ ذَلِكُمْ خَيْرٌۭ لَّكُمْ لَعَلَّكُمْ تَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,24,' فَإِن لَّمْ تَجِدُوا۟ فِيهَآ أَحَدًۭا فَلَا تَدْخُلُوهَا حَتَّىٰ يُؤْذَنَ لَكُمْ ۖ وَإِن قِيلَ لَكُمُ ٱرْجِعُوا۟ فَٱرْجِعُوا۟ ۖ هُوَ أَزْكَىٰ لَكُمْ ۚ وَٱللَّهُ بِمَا تَعْمَلُونَ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,24,' لَّيْسَ عَلَيْكُمْ جُنَاحٌ أَن تَدْخُلُوا۟ بُيُوتًا غَيْرَ مَسْكُونَةٍۢ فِيهَا مَتَعٌۭ لَّكُمْ ۚ وَٱللَّهُ يَعْلَمُ مَا تُبْدُونَ وَمَا تَكْتُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,24,' قُل لِّلْمُؤْمِنِينَ يَغُضُّوا۟ مِنْ أَبْصَرِهِمْ وَيَحْفَظُوا۟ فُرُوجَهُمْ ۚ ذَلِكَ أَزْكَىٰ لَهُمْ ۗ إِنَّ ٱللَّهَ خَبِيرٌۢ بِمَا يَصْنَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,24,' وَقُل لِّلْمُؤْمِنَتِ يَغْضُضْنَ مِنْ أَبْصَرِهِنَّ وَيَحْفَظْنَ فُرُوجَهُنَّ وَلَا يُبْدِينَ زِينَتَهُنَّ إِلَّا مَا ظَهَرَ مِنْهَا ۖ وَلْيَضْرِبْنَ بِخُمُرِهِنَّ عَلَىٰ جُيُوبِهِنَّ ۖ وَلَا يُبْدِينَ زِينَتَهُنَّ إِلَّا لِبُعُولَتِهِنَّ أَوْ ءَابَآئِهِنَّ أَوْ ءَابَآءِ بُعُولَتِهِنَّ أَوْ أَبْنَآئِهِنَّ أَوْ أَبْنَآءِ بُعُولَتِهِنَّ أَوْ إِخْوَنِهِنَّ أَوْ بَنِىٓ إِخْوَنِهِنَّ أَوْ بَنِىٓ أَخَوَتِهِنَّ أَوْ نِسَآئِهِنَّ أَوْ مَا مَلَكَتْ أَيْمَنُهُنَّ أَوِ ٱلتَّبِعِينَ غَيْرِ أُو۟لِى ٱلْإِرْبَةِ مِنَ ٱلرِّجَالِ أَوِ ٱلطِّفْلِ ٱلَّذِينَ لَمْ يَظْهَرُوا۟ عَلَىٰ عَوْرَتِ ٱلنِّسَآءِ ۖ وَلَا يَضْرِبْنَ بِأَرْجُلِهِنَّ لِيُعْلَمَ مَا يُخْفِينَ مِن زِينَتِهِنَّ ۚ وَتُوبُوٓا۟ إِلَى ٱللَّهِ جَمِيعًا أَيُّهَ ٱلْمُؤْمِنُونَ لَعَلَّكُمْ تُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,24,' وَأَنكِحُوا۟ ٱلْأَيَمَىٰ مِنكُمْ وَٱلصَّلِحِينَ مِنْ عِبَادِكُمْ وَإِمَآئِكُمْ ۚ إِن يَكُونُوا۟ فُقَرَآءَ يُغْنِهِمُ ٱللَّهُ مِن فَضْلِهِۦ ۗ وَٱللَّهُ وَسِعٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,24,' وَلْيَسْتَعْفِفِ ٱلَّذِينَ لَا يَجِدُونَ نِكَاحًا حَتَّىٰ يُغْنِيَهُمُ ٱللَّهُ مِن فَضْلِهِۦ ۗ وَٱلَّذِينَ يَبْتَغُونَ ٱلْكِتَبَ مِمَّا مَلَكَتْ أَيْمَنُكُمْ فَكَاتِبُوهُمْ إِنْ عَلِمْتُمْ فِيهِمْ خَيْرًۭا ۖ وَءَاتُوهُم مِّن مَّالِ ٱللَّهِ ٱلَّذِىٓ ءَاتَىٰكُمْ ۚ وَلَا تُكْرِهُوا۟ فَتَيَتِكُمْ عَلَى ٱلْبِغَآءِ إِنْ أَرَدْنَ تَحَصُّنًۭا لِّتَبْتَغُوا۟ عَرَضَ ٱلْحَيَوٰةِ ٱلدُّنْيَا ۚ وَمَن يُكْرِههُّنَّ فَإِنَّ ٱللَّهَ مِنۢ بَعْدِ إِكْرَهِهِنَّ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,24,' وَلَقَدْ أَنزَلْنَآ إِلَيْكُمْ ءَايَتٍۢ مُّبَيِّنَتٍۢ وَمَثَلًۭا مِّنَ ٱلَّذِينَ خَلَوْا۟ مِن قَبْلِكُمْ وَمَوْعِظَةًۭ لِّلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,24,' ٱللَّهُ نُورُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ مَثَلُ نُورِهِۦ كَمِشْكَوٰةٍۢ فِيهَا مِصْبَاحٌ ۖ ٱلْمِصْبَاحُ فِى زُجَاجَةٍ ۖ ٱلزُّجَاجَةُ كَأَنَّهَا كَوْكَبٌۭ دُرِّىٌّۭ يُوقَدُ مِن شَجَرَةٍۢ مُّبَرَكَةٍۢ زَيْتُونَةٍۢ لَّا شَرْقِيَّةٍۢ وَلَا غَرْبِيَّةٍۢ يَكَادُ زَيْتُهَا يُضِىٓءُ وَلَوْ لَمْ تَمْسَسْهُ نَارٌۭ ۚ نُّورٌ عَلَىٰ نُورٍۢ ۗ يَهْدِى ٱللَّهُ لِنُورِهِۦ مَن يَشَآءُ ۚ وَيَضْرِبُ ٱللَّهُ ٱلْأَمْثَلَ لِلنَّاسِ ۗ وَٱللَّهُ بِكُلِّ شَىْءٍ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,24,' فِى بُيُوتٍ أَذِنَ ٱللَّهُ أَن تُرْفَعَ وَيُذْكَرَ فِيهَا ٱسْمُهُۥ يُسَبِّحُ لَهُۥ فِيهَا بِٱلْغُدُوِّ وَٱلْءَاصَالِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,24,' رِجَالٌۭ لَّا تُلْهِيهِمْ تِجَرَةٌۭ وَلَا بَيْعٌ عَن ذِكْرِ ٱللَّهِ وَإِقَامِ ٱلصَّلَوٰةِ وَإِيتَآءِ ٱلزَّكَوٰةِ ۙ يَخَافُونَ يَوْمًۭا تَتَقَلَّبُ فِيهِ ٱلْقُلُوبُ وَٱلْأَبْصَرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,24,' لِيَجْزِيَهُمُ ٱللَّهُ أَحْسَنَ مَا عَمِلُوا۟ وَيَزِيدَهُم مِّن فَضْلِهِۦ ۗ وَٱللَّهُ يَرْزُقُ مَن يَشَآءُ بِغَيْرِ حِسَابٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,24,' وَٱلَّذِينَ كَفَرُوٓا۟ أَعْمَلُهُمْ كَسَرَابٍۭ بِقِيعَةٍۢ يَحْسَبُهُ ٱلظَّمْـَٔانُ مَآءً حَتَّىٰٓ إِذَا جَآءَهُۥ لَمْ يَجِدْهُ شَيْـًۭٔا وَوَجَدَ ٱللَّهَ عِندَهُۥ فَوَفَّىٰهُ حِسَابَهُۥ ۗ وَٱللَّهُ سَرِيعُ ٱلْحِسَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,24,' أَوْ كَظُلُمَتٍۢ فِى بَحْرٍۢ لُّجِّىٍّۢ يَغْشَىٰهُ مَوْجٌۭ مِّن فَوْقِهِۦ مَوْجٌۭ مِّن فَوْقِهِۦ سَحَابٌۭ ۚ ظُلُمَتٌۢ بَعْضُهَا فَوْقَ بَعْضٍ إِذَآ أَخْرَجَ يَدَهُۥ لَمْ يَكَدْ يَرَىٰهَا ۗ وَمَن لَّمْ يَجْعَلِ ٱللَّهُ لَهُۥ نُورًۭا فَمَا لَهُۥ مِن نُّورٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,24,' أَلَمْ تَرَ أَنَّ ٱللَّهَ يُسَبِّحُ لَهُۥ مَن فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ وَٱلطَّيْرُ صَٓفَّتٍۢ ۖ كُلٌّۭ قَدْ عَلِمَ صَلَاتَهُۥ وَتَسْبِيحَهُۥ ۗ وَٱللَّهُ عَلِيمٌۢ بِمَا يَفْعَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,24,' وَلِلَّهِ مُلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۖ وَإِلَى ٱللَّهِ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,24,' أَلَمْ تَرَ أَنَّ ٱللَّهَ يُزْجِى سَحَابًۭا ثُمَّ يُؤَلِّفُ بَيْنَهُۥ ثُمَّ يَجْعَلُهُۥ رُكَامًۭا فَتَرَى ٱلْوَدْقَ يَخْرُجُ مِنْ خِلَلِهِۦ وَيُنَزِّلُ مِنَ ٱلسَّمَآءِ مِن جِبَالٍۢ فِيهَا مِنۢ بَرَدٍۢ فَيُصِيبُ بِهِۦ مَن يَشَآءُ وَيَصْرِفُهُۥ عَن مَّن يَشَآءُ ۖ يَكَادُ سَنَا بَرْقِهِۦ يَذْهَبُ بِٱلْأَبْصَرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,24,' يُقَلِّبُ ٱللَّهُ ٱلَّيْلَ وَٱلنَّهَارَ ۚ إِنَّ فِى ذَلِكَ لَعِبْرَةًۭ لِّأُو۟لِى ٱلْأَبْصَرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,24,' وَٱللَّهُ خَلَقَ كُلَّ دَآبَّةٍۢ مِّن مَّآءٍۢ ۖ فَمِنْهُم مَّن يَمْشِى عَلَىٰ بَطْنِهِۦ وَمِنْهُم مَّن يَمْشِى عَلَىٰ رِجْلَيْنِ وَمِنْهُم مَّن يَمْشِى عَلَىٰٓ أَرْبَعٍۢ ۚ يَخْلُقُ ٱللَّهُ مَا يَشَآءُ ۚ إِنَّ ٱللَّهَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,24,' لَّقَدْ أَنزَلْنَآ ءَايَتٍۢ مُّبَيِّنَتٍۢ ۚ وَٱللَّهُ يَهْدِى مَن يَشَآءُ إِلَىٰ صِرَطٍۢ مُّسْتَقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,24,' وَيَقُولُونَ ءَامَنَّا بِٱللَّهِ وَبِٱلرَّسُولِ وَأَطَعْنَا ثُمَّ يَتَوَلَّىٰ فَرِيقٌۭ مِّنْهُم مِّنۢ بَعْدِ ذَلِكَ ۚ وَمَآ أُو۟لَٓئِكَ بِٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,24,' وَإِذَا دُعُوٓا۟ إِلَى ٱللَّهِ وَرَسُولِهِۦ لِيَحْكُمَ بَيْنَهُمْ إِذَا فَرِيقٌۭ مِّنْهُم مُّعْرِضُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,24,' وَإِن يَكُن لَّهُمُ ٱلْحَقُّ يَأْتُوٓا۟ إِلَيْهِ مُذْعِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,24,' أَفِى قُلُوبِهِم مَّرَضٌ أَمِ ٱرْتَابُوٓا۟ أَمْ يَخَافُونَ أَن يَحِيفَ ٱللَّهُ عَلَيْهِمْ وَرَسُولُهُۥ ۚ بَلْ أُو۟لَٓئِكَ هُمُ ٱلظَّلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,24,' إِنَّمَا كَانَ قَوْلَ ٱلْمُؤْمِنِينَ إِذَا دُعُوٓا۟ إِلَى ٱللَّهِ وَرَسُولِهِۦ لِيَحْكُمَ بَيْنَهُمْ أَن يَقُولُوا۟ سَمِعْنَا وَأَطَعْنَا ۚ وَأُو۟لَٓئِكَ هُمُ ٱلْمُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,24,' وَمَن يُطِعِ ٱللَّهَ وَرَسُولَهُۥ وَيَخْشَ ٱللَّهَ وَيَتَّقْهِ فَأُو۟لَٓئِكَ هُمُ ٱلْفَآئِزُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,24,' وَأَقْسَمُوا۟ بِٱللَّهِ جَهْدَ أَيْمَنِهِمْ لَىِٕنْ أَمَرْتَهُمْ لَيَخْرُجُنَّ ۖ قُل لَّا تُقْسِمُوا۟ ۖ طَاعَةٌۭ مَّعْرُوفَةٌ ۚ إِنَّ ٱللَّهَ خَبِيرٌۢ بِمَا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,24,' قُلْ أَطِيعُوا۟ ٱللَّهَ وَأَطِيعُوا۟ ٱلرَّسُولَ ۖ فَإِن تَوَلَّوْا۟ فَإِنَّمَا عَلَيْهِ مَا حُمِّلَ وَعَلَيْكُم مَّا حُمِّلْتُمْ ۖ وَإِن تُطِيعُوهُ تَهْتَدُوا۟ ۚ وَمَا عَلَى ٱلرَّسُولِ إِلَّا ٱلْبَلَغُ ٱلْمُبِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,24,' وَعَدَ ٱللَّهُ ٱلَّذِينَ ءَامَنُوا۟ مِنكُمْ وَعَمِلُوا۟ ٱلصَّلِحَتِ لَيَسْتَخْلِفَنَّهُمْ فِى ٱلْأَرْضِ كَمَا ٱسْتَخْلَفَ ٱلَّذِينَ مِن قَبْلِهِمْ وَلَيُمَكِّنَنَّ لَهُمْ دِينَهُمُ ٱلَّذِى ٱرْتَضَىٰ لَهُمْ وَلَيُبَدِّلَنَّهُم مِّنۢ بَعْدِ خَوْفِهِمْ أَمْنًۭا ۚ يَعْبُدُونَنِى لَا يُشْرِكُونَ بِى شَيْـًۭٔا ۚ وَمَن كَفَرَ بَعْدَ ذَلِكَ فَأُو۟لَٓئِكَ هُمُ ٱلْفَسِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,24,' وَأَقِيمُوا۟ ٱلصَّلَوٰةَ وَءَاتُوا۟ ٱلزَّكَوٰةَ وَأَطِيعُوا۟ ٱلرَّسُولَ لَعَلَّكُمْ تُرْحَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,24,' لَا تَحْسَبَنَّ ٱلَّذِينَ كَفَرُوا۟ مُعْجِزِينَ فِى ٱلْأَرْضِ ۚ وَمَأْوَىٰهُمُ ٱلنَّارُ ۖ وَلَبِئْسَ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,24,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لِيَسْتَـْٔذِنكُمُ ٱلَّذِينَ مَلَكَتْ أَيْمَنُكُمْ وَٱلَّذِينَ لَمْ يَبْلُغُوا۟ ٱلْحُلُمَ مِنكُمْ ثَلَثَ مَرَّتٍۢ ۚ مِّن قَبْلِ صَلَوٰةِ ٱلْفَجْرِ وَحِينَ تَضَعُونَ ثِيَابَكُم مِّنَ ٱلظَّهِيرَةِ وَمِنۢ بَعْدِ صَلَوٰةِ ٱلْعِشَآءِ ۚ ثَلَثُ عَوْرَتٍۢ لَّكُمْ ۚ لَيْسَ عَلَيْكُمْ وَلَا عَلَيْهِمْ جُنَاحٌۢ بَعْدَهُنَّ ۚ طَوَّفُونَ عَلَيْكُم بَعْضُكُمْ عَلَىٰ بَعْضٍۢ ۚ كَذَلِكَ يُبَيِّنُ ٱللَّهُ لَكُمُ ٱلْءَايَتِ ۗ وَٱللَّهُ عَلِيمٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,24,' وَإِذَا بَلَغَ ٱلْأَطْفَلُ مِنكُمُ ٱلْحُلُمَ فَلْيَسْتَـْٔذِنُوا۟ كَمَا ٱسْتَـْٔذَنَ ٱلَّذِينَ مِن قَبْلِهِمْ ۚ كَذَلِكَ يُبَيِّنُ ٱللَّهُ لَكُمْ ءَايَتِهِۦ ۗ وَٱللَّهُ عَلِيمٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,24,' وَٱلْقَوَعِدُ مِنَ ٱلنِّسَآءِ ٱلَّتِى لَا يَرْجُونَ نِكَاحًۭا فَلَيْسَ عَلَيْهِنَّ جُنَاحٌ أَن يَضَعْنَ ثِيَابَهُنَّ غَيْرَ مُتَبَرِّجَتٍۭ بِزِينَةٍۢ ۖ وَأَن يَسْتَعْفِفْنَ خَيْرٌۭ لَّهُنَّ ۗ وَٱللَّهُ سَمِيعٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,24,' لَّيْسَ عَلَى ٱلْأَعْمَىٰ حَرَجٌۭ وَلَا عَلَى ٱلْأَعْرَجِ حَرَجٌۭ وَلَا عَلَى ٱلْمَرِيضِ حَرَجٌۭ وَلَا عَلَىٰٓ أَنفُسِكُمْ أَن تَأْكُلُوا۟ مِنۢ بُيُوتِكُمْ أَوْ بُيُوتِ ءَابَآئِكُمْ أَوْ بُيُوتِ أُمَّهَتِكُمْ أَوْ بُيُوتِ إِخْوَنِكُمْ أَوْ بُيُوتِ أَخَوَتِكُمْ أَوْ بُيُوتِ أَعْمَمِكُمْ أَوْ بُيُوتِ عَمَّتِكُمْ أَوْ بُيُوتِ أَخْوَلِكُمْ أَوْ بُيُوتِ خَلَتِكُمْ أَوْ مَا مَلَكْتُم مَّفَاتِحَهُۥٓ أَوْ صَدِيقِكُمْ ۚ لَيْسَ عَلَيْكُمْ جُنَاحٌ أَن تَأْكُلُوا۟ جَمِيعًا أَوْ أَشْتَاتًۭا ۚ فَإِذَا دَخَلْتُم بُيُوتًۭا فَسَلِّمُوا۟ عَلَىٰٓ أَنفُسِكُمْ تَحِيَّةًۭ مِّنْ عِندِ ٱللَّهِ مُبَرَكَةًۭ طَيِّبَةًۭ ۚ كَذَلِكَ يُبَيِّنُ ٱللَّهُ لَكُمُ ٱلْءَايَتِ لَعَلَّكُمْ تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,24,' إِنَّمَا ٱلْمُؤْمِنُونَ ٱلَّذِينَ ءَامَنُوا۟ بِٱللَّهِ وَرَسُولِهِۦ وَإِذَا كَانُوا۟ مَعَهُۥ عَلَىٰٓ أَمْرٍۢ جَامِعٍۢ لَّمْ يَذْهَبُوا۟ حَتَّىٰ يَسْتَـْٔذِنُوهُ ۚ إِنَّ ٱلَّذِينَ يَسْتَـْٔذِنُونَكَ أُو۟لَٓئِكَ ٱلَّذِينَ يُؤْمِنُونَ بِٱللَّهِ وَرَسُولِهِۦ ۚ فَإِذَا ٱسْتَـْٔذَنُوكَ لِبَعْضِ شَأْنِهِمْ فَأْذَن لِّمَن شِئْتَ مِنْهُمْ وَٱسْتَغْفِرْ لَهُمُ ٱللَّهَ ۚ إِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,24,' لَّا تَجْعَلُوا۟ دُعَآءَ ٱلرَّسُولِ بَيْنَكُمْ كَدُعَآءِ بَعْضِكُم بَعْضًۭا ۚ قَدْ يَعْلَمُ ٱللَّهُ ٱلَّذِينَ يَتَسَلَّلُونَ مِنكُمْ لِوَاذًۭا ۚ فَلْيَحْذَرِ ٱلَّذِينَ يُخَالِفُونَ عَنْ أَمْرِهِۦٓ أَن تُصِيبَهُمْ فِتْنَةٌ أَوْ يُصِيبَهُمْ عَذَابٌ أَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,24,' أَلَآ إِنَّ لِلَّهِ مَا فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ۖ قَدْ يَعْلَمُ مَآ أَنتُمْ عَلَيْهِ وَيَوْمَ يُرْجَعُونَ إِلَيْهِ فَيُنَبِّئُهُم بِمَا عَمِلُوا۟ ۗ وَٱللَّهُ بِكُلِّ شَىْءٍ عَلِيمٌۢ');
+INSERT INTO chapters (id, number, quran_id) VALUES(25,25,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,25,' تَبَارَكَ ٱلَّذِى نَزَّلَ ٱلْفُرْقَانَ عَلَىٰ عَبْدِهِۦ لِيَكُونَ لِلْعَلَمِينَ نَذِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,25,' ٱلَّذِى لَهُۥ مُلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَلَمْ يَتَّخِذْ وَلَدًۭا وَلَمْ يَكُن لَّهُۥ شَرِيكٌۭ فِى ٱلْمُلْكِ وَخَلَقَ كُلَّ شَىْءٍۢ فَقَدَّرَهُۥ تَقْدِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,25,' وَٱتَّخَذُوا۟ مِن دُونِهِۦٓ ءَالِهَةًۭ لَّا يَخْلُقُونَ شَيْـًۭٔا وَهُمْ يُخْلَقُونَ وَلَا يَمْلِكُونَ لِأَنفُسِهِمْ ضَرًّۭا وَلَا نَفْعًۭا وَلَا يَمْلِكُونَ مَوْتًۭا وَلَا حَيَوٰةًۭ وَلَا نُشُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,25,' وَقَالَ ٱلَّذِينَ كَفَرُوٓا۟ إِنْ هَذَآ إِلَّآ إِفْكٌ ٱفْتَرَىٰهُ وَأَعَانَهُۥ عَلَيْهِ قَوْمٌ ءَاخَرُونَ ۖ فَقَدْ جَآءُو ظُلْمًۭا وَزُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,25,' وَقَالُوٓا۟ أَسَطِيرُ ٱلْأَوَّلِينَ ٱكْتَتَبَهَا فَهِىَ تُمْلَىٰ عَلَيْهِ بُكْرَةًۭ وَأَصِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,25,' قُلْ أَنزَلَهُ ٱلَّذِى يَعْلَمُ ٱلسِّرَّ فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ إِنَّهُۥ كَانَ غَفُورًۭا رَّحِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,25,' وَقَالُوا۟ مَالِ هَذَا ٱلرَّسُولِ يَأْكُلُ ٱلطَّعَامَ وَيَمْشِى فِى ٱلْأَسْوَاقِ ۙ لَوْلَآ أُنزِلَ إِلَيْهِ مَلَكٌۭ فَيَكُونَ مَعَهُۥ نَذِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,25,' أَوْ يُلْقَىٰٓ إِلَيْهِ كَنزٌ أَوْ تَكُونُ لَهُۥ جَنَّةٌۭ يَأْكُلُ مِنْهَا ۚ وَقَالَ ٱلظَّلِمُونَ إِن تَتَّبِعُونَ إِلَّا رَجُلًۭا مَّسْحُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,25,' ٱنظُرْ كَيْفَ ضَرَبُوا۟ لَكَ ٱلْأَمْثَلَ فَضَلُّوا۟ فَلَا يَسْتَطِيعُونَ سَبِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,25,' تَبَارَكَ ٱلَّذِىٓ إِن شَآءَ جَعَلَ لَكَ خَيْرًۭا مِّن ذَلِكَ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ وَيَجْعَل لَّكَ قُصُورًۢا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,25,' بَلْ كَذَّبُوا۟ بِٱلسَّاعَةِ ۖ وَأَعْتَدْنَا لِمَن كَذَّبَ بِٱلسَّاعَةِ سَعِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,25,' إِذَا رَأَتْهُم مِّن مَّكَانٍۭ بَعِيدٍۢ سَمِعُوا۟ لَهَا تَغَيُّظًۭا وَزَفِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,25,' وَإِذَآ أُلْقُوا۟ مِنْهَا مَكَانًۭا ضَيِّقًۭا مُّقَرَّنِينَ دَعَوْا۟ هُنَالِكَ ثُبُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,25,' لَّا تَدْعُوا۟ ٱلْيَوْمَ ثُبُورًۭا وَحِدًۭا وَٱدْعُوا۟ ثُبُورًۭا كَثِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,25,' قُلْ أَذَلِكَ خَيْرٌ أَمْ جَنَّةُ ٱلْخُلْدِ ٱلَّتِى وُعِدَ ٱلْمُتَّقُونَ ۚ كَانَتْ لَهُمْ جَزَآءًۭ وَمَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,25,' لَّهُمْ فِيهَا مَا يَشَآءُونَ خَلِدِينَ ۚ كَانَ عَلَىٰ رَبِّكَ وَعْدًۭا مَّسْـُٔولًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,25,' وَيَوْمَ يَحْشُرُهُمْ وَمَا يَعْبُدُونَ مِن دُونِ ٱللَّهِ فَيَقُولُ ءَأَنتُمْ أَضْلَلْتُمْ عِبَادِى هَٓؤُلَآءِ أَمْ هُمْ ضَلُّوا۟ ٱلسَّبِيلَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,25,' قَالُوا۟ سُبْحَنَكَ مَا كَانَ يَنۢبَغِى لَنَآ أَن نَّتَّخِذَ مِن دُونِكَ مِنْ أَوْلِيَآءَ وَلَكِن مَّتَّعْتَهُمْ وَءَابَآءَهُمْ حَتَّىٰ نَسُوا۟ ٱلذِّكْرَ وَكَانُوا۟ قَوْمًۢا بُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,25,' فَقَدْ كَذَّبُوكُم بِمَا تَقُولُونَ فَمَا تَسْتَطِيعُونَ صَرْفًۭا وَلَا نَصْرًۭا ۚ وَمَن يَظْلِم مِّنكُمْ نُذِقْهُ عَذَابًۭا كَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,25,' وَمَآ أَرْسَلْنَا قَبْلَكَ مِنَ ٱلْمُرْسَلِينَ إِلَّآ إِنَّهُمْ لَيَأْكُلُونَ ٱلطَّعَامَ وَيَمْشُونَ فِى ٱلْأَسْوَاقِ ۗ وَجَعَلْنَا بَعْضَكُمْ لِبَعْضٍۢ فِتْنَةً أَتَصْبِرُونَ ۗ وَكَانَ رَبُّكَ بَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,25,' وَقَالَ ٱلَّذِينَ لَا يَرْجُونَ لِقَآءَنَا لَوْلَآ أُنزِلَ عَلَيْنَا ٱلْمَلَٓئِكَةُ أَوْ نَرَىٰ رَبَّنَا ۗ لَقَدِ ٱسْتَكْبَرُوا۟ فِىٓ أَنفُسِهِمْ وَعَتَوْ عُتُوًّۭا كَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,25,' يَوْمَ يَرَوْنَ ٱلْمَلَٓئِكَةَ لَا بُشْرَىٰ يَوْمَئِذٍۢ لِّلْمُجْرِمِينَ وَيَقُولُونَ حِجْرًۭا مَّحْجُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,25,' وَقَدِمْنَآ إِلَىٰ مَا عَمِلُوا۟ مِنْ عَمَلٍۢ فَجَعَلْنَهُ هَبَآءًۭ مَّنثُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,25,' أَصْحَبُ ٱلْجَنَّةِ يَوْمَئِذٍ خَيْرٌۭ مُّسْتَقَرًّۭا وَأَحْسَنُ مَقِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,25,' وَيَوْمَ تَشَقَّقُ ٱلسَّمَآءُ بِٱلْغَمَمِ وَنُزِّلَ ٱلْمَلَٓئِكَةُ تَنزِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,25,' ٱلْمُلْكُ يَوْمَئِذٍ ٱلْحَقُّ لِلرَّحْمَنِ ۚ وَكَانَ يَوْمًا عَلَى ٱلْكَفِرِينَ عَسِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,25,' وَيَوْمَ يَعَضُّ ٱلظَّالِمُ عَلَىٰ يَدَيْهِ يَقُولُ يَلَيْتَنِى ٱتَّخَذْتُ مَعَ ٱلرَّسُولِ سَبِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,25,' يَوَيْلَتَىٰ لَيْتَنِى لَمْ أَتَّخِذْ فُلَانًا خَلِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,25,' لَّقَدْ أَضَلَّنِى عَنِ ٱلذِّكْرِ بَعْدَ إِذْ جَآءَنِى ۗ وَكَانَ ٱلشَّيْطَنُ لِلْإِنسَنِ خَذُولًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,25,' وَقَالَ ٱلرَّسُولُ يَرَبِّ إِنَّ قَوْمِى ٱتَّخَذُوا۟ هَذَا ٱلْقُرْءَانَ مَهْجُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,25,' وَكَذَلِكَ جَعَلْنَا لِكُلِّ نَبِىٍّ عَدُوًّۭا مِّنَ ٱلْمُجْرِمِينَ ۗ وَكَفَىٰ بِرَبِّكَ هَادِيًۭا وَنَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,25,' وَقَالَ ٱلَّذِينَ كَفَرُوا۟ لَوْلَا نُزِّلَ عَلَيْهِ ٱلْقُرْءَانُ جُمْلَةًۭ وَحِدَةًۭ ۚ كَذَلِكَ لِنُثَبِّتَ بِهِۦ فُؤَادَكَ ۖ وَرَتَّلْنَهُ تَرْتِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,25,' وَلَا يَأْتُونَكَ بِمَثَلٍ إِلَّا جِئْنَكَ بِٱلْحَقِّ وَأَحْسَنَ تَفْسِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,25,' ٱلَّذِينَ يُحْشَرُونَ عَلَىٰ وُجُوهِهِمْ إِلَىٰ جَهَنَّمَ أُو۟لَٓئِكَ شَرٌّۭ مَّكَانًۭا وَأَضَلُّ سَبِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,25,' وَلَقَدْ ءَاتَيْنَا مُوسَى ٱلْكِتَبَ وَجَعَلْنَا مَعَهُۥٓ أَخَاهُ هَرُونَ وَزِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,25,' فَقُلْنَا ٱذْهَبَآ إِلَى ٱلْقَوْمِ ٱلَّذِينَ كَذَّبُوا۟ بِـَٔايَتِنَا فَدَمَّرْنَهُمْ تَدْمِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,25,' وَقَوْمَ نُوحٍۢ لَّمَّا كَذَّبُوا۟ ٱلرُّسُلَ أَغْرَقْنَهُمْ وَجَعَلْنَهُمْ لِلنَّاسِ ءَايَةًۭ ۖ وَأَعْتَدْنَا لِلظَّلِمِينَ عَذَابًا أَلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,25,' وَعَادًۭا وَثَمُودَا۟ وَأَصْحَبَ ٱلرَّسِّ وَقُرُونًۢا بَيْنَ ذَلِكَ كَثِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,25,' وَكُلًّۭا ضَرَبْنَا لَهُ ٱلْأَمْثَلَ ۖ وَكُلًّۭا تَبَّرْنَا تَتْبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,25,' وَلَقَدْ أَتَوْا۟ عَلَى ٱلْقَرْيَةِ ٱلَّتِىٓ أُمْطِرَتْ مَطَرَ ٱلسَّوْءِ ۚ أَفَلَمْ يَكُونُوا۟ يَرَوْنَهَا ۚ بَلْ كَانُوا۟ لَا يَرْجُونَ نُشُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,25,' وَإِذَا رَأَوْكَ إِن يَتَّخِذُونَكَ إِلَّا هُزُوًا أَهَذَا ٱلَّذِى بَعَثَ ٱللَّهُ رَسُولًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,25,' إِن كَادَ لَيُضِلُّنَا عَنْ ءَالِهَتِنَا لَوْلَآ أَن صَبَرْنَا عَلَيْهَا ۚ وَسَوْفَ يَعْلَمُونَ حِينَ يَرَوْنَ ٱلْعَذَابَ مَنْ أَضَلُّ سَبِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,25,' أَرَءَيْتَ مَنِ ٱتَّخَذَ إِلَهَهُۥ هَوَىٰهُ أَفَأَنتَ تَكُونُ عَلَيْهِ وَكِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,25,' أَمْ تَحْسَبُ أَنَّ أَكْثَرَهُمْ يَسْمَعُونَ أَوْ يَعْقِلُونَ ۚ إِنْ هُمْ إِلَّا كَٱلْأَنْعَمِ ۖ بَلْ هُمْ أَضَلُّ سَبِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,25,' أَلَمْ تَرَ إِلَىٰ رَبِّكَ كَيْفَ مَدَّ ٱلظِّلَّ وَلَوْ شَآءَ لَجَعَلَهُۥ سَاكِنًۭا ثُمَّ جَعَلْنَا ٱلشَّمْسَ عَلَيْهِ دَلِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,25,' ثُمَّ قَبَضْنَهُ إِلَيْنَا قَبْضًۭا يَسِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,25,' وَهُوَ ٱلَّذِى جَعَلَ لَكُمُ ٱلَّيْلَ لِبَاسًۭا وَٱلنَّوْمَ سُبَاتًۭا وَجَعَلَ ٱلنَّهَارَ نُشُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,25,' وَهُوَ ٱلَّذِىٓ أَرْسَلَ ٱلرِّيَحَ بُشْرًۢا بَيْنَ يَدَىْ رَحْمَتِهِۦ ۚ وَأَنزَلْنَا مِنَ ٱلسَّمَآءِ مَآءًۭ طَهُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,25,' لِّنُحْۦِىَ بِهِۦ بَلْدَةًۭ مَّيْتًۭا وَنُسْقِيَهُۥ مِمَّا خَلَقْنَآ أَنْعَمًۭا وَأَنَاسِىَّ كَثِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,25,' وَلَقَدْ صَرَّفْنَهُ بَيْنَهُمْ لِيَذَّكَّرُوا۟ فَأَبَىٰٓ أَكْثَرُ ٱلنَّاسِ إِلَّا كُفُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,25,' وَلَوْ شِئْنَا لَبَعَثْنَا فِى كُلِّ قَرْيَةٍۢ نَّذِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,25,' فَلَا تُطِعِ ٱلْكَفِرِينَ وَجَهِدْهُم بِهِۦ جِهَادًۭا كَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,25,' وَهُوَ ٱلَّذِى مَرَجَ ٱلْبَحْرَيْنِ هَذَا عَذْبٌۭ فُرَاتٌۭ وَهَذَا مِلْحٌ أُجَاجٌۭ وَجَعَلَ بَيْنَهُمَا بَرْزَخًۭا وَحِجْرًۭا مَّحْجُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,25,' وَهُوَ ٱلَّذِى خَلَقَ مِنَ ٱلْمَآءِ بَشَرًۭا فَجَعَلَهُۥ نَسَبًۭا وَصِهْرًۭا ۗ وَكَانَ رَبُّكَ قَدِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,25,' وَيَعْبُدُونَ مِن دُونِ ٱللَّهِ مَا لَا يَنفَعُهُمْ وَلَا يَضُرُّهُمْ ۗ وَكَانَ ٱلْكَافِرُ عَلَىٰ رَبِّهِۦ ظَهِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,25,' وَمَآ أَرْسَلْنَكَ إِلَّا مُبَشِّرًۭا وَنَذِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,25,' قُلْ مَآ أَسْـَٔلُكُمْ عَلَيْهِ مِنْ أَجْرٍ إِلَّا مَن شَآءَ أَن يَتَّخِذَ إِلَىٰ رَبِّهِۦ سَبِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,25,' وَتَوَكَّلْ عَلَى ٱلْحَىِّ ٱلَّذِى لَا يَمُوتُ وَسَبِّحْ بِحَمْدِهِۦ ۚ وَكَفَىٰ بِهِۦ بِذُنُوبِ عِبَادِهِۦ خَبِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,25,' ٱلَّذِى خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ وَمَا بَيْنَهُمَا فِى سِتَّةِ أَيَّامٍۢ ثُمَّ ٱسْتَوَىٰ عَلَى ٱلْعَرْشِ ۚ ٱلرَّحْمَنُ فَسْـَٔلْ بِهِۦ خَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,25,' وَإِذَا قِيلَ لَهُمُ ٱسْجُدُوا۟ لِلرَّحْمَنِ قَالُوا۟ وَمَا ٱلرَّحْمَنُ أَنَسْجُدُ لِمَا تَأْمُرُنَا وَزَادَهُمْ نُفُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,25,' تَبَارَكَ ٱلَّذِى جَعَلَ فِى ٱلسَّمَآءِ بُرُوجًۭا وَجَعَلَ فِيهَا سِرَجًۭا وَقَمَرًۭا مُّنِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,25,' وَهُوَ ٱلَّذِى جَعَلَ ٱلَّيْلَ وَٱلنَّهَارَ خِلْفَةًۭ لِّمَنْ أَرَادَ أَن يَذَّكَّرَ أَوْ أَرَادَ شُكُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,25,' وَعِبَادُ ٱلرَّحْمَنِ ٱلَّذِينَ يَمْشُونَ عَلَى ٱلْأَرْضِ هَوْنًۭا وَإِذَا خَاطَبَهُمُ ٱلْجَهِلُونَ قَالُوا۟ سَلَمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,25,' وَٱلَّذِينَ يَبِيتُونَ لِرَبِّهِمْ سُجَّدًۭا وَقِيَمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,25,' وَٱلَّذِينَ يَقُولُونَ رَبَّنَا ٱصْرِفْ عَنَّا عَذَابَ جَهَنَّمَ ۖ إِنَّ عَذَابَهَا كَانَ غَرَامًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,25,' إِنَّهَا سَآءَتْ مُسْتَقَرًّۭا وَمُقَامًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,25,' وَٱلَّذِينَ إِذَآ أَنفَقُوا۟ لَمْ يُسْرِفُوا۟ وَلَمْ يَقْتُرُوا۟ وَكَانَ بَيْنَ ذَلِكَ قَوَامًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,25,' وَٱلَّذِينَ لَا يَدْعُونَ مَعَ ٱللَّهِ إِلَهًا ءَاخَرَ وَلَا يَقْتُلُونَ ٱلنَّفْسَ ٱلَّتِى حَرَّمَ ٱللَّهُ إِلَّا بِٱلْحَقِّ وَلَا يَزْنُونَ ۚ وَمَن يَفْعَلْ ذَلِكَ يَلْقَ أَثَامًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,25,' يُضَعَفْ لَهُ ٱلْعَذَابُ يَوْمَ ٱلْقِيَمَةِ وَيَخْلُدْ فِيهِۦ مُهَانًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,25,' إِلَّا مَن تَابَ وَءَامَنَ وَعَمِلَ عَمَلًۭا صَلِحًۭا فَأُو۟لَٓئِكَ يُبَدِّلُ ٱللَّهُ سَيِّـَٔاتِهِمْ حَسَنَتٍۢ ۗ وَكَانَ ٱللَّهُ غَفُورًۭا رَّحِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,25,' وَمَن تَابَ وَعَمِلَ صَلِحًۭا فَإِنَّهُۥ يَتُوبُ إِلَى ٱللَّهِ مَتَابًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,25,' وَٱلَّذِينَ لَا يَشْهَدُونَ ٱلزُّورَ وَإِذَا مَرُّوا۟ بِٱللَّغْوِ مَرُّوا۟ كِرَامًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,25,' وَٱلَّذِينَ إِذَا ذُكِّرُوا۟ بِـَٔايَتِ رَبِّهِمْ لَمْ يَخِرُّوا۟ عَلَيْهَا صُمًّۭا وَعُمْيَانًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,25,' وَٱلَّذِينَ يَقُولُونَ رَبَّنَا هَبْ لَنَا مِنْ أَزْوَجِنَا وَذُرِّيَّتِنَا قُرَّةَ أَعْيُنٍۢ وَٱجْعَلْنَا لِلْمُتَّقِينَ إِمَامًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,25,' أُو۟لَٓئِكَ يُجْزَوْنَ ٱلْغُرْفَةَ بِمَا صَبَرُوا۟ وَيُلَقَّوْنَ فِيهَا تَحِيَّةًۭ وَسَلَمًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,25,' خَلِدِينَ فِيهَا ۚ حَسُنَتْ مُسْتَقَرًّۭا وَمُقَامًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,25,' قُلْ مَا يَعْبَؤُا۟ بِكُمْ رَبِّى لَوْلَا دُعَآؤُكُمْ ۖ فَقَدْ كَذَّبْتُمْ فَسَوْفَ يَكُونُ لِزَامًۢا');
+INSERT INTO chapters (id, number, quran_id) VALUES(26,26,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,26,' طسٓمٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,26,' تِلْكَ ءَايَتُ ٱلْكِتَبِ ٱلْمُبِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,26,' لَعَلَّكَ بَخِعٌۭ نَّفْسَكَ أَلَّا يَكُونُوا۟ مُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,26,' إِن نَّشَأْ نُنَزِّلْ عَلَيْهِم مِّنَ ٱلسَّمَآءِ ءَايَةًۭ فَظَلَّتْ أَعْنَقُهُمْ لَهَا خَضِعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,26,' وَمَا يَأْتِيهِم مِّن ذِكْرٍۢ مِّنَ ٱلرَّحْمَنِ مُحْدَثٍ إِلَّا كَانُوا۟ عَنْهُ مُعْرِضِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,26,' فَقَدْ كَذَّبُوا۟ فَسَيَأْتِيهِمْ أَنۢبَٓؤُا۟ مَا كَانُوا۟ بِهِۦ يَسْتَهْزِءُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,26,' أَوَلَمْ يَرَوْا۟ إِلَى ٱلْأَرْضِ كَمْ أَنۢبَتْنَا فِيهَا مِن كُلِّ زَوْجٍۢ كَرِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,26,' إِنَّ فِى ذَلِكَ لَءَايَةًۭ ۖ وَمَا كَانَ أَكْثَرُهُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,26,' وَإِنَّ رَبَّكَ لَهُوَ ٱلْعَزِيزُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,26,' وَإِذْ نَادَىٰ رَبُّكَ مُوسَىٰٓ أَنِ ٱئْتِ ٱلْقَوْمَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,26,' قَوْمَ فِرْعَوْنَ ۚ أَلَا يَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,26,' قَالَ رَبِّ إِنِّىٓ أَخَافُ أَن يُكَذِّبُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,26,' وَيَضِيقُ صَدْرِى وَلَا يَنطَلِقُ لِسَانِى فَأَرْسِلْ إِلَىٰ هَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,26,' وَلَهُمْ عَلَىَّ ذَنۢبٌۭ فَأَخَافُ أَن يَقْتُلُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,26,' قَالَ كَلَّا ۖ فَٱذْهَبَا بِـَٔايَتِنَآ ۖ إِنَّا مَعَكُم مُّسْتَمِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,26,' فَأْتِيَا فِرْعَوْنَ فَقُولَآ إِنَّا رَسُولُ رَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,26,' أَنْ أَرْسِلْ مَعَنَا بَنِىٓ إِسْرَٓءِيلَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,26,' قَالَ أَلَمْ نُرَبِّكَ فِينَا وَلِيدًۭا وَلَبِثْتَ فِينَا مِنْ عُمُرِكَ سِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,26,' وَفَعَلْتَ فَعْلَتَكَ ٱلَّتِى فَعَلْتَ وَأَنتَ مِنَ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,26,' قَالَ فَعَلْتُهَآ إِذًۭا وَأَنَا۠ مِنَ ٱلضَّآلِّينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,26,' فَفَرَرْتُ مِنكُمْ لَمَّا خِفْتُكُمْ فَوَهَبَ لِى رَبِّى حُكْمًۭا وَجَعَلَنِى مِنَ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,26,' وَتِلْكَ نِعْمَةٌۭ تَمُنُّهَا عَلَىَّ أَنْ عَبَّدتَّ بَنِىٓ إِسْرَٓءِيلَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,26,' قَالَ فِرْعَوْنُ وَمَا رَبُّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,26,' قَالَ رَبُّ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَمَا بَيْنَهُمَآ ۖ إِن كُنتُم مُّوقِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,26,' قَالَ لِمَنْ حَوْلَهُۥٓ أَلَا تَسْتَمِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,26,' قَالَ رَبُّكُمْ وَرَبُّ ءَابَآئِكُمُ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,26,' قَالَ إِنَّ رَسُولَكُمُ ٱلَّذِىٓ أُرْسِلَ إِلَيْكُمْ لَمَجْنُونٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,26,' قَالَ رَبُّ ٱلْمَشْرِقِ وَٱلْمَغْرِبِ وَمَا بَيْنَهُمَآ ۖ إِن كُنتُمْ تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,26,' قَالَ لَىِٕنِ ٱتَّخَذْتَ إِلَهًا غَيْرِى لَأَجْعَلَنَّكَ مِنَ ٱلْمَسْجُونِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,26,' قَالَ أَوَلَوْ جِئْتُكَ بِشَىْءٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,26,' قَالَ فَأْتِ بِهِۦٓ إِن كُنتَ مِنَ ٱلصَّدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,26,' فَأَلْقَىٰ عَصَاهُ فَإِذَا هِىَ ثُعْبَانٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,26,' وَنَزَعَ يَدَهُۥ فَإِذَا هِىَ بَيْضَآءُ لِلنَّظِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,26,' قَالَ لِلْمَلَإِ حَوْلَهُۥٓ إِنَّ هَذَا لَسَحِرٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,26,' يُرِيدُ أَن يُخْرِجَكُم مِّنْ أَرْضِكُم بِسِحْرِهِۦ فَمَاذَا تَأْمُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,26,' قَالُوٓا۟ أَرْجِهْ وَأَخَاهُ وَٱبْعَثْ فِى ٱلْمَدَآىِٕنِ حَشِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,26,' يَأْتُوكَ بِكُلِّ سَحَّارٍ عَلِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,26,' فَجُمِعَ ٱلسَّحَرَةُ لِمِيقَتِ يَوْمٍۢ مَّعْلُومٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,26,' وَقِيلَ لِلنَّاسِ هَلْ أَنتُم مُّجْتَمِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,26,' لَعَلَّنَا نَتَّبِعُ ٱلسَّحَرَةَ إِن كَانُوا۟ هُمُ ٱلْغَلِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,26,' فَلَمَّا جَآءَ ٱلسَّحَرَةُ قَالُوا۟ لِفِرْعَوْنَ أَىِٕنَّ لَنَا لَأَجْرًا إِن كُنَّا نَحْنُ ٱلْغَلِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,26,' قَالَ نَعَمْ وَإِنَّكُمْ إِذًۭا لَّمِنَ ٱلْمُقَرَّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,26,' قَالَ لَهُم مُّوسَىٰٓ أَلْقُوا۟ مَآ أَنتُم مُّلْقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,26,' فَأَلْقَوْا۟ حِبَالَهُمْ وَعِصِيَّهُمْ وَقَالُوا۟ بِعِزَّةِ فِرْعَوْنَ إِنَّا لَنَحْنُ ٱلْغَلِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,26,' فَأَلْقَىٰ مُوسَىٰ عَصَاهُ فَإِذَا هِىَ تَلْقَفُ مَا يَأْفِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,26,' فَأُلْقِىَ ٱلسَّحَرَةُ سَجِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,26,' قَالُوٓا۟ ءَامَنَّا بِرَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,26,' رَبِّ مُوسَىٰ وَهَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,26,' قَالَ ءَامَنتُمْ لَهُۥ قَبْلَ أَنْ ءَاذَنَ لَكُمْ ۖ إِنَّهُۥ لَكَبِيرُكُمُ ٱلَّذِى عَلَّمَكُمُ ٱلسِّحْرَ فَلَسَوْفَ تَعْلَمُونَ ۚ لَأُقَطِّعَنَّ أَيْدِيَكُمْ وَأَرْجُلَكُم مِّنْ خِلَفٍۢ وَلَأُصَلِّبَنَّكُمْ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,26,' قَالُوا۟ لَا ضَيْرَ ۖ إِنَّآ إِلَىٰ رَبِّنَا مُنقَلِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,26,' إِنَّا نَطْمَعُ أَن يَغْفِرَ لَنَا رَبُّنَا خَطَيَنَآ أَن كُنَّآ أَوَّلَ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,26,' وَأَوْحَيْنَآ إِلَىٰ مُوسَىٰٓ أَنْ أَسْرِ بِعِبَادِىٓ إِنَّكُم مُّتَّبَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,26,' فَأَرْسَلَ فِرْعَوْنُ فِى ٱلْمَدَآىِٕنِ حَشِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,26,' إِنَّ هَٓؤُلَآءِ لَشِرْذِمَةٌۭ قَلِيلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,26,' وَإِنَّهُمْ لَنَا لَغَآئِظُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,26,' وَإِنَّا لَجَمِيعٌ حَذِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,26,' فَأَخْرَجْنَهُم مِّن جَنَّتٍۢ وَعُيُونٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,26,' وَكُنُوزٍۢ وَمَقَامٍۢ كَرِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,26,' كَذَلِكَ وَأَوْرَثْنَهَا بَنِىٓ إِسْرَٓءِيلَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,26,' فَأَتْبَعُوهُم مُّشْرِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,26,' فَلَمَّا تَرَٓءَا ٱلْجَمْعَانِ قَالَ أَصْحَبُ مُوسَىٰٓ إِنَّا لَمُدْرَكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,26,' قَالَ كَلَّآ ۖ إِنَّ مَعِىَ رَبِّى سَيَهْدِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,26,' فَأَوْحَيْنَآ إِلَىٰ مُوسَىٰٓ أَنِ ٱضْرِب بِّعَصَاكَ ٱلْبَحْرَ ۖ فَٱنفَلَقَ فَكَانَ كُلُّ فِرْقٍۢ كَٱلطَّوْدِ ٱلْعَظِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,26,' وَأَزْلَفْنَا ثَمَّ ٱلْءَاخَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,26,' وَأَنجَيْنَا مُوسَىٰ وَمَن مَّعَهُۥٓ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,26,' ثُمَّ أَغْرَقْنَا ٱلْءَاخَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,26,' إِنَّ فِى ذَلِكَ لَءَايَةًۭ ۖ وَمَا كَانَ أَكْثَرُهُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,26,' وَإِنَّ رَبَّكَ لَهُوَ ٱلْعَزِيزُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,26,' وَٱتْلُ عَلَيْهِمْ نَبَأَ إِبْرَهِيمَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,26,' إِذْ قَالَ لِأَبِيهِ وَقَوْمِهِۦ مَا تَعْبُدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,26,' قَالُوا۟ نَعْبُدُ أَصْنَامًۭا فَنَظَلُّ لَهَا عَكِفِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,26,' قَالَ هَلْ يَسْمَعُونَكُمْ إِذْ تَدْعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,26,' أَوْ يَنفَعُونَكُمْ أَوْ يَضُرُّونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,26,' قَالُوا۟ بَلْ وَجَدْنَآ ءَابَآءَنَا كَذَلِكَ يَفْعَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,26,' قَالَ أَفَرَءَيْتُم مَّا كُنتُمْ تَعْبُدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,26,' أَنتُمْ وَءَابَآؤُكُمُ ٱلْأَقْدَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,26,' فَإِنَّهُمْ عَدُوٌّۭ لِّىٓ إِلَّا رَبَّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,26,' ٱلَّذِى خَلَقَنِى فَهُوَ يَهْدِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,26,' وَٱلَّذِى هُوَ يُطْعِمُنِى وَيَسْقِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,26,' وَإِذَا مَرِضْتُ فَهُوَ يَشْفِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,26,' وَٱلَّذِى يُمِيتُنِى ثُمَّ يُحْيِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,26,' وَٱلَّذِىٓ أَطْمَعُ أَن يَغْفِرَ لِى خَطِيٓـَٔتِى يَوْمَ ٱلدِّينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,26,' رَبِّ هَبْ لِى حُكْمًۭا وَأَلْحِقْنِى بِٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,26,' وَٱجْعَل لِّى لِسَانَ صِدْقٍۢ فِى ٱلْءَاخِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,26,' وَٱجْعَلْنِى مِن وَرَثَةِ جَنَّةِ ٱلنَّعِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,26,' وَٱغْفِرْ لِأَبِىٓ إِنَّهُۥ كَانَ مِنَ ٱلضَّآلِّينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,26,' وَلَا تُخْزِنِى يَوْمَ يُبْعَثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,26,' يَوْمَ لَا يَنفَعُ مَالٌۭ وَلَا بَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,26,' إِلَّا مَنْ أَتَى ٱللَّهَ بِقَلْبٍۢ سَلِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,26,' وَأُزْلِفَتِ ٱلْجَنَّةُ لِلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,26,' وَبُرِّزَتِ ٱلْجَحِيمُ لِلْغَاوِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,26,' وَقِيلَ لَهُمْ أَيْنَ مَا كُنتُمْ تَعْبُدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,26,' مِن دُونِ ٱللَّهِ هَلْ يَنصُرُونَكُمْ أَوْ يَنتَصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,26,' فَكُبْكِبُوا۟ فِيهَا هُمْ وَٱلْغَاوُۥنَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,26,' وَجُنُودُ إِبْلِيسَ أَجْمَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,26,' قَالُوا۟ وَهُمْ فِيهَا يَخْتَصِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,26,' تَٱللَّهِ إِن كُنَّا لَفِى ضَلَلٍۢ مُّبِينٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,26,' إِذْ نُسَوِّيكُم بِرَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,26,' وَمَآ أَضَلَّنَآ إِلَّا ٱلْمُجْرِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,1,26,' فَمَا لَنَا مِن شَفِعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,1,26,' وَلَا صَدِيقٍ حَمِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,1,26,' فَلَوْ أَنَّ لَنَا كَرَّةًۭ فَنَكُونَ مِنَ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,1,26,' إِنَّ فِى ذَلِكَ لَءَايَةًۭ ۖ وَمَا كَانَ أَكْثَرُهُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,1,26,' وَإِنَّ رَبَّكَ لَهُوَ ٱلْعَزِيزُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,1,26,' كَذَّبَتْ قَوْمُ نُوحٍ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,1,26,' إِذْ قَالَ لَهُمْ أَخُوهُمْ نُوحٌ أَلَا تَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,1,26,' إِنِّى لَكُمْ رَسُولٌ أَمِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,1,26,' فَٱتَّقُوا۟ ٱللَّهَ وَأَطِيعُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,1,26,' وَمَآ أَسْـَٔلُكُمْ عَلَيْهِ مِنْ أَجْرٍ ۖ إِنْ أَجْرِىَ إِلَّا عَلَىٰ رَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,1,26,' فَٱتَّقُوا۟ ٱللَّهَ وَأَطِيعُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,1,26,' قَالُوٓا۟ أَنُؤْمِنُ لَكَ وَٱتَّبَعَكَ ٱلْأَرْذَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,1,26,' قَالَ وَمَا عِلْمِى بِمَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,1,26,' إِنْ حِسَابُهُمْ إِلَّا عَلَىٰ رَبِّى ۖ لَوْ تَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,1,26,' وَمَآ أَنَا۠ بِطَارِدِ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,1,26,' إِنْ أَنَا۠ إِلَّا نَذِيرٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,1,26,' قَالُوا۟ لَىِٕن لَّمْ تَنتَهِ يَنُوحُ لَتَكُونَنَّ مِنَ ٱلْمَرْجُومِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,1,26,' قَالَ رَبِّ إِنَّ قَوْمِى كَذَّبُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,1,26,' فَٱفْتَحْ بَيْنِى وَبَيْنَهُمْ فَتْحًۭا وَنَجِّنِى وَمَن مَّعِىَ مِنَ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,1,26,' فَأَنجَيْنَهُ وَمَن مَّعَهُۥ فِى ٱلْفُلْكِ ٱلْمَشْحُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,1,26,' ثُمَّ أَغْرَقْنَا بَعْدُ ٱلْبَاقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,1,26,' إِنَّ فِى ذَلِكَ لَءَايَةًۭ ۖ وَمَا كَانَ أَكْثَرُهُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,1,26,' وَإِنَّ رَبَّكَ لَهُوَ ٱلْعَزِيزُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,1,26,' كَذَّبَتْ عَادٌ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,1,26,' إِذْ قَالَ لَهُمْ أَخُوهُمْ هُودٌ أَلَا تَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,1,26,' إِنِّى لَكُمْ رَسُولٌ أَمِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,1,26,' فَٱتَّقُوا۟ ٱللَّهَ وَأَطِيعُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,1,26,' وَمَآ أَسْـَٔلُكُمْ عَلَيْهِ مِنْ أَجْرٍ ۖ إِنْ أَجْرِىَ إِلَّا عَلَىٰ رَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,1,26,' أَتَبْنُونَ بِكُلِّ رِيعٍ ءَايَةًۭ تَعْبَثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,1,26,' وَتَتَّخِذُونَ مَصَانِعَ لَعَلَّكُمْ تَخْلُدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,1,26,' وَإِذَا بَطَشْتُم بَطَشْتُمْ جَبَّارِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,1,26,' فَٱتَّقُوا۟ ٱللَّهَ وَأَطِيعُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,1,26,' وَٱتَّقُوا۟ ٱلَّذِىٓ أَمَدَّكُم بِمَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,1,26,' أَمَدَّكُم بِأَنْعَمٍۢ وَبَنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,1,26,' وَجَنَّتٍۢ وَعُيُونٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,1,26,' إِنِّىٓ أَخَافُ عَلَيْكُمْ عَذَابَ يَوْمٍ عَظِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,1,26,' قَالُوا۟ سَوَآءٌ عَلَيْنَآ أَوَعَظْتَ أَمْ لَمْ تَكُن مِّنَ ٱلْوَعِظِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,1,26,' إِنْ هَذَآ إِلَّا خُلُقُ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,1,26,' وَمَا نَحْنُ بِمُعَذَّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,1,26,' فَكَذَّبُوهُ فَأَهْلَكْنَهُمْ ۗ إِنَّ فِى ذَلِكَ لَءَايَةًۭ ۖ وَمَا كَانَ أَكْثَرُهُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,1,26,' وَإِنَّ رَبَّكَ لَهُوَ ٱلْعَزِيزُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,1,26,' كَذَّبَتْ ثَمُودُ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,1,26,' إِذْ قَالَ لَهُمْ أَخُوهُمْ صَلِحٌ أَلَا تَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,1,26,' إِنِّى لَكُمْ رَسُولٌ أَمِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,1,26,' فَٱتَّقُوا۟ ٱللَّهَ وَأَطِيعُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,1,26,' وَمَآ أَسْـَٔلُكُمْ عَلَيْهِ مِنْ أَجْرٍ ۖ إِنْ أَجْرِىَ إِلَّا عَلَىٰ رَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,1,26,' أَتُتْرَكُونَ فِى مَا هَهُنَآ ءَامِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,1,26,' فِى جَنَّتٍۢ وَعُيُونٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,1,26,' وَزُرُوعٍۢ وَنَخْلٍۢ طَلْعُهَا هَضِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,1,26,' وَتَنْحِتُونَ مِنَ ٱلْجِبَالِ بُيُوتًۭا فَرِهِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,1,26,' فَٱتَّقُوا۟ ٱللَّهَ وَأَطِيعُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,1,26,' وَلَا تُطِيعُوٓا۟ أَمْرَ ٱلْمُسْرِفِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,1,26,' ٱلَّذِينَ يُفْسِدُونَ فِى ٱلْأَرْضِ وَلَا يُصْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,1,26,' قَالُوٓا۟ إِنَّمَآ أَنتَ مِنَ ٱلْمُسَحَّرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,1,26,' مَآ أَنتَ إِلَّا بَشَرٌۭ مِّثْلُنَا فَأْتِ بِـَٔايَةٍ إِن كُنتَ مِنَ ٱلصَّدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,1,26,' قَالَ هَذِهِۦ نَاقَةٌۭ لَّهَا شِرْبٌۭ وَلَكُمْ شِرْبُ يَوْمٍۢ مَّعْلُومٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,1,26,' وَلَا تَمَسُّوهَا بِسُوٓءٍۢ فَيَأْخُذَكُمْ عَذَابُ يَوْمٍ عَظِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,1,26,' فَعَقَرُوهَا فَأَصْبَحُوا۟ نَدِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,1,26,' فَأَخَذَهُمُ ٱلْعَذَابُ ۗ إِنَّ فِى ذَلِكَ لَءَايَةًۭ ۖ وَمَا كَانَ أَكْثَرُهُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,1,26,' وَإِنَّ رَبَّكَ لَهُوَ ٱلْعَزِيزُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,1,26,' كَذَّبَتْ قَوْمُ لُوطٍ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,1,26,' إِذْ قَالَ لَهُمْ أَخُوهُمْ لُوطٌ أَلَا تَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,1,26,' إِنِّى لَكُمْ رَسُولٌ أَمِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,1,26,' فَٱتَّقُوا۟ ٱللَّهَ وَأَطِيعُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,1,26,' وَمَآ أَسْـَٔلُكُمْ عَلَيْهِ مِنْ أَجْرٍ ۖ إِنْ أَجْرِىَ إِلَّا عَلَىٰ رَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,1,26,' أَتَأْتُونَ ٱلذُّكْرَانَ مِنَ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,1,26,' وَتَذَرُونَ مَا خَلَقَ لَكُمْ رَبُّكُم مِّنْ أَزْوَجِكُم ۚ بَلْ أَنتُمْ قَوْمٌ عَادُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,1,26,' قَالُوا۟ لَىِٕن لَّمْ تَنتَهِ يَلُوطُ لَتَكُونَنَّ مِنَ ٱلْمُخْرَجِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,1,26,' قَالَ إِنِّى لِعَمَلِكُم مِّنَ ٱلْقَالِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,1,26,' رَبِّ نَجِّنِى وَأَهْلِى مِمَّا يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,1,26,' فَنَجَّيْنَهُ وَأَهْلَهُۥٓ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,1,26,' إِلَّا عَجُوزًۭا فِى ٱلْغَبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,1,26,' ثُمَّ دَمَّرْنَا ٱلْءَاخَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,1,26,' وَأَمْطَرْنَا عَلَيْهِم مَّطَرًۭا ۖ فَسَآءَ مَطَرُ ٱلْمُنذَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,1,26,' إِنَّ فِى ذَلِكَ لَءَايَةًۭ ۖ وَمَا كَانَ أَكْثَرُهُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,1,26,' وَإِنَّ رَبَّكَ لَهُوَ ٱلْعَزِيزُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,1,26,' كَذَّبَ أَصْحَبُ لْـَٔيْكَةِ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,1,26,' إِذْ قَالَ لَهُمْ شُعَيْبٌ أَلَا تَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,1,26,' إِنِّى لَكُمْ رَسُولٌ أَمِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,1,26,' فَٱتَّقُوا۟ ٱللَّهَ وَأَطِيعُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,1,26,' وَمَآ أَسْـَٔلُكُمْ عَلَيْهِ مِنْ أَجْرٍ ۖ إِنْ أَجْرِىَ إِلَّا عَلَىٰ رَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,1,26,' أَوْفُوا۟ ٱلْكَيْلَ وَلَا تَكُونُوا۟ مِنَ ٱلْمُخْسِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,1,26,' وَزِنُوا۟ بِٱلْقِسْطَاسِ ٱلْمُسْتَقِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(183,1,26,' وَلَا تَبْخَسُوا۟ ٱلنَّاسَ أَشْيَآءَهُمْ وَلَا تَعْثَوْا۟ فِى ٱلْأَرْضِ مُفْسِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(184,1,26,' وَٱتَّقُوا۟ ٱلَّذِى خَلَقَكُمْ وَٱلْجِبِلَّةَ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(185,1,26,' قَالُوٓا۟ إِنَّمَآ أَنتَ مِنَ ٱلْمُسَحَّرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(186,1,26,' وَمَآ أَنتَ إِلَّا بَشَرٌۭ مِّثْلُنَا وَإِن نَّظُنُّكَ لَمِنَ ٱلْكَذِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(187,1,26,' فَأَسْقِطْ عَلَيْنَا كِسَفًۭا مِّنَ ٱلسَّمَآءِ إِن كُنتَ مِنَ ٱلصَّدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(188,1,26,' قَالَ رَبِّىٓ أَعْلَمُ بِمَا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(189,1,26,' فَكَذَّبُوهُ فَأَخَذَهُمْ عَذَابُ يَوْمِ ٱلظُّلَّةِ ۚ إِنَّهُۥ كَانَ عَذَابَ يَوْمٍ عَظِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(190,1,26,' إِنَّ فِى ذَلِكَ لَءَايَةًۭ ۖ وَمَا كَانَ أَكْثَرُهُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(191,1,26,' وَإِنَّ رَبَّكَ لَهُوَ ٱلْعَزِيزُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(192,1,26,' وَإِنَّهُۥ لَتَنزِيلُ رَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(193,1,26,' نَزَلَ بِهِ ٱلرُّوحُ ٱلْأَمِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(194,1,26,' عَلَىٰ قَلْبِكَ لِتَكُونَ مِنَ ٱلْمُنذِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(195,1,26,' بِلِسَانٍ عَرَبِىٍّۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(196,1,26,' وَإِنَّهُۥ لَفِى زُبُرِ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(197,1,26,' أَوَلَمْ يَكُن لَّهُمْ ءَايَةً أَن يَعْلَمَهُۥ عُلَمَٓؤُا۟ بَنِىٓ إِسْرَٓءِيلَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(198,1,26,' وَلَوْ نَزَّلْنَهُ عَلَىٰ بَعْضِ ٱلْأَعْجَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(199,1,26,' فَقَرَأَهُۥ عَلَيْهِم مَّا كَانُوا۟ بِهِۦ مُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(200,1,26,' كَذَلِكَ سَلَكْنَهُ فِى قُلُوبِ ٱلْمُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(201,1,26,' لَا يُؤْمِنُونَ بِهِۦ حَتَّىٰ يَرَوُا۟ ٱلْعَذَابَ ٱلْأَلِيمَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(202,1,26,' فَيَأْتِيَهُم بَغْتَةًۭ وَهُمْ لَا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(203,1,26,' فَيَقُولُوا۟ هَلْ نَحْنُ مُنظَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(204,1,26,' أَفَبِعَذَابِنَا يَسْتَعْجِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(205,1,26,' أَفَرَءَيْتَ إِن مَّتَّعْنَهُمْ سِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(206,1,26,' ثُمَّ جَآءَهُم مَّا كَانُوا۟ يُوعَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(207,1,26,' مَآ أَغْنَىٰ عَنْهُم مَّا كَانُوا۟ يُمَتَّعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(208,1,26,' وَمَآ أَهْلَكْنَا مِن قَرْيَةٍ إِلَّا لَهَا مُنذِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(209,1,26,' ذِكْرَىٰ وَمَا كُنَّا ظَلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(210,1,26,' وَمَا تَنَزَّلَتْ بِهِ ٱلشَّيَطِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(211,1,26,' وَمَا يَنۢبَغِى لَهُمْ وَمَا يَسْتَطِيعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(212,1,26,' إِنَّهُمْ عَنِ ٱلسَّمْعِ لَمَعْزُولُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(213,1,26,' فَلَا تَدْعُ مَعَ ٱللَّهِ إِلَهًا ءَاخَرَ فَتَكُونَ مِنَ ٱلْمُعَذَّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(214,1,26,' وَأَنذِرْ عَشِيرَتَكَ ٱلْأَقْرَبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(215,1,26,' وَٱخْفِضْ جَنَاحَكَ لِمَنِ ٱتَّبَعَكَ مِنَ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(216,1,26,' فَإِنْ عَصَوْكَ فَقُلْ إِنِّى بَرِىٓءٌۭ مِّمَّا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(217,1,26,' وَتَوَكَّلْ عَلَى ٱلْعَزِيزِ ٱلرَّحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(218,1,26,' ٱلَّذِى يَرَىٰكَ حِينَ تَقُومُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(219,1,26,' وَتَقَلُّبَكَ فِى ٱلسَّجِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(220,1,26,' إِنَّهُۥ هُوَ ٱلسَّمِيعُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(221,1,26,' هَلْ أُنَبِّئُكُمْ عَلَىٰ مَن تَنَزَّلُ ٱلشَّيَطِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(222,1,26,' تَنَزَّلُ عَلَىٰ كُلِّ أَفَّاكٍ أَثِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(223,1,26,' يُلْقُونَ ٱلسَّمْعَ وَأَكْثَرُهُمْ كَذِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(224,1,26,' وَٱلشُّعَرَآءُ يَتَّبِعُهُمُ ٱلْغَاوُۥنَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(225,1,26,' أَلَمْ تَرَ أَنَّهُمْ فِى كُلِّ وَادٍۢ يَهِيمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(226,1,26,' وَأَنَّهُمْ يَقُولُونَ مَا لَا يَفْعَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(227,1,26,' إِلَّا ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ وَذَكَرُوا۟ ٱللَّهَ كَثِيرًۭا وَٱنتَصَرُوا۟ مِنۢ بَعْدِ مَا ظُلِمُوا۟ ۗ وَسَيَعْلَمُ ٱلَّذِينَ ظَلَمُوٓا۟ أَىَّ مُنقَلَبٍۢ يَنقَلِبُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(27,27,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,27,' طسٓ ۚ تِلْكَ ءَايَتُ ٱلْقُرْءَانِ وَكِتَابٍۢ مُّبِينٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,27,' هُدًۭى وَبُشْرَىٰ لِلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,27,' ٱلَّذِينَ يُقِيمُونَ ٱلصَّلَوٰةَ وَيُؤْتُونَ ٱلزَّكَوٰةَ وَهُم بِٱلْءَاخِرَةِ هُمْ يُوقِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,27,' إِنَّ ٱلَّذِينَ لَا يُؤْمِنُونَ بِٱلْءَاخِرَةِ زَيَّنَّا لَهُمْ أَعْمَلَهُمْ فَهُمْ يَعْمَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,27,' أُو۟لَٓئِكَ ٱلَّذِينَ لَهُمْ سُوٓءُ ٱلْعَذَابِ وَهُمْ فِى ٱلْءَاخِرَةِ هُمُ ٱلْأَخْسَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,27,' وَإِنَّكَ لَتُلَقَّى ٱلْقُرْءَانَ مِن لَّدُنْ حَكِيمٍ عَلِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,27,' إِذْ قَالَ مُوسَىٰ لِأَهْلِهِۦٓ إِنِّىٓ ءَانَسْتُ نَارًۭا سَـَٔاتِيكُم مِّنْهَا بِخَبَرٍ أَوْ ءَاتِيكُم بِشِهَابٍۢ قَبَسٍۢ لَّعَلَّكُمْ تَصْطَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,27,' فَلَمَّا جَآءَهَا نُودِىَ أَنۢ بُورِكَ مَن فِى ٱلنَّارِ وَمَنْ حَوْلَهَا وَسُبْحَنَ ٱللَّهِ رَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,27,' يَمُوسَىٰٓ إِنَّهُۥٓ أَنَا ٱللَّهُ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,27,' وَأَلْقِ عَصَاكَ ۚ فَلَمَّا رَءَاهَا تَهْتَزُّ كَأَنَّهَا جَآنٌّۭ وَلَّىٰ مُدْبِرًۭا وَلَمْ يُعَقِّبْ ۚ يَمُوسَىٰ لَا تَخَفْ إِنِّى لَا يَخَافُ لَدَىَّ ٱلْمُرْسَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,27,' إِلَّا مَن ظَلَمَ ثُمَّ بَدَّلَ حُسْنًۢا بَعْدَ سُوٓءٍۢ فَإِنِّى غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,27,' وَأَدْخِلْ يَدَكَ فِى جَيْبِكَ تَخْرُجْ بَيْضَآءَ مِنْ غَيْرِ سُوٓءٍۢ ۖ فِى تِسْعِ ءَايَتٍ إِلَىٰ فِرْعَوْنَ وَقَوْمِهِۦٓ ۚ إِنَّهُمْ كَانُوا۟ قَوْمًۭا فَسِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,27,' فَلَمَّا جَآءَتْهُمْ ءَايَتُنَا مُبْصِرَةًۭ قَالُوا۟ هَذَا سِحْرٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,27,' وَجَحَدُوا۟ بِهَا وَٱسْتَيْقَنَتْهَآ أَنفُسُهُمْ ظُلْمًۭا وَعُلُوًّۭا ۚ فَٱنظُرْ كَيْفَ كَانَ عَقِبَةُ ٱلْمُفْسِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,27,' وَلَقَدْ ءَاتَيْنَا دَاوُۥدَ وَسُلَيْمَنَ عِلْمًۭا ۖ وَقَالَا ٱلْحَمْدُ لِلَّهِ ٱلَّذِى فَضَّلَنَا عَلَىٰ كَثِيرٍۢ مِّنْ عِبَادِهِ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,27,' وَوَرِثَ سُلَيْمَنُ دَاوُۥدَ ۖ وَقَالَ يَٓأَيُّهَا ٱلنَّاسُ عُلِّمْنَا مَنطِقَ ٱلطَّيْرِ وَأُوتِينَا مِن كُلِّ شَىْءٍ ۖ إِنَّ هَذَا لَهُوَ ٱلْفَضْلُ ٱلْمُبِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,27,' وَحُشِرَ لِسُلَيْمَنَ جُنُودُهُۥ مِنَ ٱلْجِنِّ وَٱلْإِنسِ وَٱلطَّيْرِ فَهُمْ يُوزَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,27,' حَتَّىٰٓ إِذَآ أَتَوْا۟ عَلَىٰ وَادِ ٱلنَّمْلِ قَالَتْ نَمْلَةٌۭ يَٓأَيُّهَا ٱلنَّمْلُ ٱدْخُلُوا۟ مَسَكِنَكُمْ لَا يَحْطِمَنَّكُمْ سُلَيْمَنُ وَجُنُودُهُۥ وَهُمْ لَا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,27,' فَتَبَسَّمَ ضَاحِكًۭا مِّن قَوْلِهَا وَقَالَ رَبِّ أَوْزِعْنِىٓ أَنْ أَشْكُرَ نِعْمَتَكَ ٱلَّتِىٓ أَنْعَمْتَ عَلَىَّ وَعَلَىٰ وَلِدَىَّ وَأَنْ أَعْمَلَ صَلِحًۭا تَرْضَىٰهُ وَأَدْخِلْنِى بِرَحْمَتِكَ فِى عِبَادِكَ ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,27,' وَتَفَقَّدَ ٱلطَّيْرَ فَقَالَ مَا لِىَ لَآ أَرَى ٱلْهُدْهُدَ أَمْ كَانَ مِنَ ٱلْغَآئِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,27,' لَأُعَذِّبَنَّهُۥ عَذَابًۭا شَدِيدًا أَوْ لَأَا۟ذْبَحَنَّهُۥٓ أَوْ لَيَأْتِيَنِّى بِسُلْطَنٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,27,' فَمَكَثَ غَيْرَ بَعِيدٍۢ فَقَالَ أَحَطتُ بِمَا لَمْ تُحِطْ بِهِۦ وَجِئْتُكَ مِن سَبَإٍۭ بِنَبَإٍۢ يَقِينٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,27,' إِنِّى وَجَدتُّ ٱمْرَأَةًۭ تَمْلِكُهُمْ وَأُوتِيَتْ مِن كُلِّ شَىْءٍۢ وَلَهَا عَرْشٌ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,27,' وَجَدتُّهَا وَقَوْمَهَا يَسْجُدُونَ لِلشَّمْسِ مِن دُونِ ٱللَّهِ وَزَيَّنَ لَهُمُ ٱلشَّيْطَنُ أَعْمَلَهُمْ فَصَدَّهُمْ عَنِ ٱلسَّبِيلِ فَهُمْ لَا يَهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,27,' أَلَّا يَسْجُدُوا۟ لِلَّهِ ٱلَّذِى يُخْرِجُ ٱلْخَبْءَ فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ وَيَعْلَمُ مَا تُخْفُونَ وَمَا تُعْلِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,27,' ٱللَّهُ لَآ إِلَهَ إِلَّا هُوَ رَبُّ ٱلْعَرْشِ ٱلْعَظِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,27,' قَالَ سَنَنظُرُ أَصَدَقْتَ أَمْ كُنتَ مِنَ ٱلْكَذِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,27,' ٱذْهَب بِّكِتَبِى هَذَا فَأَلْقِهْ إِلَيْهِمْ ثُمَّ تَوَلَّ عَنْهُمْ فَٱنظُرْ مَاذَا يَرْجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,27,' قَالَتْ يَٓأَيُّهَا ٱلْمَلَؤُا۟ إِنِّىٓ أُلْقِىَ إِلَىَّ كِتَبٌۭ كَرِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,27,' إِنَّهُۥ مِن سُلَيْمَنَ وَإِنَّهُۥ بِسْمِ ٱللَّهِ ٱلرَّحْمَنِ ٱلرَّحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,27,' أَلَّا تَعْلُوا۟ عَلَىَّ وَأْتُونِى مُسْلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,27,' قَالَتْ يَٓأَيُّهَا ٱلْمَلَؤُا۟ أَفْتُونِى فِىٓ أَمْرِى مَا كُنتُ قَاطِعَةً أَمْرًا حَتَّىٰ تَشْهَدُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,27,' قَالُوا۟ نَحْنُ أُو۟لُوا۟ قُوَّةٍۢ وَأُو۟لُوا۟ بَأْسٍۢ شَدِيدٍۢ وَٱلْأَمْرُ إِلَيْكِ فَٱنظُرِى مَاذَا تَأْمُرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,27,' قَالَتْ إِنَّ ٱلْمُلُوكَ إِذَا دَخَلُوا۟ قَرْيَةً أَفْسَدُوهَا وَجَعَلُوٓا۟ أَعِزَّةَ أَهْلِهَآ أَذِلَّةًۭ ۖ وَكَذَلِكَ يَفْعَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,27,' وَإِنِّى مُرْسِلَةٌ إِلَيْهِم بِهَدِيَّةٍۢ فَنَاظِرَةٌۢ بِمَ يَرْجِعُ ٱلْمُرْسَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,27,' فَلَمَّا جَآءَ سُلَيْمَنَ قَالَ أَتُمِدُّونَنِ بِمَالٍۢ فَمَآ ءَاتَىٰنِۦَ ٱللَّهُ خَيْرٌۭ مِّمَّآ ءَاتَىٰكُم بَلْ أَنتُم بِهَدِيَّتِكُمْ تَفْرَحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,27,' ٱرْجِعْ إِلَيْهِمْ فَلَنَأْتِيَنَّهُم بِجُنُودٍۢ لَّا قِبَلَ لَهُم بِهَا وَلَنُخْرِجَنَّهُم مِّنْهَآ أَذِلَّةًۭ وَهُمْ صَغِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,27,' قَالَ يَٓأَيُّهَا ٱلْمَلَؤُا۟ أَيُّكُمْ يَأْتِينِى بِعَرْشِهَا قَبْلَ أَن يَأْتُونِى مُسْلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,27,' قَالَ عِفْرِيتٌۭ مِّنَ ٱلْجِنِّ أَنَا۠ ءَاتِيكَ بِهِۦ قَبْلَ أَن تَقُومَ مِن مَّقَامِكَ ۖ وَإِنِّى عَلَيْهِ لَقَوِىٌّ أَمِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,27,' قَالَ ٱلَّذِى عِندَهُۥ عِلْمٌۭ مِّنَ ٱلْكِتَبِ أَنَا۠ ءَاتِيكَ بِهِۦ قَبْلَ أَن يَرْتَدَّ إِلَيْكَ طَرْفُكَ ۚ فَلَمَّا رَءَاهُ مُسْتَقِرًّا عِندَهُۥ قَالَ هَذَا مِن فَضْلِ رَبِّى لِيَبْلُوَنِىٓ ءَأَشْكُرُ أَمْ أَكْفُرُ ۖ وَمَن شَكَرَ فَإِنَّمَا يَشْكُرُ لِنَفْسِهِۦ ۖ وَمَن كَفَرَ فَإِنَّ رَبِّى غَنِىٌّۭ كَرِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,27,' قَالَ نَكِّرُوا۟ لَهَا عَرْشَهَا نَنظُرْ أَتَهْتَدِىٓ أَمْ تَكُونُ مِنَ ٱلَّذِينَ لَا يَهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,27,' فَلَمَّا جَآءَتْ قِيلَ أَهَكَذَا عَرْشُكِ ۖ قَالَتْ كَأَنَّهُۥ هُوَ ۚ وَأُوتِينَا ٱلْعِلْمَ مِن قَبْلِهَا وَكُنَّا مُسْلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,27,' وَصَدَّهَا مَا كَانَت تَّعْبُدُ مِن دُونِ ٱللَّهِ ۖ إِنَّهَا كَانَتْ مِن قَوْمٍۢ كَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,27,' قِيلَ لَهَا ٱدْخُلِى ٱلصَّرْحَ ۖ فَلَمَّا رَأَتْهُ حَسِبَتْهُ لُجَّةًۭ وَكَشَفَتْ عَن سَاقَيْهَا ۚ قَالَ إِنَّهُۥ صَرْحٌۭ مُّمَرَّدٌۭ مِّن قَوَارِيرَ ۗ قَالَتْ رَبِّ إِنِّى ظَلَمْتُ نَفْسِى وَأَسْلَمْتُ مَعَ سُلَيْمَنَ لِلَّهِ رَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,27,' وَلَقَدْ أَرْسَلْنَآ إِلَىٰ ثَمُودَ أَخَاهُمْ صَلِحًا أَنِ ٱعْبُدُوا۟ ٱللَّهَ فَإِذَا هُمْ فَرِيقَانِ يَخْتَصِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,27,' قَالَ يَقَوْمِ لِمَ تَسْتَعْجِلُونَ بِٱلسَّيِّئَةِ قَبْلَ ٱلْحَسَنَةِ ۖ لَوْلَا تَسْتَغْفِرُونَ ٱللَّهَ لَعَلَّكُمْ تُرْحَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,27,' قَالُوا۟ ٱطَّيَّرْنَا بِكَ وَبِمَن مَّعَكَ ۚ قَالَ طَٓئِرُكُمْ عِندَ ٱللَّهِ ۖ بَلْ أَنتُمْ قَوْمٌۭ تُفْتَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,27,' وَكَانَ فِى ٱلْمَدِينَةِ تِسْعَةُ رَهْطٍۢ يُفْسِدُونَ فِى ٱلْأَرْضِ وَلَا يُصْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,27,' قَالُوا۟ تَقَاسَمُوا۟ بِٱللَّهِ لَنُبَيِّتَنَّهُۥ وَأَهْلَهُۥ ثُمَّ لَنَقُولَنَّ لِوَلِيِّهِۦ مَا شَهِدْنَا مَهْلِكَ أَهْلِهِۦ وَإِنَّا لَصَدِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,27,' وَمَكَرُوا۟ مَكْرًۭا وَمَكَرْنَا مَكْرًۭا وَهُمْ لَا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,27,' فَٱنظُرْ كَيْفَ كَانَ عَقِبَةُ مَكْرِهِمْ أَنَّا دَمَّرْنَهُمْ وَقَوْمَهُمْ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,27,' فَتِلْكَ بُيُوتُهُمْ خَاوِيَةًۢ بِمَا ظَلَمُوٓا۟ ۗ إِنَّ فِى ذَلِكَ لَءَايَةًۭ لِّقَوْمٍۢ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,27,' وَأَنجَيْنَا ٱلَّذِينَ ءَامَنُوا۟ وَكَانُوا۟ يَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,27,' وَلُوطًا إِذْ قَالَ لِقَوْمِهِۦٓ أَتَأْتُونَ ٱلْفَحِشَةَ وَأَنتُمْ تُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,27,' أَئِنَّكُمْ لَتَأْتُونَ ٱلرِّجَالَ شَهْوَةًۭ مِّن دُونِ ٱلنِّسَآءِ ۚ بَلْ أَنتُمْ قَوْمٌۭ تَجْهَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,27,' فَمَا كَانَ جَوَابَ قَوْمِهِۦٓ إِلَّآ أَن قَالُوٓا۟ أَخْرِجُوٓا۟ ءَالَ لُوطٍۢ مِّن قَرْيَتِكُمْ ۖ إِنَّهُمْ أُنَاسٌۭ يَتَطَهَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,27,' فَأَنجَيْنَهُ وَأَهْلَهُۥٓ إِلَّا ٱمْرَأَتَهُۥ قَدَّرْنَهَا مِنَ ٱلْغَبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,27,' وَأَمْطَرْنَا عَلَيْهِم مَّطَرًۭا ۖ فَسَآءَ مَطَرُ ٱلْمُنذَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,27,' قُلِ ٱلْحَمْدُ لِلَّهِ وَسَلَمٌ عَلَىٰ عِبَادِهِ ٱلَّذِينَ ٱصْطَفَىٰٓ ۗ ءَآللَّهُ خَيْرٌ أَمَّا يُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,27,' أَمَّنْ خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ وَأَنزَلَ لَكُم مِّنَ ٱلسَّمَآءِ مَآءًۭ فَأَنۢبَتْنَا بِهِۦ حَدَآئِقَ ذَاتَ بَهْجَةٍۢ مَّا كَانَ لَكُمْ أَن تُنۢبِتُوا۟ شَجَرَهَآ ۗ أَءِلَهٌۭ مَّعَ ٱللَّهِ ۚ بَلْ هُمْ قَوْمٌۭ يَعْدِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,27,' أَمَّن جَعَلَ ٱلْأَرْضَ قَرَارًۭا وَجَعَلَ خِلَلَهَآ أَنْهَرًۭا وَجَعَلَ لَهَا رَوَسِىَ وَجَعَلَ بَيْنَ ٱلْبَحْرَيْنِ حَاجِزًا ۗ أَءِلَهٌۭ مَّعَ ٱللَّهِ ۚ بَلْ أَكْثَرُهُمْ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,27,' أَمَّن يُجِيبُ ٱلْمُضْطَرَّ إِذَا دَعَاهُ وَيَكْشِفُ ٱلسُّوٓءَ وَيَجْعَلُكُمْ خُلَفَآءَ ٱلْأَرْضِ ۗ أَءِلَهٌۭ مَّعَ ٱللَّهِ ۚ قَلِيلًۭا مَّا تَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,27,' أَمَّن يَهْدِيكُمْ فِى ظُلُمَتِ ٱلْبَرِّ وَٱلْبَحْرِ وَمَن يُرْسِلُ ٱلرِّيَحَ بُشْرًۢا بَيْنَ يَدَىْ رَحْمَتِهِۦٓ ۗ أَءِلَهٌۭ مَّعَ ٱللَّهِ ۚ تَعَلَى ٱللَّهُ عَمَّا يُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,27,' أَمَّن يَبْدَؤُا۟ ٱلْخَلْقَ ثُمَّ يُعِيدُهُۥ وَمَن يَرْزُقُكُم مِّنَ ٱلسَّمَآءِ وَٱلْأَرْضِ ۗ أَءِلَهٌۭ مَّعَ ٱللَّهِ ۚ قُلْ هَاتُوا۟ بُرْهَنَكُمْ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,27,' قُل لَّا يَعْلَمُ مَن فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ٱلْغَيْبَ إِلَّا ٱللَّهُ ۚ وَمَا يَشْعُرُونَ أَيَّانَ يُبْعَثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,27,' بَلِ ٱدَّرَكَ عِلْمُهُمْ فِى ٱلْءَاخِرَةِ ۚ بَلْ هُمْ فِى شَكٍّۢ مِّنْهَا ۖ بَلْ هُم مِّنْهَا عَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,27,' وَقَالَ ٱلَّذِينَ كَفَرُوٓا۟ أَءِذَا كُنَّا تُرَبًۭا وَءَابَآؤُنَآ أَئِنَّا لَمُخْرَجُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,27,' لَقَدْ وُعِدْنَا هَذَا نَحْنُ وَءَابَآؤُنَا مِن قَبْلُ إِنْ هَذَآ إِلَّآ أَسَطِيرُ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,27,' قُلْ سِيرُوا۟ فِى ٱلْأَرْضِ فَٱنظُرُوا۟ كَيْفَ كَانَ عَقِبَةُ ٱلْمُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,27,' وَلَا تَحْزَنْ عَلَيْهِمْ وَلَا تَكُن فِى ضَيْقٍۢ مِّمَّا يَمْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,27,' وَيَقُولُونَ مَتَىٰ هَذَا ٱلْوَعْدُ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,27,' قُلْ عَسَىٰٓ أَن يَكُونَ رَدِفَ لَكُم بَعْضُ ٱلَّذِى تَسْتَعْجِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,27,' وَإِنَّ رَبَّكَ لَذُو فَضْلٍ عَلَى ٱلنَّاسِ وَلَكِنَّ أَكْثَرَهُمْ لَا يَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,27,' وَإِنَّ رَبَّكَ لَيَعْلَمُ مَا تُكِنُّ صُدُورُهُمْ وَمَا يُعْلِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,27,' وَمَا مِنْ غَآئِبَةٍۢ فِى ٱلسَّمَآءِ وَٱلْأَرْضِ إِلَّا فِى كِتَبٍۢ مُّبِينٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,27,' إِنَّ هَذَا ٱلْقُرْءَانَ يَقُصُّ عَلَىٰ بَنِىٓ إِسْرَٓءِيلَ أَكْثَرَ ٱلَّذِى هُمْ فِيهِ يَخْتَلِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,27,' وَإِنَّهُۥ لَهُدًۭى وَرَحْمَةٌۭ لِّلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,27,' إِنَّ رَبَّكَ يَقْضِى بَيْنَهُم بِحُكْمِهِۦ ۚ وَهُوَ ٱلْعَزِيزُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,27,' فَتَوَكَّلْ عَلَى ٱللَّهِ ۖ إِنَّكَ عَلَى ٱلْحَقِّ ٱلْمُبِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,27,' إِنَّكَ لَا تُسْمِعُ ٱلْمَوْتَىٰ وَلَا تُسْمِعُ ٱلصُّمَّ ٱلدُّعَآءَ إِذَا وَلَّوْا۟ مُدْبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,27,' وَمَآ أَنتَ بِهَدِى ٱلْعُمْىِ عَن ضَلَلَتِهِمْ ۖ إِن تُسْمِعُ إِلَّا مَن يُؤْمِنُ بِـَٔايَتِنَا فَهُم مُّسْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,27,' وَإِذَا وَقَعَ ٱلْقَوْلُ عَلَيْهِمْ أَخْرَجْنَا لَهُمْ دَآبَّةًۭ مِّنَ ٱلْأَرْضِ تُكَلِّمُهُمْ أَنَّ ٱلنَّاسَ كَانُوا۟ بِـَٔايَتِنَا لَا يُوقِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,27,' وَيَوْمَ نَحْشُرُ مِن كُلِّ أُمَّةٍۢ فَوْجًۭا مِّمَّن يُكَذِّبُ بِـَٔايَتِنَا فَهُمْ يُوزَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,27,' حَتَّىٰٓ إِذَا جَآءُو قَالَ أَكَذَّبْتُم بِـَٔايَتِى وَلَمْ تُحِيطُوا۟ بِهَا عِلْمًا أَمَّاذَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,27,' وَوَقَعَ ٱلْقَوْلُ عَلَيْهِم بِمَا ظَلَمُوا۟ فَهُمْ لَا يَنطِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,27,' أَلَمْ يَرَوْا۟ أَنَّا جَعَلْنَا ٱلَّيْلَ لِيَسْكُنُوا۟ فِيهِ وَٱلنَّهَارَ مُبْصِرًا ۚ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّقَوْمٍۢ يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,27,' وَيَوْمَ يُنفَخُ فِى ٱلصُّورِ فَفَزِعَ مَن فِى ٱلسَّمَوَتِ وَمَن فِى ٱلْأَرْضِ إِلَّا مَن شَآءَ ٱللَّهُ ۚ وَكُلٌّ أَتَوْهُ دَخِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,27,' وَتَرَى ٱلْجِبَالَ تَحْسَبُهَا جَامِدَةًۭ وَهِىَ تَمُرُّ مَرَّ ٱلسَّحَابِ ۚ صُنْعَ ٱللَّهِ ٱلَّذِىٓ أَتْقَنَ كُلَّ شَىْءٍ ۚ إِنَّهُۥ خَبِيرٌۢ بِمَا تَفْعَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,27,' مَن جَآءَ بِٱلْحَسَنَةِ فَلَهُۥ خَيْرٌۭ مِّنْهَا وَهُم مِّن فَزَعٍۢ يَوْمَئِذٍ ءَامِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,27,' وَمَن جَآءَ بِٱلسَّيِّئَةِ فَكُبَّتْ وُجُوهُهُمْ فِى ٱلنَّارِ هَلْ تُجْزَوْنَ إِلَّا مَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,27,' إِنَّمَآ أُمِرْتُ أَنْ أَعْبُدَ رَبَّ هَذِهِ ٱلْبَلْدَةِ ٱلَّذِى حَرَّمَهَا وَلَهُۥ كُلُّ شَىْءٍۢ ۖ وَأُمِرْتُ أَنْ أَكُونَ مِنَ ٱلْمُسْلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,27,' وَأَنْ أَتْلُوَا۟ ٱلْقُرْءَانَ ۖ فَمَنِ ٱهْتَدَىٰ فَإِنَّمَا يَهْتَدِى لِنَفْسِهِۦ ۖ وَمَن ضَلَّ فَقُلْ إِنَّمَآ أَنَا۠ مِنَ ٱلْمُنذِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,27,' وَقُلِ ٱلْحَمْدُ لِلَّهِ سَيُرِيكُمْ ءَايَتِهِۦ فَتَعْرِفُونَهَا ۚ وَمَا رَبُّكَ بِغَفِلٍ عَمَّا تَعْمَلُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(28,28,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,28,' طسٓمٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,28,' تِلْكَ ءَايَتُ ٱلْكِتَبِ ٱلْمُبِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,28,' نَتْلُوا۟ عَلَيْكَ مِن نَّبَإِ مُوسَىٰ وَفِرْعَوْنَ بِٱلْحَقِّ لِقَوْمٍۢ يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,28,' إِنَّ فِرْعَوْنَ عَلَا فِى ٱلْأَرْضِ وَجَعَلَ أَهْلَهَا شِيَعًۭا يَسْتَضْعِفُ طَآئِفَةًۭ مِّنْهُمْ يُذَبِّحُ أَبْنَآءَهُمْ وَيَسْتَحْىِۦ نِسَآءَهُمْ ۚ إِنَّهُۥ كَانَ مِنَ ٱلْمُفْسِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,28,' وَنُرِيدُ أَن نَّمُنَّ عَلَى ٱلَّذِينَ ٱسْتُضْعِفُوا۟ فِى ٱلْأَرْضِ وَنَجْعَلَهُمْ أَئِمَّةًۭ وَنَجْعَلَهُمُ ٱلْوَرِثِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,28,' وَنُمَكِّنَ لَهُمْ فِى ٱلْأَرْضِ وَنُرِىَ فِرْعَوْنَ وَهَمَنَ وَجُنُودَهُمَا مِنْهُم مَّا كَانُوا۟ يَحْذَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,28,' وَأَوْحَيْنَآ إِلَىٰٓ أُمِّ مُوسَىٰٓ أَنْ أَرْضِعِيهِ ۖ فَإِذَا خِفْتِ عَلَيْهِ فَأَلْقِيهِ فِى ٱلْيَمِّ وَلَا تَخَافِى وَلَا تَحْزَنِىٓ ۖ إِنَّا رَآدُّوهُ إِلَيْكِ وَجَاعِلُوهُ مِنَ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,28,' فَٱلْتَقَطَهُۥٓ ءَالُ فِرْعَوْنَ لِيَكُونَ لَهُمْ عَدُوًّۭا وَحَزَنًا ۗ إِنَّ فِرْعَوْنَ وَهَمَنَ وَجُنُودَهُمَا كَانُوا۟ خَطِـِٔينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,28,' وَقَالَتِ ٱمْرَأَتُ فِرْعَوْنَ قُرَّتُ عَيْنٍۢ لِّى وَلَكَ ۖ لَا تَقْتُلُوهُ عَسَىٰٓ أَن يَنفَعَنَآ أَوْ نَتَّخِذَهُۥ وَلَدًۭا وَهُمْ لَا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,28,' وَأَصْبَحَ فُؤَادُ أُمِّ مُوسَىٰ فَرِغًا ۖ إِن كَادَتْ لَتُبْدِى بِهِۦ لَوْلَآ أَن رَّبَطْنَا عَلَىٰ قَلْبِهَا لِتَكُونَ مِنَ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,28,' وَقَالَتْ لِأُخْتِهِۦ قُصِّيهِ ۖ فَبَصُرَتْ بِهِۦ عَن جُنُبٍۢ وَهُمْ لَا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,28,' وَحَرَّمْنَا عَلَيْهِ ٱلْمَرَاضِعَ مِن قَبْلُ فَقَالَتْ هَلْ أَدُلُّكُمْ عَلَىٰٓ أَهْلِ بَيْتٍۢ يَكْفُلُونَهُۥ لَكُمْ وَهُمْ لَهُۥ نَصِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,28,' فَرَدَدْنَهُ إِلَىٰٓ أُمِّهِۦ كَىْ تَقَرَّ عَيْنُهَا وَلَا تَحْزَنَ وَلِتَعْلَمَ أَنَّ وَعْدَ ٱللَّهِ حَقٌّۭ وَلَكِنَّ أَكْثَرَهُمْ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,28,' وَلَمَّا بَلَغَ أَشُدَّهُۥ وَٱسْتَوَىٰٓ ءَاتَيْنَهُ حُكْمًۭا وَعِلْمًۭا ۚ وَكَذَلِكَ نَجْزِى ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,28,' وَدَخَلَ ٱلْمَدِينَةَ عَلَىٰ حِينِ غَفْلَةٍۢ مِّنْ أَهْلِهَا فَوَجَدَ فِيهَا رَجُلَيْنِ يَقْتَتِلَانِ هَذَا مِن شِيعَتِهِۦ وَهَذَا مِنْ عَدُوِّهِۦ ۖ فَٱسْتَغَثَهُ ٱلَّذِى مِن شِيعَتِهِۦ عَلَى ٱلَّذِى مِنْ عَدُوِّهِۦ فَوَكَزَهُۥ مُوسَىٰ فَقَضَىٰ عَلَيْهِ ۖ قَالَ هَذَا مِنْ عَمَلِ ٱلشَّيْطَنِ ۖ إِنَّهُۥ عَدُوٌّۭ مُّضِلٌّۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,28,' قَالَ رَبِّ إِنِّى ظَلَمْتُ نَفْسِى فَٱغْفِرْ لِى فَغَفَرَ لَهُۥٓ ۚ إِنَّهُۥ هُوَ ٱلْغَفُورُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,28,' قَالَ رَبِّ بِمَآ أَنْعَمْتَ عَلَىَّ فَلَنْ أَكُونَ ظَهِيرًۭا لِّلْمُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,28,' فَأَصْبَحَ فِى ٱلْمَدِينَةِ خَآئِفًۭا يَتَرَقَّبُ فَإِذَا ٱلَّذِى ٱسْتَنصَرَهُۥ بِٱلْأَمْسِ يَسْتَصْرِخُهُۥ ۚ قَالَ لَهُۥ مُوسَىٰٓ إِنَّكَ لَغَوِىٌّۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,28,' فَلَمَّآ أَنْ أَرَادَ أَن يَبْطِشَ بِٱلَّذِى هُوَ عَدُوٌّۭ لَّهُمَا قَالَ يَمُوسَىٰٓ أَتُرِيدُ أَن تَقْتُلَنِى كَمَا قَتَلْتَ نَفْسًۢا بِٱلْأَمْسِ ۖ إِن تُرِيدُ إِلَّآ أَن تَكُونَ جَبَّارًۭا فِى ٱلْأَرْضِ وَمَا تُرِيدُ أَن تَكُونَ مِنَ ٱلْمُصْلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,28,' وَجَآءَ رَجُلٌۭ مِّنْ أَقْصَا ٱلْمَدِينَةِ يَسْعَىٰ قَالَ يَمُوسَىٰٓ إِنَّ ٱلْمَلَأَ يَأْتَمِرُونَ بِكَ لِيَقْتُلُوكَ فَٱخْرُجْ إِنِّى لَكَ مِنَ ٱلنَّصِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,28,' فَخَرَجَ مِنْهَا خَآئِفًۭا يَتَرَقَّبُ ۖ قَالَ رَبِّ نَجِّنِى مِنَ ٱلْقَوْمِ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,28,' وَلَمَّا تَوَجَّهَ تِلْقَآءَ مَدْيَنَ قَالَ عَسَىٰ رَبِّىٓ أَن يَهْدِيَنِى سَوَآءَ ٱلسَّبِيلِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,28,' وَلَمَّا وَرَدَ مَآءَ مَدْيَنَ وَجَدَ عَلَيْهِ أُمَّةًۭ مِّنَ ٱلنَّاسِ يَسْقُونَ وَوَجَدَ مِن دُونِهِمُ ٱمْرَأَتَيْنِ تَذُودَانِ ۖ قَالَ مَا خَطْبُكُمَا ۖ قَالَتَا لَا نَسْقِى حَتَّىٰ يُصْدِرَ ٱلرِّعَآءُ ۖ وَأَبُونَا شَيْخٌۭ كَبِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,28,' فَسَقَىٰ لَهُمَا ثُمَّ تَوَلَّىٰٓ إِلَى ٱلظِّلِّ فَقَالَ رَبِّ إِنِّى لِمَآ أَنزَلْتَ إِلَىَّ مِنْ خَيْرٍۢ فَقِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,28,' فَجَآءَتْهُ إِحْدَىٰهُمَا تَمْشِى عَلَى ٱسْتِحْيَآءٍۢ قَالَتْ إِنَّ أَبِى يَدْعُوكَ لِيَجْزِيَكَ أَجْرَ مَا سَقَيْتَ لَنَا ۚ فَلَمَّا جَآءَهُۥ وَقَصَّ عَلَيْهِ ٱلْقَصَصَ قَالَ لَا تَخَفْ ۖ نَجَوْتَ مِنَ ٱلْقَوْمِ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,28,' قَالَتْ إِحْدَىٰهُمَا يَٓأَبَتِ ٱسْتَـْٔجِرْهُ ۖ إِنَّ خَيْرَ مَنِ ٱسْتَـْٔجَرْتَ ٱلْقَوِىُّ ٱلْأَمِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,28,' قَالَ إِنِّىٓ أُرِيدُ أَنْ أُنكِحَكَ إِحْدَى ٱبْنَتَىَّ هَتَيْنِ عَلَىٰٓ أَن تَأْجُرَنِى ثَمَنِىَ حِجَجٍۢ ۖ فَإِنْ أَتْمَمْتَ عَشْرًۭا فَمِنْ عِندِكَ ۖ وَمَآ أُرِيدُ أَنْ أَشُقَّ عَلَيْكَ ۚ سَتَجِدُنِىٓ إِن شَآءَ ٱللَّهُ مِنَ ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,28,' قَالَ ذَلِكَ بَيْنِى وَبَيْنَكَ ۖ أَيَّمَا ٱلْأَجَلَيْنِ قَضَيْتُ فَلَا عُدْوَنَ عَلَىَّ ۖ وَٱللَّهُ عَلَىٰ مَا نَقُولُ وَكِيلٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,28,' فَلَمَّا قَضَىٰ مُوسَى ٱلْأَجَلَ وَسَارَ بِأَهْلِهِۦٓ ءَانَسَ مِن جَانِبِ ٱلطُّورِ نَارًۭا قَالَ لِأَهْلِهِ ٱمْكُثُوٓا۟ إِنِّىٓ ءَانَسْتُ نَارًۭا لَّعَلِّىٓ ءَاتِيكُم مِّنْهَا بِخَبَرٍ أَوْ جَذْوَةٍۢ مِّنَ ٱلنَّارِ لَعَلَّكُمْ تَصْطَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,28,' فَلَمَّآ أَتَىٰهَا نُودِىَ مِن شَطِئِ ٱلْوَادِ ٱلْأَيْمَنِ فِى ٱلْبُقْعَةِ ٱلْمُبَرَكَةِ مِنَ ٱلشَّجَرَةِ أَن يَمُوسَىٰٓ إِنِّىٓ أَنَا ٱللَّهُ رَبُّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,28,' وَأَنْ أَلْقِ عَصَاكَ ۖ فَلَمَّا رَءَاهَا تَهْتَزُّ كَأَنَّهَا جَآنٌّۭ وَلَّىٰ مُدْبِرًۭا وَلَمْ يُعَقِّبْ ۚ يَمُوسَىٰٓ أَقْبِلْ وَلَا تَخَفْ ۖ إِنَّكَ مِنَ ٱلْءَامِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,28,' ٱسْلُكْ يَدَكَ فِى جَيْبِكَ تَخْرُجْ بَيْضَآءَ مِنْ غَيْرِ سُوٓءٍۢ وَٱضْمُمْ إِلَيْكَ جَنَاحَكَ مِنَ ٱلرَّهْبِ ۖ فَذَنِكَ بُرْهَنَانِ مِن رَّبِّكَ إِلَىٰ فِرْعَوْنَ وَمَلَإِي۟هِۦٓ ۚ إِنَّهُمْ كَانُوا۟ قَوْمًۭا فَسِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,28,' قَالَ رَبِّ إِنِّى قَتَلْتُ مِنْهُمْ نَفْسًۭا فَأَخَافُ أَن يَقْتُلُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,28,' وَأَخِى هَرُونُ هُوَ أَفْصَحُ مِنِّى لِسَانًۭا فَأَرْسِلْهُ مَعِىَ رِدْءًۭا يُصَدِّقُنِىٓ ۖ إِنِّىٓ أَخَافُ أَن يُكَذِّبُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,28,' قَالَ سَنَشُدُّ عَضُدَكَ بِأَخِيكَ وَنَجْعَلُ لَكُمَا سُلْطَنًۭا فَلَا يَصِلُونَ إِلَيْكُمَا ۚ بِـَٔايَتِنَآ أَنتُمَا وَمَنِ ٱتَّبَعَكُمَا ٱلْغَلِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,28,' فَلَمَّا جَآءَهُم مُّوسَىٰ بِـَٔايَتِنَا بَيِّنَتٍۢ قَالُوا۟ مَا هَذَآ إِلَّا سِحْرٌۭ مُّفْتَرًۭى وَمَا سَمِعْنَا بِهَذَا فِىٓ ءَابَآئِنَا ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,28,' وَقَالَ مُوسَىٰ رَبِّىٓ أَعْلَمُ بِمَن جَآءَ بِٱلْهُدَىٰ مِنْ عِندِهِۦ وَمَن تَكُونُ لَهُۥ عَقِبَةُ ٱلدَّارِ ۖ إِنَّهُۥ لَا يُفْلِحُ ٱلظَّلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,28,' وَقَالَ فِرْعَوْنُ يَٓأَيُّهَا ٱلْمَلَأُ مَا عَلِمْتُ لَكُم مِّنْ إِلَهٍ غَيْرِى فَأَوْقِدْ لِى يَهَمَنُ عَلَى ٱلطِّينِ فَٱجْعَل لِّى صَرْحًۭا لَّعَلِّىٓ أَطَّلِعُ إِلَىٰٓ إِلَهِ مُوسَىٰ وَإِنِّى لَأَظُنُّهُۥ مِنَ ٱلْكَذِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,28,' وَٱسْتَكْبَرَ هُوَ وَجُنُودُهُۥ فِى ٱلْأَرْضِ بِغَيْرِ ٱلْحَقِّ وَظَنُّوٓا۟ أَنَّهُمْ إِلَيْنَا لَا يُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,28,' فَأَخَذْنَهُ وَجُنُودَهُۥ فَنَبَذْنَهُمْ فِى ٱلْيَمِّ ۖ فَٱنظُرْ كَيْفَ كَانَ عَقِبَةُ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,28,' وَجَعَلْنَهُمْ أَئِمَّةًۭ يَدْعُونَ إِلَى ٱلنَّارِ ۖ وَيَوْمَ ٱلْقِيَمَةِ لَا يُنصَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,28,' وَأَتْبَعْنَهُمْ فِى هَذِهِ ٱلدُّنْيَا لَعْنَةًۭ ۖ وَيَوْمَ ٱلْقِيَمَةِ هُم مِّنَ ٱلْمَقْبُوحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,28,' وَلَقَدْ ءَاتَيْنَا مُوسَى ٱلْكِتَبَ مِنۢ بَعْدِ مَآ أَهْلَكْنَا ٱلْقُرُونَ ٱلْأُولَىٰ بَصَآئِرَ لِلنَّاسِ وَهُدًۭى وَرَحْمَةًۭ لَّعَلَّهُمْ يَتَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,28,' وَمَا كُنتَ بِجَانِبِ ٱلْغَرْبِىِّ إِذْ قَضَيْنَآ إِلَىٰ مُوسَى ٱلْأَمْرَ وَمَا كُنتَ مِنَ ٱلشَّهِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,28,' وَلَكِنَّآ أَنشَأْنَا قُرُونًۭا فَتَطَاوَلَ عَلَيْهِمُ ٱلْعُمُرُ ۚ وَمَا كُنتَ ثَاوِيًۭا فِىٓ أَهْلِ مَدْيَنَ تَتْلُوا۟ عَلَيْهِمْ ءَايَتِنَا وَلَكِنَّا كُنَّا مُرْسِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,28,' وَمَا كُنتَ بِجَانِبِ ٱلطُّورِ إِذْ نَادَيْنَا وَلَكِن رَّحْمَةًۭ مِّن رَّبِّكَ لِتُنذِرَ قَوْمًۭا مَّآ أَتَىٰهُم مِّن نَّذِيرٍۢ مِّن قَبْلِكَ لَعَلَّهُمْ يَتَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,28,' وَلَوْلَآ أَن تُصِيبَهُم مُّصِيبَةٌۢ بِمَا قَدَّمَتْ أَيْدِيهِمْ فَيَقُولُوا۟ رَبَّنَا لَوْلَآ أَرْسَلْتَ إِلَيْنَا رَسُولًۭا فَنَتَّبِعَ ءَايَتِكَ وَنَكُونَ مِنَ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,28,' فَلَمَّا جَآءَهُمُ ٱلْحَقُّ مِنْ عِندِنَا قَالُوا۟ لَوْلَآ أُوتِىَ مِثْلَ مَآ أُوتِىَ مُوسَىٰٓ ۚ أَوَلَمْ يَكْفُرُوا۟ بِمَآ أُوتِىَ مُوسَىٰ مِن قَبْلُ ۖ قَالُوا۟ سِحْرَانِ تَظَهَرَا وَقَالُوٓا۟ إِنَّا بِكُلٍّۢ كَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,28,' قُلْ فَأْتُوا۟ بِكِتَبٍۢ مِّنْ عِندِ ٱللَّهِ هُوَ أَهْدَىٰ مِنْهُمَآ أَتَّبِعْهُ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,28,' فَإِن لَّمْ يَسْتَجِيبُوا۟ لَكَ فَٱعْلَمْ أَنَّمَا يَتَّبِعُونَ أَهْوَآءَهُمْ ۚ وَمَنْ أَضَلُّ مِمَّنِ ٱتَّبَعَ هَوَىٰهُ بِغَيْرِ هُدًۭى مِّنَ ٱللَّهِ ۚ إِنَّ ٱللَّهَ لَا يَهْدِى ٱلْقَوْمَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,28,' وَلَقَدْ وَصَّلْنَا لَهُمُ ٱلْقَوْلَ لَعَلَّهُمْ يَتَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,28,' ٱلَّذِينَ ءَاتَيْنَهُمُ ٱلْكِتَبَ مِن قَبْلِهِۦ هُم بِهِۦ يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,28,' وَإِذَا يُتْلَىٰ عَلَيْهِمْ قَالُوٓا۟ ءَامَنَّا بِهِۦٓ إِنَّهُ ٱلْحَقُّ مِن رَّبِّنَآ إِنَّا كُنَّا مِن قَبْلِهِۦ مُسْلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,28,' أُو۟لَٓئِكَ يُؤْتَوْنَ أَجْرَهُم مَّرَّتَيْنِ بِمَا صَبَرُوا۟ وَيَدْرَءُونَ بِٱلْحَسَنَةِ ٱلسَّيِّئَةَ وَمِمَّا رَزَقْنَهُمْ يُنفِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,28,' وَإِذَا سَمِعُوا۟ ٱللَّغْوَ أَعْرَضُوا۟ عَنْهُ وَقَالُوا۟ لَنَآ أَعْمَلُنَا وَلَكُمْ أَعْمَلُكُمْ سَلَمٌ عَلَيْكُمْ لَا نَبْتَغِى ٱلْجَهِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,28,' إِنَّكَ لَا تَهْدِى مَنْ أَحْبَبْتَ وَلَكِنَّ ٱللَّهَ يَهْدِى مَن يَشَآءُ ۚ وَهُوَ أَعْلَمُ بِٱلْمُهْتَدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,28,' وَقَالُوٓا۟ إِن نَّتَّبِعِ ٱلْهُدَىٰ مَعَكَ نُتَخَطَّفْ مِنْ أَرْضِنَآ ۚ أَوَلَمْ نُمَكِّن لَّهُمْ حَرَمًا ءَامِنًۭا يُجْبَىٰٓ إِلَيْهِ ثَمَرَتُ كُلِّ شَىْءٍۢ رِّزْقًۭا مِّن لَّدُنَّا وَلَكِنَّ أَكْثَرَهُمْ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,28,' وَكَمْ أَهْلَكْنَا مِن قَرْيَةٍۭ بَطِرَتْ مَعِيشَتَهَا ۖ فَتِلْكَ مَسَكِنُهُمْ لَمْ تُسْكَن مِّنۢ بَعْدِهِمْ إِلَّا قَلِيلًۭا ۖ وَكُنَّا نَحْنُ ٱلْوَرِثِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,28,' وَمَا كَانَ رَبُّكَ مُهْلِكَ ٱلْقُرَىٰ حَتَّىٰ يَبْعَثَ فِىٓ أُمِّهَا رَسُولًۭا يَتْلُوا۟ عَلَيْهِمْ ءَايَتِنَا ۚ وَمَا كُنَّا مُهْلِكِى ٱلْقُرَىٰٓ إِلَّا وَأَهْلُهَا ظَلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,28,' وَمَآ أُوتِيتُم مِّن شَىْءٍۢ فَمَتَعُ ٱلْحَيَوٰةِ ٱلدُّنْيَا وَزِينَتُهَا ۚ وَمَا عِندَ ٱللَّهِ خَيْرٌۭ وَأَبْقَىٰٓ ۚ أَفَلَا تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,28,' أَفَمَن وَعَدْنَهُ وَعْدًا حَسَنًۭا فَهُوَ لَقِيهِ كَمَن مَّتَّعْنَهُ مَتَعَ ٱلْحَيَوٰةِ ٱلدُّنْيَا ثُمَّ هُوَ يَوْمَ ٱلْقِيَمَةِ مِنَ ٱلْمُحْضَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,28,' وَيَوْمَ يُنَادِيهِمْ فَيَقُولُ أَيْنَ شُرَكَآءِىَ ٱلَّذِينَ كُنتُمْ تَزْعُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,28,' قَالَ ٱلَّذِينَ حَقَّ عَلَيْهِمُ ٱلْقَوْلُ رَبَّنَا هَٓؤُلَآءِ ٱلَّذِينَ أَغْوَيْنَآ أَغْوَيْنَهُمْ كَمَا غَوَيْنَا ۖ تَبَرَّأْنَآ إِلَيْكَ ۖ مَا كَانُوٓا۟ إِيَّانَا يَعْبُدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,28,' وَقِيلَ ٱدْعُوا۟ شُرَكَآءَكُمْ فَدَعَوْهُمْ فَلَمْ يَسْتَجِيبُوا۟ لَهُمْ وَرَأَوُا۟ ٱلْعَذَابَ ۚ لَوْ أَنَّهُمْ كَانُوا۟ يَهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,28,' وَيَوْمَ يُنَادِيهِمْ فَيَقُولُ مَاذَآ أَجَبْتُمُ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,28,' فَعَمِيَتْ عَلَيْهِمُ ٱلْأَنۢبَآءُ يَوْمَئِذٍۢ فَهُمْ لَا يَتَسَآءَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,28,' فَأَمَّا مَن تَابَ وَءَامَنَ وَعَمِلَ صَلِحًۭا فَعَسَىٰٓ أَن يَكُونَ مِنَ ٱلْمُفْلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,28,' وَرَبُّكَ يَخْلُقُ مَا يَشَآءُ وَيَخْتَارُ ۗ مَا كَانَ لَهُمُ ٱلْخِيَرَةُ ۚ سُبْحَنَ ٱللَّهِ وَتَعَلَىٰ عَمَّا يُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,28,' وَرَبُّكَ يَعْلَمُ مَا تُكِنُّ صُدُورُهُمْ وَمَا يُعْلِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,28,' وَهُوَ ٱللَّهُ لَآ إِلَهَ إِلَّا هُوَ ۖ لَهُ ٱلْحَمْدُ فِى ٱلْأُولَىٰ وَٱلْءَاخِرَةِ ۖ وَلَهُ ٱلْحُكْمُ وَإِلَيْهِ تُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,28,' قُلْ أَرَءَيْتُمْ إِن جَعَلَ ٱللَّهُ عَلَيْكُمُ ٱلَّيْلَ سَرْمَدًا إِلَىٰ يَوْمِ ٱلْقِيَمَةِ مَنْ إِلَهٌ غَيْرُ ٱللَّهِ يَأْتِيكُم بِضِيَآءٍ ۖ أَفَلَا تَسْمَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,28,' قُلْ أَرَءَيْتُمْ إِن جَعَلَ ٱللَّهُ عَلَيْكُمُ ٱلنَّهَارَ سَرْمَدًا إِلَىٰ يَوْمِ ٱلْقِيَمَةِ مَنْ إِلَهٌ غَيْرُ ٱللَّهِ يَأْتِيكُم بِلَيْلٍۢ تَسْكُنُونَ فِيهِ ۖ أَفَلَا تُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,28,' وَمِن رَّحْمَتِهِۦ جَعَلَ لَكُمُ ٱلَّيْلَ وَٱلنَّهَارَ لِتَسْكُنُوا۟ فِيهِ وَلِتَبْتَغُوا۟ مِن فَضْلِهِۦ وَلَعَلَّكُمْ تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,28,' وَيَوْمَ يُنَادِيهِمْ فَيَقُولُ أَيْنَ شُرَكَآءِىَ ٱلَّذِينَ كُنتُمْ تَزْعُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,28,' وَنَزَعْنَا مِن كُلِّ أُمَّةٍۢ شَهِيدًۭا فَقُلْنَا هَاتُوا۟ بُرْهَنَكُمْ فَعَلِمُوٓا۟ أَنَّ ٱلْحَقَّ لِلَّهِ وَضَلَّ عَنْهُم مَّا كَانُوا۟ يَفْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,28,' إِنَّ قَرُونَ كَانَ مِن قَوْمِ مُوسَىٰ فَبَغَىٰ عَلَيْهِمْ ۖ وَءَاتَيْنَهُ مِنَ ٱلْكُنُوزِ مَآ إِنَّ مَفَاتِحَهُۥ لَتَنُوٓأُ بِٱلْعُصْبَةِ أُو۟لِى ٱلْقُوَّةِ إِذْ قَالَ لَهُۥ قَوْمُهُۥ لَا تَفْرَحْ ۖ إِنَّ ٱللَّهَ لَا يُحِبُّ ٱلْفَرِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,28,' وَٱبْتَغِ فِيمَآ ءَاتَىٰكَ ٱللَّهُ ٱلدَّارَ ٱلْءَاخِرَةَ ۖ وَلَا تَنسَ نَصِيبَكَ مِنَ ٱلدُّنْيَا ۖ وَأَحْسِن كَمَآ أَحْسَنَ ٱللَّهُ إِلَيْكَ ۖ وَلَا تَبْغِ ٱلْفَسَادَ فِى ٱلْأَرْضِ ۖ إِنَّ ٱللَّهَ لَا يُحِبُّ ٱلْمُفْسِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,28,' قَالَ إِنَّمَآ أُوتِيتُهُۥ عَلَىٰ عِلْمٍ عِندِىٓ ۚ أَوَلَمْ يَعْلَمْ أَنَّ ٱللَّهَ قَدْ أَهْلَكَ مِن قَبْلِهِۦ مِنَ ٱلْقُرُونِ مَنْ هُوَ أَشَدُّ مِنْهُ قُوَّةًۭ وَأَكْثَرُ جَمْعًۭا ۚ وَلَا يُسْـَٔلُ عَن ذُنُوبِهِمُ ٱلْمُجْرِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,28,' فَخَرَجَ عَلَىٰ قَوْمِهِۦ فِى زِينَتِهِۦ ۖ قَالَ ٱلَّذِينَ يُرِيدُونَ ٱلْحَيَوٰةَ ٱلدُّنْيَا يَلَيْتَ لَنَا مِثْلَ مَآ أُوتِىَ قَرُونُ إِنَّهُۥ لَذُو حَظٍّ عَظِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,28,' وَقَالَ ٱلَّذِينَ أُوتُوا۟ ٱلْعِلْمَ وَيْلَكُمْ ثَوَابُ ٱللَّهِ خَيْرٌۭ لِّمَنْ ءَامَنَ وَعَمِلَ صَلِحًۭا وَلَا يُلَقَّىٰهَآ إِلَّا ٱلصَّبِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,28,' فَخَسَفْنَا بِهِۦ وَبِدَارِهِ ٱلْأَرْضَ فَمَا كَانَ لَهُۥ مِن فِئَةٍۢ يَنصُرُونَهُۥ مِن دُونِ ٱللَّهِ وَمَا كَانَ مِنَ ٱلْمُنتَصِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,28,' وَأَصْبَحَ ٱلَّذِينَ تَمَنَّوْا۟ مَكَانَهُۥ بِٱلْأَمْسِ يَقُولُونَ وَيْكَأَنَّ ٱللَّهَ يَبْسُطُ ٱلرِّزْقَ لِمَن يَشَآءُ مِنْ عِبَادِهِۦ وَيَقْدِرُ ۖ لَوْلَآ أَن مَّنَّ ٱللَّهُ عَلَيْنَا لَخَسَفَ بِنَا ۖ وَيْكَأَنَّهُۥ لَا يُفْلِحُ ٱلْكَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,28,' تِلْكَ ٱلدَّارُ ٱلْءَاخِرَةُ نَجْعَلُهَا لِلَّذِينَ لَا يُرِيدُونَ عُلُوًّۭا فِى ٱلْأَرْضِ وَلَا فَسَادًۭا ۚ وَٱلْعَقِبَةُ لِلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,28,' مَن جَآءَ بِٱلْحَسَنَةِ فَلَهُۥ خَيْرٌۭ مِّنْهَا ۖ وَمَن جَآءَ بِٱلسَّيِّئَةِ فَلَا يُجْزَى ٱلَّذِينَ عَمِلُوا۟ ٱلسَّيِّـَٔاتِ إِلَّا مَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,28,' إِنَّ ٱلَّذِى فَرَضَ عَلَيْكَ ٱلْقُرْءَانَ لَرَآدُّكَ إِلَىٰ مَعَادٍۢ ۚ قُل رَّبِّىٓ أَعْلَمُ مَن جَآءَ بِٱلْهُدَىٰ وَمَنْ هُوَ فِى ضَلَلٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,28,' وَمَا كُنتَ تَرْجُوٓا۟ أَن يُلْقَىٰٓ إِلَيْكَ ٱلْكِتَبُ إِلَّا رَحْمَةًۭ مِّن رَّبِّكَ ۖ فَلَا تَكُونَنَّ ظَهِيرًۭا لِّلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,28,' وَلَا يَصُدُّنَّكَ عَنْ ءَايَتِ ٱللَّهِ بَعْدَ إِذْ أُنزِلَتْ إِلَيْكَ ۖ وَٱدْعُ إِلَىٰ رَبِّكَ ۖ وَلَا تَكُونَنَّ مِنَ ٱلْمُشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,28,' وَلَا تَدْعُ مَعَ ٱللَّهِ إِلَهًا ءَاخَرَ ۘ لَآ إِلَهَ إِلَّا هُوَ ۚ كُلُّ شَىْءٍ هَالِكٌ إِلَّا وَجْهَهُۥ ۚ لَهُ ٱلْحُكْمُ وَإِلَيْهِ تُرْجَعُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(29,29,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,29,' الٓمٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,29,' أَحَسِبَ ٱلنَّاسُ أَن يُتْرَكُوٓا۟ أَن يَقُولُوٓا۟ ءَامَنَّا وَهُمْ لَا يُفْتَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,29,' وَلَقَدْ فَتَنَّا ٱلَّذِينَ مِن قَبْلِهِمْ ۖ فَلَيَعْلَمَنَّ ٱللَّهُ ٱلَّذِينَ صَدَقُوا۟ وَلَيَعْلَمَنَّ ٱلْكَذِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,29,' أَمْ حَسِبَ ٱلَّذِينَ يَعْمَلُونَ ٱلسَّيِّـَٔاتِ أَن يَسْبِقُونَا ۚ سَآءَ مَا يَحْكُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,29,' مَن كَانَ يَرْجُوا۟ لِقَآءَ ٱللَّهِ فَإِنَّ أَجَلَ ٱللَّهِ لَءَاتٍۢ ۚ وَهُوَ ٱلسَّمِيعُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,29,' وَمَن جَهَدَ فَإِنَّمَا يُجَهِدُ لِنَفْسِهِۦٓ ۚ إِنَّ ٱللَّهَ لَغَنِىٌّ عَنِ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,29,' وَٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ لَنُكَفِّرَنَّ عَنْهُمْ سَيِّـَٔاتِهِمْ وَلَنَجْزِيَنَّهُمْ أَحْسَنَ ٱلَّذِى كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,29,' وَوَصَّيْنَا ٱلْإِنسَنَ بِوَلِدَيْهِ حُسْنًۭا ۖ وَإِن جَهَدَاكَ لِتُشْرِكَ بِى مَا لَيْسَ لَكَ بِهِۦ عِلْمٌۭ فَلَا تُطِعْهُمَآ ۚ إِلَىَّ مَرْجِعُكُمْ فَأُنَبِّئُكُم بِمَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,29,' وَٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ لَنُدْخِلَنَّهُمْ فِى ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,29,' وَمِنَ ٱلنَّاسِ مَن يَقُولُ ءَامَنَّا بِٱللَّهِ فَإِذَآ أُوذِىَ فِى ٱللَّهِ جَعَلَ فِتْنَةَ ٱلنَّاسِ كَعَذَابِ ٱللَّهِ وَلَىِٕن جَآءَ نَصْرٌۭ مِّن رَّبِّكَ لَيَقُولُنَّ إِنَّا كُنَّا مَعَكُمْ ۚ أَوَلَيْسَ ٱللَّهُ بِأَعْلَمَ بِمَا فِى صُدُورِ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,29,' وَلَيَعْلَمَنَّ ٱللَّهُ ٱلَّذِينَ ءَامَنُوا۟ وَلَيَعْلَمَنَّ ٱلْمُنَفِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,29,' وَقَالَ ٱلَّذِينَ كَفَرُوا۟ لِلَّذِينَ ءَامَنُوا۟ ٱتَّبِعُوا۟ سَبِيلَنَا وَلْنَحْمِلْ خَطَيَكُمْ وَمَا هُم بِحَمِلِينَ مِنْ خَطَيَهُم مِّن شَىْءٍ ۖ إِنَّهُمْ لَكَذِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,29,' وَلَيَحْمِلُنَّ أَثْقَالَهُمْ وَأَثْقَالًۭا مَّعَ أَثْقَالِهِمْ ۖ وَلَيُسْـَٔلُنَّ يَوْمَ ٱلْقِيَمَةِ عَمَّا كَانُوا۟ يَفْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,29,' وَلَقَدْ أَرْسَلْنَا نُوحًا إِلَىٰ قَوْمِهِۦ فَلَبِثَ فِيهِمْ أَلْفَ سَنَةٍ إِلَّا خَمْسِينَ عَامًۭا فَأَخَذَهُمُ ٱلطُّوفَانُ وَهُمْ ظَلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,29,' فَأَنجَيْنَهُ وَأَصْحَبَ ٱلسَّفِينَةِ وَجَعَلْنَهَآ ءَايَةًۭ لِّلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,29,' وَإِبْرَهِيمَ إِذْ قَالَ لِقَوْمِهِ ٱعْبُدُوا۟ ٱللَّهَ وَٱتَّقُوهُ ۖ ذَلِكُمْ خَيْرٌۭ لَّكُمْ إِن كُنتُمْ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,29,' إِنَّمَا تَعْبُدُونَ مِن دُونِ ٱللَّهِ أَوْثَنًۭا وَتَخْلُقُونَ إِفْكًا ۚ إِنَّ ٱلَّذِينَ تَعْبُدُونَ مِن دُونِ ٱللَّهِ لَا يَمْلِكُونَ لَكُمْ رِزْقًۭا فَٱبْتَغُوا۟ عِندَ ٱللَّهِ ٱلرِّزْقَ وَٱعْبُدُوهُ وَٱشْكُرُوا۟ لَهُۥٓ ۖ إِلَيْهِ تُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,29,' وَإِن تُكَذِّبُوا۟ فَقَدْ كَذَّبَ أُمَمٌۭ مِّن قَبْلِكُمْ ۖ وَمَا عَلَى ٱلرَّسُولِ إِلَّا ٱلْبَلَغُ ٱلْمُبِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,29,' أَوَلَمْ يَرَوْا۟ كَيْفَ يُبْدِئُ ٱللَّهُ ٱلْخَلْقَ ثُمَّ يُعِيدُهُۥٓ ۚ إِنَّ ذَلِكَ عَلَى ٱللَّهِ يَسِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,29,' قُلْ سِيرُوا۟ فِى ٱلْأَرْضِ فَٱنظُرُوا۟ كَيْفَ بَدَأَ ٱلْخَلْقَ ۚ ثُمَّ ٱللَّهُ يُنشِئُ ٱلنَّشْأَةَ ٱلْءَاخِرَةَ ۚ إِنَّ ٱللَّهَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,29,' يُعَذِّبُ مَن يَشَآءُ وَيَرْحَمُ مَن يَشَآءُ ۖ وَإِلَيْهِ تُقْلَبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,29,' وَمَآ أَنتُم بِمُعْجِزِينَ فِى ٱلْأَرْضِ وَلَا فِى ٱلسَّمَآءِ ۖ وَمَا لَكُم مِّن دُونِ ٱللَّهِ مِن وَلِىٍّۢ وَلَا نَصِيرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,29,' وَٱلَّذِينَ كَفَرُوا۟ بِـَٔايَتِ ٱللَّهِ وَلِقَآئِهِۦٓ أُو۟لَٓئِكَ يَئِسُوا۟ مِن رَّحْمَتِى وَأُو۟لَٓئِكَ لَهُمْ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,29,' فَمَا كَانَ جَوَابَ قَوْمِهِۦٓ إِلَّآ أَن قَالُوا۟ ٱقْتُلُوهُ أَوْ حَرِّقُوهُ فَأَنجَىٰهُ ٱللَّهُ مِنَ ٱلنَّارِ ۚ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّقَوْمٍۢ يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,29,' وَقَالَ إِنَّمَا ٱتَّخَذْتُم مِّن دُونِ ٱللَّهِ أَوْثَنًۭا مَّوَدَّةَ بَيْنِكُمْ فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا ۖ ثُمَّ يَوْمَ ٱلْقِيَمَةِ يَكْفُرُ بَعْضُكُم بِبَعْضٍۢ وَيَلْعَنُ بَعْضُكُم بَعْضًۭا وَمَأْوَىٰكُمُ ٱلنَّارُ وَمَا لَكُم مِّن نَّصِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,29,' فَـَٔامَنَ لَهُۥ لُوطٌۭ ۘ وَقَالَ إِنِّى مُهَاجِرٌ إِلَىٰ رَبِّىٓ ۖ إِنَّهُۥ هُوَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,29,' وَوَهَبْنَا لَهُۥٓ إِسْحَقَ وَيَعْقُوبَ وَجَعَلْنَا فِى ذُرِّيَّتِهِ ٱلنُّبُوَّةَ وَٱلْكِتَبَ وَءَاتَيْنَهُ أَجْرَهُۥ فِى ٱلدُّنْيَا ۖ وَإِنَّهُۥ فِى ٱلْءَاخِرَةِ لَمِنَ ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,29,' وَلُوطًا إِذْ قَالَ لِقَوْمِهِۦٓ إِنَّكُمْ لَتَأْتُونَ ٱلْفَحِشَةَ مَا سَبَقَكُم بِهَا مِنْ أَحَدٍۢ مِّنَ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,29,' أَئِنَّكُمْ لَتَأْتُونَ ٱلرِّجَالَ وَتَقْطَعُونَ ٱلسَّبِيلَ وَتَأْتُونَ فِى نَادِيكُمُ ٱلْمُنكَرَ ۖ فَمَا كَانَ جَوَابَ قَوْمِهِۦٓ إِلَّآ أَن قَالُوا۟ ٱئْتِنَا بِعَذَابِ ٱللَّهِ إِن كُنتَ مِنَ ٱلصَّدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,29,' قَالَ رَبِّ ٱنصُرْنِى عَلَى ٱلْقَوْمِ ٱلْمُفْسِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,29,' وَلَمَّا جَآءَتْ رُسُلُنَآ إِبْرَهِيمَ بِٱلْبُشْرَىٰ قَالُوٓا۟ إِنَّا مُهْلِكُوٓا۟ أَهْلِ هَذِهِ ٱلْقَرْيَةِ ۖ إِنَّ أَهْلَهَا كَانُوا۟ ظَلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,29,' قَالَ إِنَّ فِيهَا لُوطًۭا ۚ قَالُوا۟ نَحْنُ أَعْلَمُ بِمَن فِيهَا ۖ لَنُنَجِّيَنَّهُۥ وَأَهْلَهُۥٓ إِلَّا ٱمْرَأَتَهُۥ كَانَتْ مِنَ ٱلْغَبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,29,' وَلَمَّآ أَن جَآءَتْ رُسُلُنَا لُوطًۭا سِىٓءَ بِهِمْ وَضَاقَ بِهِمْ ذَرْعًۭا وَقَالُوا۟ لَا تَخَفْ وَلَا تَحْزَنْ ۖ إِنَّا مُنَجُّوكَ وَأَهْلَكَ إِلَّا ٱمْرَأَتَكَ كَانَتْ مِنَ ٱلْغَبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,29,' إِنَّا مُنزِلُونَ عَلَىٰٓ أَهْلِ هَذِهِ ٱلْقَرْيَةِ رِجْزًۭا مِّنَ ٱلسَّمَآءِ بِمَا كَانُوا۟ يَفْسُقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,29,' وَلَقَد تَّرَكْنَا مِنْهَآ ءَايَةًۢ بَيِّنَةًۭ لِّقَوْمٍۢ يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,29,' وَإِلَىٰ مَدْيَنَ أَخَاهُمْ شُعَيْبًۭا فَقَالَ يَقَوْمِ ٱعْبُدُوا۟ ٱللَّهَ وَٱرْجُوا۟ ٱلْيَوْمَ ٱلْءَاخِرَ وَلَا تَعْثَوْا۟ فِى ٱلْأَرْضِ مُفْسِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,29,' فَكَذَّبُوهُ فَأَخَذَتْهُمُ ٱلرَّجْفَةُ فَأَصْبَحُوا۟ فِى دَارِهِمْ جَثِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,29,' وَعَادًۭا وَثَمُودَا۟ وَقَد تَّبَيَّنَ لَكُم مِّن مَّسَكِنِهِمْ ۖ وَزَيَّنَ لَهُمُ ٱلشَّيْطَنُ أَعْمَلَهُمْ فَصَدَّهُمْ عَنِ ٱلسَّبِيلِ وَكَانُوا۟ مُسْتَبْصِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,29,' وَقَرُونَ وَفِرْعَوْنَ وَهَمَنَ ۖ وَلَقَدْ جَآءَهُم مُّوسَىٰ بِٱلْبَيِّنَتِ فَٱسْتَكْبَرُوا۟ فِى ٱلْأَرْضِ وَمَا كَانُوا۟ سَبِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,29,' فَكُلًّا أَخَذْنَا بِذَنۢبِهِۦ ۖ فَمِنْهُم مَّنْ أَرْسَلْنَا عَلَيْهِ حَاصِبًۭا وَمِنْهُم مَّنْ أَخَذَتْهُ ٱلصَّيْحَةُ وَمِنْهُم مَّنْ خَسَفْنَا بِهِ ٱلْأَرْضَ وَمِنْهُم مَّنْ أَغْرَقْنَا ۚ وَمَا كَانَ ٱللَّهُ لِيَظْلِمَهُمْ وَلَكِن كَانُوٓا۟ أَنفُسَهُمْ يَظْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,29,' مَثَلُ ٱلَّذِينَ ٱتَّخَذُوا۟ مِن دُونِ ٱللَّهِ أَوْلِيَآءَ كَمَثَلِ ٱلْعَنكَبُوتِ ٱتَّخَذَتْ بَيْتًۭا ۖ وَإِنَّ أَوْهَنَ ٱلْبُيُوتِ لَبَيْتُ ٱلْعَنكَبُوتِ ۖ لَوْ كَانُوا۟ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,29,' إِنَّ ٱللَّهَ يَعْلَمُ مَا يَدْعُونَ مِن دُونِهِۦ مِن شَىْءٍۢ ۚ وَهُوَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,29,' وَتِلْكَ ٱلْأَمْثَلُ نَضْرِبُهَا لِلنَّاسِ ۖ وَمَا يَعْقِلُهَآ إِلَّا ٱلْعَلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,29,' خَلَقَ ٱللَّهُ ٱلسَّمَوَتِ وَٱلْأَرْضَ بِٱلْحَقِّ ۚ إِنَّ فِى ذَلِكَ لَءَايَةًۭ لِّلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,29,' ٱتْلُ مَآ أُوحِىَ إِلَيْكَ مِنَ ٱلْكِتَبِ وَأَقِمِ ٱلصَّلَوٰةَ ۖ إِنَّ ٱلصَّلَوٰةَ تَنْهَىٰ عَنِ ٱلْفَحْشَآءِ وَٱلْمُنكَرِ ۗ وَلَذِكْرُ ٱللَّهِ أَكْبَرُ ۗ وَٱللَّهُ يَعْلَمُ مَا تَصْنَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,29,' وَلَا تُجَدِلُوٓا۟ أَهْلَ ٱلْكِتَبِ إِلَّا بِٱلَّتِى هِىَ أَحْسَنُ إِلَّا ٱلَّذِينَ ظَلَمُوا۟ مِنْهُمْ ۖ وَقُولُوٓا۟ ءَامَنَّا بِٱلَّذِىٓ أُنزِلَ إِلَيْنَا وَأُنزِلَ إِلَيْكُمْ وَإِلَهُنَا وَإِلَهُكُمْ وَحِدٌۭ وَنَحْنُ لَهُۥ مُسْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,29,' وَكَذَلِكَ أَنزَلْنَآ إِلَيْكَ ٱلْكِتَبَ ۚ فَٱلَّذِينَ ءَاتَيْنَهُمُ ٱلْكِتَبَ يُؤْمِنُونَ بِهِۦ ۖ وَمِنْ هَٓؤُلَآءِ مَن يُؤْمِنُ بِهِۦ ۚ وَمَا يَجْحَدُ بِـَٔايَتِنَآ إِلَّا ٱلْكَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,29,' وَمَا كُنتَ تَتْلُوا۟ مِن قَبْلِهِۦ مِن كِتَبٍۢ وَلَا تَخُطُّهُۥ بِيَمِينِكَ ۖ إِذًۭا لَّٱرْتَابَ ٱلْمُبْطِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,29,' بَلْ هُوَ ءَايَتٌۢ بَيِّنَتٌۭ فِى صُدُورِ ٱلَّذِينَ أُوتُوا۟ ٱلْعِلْمَ ۚ وَمَا يَجْحَدُ بِـَٔايَتِنَآ إِلَّا ٱلظَّلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,29,' وَقَالُوا۟ لَوْلَآ أُنزِلَ عَلَيْهِ ءَايَتٌۭ مِّن رَّبِّهِۦ ۖ قُلْ إِنَّمَا ٱلْءَايَتُ عِندَ ٱللَّهِ وَإِنَّمَآ أَنَا۠ نَذِيرٌۭ مُّبِينٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,29,' أَوَلَمْ يَكْفِهِمْ أَنَّآ أَنزَلْنَا عَلَيْكَ ٱلْكِتَبَ يُتْلَىٰ عَلَيْهِمْ ۚ إِنَّ فِى ذَلِكَ لَرَحْمَةًۭ وَذِكْرَىٰ لِقَوْمٍۢ يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,29,' قُلْ كَفَىٰ بِٱللَّهِ بَيْنِى وَبَيْنَكُمْ شَهِيدًۭا ۖ يَعْلَمُ مَا فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ۗ وَٱلَّذِينَ ءَامَنُوا۟ بِٱلْبَطِلِ وَكَفَرُوا۟ بِٱللَّهِ أُو۟لَٓئِكَ هُمُ ٱلْخَسِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,29,' وَيَسْتَعْجِلُونَكَ بِٱلْعَذَابِ ۚ وَلَوْلَآ أَجَلٌۭ مُّسَمًّۭى لَّجَآءَهُمُ ٱلْعَذَابُ وَلَيَأْتِيَنَّهُم بَغْتَةًۭ وَهُمْ لَا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,29,' يَسْتَعْجِلُونَكَ بِٱلْعَذَابِ وَإِنَّ جَهَنَّمَ لَمُحِيطَةٌۢ بِٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,29,' يَوْمَ يَغْشَىٰهُمُ ٱلْعَذَابُ مِن فَوْقِهِمْ وَمِن تَحْتِ أَرْجُلِهِمْ وَيَقُولُ ذُوقُوا۟ مَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,29,' يَعِبَادِىَ ٱلَّذِينَ ءَامَنُوٓا۟ إِنَّ أَرْضِى وَسِعَةٌۭ فَإِيَّىَ فَٱعْبُدُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,29,' كُلُّ نَفْسٍۢ ذَآئِقَةُ ٱلْمَوْتِ ۖ ثُمَّ إِلَيْنَا تُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,29,' وَٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ لَنُبَوِّئَنَّهُم مِّنَ ٱلْجَنَّةِ غُرَفًۭا تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَا ۚ نِعْمَ أَجْرُ ٱلْعَمِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,29,' ٱلَّذِينَ صَبَرُوا۟ وَعَلَىٰ رَبِّهِمْ يَتَوَكَّلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,29,' وَكَأَيِّن مِّن دَآبَّةٍۢ لَّا تَحْمِلُ رِزْقَهَا ٱللَّهُ يَرْزُقُهَا وَإِيَّاكُمْ ۚ وَهُوَ ٱلسَّمِيعُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,29,' وَلَىِٕن سَأَلْتَهُم مَّنْ خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ وَسَخَّرَ ٱلشَّمْسَ وَٱلْقَمَرَ لَيَقُولُنَّ ٱللَّهُ ۖ فَأَنَّىٰ يُؤْفَكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,29,' ٱللَّهُ يَبْسُطُ ٱلرِّزْقَ لِمَن يَشَآءُ مِنْ عِبَادِهِۦ وَيَقْدِرُ لَهُۥٓ ۚ إِنَّ ٱللَّهَ بِكُلِّ شَىْءٍ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,29,' وَلَىِٕن سَأَلْتَهُم مَّن نَّزَّلَ مِنَ ٱلسَّمَآءِ مَآءًۭ فَأَحْيَا بِهِ ٱلْأَرْضَ مِنۢ بَعْدِ مَوْتِهَا لَيَقُولُنَّ ٱللَّهُ ۚ قُلِ ٱلْحَمْدُ لِلَّهِ ۚ بَلْ أَكْثَرُهُمْ لَا يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,29,' وَمَا هَذِهِ ٱلْحَيَوٰةُ ٱلدُّنْيَآ إِلَّا لَهْوٌۭ وَلَعِبٌۭ ۚ وَإِنَّ ٱلدَّارَ ٱلْءَاخِرَةَ لَهِىَ ٱلْحَيَوَانُ ۚ لَوْ كَانُوا۟ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,29,' فَإِذَا رَكِبُوا۟ فِى ٱلْفُلْكِ دَعَوُا۟ ٱللَّهَ مُخْلِصِينَ لَهُ ٱلدِّينَ فَلَمَّا نَجَّىٰهُمْ إِلَى ٱلْبَرِّ إِذَا هُمْ يُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,29,' لِيَكْفُرُوا۟ بِمَآ ءَاتَيْنَهُمْ وَلِيَتَمَتَّعُوا۟ ۖ فَسَوْفَ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,29,' أَوَلَمْ يَرَوْا۟ أَنَّا جَعَلْنَا حَرَمًا ءَامِنًۭا وَيُتَخَطَّفُ ٱلنَّاسُ مِنْ حَوْلِهِمْ ۚ أَفَبِٱلْبَطِلِ يُؤْمِنُونَ وَبِنِعْمَةِ ٱللَّهِ يَكْفُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,29,' وَمَنْ أَظْلَمُ مِمَّنِ ٱفْتَرَىٰ عَلَى ٱللَّهِ كَذِبًا أَوْ كَذَّبَ بِٱلْحَقِّ لَمَّا جَآءَهُۥٓ ۚ أَلَيْسَ فِى جَهَنَّمَ مَثْوًۭى لِّلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,29,' وَٱلَّذِينَ جَهَدُوا۟ فِينَا لَنَهْدِيَنَّهُمْ سُبُلَنَا ۚ وَإِنَّ ٱللَّهَ لَمَعَ ٱلْمُحْسِنِينَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(30,30,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,30,' الٓمٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,30,' غُلِبَتِ ٱلرُّومُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,30,' فِىٓ أَدْنَى ٱلْأَرْضِ وَهُم مِّنۢ بَعْدِ غَلَبِهِمْ سَيَغْلِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,30,' فِى بِضْعِ سِنِينَ ۗ لِلَّهِ ٱلْأَمْرُ مِن قَبْلُ وَمِنۢ بَعْدُ ۚ وَيَوْمَئِذٍۢ يَفْرَحُ ٱلْمُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,30,' بِنَصْرِ ٱللَّهِ ۚ يَنصُرُ مَن يَشَآءُ ۖ وَهُوَ ٱلْعَزِيزُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,30,' وَعْدَ ٱللَّهِ ۖ لَا يُخْلِفُ ٱللَّهُ وَعْدَهُۥ وَلَكِنَّ أَكْثَرَ ٱلنَّاسِ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,30,' يَعْلَمُونَ ظَهِرًۭا مِّنَ ٱلْحَيَوٰةِ ٱلدُّنْيَا وَهُمْ عَنِ ٱلْءَاخِرَةِ هُمْ غَفِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,30,' أَوَلَمْ يَتَفَكَّرُوا۟ فِىٓ أَنفُسِهِم ۗ مَّا خَلَقَ ٱللَّهُ ٱلسَّمَوَتِ وَٱلْأَرْضَ وَمَا بَيْنَهُمَآ إِلَّا بِٱلْحَقِّ وَأَجَلٍۢ مُّسَمًّۭى ۗ وَإِنَّ كَثِيرًۭا مِّنَ ٱلنَّاسِ بِلِقَآئِ رَبِّهِمْ لَكَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,30,' أَوَلَمْ يَسِيرُوا۟ فِى ٱلْأَرْضِ فَيَنظُرُوا۟ كَيْفَ كَانَ عَقِبَةُ ٱلَّذِينَ مِن قَبْلِهِمْ ۚ كَانُوٓا۟ أَشَدَّ مِنْهُمْ قُوَّةًۭ وَأَثَارُوا۟ ٱلْأَرْضَ وَعَمَرُوهَآ أَكْثَرَ مِمَّا عَمَرُوهَا وَجَآءَتْهُمْ رُسُلُهُم بِٱلْبَيِّنَتِ ۖ فَمَا كَانَ ٱللَّهُ لِيَظْلِمَهُمْ وَلَكِن كَانُوٓا۟ أَنفُسَهُمْ يَظْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,30,' ثُمَّ كَانَ عَقِبَةَ ٱلَّذِينَ أَسَٓـُٔوا۟ ٱلسُّوٓأَىٰٓ أَن كَذَّبُوا۟ بِـَٔايَتِ ٱللَّهِ وَكَانُوا۟ بِهَا يَسْتَهْزِءُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,30,' ٱللَّهُ يَبْدَؤُا۟ ٱلْخَلْقَ ثُمَّ يُعِيدُهُۥ ثُمَّ إِلَيْهِ تُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,30,' وَيَوْمَ تَقُومُ ٱلسَّاعَةُ يُبْلِسُ ٱلْمُجْرِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,30,' وَلَمْ يَكُن لَّهُم مِّن شُرَكَآئِهِمْ شُفَعَٓؤُا۟ وَكَانُوا۟ بِشُرَكَآئِهِمْ كَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,30,' وَيَوْمَ تَقُومُ ٱلسَّاعَةُ يَوْمَئِذٍۢ يَتَفَرَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,30,' فَأَمَّا ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ فَهُمْ فِى رَوْضَةٍۢ يُحْبَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,30,' وَأَمَّا ٱلَّذِينَ كَفَرُوا۟ وَكَذَّبُوا۟ بِـَٔايَتِنَا وَلِقَآئِ ٱلْءَاخِرَةِ فَأُو۟لَٓئِكَ فِى ٱلْعَذَابِ مُحْضَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,30,' فَسُبْحَنَ ٱللَّهِ حِينَ تُمْسُونَ وَحِينَ تُصْبِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,30,' وَلَهُ ٱلْحَمْدُ فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ وَعَشِيًّۭا وَحِينَ تُظْهِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,30,' يُخْرِجُ ٱلْحَىَّ مِنَ ٱلْمَيِّتِ وَيُخْرِجُ ٱلْمَيِّتَ مِنَ ٱلْحَىِّ وَيُحْىِ ٱلْأَرْضَ بَعْدَ مَوْتِهَا ۚ وَكَذَلِكَ تُخْرَجُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,30,' وَمِنْ ءَايَتِهِۦٓ أَنْ خَلَقَكُم مِّن تُرَابٍۢ ثُمَّ إِذَآ أَنتُم بَشَرٌۭ تَنتَشِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,30,' وَمِنْ ءَايَتِهِۦٓ أَنْ خَلَقَ لَكُم مِّنْ أَنفُسِكُمْ أَزْوَجًۭا لِّتَسْكُنُوٓا۟ إِلَيْهَا وَجَعَلَ بَيْنَكُم مَّوَدَّةًۭ وَرَحْمَةً ۚ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّقَوْمٍۢ يَتَفَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,30,' وَمِنْ ءَايَتِهِۦ خَلْقُ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَٱخْتِلَفُ أَلْسِنَتِكُمْ وَأَلْوَنِكُمْ ۚ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّلْعَلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,30,' وَمِنْ ءَايَتِهِۦ مَنَامُكُم بِٱلَّيْلِ وَٱلنَّهَارِ وَٱبْتِغَآؤُكُم مِّن فَضْلِهِۦٓ ۚ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّقَوْمٍۢ يَسْمَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,30,' وَمِنْ ءَايَتِهِۦ يُرِيكُمُ ٱلْبَرْقَ خَوْفًۭا وَطَمَعًۭا وَيُنَزِّلُ مِنَ ٱلسَّمَآءِ مَآءًۭ فَيُحْىِۦ بِهِ ٱلْأَرْضَ بَعْدَ مَوْتِهَآ ۚ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّقَوْمٍۢ يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,30,' وَمِنْ ءَايَتِهِۦٓ أَن تَقُومَ ٱلسَّمَآءُ وَٱلْأَرْضُ بِأَمْرِهِۦ ۚ ثُمَّ إِذَا دَعَاكُمْ دَعْوَةًۭ مِّنَ ٱلْأَرْضِ إِذَآ أَنتُمْ تَخْرُجُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,30,' وَلَهُۥ مَن فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ۖ كُلٌّۭ لَّهُۥ قَنِتُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,30,' وَهُوَ ٱلَّذِى يَبْدَؤُا۟ ٱلْخَلْقَ ثُمَّ يُعِيدُهُۥ وَهُوَ أَهْوَنُ عَلَيْهِ ۚ وَلَهُ ٱلْمَثَلُ ٱلْأَعْلَىٰ فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ وَهُوَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,30,' ضَرَبَ لَكُم مَّثَلًۭا مِّنْ أَنفُسِكُمْ ۖ هَل لَّكُم مِّن مَّا مَلَكَتْ أَيْمَنُكُم مِّن شُرَكَآءَ فِى مَا رَزَقْنَكُمْ فَأَنتُمْ فِيهِ سَوَآءٌۭ تَخَافُونَهُمْ كَخِيفَتِكُمْ أَنفُسَكُمْ ۚ كَذَلِكَ نُفَصِّلُ ٱلْءَايَتِ لِقَوْمٍۢ يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,30,' بَلِ ٱتَّبَعَ ٱلَّذِينَ ظَلَمُوٓا۟ أَهْوَآءَهُم بِغَيْرِ عِلْمٍۢ ۖ فَمَن يَهْدِى مَنْ أَضَلَّ ٱللَّهُ ۖ وَمَا لَهُم مِّن نَّصِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,30,' فَأَقِمْ وَجْهَكَ لِلدِّينِ حَنِيفًۭا ۚ فِطْرَتَ ٱللَّهِ ٱلَّتِى فَطَرَ ٱلنَّاسَ عَلَيْهَا ۚ لَا تَبْدِيلَ لِخَلْقِ ٱللَّهِ ۚ ذَلِكَ ٱلدِّينُ ٱلْقَيِّمُ وَلَكِنَّ أَكْثَرَ ٱلنَّاسِ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,30,' مُنِيبِينَ إِلَيْهِ وَٱتَّقُوهُ وَأَقِيمُوا۟ ٱلصَّلَوٰةَ وَلَا تَكُونُوا۟ مِنَ ٱلْمُشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,30,' مِنَ ٱلَّذِينَ فَرَّقُوا۟ دِينَهُمْ وَكَانُوا۟ شِيَعًۭا ۖ كُلُّ حِزْبٍۭ بِمَا لَدَيْهِمْ فَرِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,30,' وَإِذَا مَسَّ ٱلنَّاسَ ضُرٌّۭ دَعَوْا۟ رَبَّهُم مُّنِيبِينَ إِلَيْهِ ثُمَّ إِذَآ أَذَاقَهُم مِّنْهُ رَحْمَةً إِذَا فَرِيقٌۭ مِّنْهُم بِرَبِّهِمْ يُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,30,' لِيَكْفُرُوا۟ بِمَآ ءَاتَيْنَهُمْ ۚ فَتَمَتَّعُوا۟ فَسَوْفَ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,30,' أَمْ أَنزَلْنَا عَلَيْهِمْ سُلْطَنًۭا فَهُوَ يَتَكَلَّمُ بِمَا كَانُوا۟ بِهِۦ يُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,30,' وَإِذَآ أَذَقْنَا ٱلنَّاسَ رَحْمَةًۭ فَرِحُوا۟ بِهَا ۖ وَإِن تُصِبْهُمْ سَيِّئَةٌۢ بِمَا قَدَّمَتْ أَيْدِيهِمْ إِذَا هُمْ يَقْنَطُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,30,' أَوَلَمْ يَرَوْا۟ أَنَّ ٱللَّهَ يَبْسُطُ ٱلرِّزْقَ لِمَن يَشَآءُ وَيَقْدِرُ ۚ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّقَوْمٍۢ يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,30,' فَـَٔاتِ ذَا ٱلْقُرْبَىٰ حَقَّهُۥ وَٱلْمِسْكِينَ وَٱبْنَ ٱلسَّبِيلِ ۚ ذَلِكَ خَيْرٌۭ لِّلَّذِينَ يُرِيدُونَ وَجْهَ ٱللَّهِ ۖ وَأُو۟لَٓئِكَ هُمُ ٱلْمُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,30,' وَمَآ ءَاتَيْتُم مِّن رِّبًۭا لِّيَرْبُوَا۟ فِىٓ أَمْوَلِ ٱلنَّاسِ فَلَا يَرْبُوا۟ عِندَ ٱللَّهِ ۖ وَمَآ ءَاتَيْتُم مِّن زَكَوٰةٍۢ تُرِيدُونَ وَجْهَ ٱللَّهِ فَأُو۟لَٓئِكَ هُمُ ٱلْمُضْعِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,30,' ٱللَّهُ ٱلَّذِى خَلَقَكُمْ ثُمَّ رَزَقَكُمْ ثُمَّ يُمِيتُكُمْ ثُمَّ يُحْيِيكُمْ ۖ هَلْ مِن شُرَكَآئِكُم مَّن يَفْعَلُ مِن ذَلِكُم مِّن شَىْءٍۢ ۚ سُبْحَنَهُۥ وَتَعَلَىٰ عَمَّا يُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,30,' ظَهَرَ ٱلْفَسَادُ فِى ٱلْبَرِّ وَٱلْبَحْرِ بِمَا كَسَبَتْ أَيْدِى ٱلنَّاسِ لِيُذِيقَهُم بَعْضَ ٱلَّذِى عَمِلُوا۟ لَعَلَّهُمْ يَرْجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,30,' قُلْ سِيرُوا۟ فِى ٱلْأَرْضِ فَٱنظُرُوا۟ كَيْفَ كَانَ عَقِبَةُ ٱلَّذِينَ مِن قَبْلُ ۚ كَانَ أَكْثَرُهُم مُّشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,30,' فَأَقِمْ وَجْهَكَ لِلدِّينِ ٱلْقَيِّمِ مِن قَبْلِ أَن يَأْتِىَ يَوْمٌۭ لَّا مَرَدَّ لَهُۥ مِنَ ٱللَّهِ ۖ يَوْمَئِذٍۢ يَصَّدَّعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,30,' مَن كَفَرَ فَعَلَيْهِ كُفْرُهُۥ ۖ وَمَنْ عَمِلَ صَلِحًۭا فَلِأَنفُسِهِمْ يَمْهَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,30,' لِيَجْزِىَ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ مِن فَضْلِهِۦٓ ۚ إِنَّهُۥ لَا يُحِبُّ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,30,' وَمِنْ ءَايَتِهِۦٓ أَن يُرْسِلَ ٱلرِّيَاحَ مُبَشِّرَتٍۢ وَلِيُذِيقَكُم مِّن رَّحْمَتِهِۦ وَلِتَجْرِىَ ٱلْفُلْكُ بِأَمْرِهِۦ وَلِتَبْتَغُوا۟ مِن فَضْلِهِۦ وَلَعَلَّكُمْ تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,30,' وَلَقَدْ أَرْسَلْنَا مِن قَبْلِكَ رُسُلًا إِلَىٰ قَوْمِهِمْ فَجَآءُوهُم بِٱلْبَيِّنَتِ فَٱنتَقَمْنَا مِنَ ٱلَّذِينَ أَجْرَمُوا۟ ۖ وَكَانَ حَقًّا عَلَيْنَا نَصْرُ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,30,' ٱللَّهُ ٱلَّذِى يُرْسِلُ ٱلرِّيَحَ فَتُثِيرُ سَحَابًۭا فَيَبْسُطُهُۥ فِى ٱلسَّمَآءِ كَيْفَ يَشَآءُ وَيَجْعَلُهُۥ كِسَفًۭا فَتَرَى ٱلْوَدْقَ يَخْرُجُ مِنْ خِلَلِهِۦ ۖ فَإِذَآ أَصَابَ بِهِۦ مَن يَشَآءُ مِنْ عِبَادِهِۦٓ إِذَا هُمْ يَسْتَبْشِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,30,' وَإِن كَانُوا۟ مِن قَبْلِ أَن يُنَزَّلَ عَلَيْهِم مِّن قَبْلِهِۦ لَمُبْلِسِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,30,' فَٱنظُرْ إِلَىٰٓ ءَاثَرِ رَحْمَتِ ٱللَّهِ كَيْفَ يُحْىِ ٱلْأَرْضَ بَعْدَ مَوْتِهَآ ۚ إِنَّ ذَلِكَ لَمُحْىِ ٱلْمَوْتَىٰ ۖ وَهُوَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,30,' وَلَىِٕنْ أَرْسَلْنَا رِيحًۭا فَرَأَوْهُ مُصْفَرًّۭا لَّظَلُّوا۟ مِنۢ بَعْدِهِۦ يَكْفُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,30,' فَإِنَّكَ لَا تُسْمِعُ ٱلْمَوْتَىٰ وَلَا تُسْمِعُ ٱلصُّمَّ ٱلدُّعَآءَ إِذَا وَلَّوْا۟ مُدْبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,30,' وَمَآ أَنتَ بِهَدِ ٱلْعُمْىِ عَن ضَلَلَتِهِمْ ۖ إِن تُسْمِعُ إِلَّا مَن يُؤْمِنُ بِـَٔايَتِنَا فَهُم مُّسْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,30,' ٱللَّهُ ٱلَّذِى خَلَقَكُم مِّن ضَعْفٍۢ ثُمَّ جَعَلَ مِنۢ بَعْدِ ضَعْفٍۢ قُوَّةًۭ ثُمَّ جَعَلَ مِنۢ بَعْدِ قُوَّةٍۢ ضَعْفًۭا وَشَيْبَةًۭ ۚ يَخْلُقُ مَا يَشَآءُ ۖ وَهُوَ ٱلْعَلِيمُ ٱلْقَدِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,30,' وَيَوْمَ تَقُومُ ٱلسَّاعَةُ يُقْسِمُ ٱلْمُجْرِمُونَ مَا لَبِثُوا۟ غَيْرَ سَاعَةٍۢ ۚ كَذَلِكَ كَانُوا۟ يُؤْفَكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,30,' وَقَالَ ٱلَّذِينَ أُوتُوا۟ ٱلْعِلْمَ وَٱلْإِيمَنَ لَقَدْ لَبِثْتُمْ فِى كِتَبِ ٱللَّهِ إِلَىٰ يَوْمِ ٱلْبَعْثِ ۖ فَهَذَا يَوْمُ ٱلْبَعْثِ وَلَكِنَّكُمْ كُنتُمْ لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,30,' فَيَوْمَئِذٍۢ لَّا يَنفَعُ ٱلَّذِينَ ظَلَمُوا۟ مَعْذِرَتُهُمْ وَلَا هُمْ يُسْتَعْتَبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,30,' وَلَقَدْ ضَرَبْنَا لِلنَّاسِ فِى هَذَا ٱلْقُرْءَانِ مِن كُلِّ مَثَلٍۢ ۚ وَلَىِٕن جِئْتَهُم بِـَٔايَةٍۢ لَّيَقُولَنَّ ٱلَّذِينَ كَفَرُوٓا۟ إِنْ أَنتُمْ إِلَّا مُبْطِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,30,' كَذَلِكَ يَطْبَعُ ٱللَّهُ عَلَىٰ قُلُوبِ ٱلَّذِينَ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,30,' فَٱصْبِرْ إِنَّ وَعْدَ ٱللَّهِ حَقٌّۭ ۖ وَلَا يَسْتَخِفَّنَّكَ ٱلَّذِينَ لَا يُوقِنُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(31,31,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,31,' الٓمٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,31,' تِلْكَ ءَايَتُ ٱلْكِتَبِ ٱلْحَكِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,31,' هُدًۭى وَرَحْمَةًۭ لِّلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,31,' ٱلَّذِينَ يُقِيمُونَ ٱلصَّلَوٰةَ وَيُؤْتُونَ ٱلزَّكَوٰةَ وَهُم بِٱلْءَاخِرَةِ هُمْ يُوقِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,31,' أُو۟لَٓئِكَ عَلَىٰ هُدًۭى مِّن رَّبِّهِمْ ۖ وَأُو۟لَٓئِكَ هُمُ ٱلْمُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,31,' وَمِنَ ٱلنَّاسِ مَن يَشْتَرِى لَهْوَ ٱلْحَدِيثِ لِيُضِلَّ عَن سَبِيلِ ٱللَّهِ بِغَيْرِ عِلْمٍۢ وَيَتَّخِذَهَا هُزُوًا ۚ أُو۟لَٓئِكَ لَهُمْ عَذَابٌۭ مُّهِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,31,' وَإِذَا تُتْلَىٰ عَلَيْهِ ءَايَتُنَا وَلَّىٰ مُسْتَكْبِرًۭا كَأَن لَّمْ يَسْمَعْهَا كَأَنَّ فِىٓ أُذُنَيْهِ وَقْرًۭا ۖ فَبَشِّرْهُ بِعَذَابٍ أَلِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,31,' إِنَّ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ لَهُمْ جَنَّتُ ٱلنَّعِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,31,' خَلِدِينَ فِيهَا ۖ وَعْدَ ٱللَّهِ حَقًّۭا ۚ وَهُوَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,31,' خَلَقَ ٱلسَّمَوَتِ بِغَيْرِ عَمَدٍۢ تَرَوْنَهَا ۖ وَأَلْقَىٰ فِى ٱلْأَرْضِ رَوَسِىَ أَن تَمِيدَ بِكُمْ وَبَثَّ فِيهَا مِن كُلِّ دَآبَّةٍۢ ۚ وَأَنزَلْنَا مِنَ ٱلسَّمَآءِ مَآءًۭ فَأَنۢبَتْنَا فِيهَا مِن كُلِّ زَوْجٍۢ كَرِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,31,' هَذَا خَلْقُ ٱللَّهِ فَأَرُونِى مَاذَا خَلَقَ ٱلَّذِينَ مِن دُونِهِۦ ۚ بَلِ ٱلظَّلِمُونَ فِى ضَلَلٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,31,' وَلَقَدْ ءَاتَيْنَا لُقْمَنَ ٱلْحِكْمَةَ أَنِ ٱشْكُرْ لِلَّهِ ۚ وَمَن يَشْكُرْ فَإِنَّمَا يَشْكُرُ لِنَفْسِهِۦ ۖ وَمَن كَفَرَ فَإِنَّ ٱللَّهَ غَنِىٌّ حَمِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,31,' وَإِذْ قَالَ لُقْمَنُ لِٱبْنِهِۦ وَهُوَ يَعِظُهُۥ يَبُنَىَّ لَا تُشْرِكْ بِٱللَّهِ ۖ إِنَّ ٱلشِّرْكَ لَظُلْمٌ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,31,' وَوَصَّيْنَا ٱلْإِنسَنَ بِوَلِدَيْهِ حَمَلَتْهُ أُمُّهُۥ وَهْنًا عَلَىٰ وَهْنٍۢ وَفِصَلُهُۥ فِى عَامَيْنِ أَنِ ٱشْكُرْ لِى وَلِوَلِدَيْكَ إِلَىَّ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,31,' وَإِن جَهَدَاكَ عَلَىٰٓ أَن تُشْرِكَ بِى مَا لَيْسَ لَكَ بِهِۦ عِلْمٌۭ فَلَا تُطِعْهُمَا ۖ وَصَاحِبْهُمَا فِى ٱلدُّنْيَا مَعْرُوفًۭا ۖ وَٱتَّبِعْ سَبِيلَ مَنْ أَنَابَ إِلَىَّ ۚ ثُمَّ إِلَىَّ مَرْجِعُكُمْ فَأُنَبِّئُكُم بِمَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,31,' يَبُنَىَّ إِنَّهَآ إِن تَكُ مِثْقَالَ حَبَّةٍۢ مِّنْ خَرْدَلٍۢ فَتَكُن فِى صَخْرَةٍ أَوْ فِى ٱلسَّمَوَتِ أَوْ فِى ٱلْأَرْضِ يَأْتِ بِهَا ٱللَّهُ ۚ إِنَّ ٱللَّهَ لَطِيفٌ خَبِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,31,' يَبُنَىَّ أَقِمِ ٱلصَّلَوٰةَ وَأْمُرْ بِٱلْمَعْرُوفِ وَٱنْهَ عَنِ ٱلْمُنكَرِ وَٱصْبِرْ عَلَىٰ مَآ أَصَابَكَ ۖ إِنَّ ذَلِكَ مِنْ عَزْمِ ٱلْأُمُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,31,' وَلَا تُصَعِّرْ خَدَّكَ لِلنَّاسِ وَلَا تَمْشِ فِى ٱلْأَرْضِ مَرَحًا ۖ إِنَّ ٱللَّهَ لَا يُحِبُّ كُلَّ مُخْتَالٍۢ فَخُورٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,31,' وَٱقْصِدْ فِى مَشْيِكَ وَٱغْضُضْ مِن صَوْتِكَ ۚ إِنَّ أَنكَرَ ٱلْأَصْوَتِ لَصَوْتُ ٱلْحَمِيرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,31,' أَلَمْ تَرَوْا۟ أَنَّ ٱللَّهَ سَخَّرَ لَكُم مَّا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ وَأَسْبَغَ عَلَيْكُمْ نِعَمَهُۥ ظَهِرَةًۭ وَبَاطِنَةًۭ ۗ وَمِنَ ٱلنَّاسِ مَن يُجَدِلُ فِى ٱللَّهِ بِغَيْرِ عِلْمٍۢ وَلَا هُدًۭى وَلَا كِتَبٍۢ مُّنِيرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,31,' وَإِذَا قِيلَ لَهُمُ ٱتَّبِعُوا۟ مَآ أَنزَلَ ٱللَّهُ قَالُوا۟ بَلْ نَتَّبِعُ مَا وَجَدْنَا عَلَيْهِ ءَابَآءَنَآ ۚ أَوَلَوْ كَانَ ٱلشَّيْطَنُ يَدْعُوهُمْ إِلَىٰ عَذَابِ ٱلسَّعِيرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,31,' وَمَن يُسْلِمْ وَجْهَهُۥٓ إِلَى ٱللَّهِ وَهُوَ مُحْسِنٌۭ فَقَدِ ٱسْتَمْسَكَ بِٱلْعُرْوَةِ ٱلْوُثْقَىٰ ۗ وَإِلَى ٱللَّهِ عَقِبَةُ ٱلْأُمُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,31,' وَمَن كَفَرَ فَلَا يَحْزُنكَ كُفْرُهُۥٓ ۚ إِلَيْنَا مَرْجِعُهُمْ فَنُنَبِّئُهُم بِمَا عَمِلُوٓا۟ ۚ إِنَّ ٱللَّهَ عَلِيمٌۢ بِذَاتِ ٱلصُّدُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,31,' نُمَتِّعُهُمْ قَلِيلًۭا ثُمَّ نَضْطَرُّهُمْ إِلَىٰ عَذَابٍ غَلِيظٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,31,' وَلَىِٕن سَأَلْتَهُم مَّنْ خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ لَيَقُولُنَّ ٱللَّهُ ۚ قُلِ ٱلْحَمْدُ لِلَّهِ ۚ بَلْ أَكْثَرُهُمْ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,31,' لِلَّهِ مَا فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ إِنَّ ٱللَّهَ هُوَ ٱلْغَنِىُّ ٱلْحَمِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,31,' وَلَوْ أَنَّمَا فِى ٱلْأَرْضِ مِن شَجَرَةٍ أَقْلَمٌۭ وَٱلْبَحْرُ يَمُدُّهُۥ مِنۢ بَعْدِهِۦ سَبْعَةُ أَبْحُرٍۢ مَّا نَفِدَتْ كَلِمَتُ ٱللَّهِ ۗ إِنَّ ٱللَّهَ عَزِيزٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,31,' مَّا خَلْقُكُمْ وَلَا بَعْثُكُمْ إِلَّا كَنَفْسٍۢ وَحِدَةٍ ۗ إِنَّ ٱللَّهَ سَمِيعٌۢ بَصِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,31,' أَلَمْ تَرَ أَنَّ ٱللَّهَ يُولِجُ ٱلَّيْلَ فِى ٱلنَّهَارِ وَيُولِجُ ٱلنَّهَارَ فِى ٱلَّيْلِ وَسَخَّرَ ٱلشَّمْسَ وَٱلْقَمَرَ كُلٌّۭ يَجْرِىٓ إِلَىٰٓ أَجَلٍۢ مُّسَمًّۭى وَأَنَّ ٱللَّهَ بِمَا تَعْمَلُونَ خَبِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,31,' ذَلِكَ بِأَنَّ ٱللَّهَ هُوَ ٱلْحَقُّ وَأَنَّ مَا يَدْعُونَ مِن دُونِهِ ٱلْبَطِلُ وَأَنَّ ٱللَّهَ هُوَ ٱلْعَلِىُّ ٱلْكَبِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,31,' أَلَمْ تَرَ أَنَّ ٱلْفُلْكَ تَجْرِى فِى ٱلْبَحْرِ بِنِعْمَتِ ٱللَّهِ لِيُرِيَكُم مِّنْ ءَايَتِهِۦٓ ۚ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّكُلِّ صَبَّارٍۢ شَكُورٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,31,' وَإِذَا غَشِيَهُم مَّوْجٌۭ كَٱلظُّلَلِ دَعَوُا۟ ٱللَّهَ مُخْلِصِينَ لَهُ ٱلدِّينَ فَلَمَّا نَجَّىٰهُمْ إِلَى ٱلْبَرِّ فَمِنْهُم مُّقْتَصِدٌۭ ۚ وَمَا يَجْحَدُ بِـَٔايَتِنَآ إِلَّا كُلُّ خَتَّارٍۢ كَفُورٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,31,' يَٓأَيُّهَا ٱلنَّاسُ ٱتَّقُوا۟ رَبَّكُمْ وَٱخْشَوْا۟ يَوْمًۭا لَّا يَجْزِى وَالِدٌ عَن وَلَدِهِۦ وَلَا مَوْلُودٌ هُوَ جَازٍ عَن وَالِدِهِۦ شَيْـًٔا ۚ إِنَّ وَعْدَ ٱللَّهِ حَقٌّۭ ۖ فَلَا تَغُرَّنَّكُمُ ٱلْحَيَوٰةُ ٱلدُّنْيَا وَلَا يَغُرَّنَّكُم بِٱللَّهِ ٱلْغَرُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,31,' إِنَّ ٱللَّهَ عِندَهُۥ عِلْمُ ٱلسَّاعَةِ وَيُنَزِّلُ ٱلْغَيْثَ وَيَعْلَمُ مَا فِى ٱلْأَرْحَامِ ۖ وَمَا تَدْرِى نَفْسٌۭ مَّاذَا تَكْسِبُ غَدًۭا ۖ وَمَا تَدْرِى نَفْسٌۢ بِأَىِّ أَرْضٍۢ تَمُوتُ ۚ إِنَّ ٱللَّهَ عَلِيمٌ خَبِيرٌۢ');
+INSERT INTO chapters (id, number, quran_id) VALUES(32,32,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,32,' الٓمٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,32,' تَنزِيلُ ٱلْكِتَبِ لَا رَيْبَ فِيهِ مِن رَّبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,32,' أَمْ يَقُولُونَ ٱفْتَرَىٰهُ ۚ بَلْ هُوَ ٱلْحَقُّ مِن رَّبِّكَ لِتُنذِرَ قَوْمًۭا مَّآ أَتَىٰهُم مِّن نَّذِيرٍۢ مِّن قَبْلِكَ لَعَلَّهُمْ يَهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,32,' ٱللَّهُ ٱلَّذِى خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ وَمَا بَيْنَهُمَا فِى سِتَّةِ أَيَّامٍۢ ثُمَّ ٱسْتَوَىٰ عَلَى ٱلْعَرْشِ ۖ مَا لَكُم مِّن دُونِهِۦ مِن وَلِىٍّۢ وَلَا شَفِيعٍ ۚ أَفَلَا تَتَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,32,' يُدَبِّرُ ٱلْأَمْرَ مِنَ ٱلسَّمَآءِ إِلَى ٱلْأَرْضِ ثُمَّ يَعْرُجُ إِلَيْهِ فِى يَوْمٍۢ كَانَ مِقْدَارُهُۥٓ أَلْفَ سَنَةٍۢ مِّمَّا تَعُدُّونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,32,' ذَلِكَ عَلِمُ ٱلْغَيْبِ وَٱلشَّهَدَةِ ٱلْعَزِيزُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,32,' ٱلَّذِىٓ أَحْسَنَ كُلَّ شَىْءٍ خَلَقَهُۥ ۖ وَبَدَأَ خَلْقَ ٱلْإِنسَنِ مِن طِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,32,' ثُمَّ جَعَلَ نَسْلَهُۥ مِن سُلَلَةٍۢ مِّن مَّآءٍۢ مَّهِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,32,' ثُمَّ سَوَّىٰهُ وَنَفَخَ فِيهِ مِن رُّوحِهِۦ ۖ وَجَعَلَ لَكُمُ ٱلسَّمْعَ وَٱلْأَبْصَرَ وَٱلْأَفْـِٔدَةَ ۚ قَلِيلًۭا مَّا تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,32,' وَقَالُوٓا۟ أَءِذَا ضَلَلْنَا فِى ٱلْأَرْضِ أَءِنَّا لَفِى خَلْقٍۢ جَدِيدٍۭ ۚ بَلْ هُم بِلِقَآءِ رَبِّهِمْ كَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,32,' قُلْ يَتَوَفَّىٰكُم مَّلَكُ ٱلْمَوْتِ ٱلَّذِى وُكِّلَ بِكُمْ ثُمَّ إِلَىٰ رَبِّكُمْ تُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,32,' وَلَوْ تَرَىٰٓ إِذِ ٱلْمُجْرِمُونَ نَاكِسُوا۟ رُءُوسِهِمْ عِندَ رَبِّهِمْ رَبَّنَآ أَبْصَرْنَا وَسَمِعْنَا فَٱرْجِعْنَا نَعْمَلْ صَلِحًا إِنَّا مُوقِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,32,' وَلَوْ شِئْنَا لَءَاتَيْنَا كُلَّ نَفْسٍ هُدَىٰهَا وَلَكِنْ حَقَّ ٱلْقَوْلُ مِنِّى لَأَمْلَأَنَّ جَهَنَّمَ مِنَ ٱلْجِنَّةِ وَٱلنَّاسِ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,32,' فَذُوقُوا۟ بِمَا نَسِيتُمْ لِقَآءَ يَوْمِكُمْ هَذَآ إِنَّا نَسِينَكُمْ ۖ وَذُوقُوا۟ عَذَابَ ٱلْخُلْدِ بِمَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,32,' إِنَّمَا يُؤْمِنُ بِـَٔايَتِنَا ٱلَّذِينَ إِذَا ذُكِّرُوا۟ بِهَا خَرُّوا۟ سُجَّدًۭا وَسَبَّحُوا۟ بِحَمْدِ رَبِّهِمْ وَهُمْ لَا يَسْتَكْبِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,32,' تَتَجَافَىٰ جُنُوبُهُمْ عَنِ ٱلْمَضَاجِعِ يَدْعُونَ رَبَّهُمْ خَوْفًۭا وَطَمَعًۭا وَمِمَّا رَزَقْنَهُمْ يُنفِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,32,' فَلَا تَعْلَمُ نَفْسٌۭ مَّآ أُخْفِىَ لَهُم مِّن قُرَّةِ أَعْيُنٍۢ جَزَآءًۢ بِمَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,32,' أَفَمَن كَانَ مُؤْمِنًۭا كَمَن كَانَ فَاسِقًۭا ۚ لَّا يَسْتَوُۥنَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,32,' أَمَّا ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ فَلَهُمْ جَنَّتُ ٱلْمَأْوَىٰ نُزُلًۢا بِمَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,32,' وَأَمَّا ٱلَّذِينَ فَسَقُوا۟ فَمَأْوَىٰهُمُ ٱلنَّارُ ۖ كُلَّمَآ أَرَادُوٓا۟ أَن يَخْرُجُوا۟ مِنْهَآ أُعِيدُوا۟ فِيهَا وَقِيلَ لَهُمْ ذُوقُوا۟ عَذَابَ ٱلنَّارِ ٱلَّذِى كُنتُم بِهِۦ تُكَذِّبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,32,' وَلَنُذِيقَنَّهُم مِّنَ ٱلْعَذَابِ ٱلْأَدْنَىٰ دُونَ ٱلْعَذَابِ ٱلْأَكْبَرِ لَعَلَّهُمْ يَرْجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,32,' وَمَنْ أَظْلَمُ مِمَّن ذُكِّرَ بِـَٔايَتِ رَبِّهِۦ ثُمَّ أَعْرَضَ عَنْهَآ ۚ إِنَّا مِنَ ٱلْمُجْرِمِينَ مُنتَقِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,32,' وَلَقَدْ ءَاتَيْنَا مُوسَى ٱلْكِتَبَ فَلَا تَكُن فِى مِرْيَةٍۢ مِّن لِّقَآئِهِۦ ۖ وَجَعَلْنَهُ هُدًۭى لِّبَنِىٓ إِسْرَٓءِيلَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,32,' وَجَعَلْنَا مِنْهُمْ أَئِمَّةًۭ يَهْدُونَ بِأَمْرِنَا لَمَّا صَبَرُوا۟ ۖ وَكَانُوا۟ بِـَٔايَتِنَا يُوقِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,32,' إِنَّ رَبَّكَ هُوَ يَفْصِلُ بَيْنَهُمْ يَوْمَ ٱلْقِيَمَةِ فِيمَا كَانُوا۟ فِيهِ يَخْتَلِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,32,' أَوَلَمْ يَهْدِ لَهُمْ كَمْ أَهْلَكْنَا مِن قَبْلِهِم مِّنَ ٱلْقُرُونِ يَمْشُونَ فِى مَسَكِنِهِمْ ۚ إِنَّ فِى ذَلِكَ لَءَايَتٍ ۖ أَفَلَا يَسْمَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,32,' أَوَلَمْ يَرَوْا۟ أَنَّا نَسُوقُ ٱلْمَآءَ إِلَى ٱلْأَرْضِ ٱلْجُرُزِ فَنُخْرِجُ بِهِۦ زَرْعًۭا تَأْكُلُ مِنْهُ أَنْعَمُهُمْ وَأَنفُسُهُمْ ۖ أَفَلَا يُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,32,' وَيَقُولُونَ مَتَىٰ هَذَا ٱلْفَتْحُ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,32,' قُلْ يَوْمَ ٱلْفَتْحِ لَا يَنفَعُ ٱلَّذِينَ كَفَرُوٓا۟ إِيمَنُهُمْ وَلَا هُمْ يُنظَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,32,' فَأَعْرِضْ عَنْهُمْ وَٱنتَظِرْ إِنَّهُم مُّنتَظِرُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(33,33,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,33,' يَٓأَيُّهَا ٱلنَّبِىُّ ٱتَّقِ ٱللَّهَ وَلَا تُطِعِ ٱلْكَفِرِينَ وَٱلْمُنَفِقِينَ ۗ إِنَّ ٱللَّهَ كَانَ عَلِيمًا حَكِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,33,' وَٱتَّبِعْ مَا يُوحَىٰٓ إِلَيْكَ مِن رَّبِّكَ ۚ إِنَّ ٱللَّهَ كَانَ بِمَا تَعْمَلُونَ خَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,33,' وَتَوَكَّلْ عَلَى ٱللَّهِ ۚ وَكَفَىٰ بِٱللَّهِ وَكِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,33,' مَّا جَعَلَ ٱللَّهُ لِرَجُلٍۢ مِّن قَلْبَيْنِ فِى جَوْفِهِۦ ۚ وَمَا جَعَلَ أَزْوَجَكُمُ ٱلَّٓـِٔى تُظَهِرُونَ مِنْهُنَّ أُمَّهَتِكُمْ ۚ وَمَا جَعَلَ أَدْعِيَآءَكُمْ أَبْنَآءَكُمْ ۚ ذَلِكُمْ قَوْلُكُم بِأَفْوَهِكُمْ ۖ وَٱللَّهُ يَقُولُ ٱلْحَقَّ وَهُوَ يَهْدِى ٱلسَّبِيلَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,33,' ٱدْعُوهُمْ لِءَابَآئِهِمْ هُوَ أَقْسَطُ عِندَ ٱللَّهِ ۚ فَإِن لَّمْ تَعْلَمُوٓا۟ ءَابَآءَهُمْ فَإِخْوَنُكُمْ فِى ٱلدِّينِ وَمَوَلِيكُمْ ۚ وَلَيْسَ عَلَيْكُمْ جُنَاحٌۭ فِيمَآ أَخْطَأْتُم بِهِۦ وَلَكِن مَّا تَعَمَّدَتْ قُلُوبُكُمْ ۚ وَكَانَ ٱللَّهُ غَفُورًۭا رَّحِيمًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,33,' ٱلنَّبِىُّ أَوْلَىٰ بِٱلْمُؤْمِنِينَ مِنْ أَنفُسِهِمْ ۖ وَأَزْوَجُهُۥٓ أُمَّهَتُهُمْ ۗ وَأُو۟لُوا۟ ٱلْأَرْحَامِ بَعْضُهُمْ أَوْلَىٰ بِبَعْضٍۢ فِى كِتَبِ ٱللَّهِ مِنَ ٱلْمُؤْمِنِينَ وَٱلْمُهَجِرِينَ إِلَّآ أَن تَفْعَلُوٓا۟ إِلَىٰٓ أَوْلِيَآئِكُم مَّعْرُوفًۭا ۚ كَانَ ذَلِكَ فِى ٱلْكِتَبِ مَسْطُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,33,' وَإِذْ أَخَذْنَا مِنَ ٱلنَّبِيِّۦنَ مِيثَقَهُمْ وَمِنكَ وَمِن نُّوحٍۢ وَإِبْرَهِيمَ وَمُوسَىٰ وَعِيسَى ٱبْنِ مَرْيَمَ ۖ وَأَخَذْنَا مِنْهُم مِّيثَقًا غَلِيظًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,33,' لِّيَسْـَٔلَ ٱلصَّدِقِينَ عَن صِدْقِهِمْ ۚ وَأَعَدَّ لِلْكَفِرِينَ عَذَابًا أَلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,33,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ ٱذْكُرُوا۟ نِعْمَةَ ٱللَّهِ عَلَيْكُمْ إِذْ جَآءَتْكُمْ جُنُودٌۭ فَأَرْسَلْنَا عَلَيْهِمْ رِيحًۭا وَجُنُودًۭا لَّمْ تَرَوْهَا ۚ وَكَانَ ٱللَّهُ بِمَا تَعْمَلُونَ بَصِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,33,' إِذْ جَآءُوكُم مِّن فَوْقِكُمْ وَمِنْ أَسْفَلَ مِنكُمْ وَإِذْ زَاغَتِ ٱلْأَبْصَرُ وَبَلَغَتِ ٱلْقُلُوبُ ٱلْحَنَاجِرَ وَتَظُنُّونَ بِٱللَّهِ ٱلظُّنُونَا۠');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,33,' هُنَالِكَ ٱبْتُلِىَ ٱلْمُؤْمِنُونَ وَزُلْزِلُوا۟ زِلْزَالًۭا شَدِيدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,33,' وَإِذْ يَقُولُ ٱلْمُنَفِقُونَ وَٱلَّذِينَ فِى قُلُوبِهِم مَّرَضٌۭ مَّا وَعَدَنَا ٱللَّهُ وَرَسُولُهُۥٓ إِلَّا غُرُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,33,' وَإِذْ قَالَت طَّآئِفَةٌۭ مِّنْهُمْ يَٓأَهْلَ يَثْرِبَ لَا مُقَامَ لَكُمْ فَٱرْجِعُوا۟ ۚ وَيَسْتَـْٔذِنُ فَرِيقٌۭ مِّنْهُمُ ٱلنَّبِىَّ يَقُولُونَ إِنَّ بُيُوتَنَا عَوْرَةٌۭ وَمَا هِىَ بِعَوْرَةٍ ۖ إِن يُرِيدُونَ إِلَّا فِرَارًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,33,' وَلَوْ دُخِلَتْ عَلَيْهِم مِّنْ أَقْطَارِهَا ثُمَّ سُئِلُوا۟ ٱلْفِتْنَةَ لَءَاتَوْهَا وَمَا تَلَبَّثُوا۟ بِهَآ إِلَّا يَسِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,33,' وَلَقَدْ كَانُوا۟ عَهَدُوا۟ ٱللَّهَ مِن قَبْلُ لَا يُوَلُّونَ ٱلْأَدْبَرَ ۚ وَكَانَ عَهْدُ ٱللَّهِ مَسْـُٔولًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,33,' قُل لَّن يَنفَعَكُمُ ٱلْفِرَارُ إِن فَرَرْتُم مِّنَ ٱلْمَوْتِ أَوِ ٱلْقَتْلِ وَإِذًۭا لَّا تُمَتَّعُونَ إِلَّا قَلِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,33,' قُلْ مَن ذَا ٱلَّذِى يَعْصِمُكُم مِّنَ ٱللَّهِ إِنْ أَرَادَ بِكُمْ سُوٓءًا أَوْ أَرَادَ بِكُمْ رَحْمَةًۭ ۚ وَلَا يَجِدُونَ لَهُم مِّن دُونِ ٱللَّهِ وَلِيًّۭا وَلَا نَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,33,' قَدْ يَعْلَمُ ٱللَّهُ ٱلْمُعَوِّقِينَ مِنكُمْ وَٱلْقَآئِلِينَ لِإِخْوَنِهِمْ هَلُمَّ إِلَيْنَا ۖ وَلَا يَأْتُونَ ٱلْبَأْسَ إِلَّا قَلِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,33,' أَشِحَّةً عَلَيْكُمْ ۖ فَإِذَا جَآءَ ٱلْخَوْفُ رَأَيْتَهُمْ يَنظُرُونَ إِلَيْكَ تَدُورُ أَعْيُنُهُمْ كَٱلَّذِى يُغْشَىٰ عَلَيْهِ مِنَ ٱلْمَوْتِ ۖ فَإِذَا ذَهَبَ ٱلْخَوْفُ سَلَقُوكُم بِأَلْسِنَةٍ حِدَادٍ أَشِحَّةً عَلَى ٱلْخَيْرِ ۚ أُو۟لَٓئِكَ لَمْ يُؤْمِنُوا۟ فَأَحْبَطَ ٱللَّهُ أَعْمَلَهُمْ ۚ وَكَانَ ذَلِكَ عَلَى ٱللَّهِ يَسِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,33,' يَحْسَبُونَ ٱلْأَحْزَابَ لَمْ يَذْهَبُوا۟ ۖ وَإِن يَأْتِ ٱلْأَحْزَابُ يَوَدُّوا۟ لَوْ أَنَّهُم بَادُونَ فِى ٱلْأَعْرَابِ يَسْـَٔلُونَ عَنْ أَنۢبَآئِكُمْ ۖ وَلَوْ كَانُوا۟ فِيكُم مَّا قَتَلُوٓا۟ إِلَّا قَلِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,33,' لَّقَدْ كَانَ لَكُمْ فِى رَسُولِ ٱللَّهِ أُسْوَةٌ حَسَنَةٌۭ لِّمَن كَانَ يَرْجُوا۟ ٱللَّهَ وَٱلْيَوْمَ ٱلْءَاخِرَ وَذَكَرَ ٱللَّهَ كَثِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,33,' وَلَمَّا رَءَا ٱلْمُؤْمِنُونَ ٱلْأَحْزَابَ قَالُوا۟ هَذَا مَا وَعَدَنَا ٱللَّهُ وَرَسُولُهُۥ وَصَدَقَ ٱللَّهُ وَرَسُولُهُۥ ۚ وَمَا زَادَهُمْ إِلَّآ إِيمَنًۭا وَتَسْلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,33,' مِّنَ ٱلْمُؤْمِنِينَ رِجَالٌۭ صَدَقُوا۟ مَا عَهَدُوا۟ ٱللَّهَ عَلَيْهِ ۖ فَمِنْهُم مَّن قَضَىٰ نَحْبَهُۥ وَمِنْهُم مَّن يَنتَظِرُ ۖ وَمَا بَدَّلُوا۟ تَبْدِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,33,' لِّيَجْزِىَ ٱللَّهُ ٱلصَّدِقِينَ بِصِدْقِهِمْ وَيُعَذِّبَ ٱلْمُنَفِقِينَ إِن شَآءَ أَوْ يَتُوبَ عَلَيْهِمْ ۚ إِنَّ ٱللَّهَ كَانَ غَفُورًۭا رَّحِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,33,' وَرَدَّ ٱللَّهُ ٱلَّذِينَ كَفَرُوا۟ بِغَيْظِهِمْ لَمْ يَنَالُوا۟ خَيْرًۭا ۚ وَكَفَى ٱللَّهُ ٱلْمُؤْمِنِينَ ٱلْقِتَالَ ۚ وَكَانَ ٱللَّهُ قَوِيًّا عَزِيزًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,33,' وَأَنزَلَ ٱلَّذِينَ ظَهَرُوهُم مِّنْ أَهْلِ ٱلْكِتَبِ مِن صَيَاصِيهِمْ وَقَذَفَ فِى قُلُوبِهِمُ ٱلرُّعْبَ فَرِيقًۭا تَقْتُلُونَ وَتَأْسِرُونَ فَرِيقًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,33,' وَأَوْرَثَكُمْ أَرْضَهُمْ وَدِيَرَهُمْ وَأَمْوَلَهُمْ وَأَرْضًۭا لَّمْ تَطَـُٔوهَا ۚ وَكَانَ ٱللَّهُ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,33,' يَٓأَيُّهَا ٱلنَّبِىُّ قُل لِأَزْوَجِكَ إِن كُنتُنَّ تُرِدْنَ ٱلْحَيَوٰةَ ٱلدُّنْيَا وَزِينَتَهَا فَتَعَالَيْنَ أُمَتِّعْكُنَّ وَأُسَرِّحْكُنَّ سَرَاحًۭا جَمِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,33,' وَإِن كُنتُنَّ تُرِدْنَ ٱللَّهَ وَرَسُولَهُۥ وَٱلدَّارَ ٱلْءَاخِرَةَ فَإِنَّ ٱللَّهَ أَعَدَّ لِلْمُحْسِنَتِ مِنكُنَّ أَجْرًا عَظِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,33,' يَنِسَآءَ ٱلنَّبِىِّ مَن يَأْتِ مِنكُنَّ بِفَحِشَةٍۢ مُّبَيِّنَةٍۢ يُضَعَفْ لَهَا ٱلْعَذَابُ ضِعْفَيْنِ ۚ وَكَانَ ذَلِكَ عَلَى ٱللَّهِ يَسِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,33,' وَمَن يَقْنُتْ مِنكُنَّ لِلَّهِ وَرَسُولِهِۦ وَتَعْمَلْ صَلِحًۭا نُّؤْتِهَآ أَجْرَهَا مَرَّتَيْنِ وَأَعْتَدْنَا لَهَا رِزْقًۭا كَرِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,33,' يَنِسَآءَ ٱلنَّبِىِّ لَسْتُنَّ كَأَحَدٍۢ مِّنَ ٱلنِّسَآءِۚ إِنِ ٱتَّقَيْتُنَّ فَلَا تَخْضَعْنَ بِٱلْقَوْلِ فَيَطْمَعَ ٱلَّذِى فِى قَلْبِهِۦ مَرَضٌۭ وَقُلْنَ قَوْلًۭا مَّعْرُوفًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,33,' وَقَرْنَ فِى بُيُوتِكُنَّ وَلَا تَبَرَّجْنَ تَبَرُّجَ ٱلْجَهِلِيَّةِ ٱلْأُولَىٰۖ وَأَقِمْنَ ٱلصَّلَوٰةَ وَءَاتِينَ ٱلزَّكَوٰةَ وَأَطِعْنَ ٱللَّهَ وَرَسُولَهُۚۥٓ إِنَّمَا يُرِيدُ ٱللَّهُ لِيُذْهِبَ عَنكُمُ ٱلرِّجْسَ أَهْلَ ٱلْبَيْتِ وَيُطَهِّرَكُمْ تَطْهِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,33,' وَٱذْكُرْنَ مَا يُتْلَىٰ فِى بُيُوتِكُنَّ مِنْ ءَايَتِ ٱللَّهِ وَٱلْحِكْمَةِۚ إِنَّ ٱللَّهَ كَانَ لَطِيفًا خَبِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,33,' إِنَّ ٱلْمُسْلِمِينَ وَٱلْمُسْلِمَتِ وَٱلْمُؤْمِنِينَ وَٱلْمُؤْمِنَتِ وَٱلْقَنِتِينَ وَٱلْقَنِتَتِ وَٱلصَّدِقِينَ وَٱلصَّدِقَتِ وَٱلصَّبِرِينَ وَٱلصَّبِرَتِ وَٱلْخَشِعِينَ وَٱلْخَشِعَتِ وَٱلْمُتَصَدِّقِينَ وَٱلْمُتَصَدِّقَتِ وَٱلصَّٓئِمِينَ وَٱلصَّٓئِمَتِ وَٱلْحَفِظِينَ فُرُوجَهُمْ وَٱلْحَفِظَتِ وَٱلذَّكِرِينَ ٱللَّهَ كَثِيرًۭا وَٱلذَّكِرَتِ أَعَدَّ ٱللَّهُ لَهُم مَّغْفِرَةًۭ وَأَجْرًا عَظِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,33,' وَمَا كَانَ لِمُؤْمِنٍۢ وَلَا مُؤْمِنَةٍ إِذَا قَضَى ٱللَّهُ وَرَسُولُهُۥٓ أَمْرًا أَن يَكُونَ لَهُمُ ٱلْخِيَرَةُ مِنْ أَمْرِهِمْۗ وَمَن يَعْصِ ٱللَّهَ وَرَسُولَهُۥ فَقَدْ ضَلَّ ضَلَلًۭا مُّبِينًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,33,' وَإِذْ تَقُولُ لِلَّذِىٓ أَنْعَمَ ٱللَّهُ عَلَيْهِ وَأَنْعَمْتَ عَلَيْهِ أَمْسِكْ عَلَيْكَ زَوْجَكَ وَٱتَّقِ ٱللَّهَ وَتُخْفِى فِى نَفْسِكَ مَا ٱللَّهُ مُبْدِيهِ وَتَخْشَى ٱلنَّاسَ وَٱللَّهُ أَحَقُّ أَن تَخْشَىٰهُۖ فَلَمَّا قَضَىٰ زَيْدٌۭ مِّنْهَا وَطَرًۭا زَوَّجْنَكَهَا لِكَىْ لَا يَكُونَ عَلَى ٱلْمُؤْمِنِينَ حَرَجٌۭ فِىٓ أَزْوَجِ أَدْعِيَآئِهِمْ إِذَا قَضَوْا۟ مِنْهُنَّ وَطَرًۭاۚ وَكَانَ أَمْرُ ٱللَّهِ مَفْعُولًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,33,' مَّا كَانَ عَلَى ٱلنَّبِىِّ مِنْ حَرَجٍۢ فِيمَا فَرَضَ ٱللَّهُ لَهُۖۥ سُنَّةَ ٱللَّهِ فِى ٱلَّذِينَ خَلَوْا۟ مِن قَبْلُۚ وَكَانَ أَمْرُ ٱللَّهِ قَدَرًۭا مَّقْدُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,33,' ٱلَّذِينَ يُبَلِّغُونَ رِسَلَتِ ٱللَّهِ وَيَخْشَوْنَهُۥ وَلَا يَخْشَوْنَ أَحَدًا إِلَّا ٱللَّهَۗ وَكَفَىٰ بِٱللَّهِ حَسِيبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,33,' مَّا كَانَ مُحَمَّدٌ أَبَآ أَحَدٍۢ مِّن رِّجَالِكُمْ وَلَكِن رَّسُولَ ٱللَّهِ وَخَاتَمَ ٱلنَّبِيِّۦنَۗ وَكَانَ ٱللَّهُ بِكُلِّ شَىْءٍ عَلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,33,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ ٱذْكُرُوا۟ ٱللَّهَ ذِكْرًۭا كَثِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,33,' وَسَبِّحُوهُ بُكْرَةًۭ وَأَصِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,33,' هُوَ ٱلَّذِى يُصَلِّى عَلَيْكُمْ وَمَلَٓئِكَتُهُۥ لِيُخْرِجَكُم مِّنَ ٱلظُّلُمَتِ إِلَى ٱلنُّورِۚ وَكَانَ بِٱلْمُؤْمِنِينَ رَحِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,33,' تَحِيَّتُهُمْ يَوْمَ يَلْقَوْنَهُۥ سَلَمٌۭۚ وَأَعَدَّ لَهُمْ أَجْرًۭا كَرِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,33,' يَٓأَيُّهَا ٱلنَّبِىُّ إِنَّآ أَرْسَلْنَكَ شَهِدًۭا وَمُبَشِّرًۭا وَنَذِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,33,' وَدَاعِيًا إِلَى ٱللَّهِ بِإِذْنِهِۦ وَسِرَاجًۭا مُّنِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,33,' وَبَشِّرِ ٱلْمُؤْمِنِينَ بِأَنَّ لَهُم مِّنَ ٱللَّهِ فَضْلًۭا كَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,33,' وَلَا تُطِعِ ٱلْكَفِرِينَ وَٱلْمُنَفِقِينَ وَدَعْ أَذَىٰهُمْ وَتَوَكَّلْ عَلَى ٱللَّهِۚ وَكَفَىٰ بِٱللَّهِ وَكِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,33,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِذَا نَكَحْتُمُ ٱلْمُؤْمِنَتِ ثُمَّ طَلَّقْتُمُوهُنَّ مِن قَبْلِ أَن تَمَسُّوهُنَّ فَمَا لَكُمْ عَلَيْهِنَّ مِنْ عِدَّةٍۢ تَعْتَدُّونَهَاۖ فَمَتِّعُوهُنَّ وَسَرِّحُوهُنَّ سَرَاحًۭا جَمِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,33,' يَٓأَيُّهَا ٱلنَّبِىُّ إِنَّآ أَحْلَلْنَا لَكَ أَزْوَجَكَ ٱلَّتِىٓ ءَاتَيْتَ أُجُورَهُنَّ وَمَا مَلَكَتْ يَمِينُكَ مِمَّآ أَفَآءَ ٱللَّهُ عَلَيْكَ وَبَنَاتِ عَمِّكَ وَبَنَاتِ عَمَّتِكَ وَبَنَاتِ خَالِكَ وَبَنَاتِ خَلَتِكَ ٱلَّتِى هَاجَرْنَ مَعَكَ وَٱمْرَأَةًۭ مُّؤْمِنَةً إِن وَهَبَتْ نَفْسَهَا لِلنَّبِىِّ إِنْ أَرَادَ ٱلنَّبِىُّ أَن يَسْتَنكِحَهَا خَالِصَةًۭ لَّكَ مِن دُونِ ٱلْمُؤْمِنِينَۗ قَدْ عَلِمْنَا مَا فَرَضْنَا عَلَيْهِمْ فِىٓ أَزْوَجِهِمْ وَمَا مَلَكَتْ أَيْمَنُهُمْ لِكَيْلَا يَكُونَ عَلَيْكَ حَرَجٌۭۗ وَكَانَ ٱللَّهُ غَفُورًۭا رَّحِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,33,' تُرْجِى مَن تَشَآءُ مِنْهُنَّ وَتُـْٔوِىٓ إِلَيْكَ مَن تَشَآءُۖ وَمَنِ ٱبْتَغَيْتَ مِمَّنْ عَزَلْتَ فَلَا جُنَاحَ عَلَيْكَۚ ذَلِكَ أَدْنَىٰٓ أَن تَقَرَّ أَعْيُنُهُنَّ وَلَا يَحْزَنَّ وَيَرْضَيْنَ بِمَآ ءَاتَيْتَهُنَّ كُلُّهُنَّۚ وَٱللَّهُ يَعْلَمُ مَا فِى قُلُوبِكُمْۚ وَكَانَ ٱللَّهُ عَلِيمًا حَلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,33,' لَّا يَحِلُّ لَكَ ٱلنِّسَآءُ مِنۢ بَعْدُ وَلَآ أَن تَبَدَّلَ بِهِنَّ مِنْ أَزْوَجٍۢ وَلَوْ أَعْجَبَكَ حُسْنُهُنَّ إِلَّا مَا مَلَكَتْ يَمِينُكَۗ وَكَانَ ٱللَّهُ عَلَىٰ كُلِّ شَىْءٍۢ رَّقِيبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,33,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَدْخُلُوا۟ بُيُوتَ ٱلنَّبِىِّ إِلَّآ أَن يُؤْذَنَ لَكُمْ إِلَىٰ طَعَامٍ غَيْرَ نَظِرِينَ إِنَىٰهُ وَلَكِنْ إِذَا دُعِيتُمْ فَٱدْخُلُوا۟ فَإِذَا طَعِمْتُمْ فَٱنتَشِرُوا۟ وَلَا مُسْتَـْٔنِسِينَ لِحَدِيثٍۚ إِنَّ ذَلِكُمْ كَانَ يُؤْذِى ٱلنَّبِىَّ فَيَسْتَحْىِۦ مِنكُمْۖ وَٱللَّهُ لَا يَسْتَحْىِۦ مِنَ ٱلْحَقِّۚ وَإِذَا سَأَلْتُمُوهُنَّ مَتَعًۭا فَسْـَٔلُوهُنَّ مِن وَرَآءِ حِجَابٍۢۚ ذَلِكُمْ أَطْهَرُ لِقُلُوبِكُمْ وَقُلُوبِهِنَّۚ وَمَا كَانَ لَكُمْ أَن تُؤْذُوا۟ رَسُولَ ٱللَّهِ وَلَآ أَن تَنكِحُوٓا۟ أَزْوَجَهُۥ مِنۢ بَعْدِهِۦٓ أَبَدًاۚ إِنَّ ذَلِكُمْ كَانَ عِندَ ٱللَّهِ عَظِيمًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,33,' إِن تُبْدُوا۟ شَيْـًٔا أَوْ تُخْفُوهُ فَإِنَّ ٱللَّهَ كَانَ بِكُلِّ شَىْءٍ عَلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,33,' لَّا جُنَاحَ عَلَيْهِنَّ فِىٓ ءَابَآئِهِنَّ وَلَآ أَبْنَآئِهِنَّ وَلَآ إِخْوَنِهِنَّ وَلَآ أَبْنَآءِ إِخْوَنِهِنَّ وَلَآ أَبْنَآءِ أَخَوَتِهِنَّ وَلَا نِسَآئِهِنَّ وَلَا مَا مَلَكَتْ أَيْمَنُهُنَّۗ وَٱتَّقِينَ ٱللَّهَۚ إِنَّ ٱللَّهَ كَانَ عَلَىٰ كُلِّ شَىْءٍۢ شَهِيدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,33,' إِنَّ ٱللَّهَ وَمَلَٓئِكَتَهُۥ يُصَلُّونَ عَلَى ٱلنَّبِىِّۚ يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ صَلُّوا۟ عَلَيْهِ وَسَلِّمُوا۟ تَسْلِيمًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,33,' إِنَّ ٱلَّذِينَ يُؤْذُونَ ٱللَّهَ وَرَسُولَهُۥ لَعَنَهُمُ ٱللَّهُ فِى ٱلدُّنْيَا وَٱلْءَاخِرَةِ وَأَعَدَّ لَهُمْ عَذَابًۭا مُّهِينًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,33,' وَٱلَّذِينَ يُؤْذُونَ ٱلْمُؤْمِنِينَ وَٱلْمُؤْمِنَتِ بِغَيْرِ مَا ٱكْتَسَبُوا۟ فَقَدِ ٱحْتَمَلُوا۟ بُهْتَنًۭا وَإِثْمًۭا مُّبِينًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,33,' يَٓأَيُّهَا ٱلنَّبِىُّ قُل لِأَزْوَجِكَ وَبَنَاتِكَ وَنِسَآءِ ٱلْمُؤْمِنِينَ يُدْنِينَ عَلَيْهِنَّ مِن جَلَبِيبِهِنَّۚ ذَلِكَ أَدْنَىٰٓ أَن يُعْرَفْنَ فَلَا يُؤْذَيْنَۗ وَكَانَ ٱللَّهُ غَفُورًۭا رَّحِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,33,' لَّىِٕن لَّمْ يَنتَهِ ٱلْمُنَفِقُونَ وَٱلَّذِينَ فِى قُلُوبِهِم مَّرَضٌۭ وَٱلْمُرْجِفُونَ فِى ٱلْمَدِينَةِ لَنُغْرِيَنَّكَ بِهِمْ ثُمَّ لَا يُجَاوِرُونَكَ فِيهَآ إِلَّا قَلِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,33,' مَّلْعُونِينَۖ أَيْنَمَا ثُقِفُوٓا۟ أُخِذُوا۟ وَقُتِّلُوا۟ تَقْتِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,33,' سُنَّةَ ٱللَّهِ فِى ٱلَّذِينَ خَلَوْا۟ مِن قَبْلُۖ وَلَن تَجِدَ لِسُنَّةِ ٱللَّهِ تَبْدِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,33,' يَسْـَٔلُكَ ٱلنَّاسُ عَنِ ٱلسَّاعَةِۖ قُلْ إِنَّمَا عِلْمُهَا عِندَ ٱللَّهِۚ وَمَا يُدْرِيكَ لَعَلَّ ٱلسَّاعَةَ تَكُونُ قَرِيبًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,33,' إِنَّ ٱللَّهَ لَعَنَ ٱلْكَفِرِينَ وَأَعَدَّ لَهُمْ سَعِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,33,' خَلِدِينَ فِيهَآ أَبَدًۭاۖ لَّا يَجِدُونَ وَلِيًّۭا وَلَا نَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,33,' يَوْمَ تُقَلَّبُ وُجُوهُهُمْ فِى ٱلنَّارِ يَقُولُونَ يَلَيْتَنَآ أَطَعْنَا ٱللَّهَ وَأَطَعْنَا ٱلرَّسُولَا۠');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,33,' وَقَالُوا۟ رَبَّنَآ إِنَّآ أَطَعْنَا سَادَتَنَا وَكُبَرَآءَنَا فَأَضَلُّونَا ٱلسَّبِيلَا۠');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,33,' رَبَّنَآ ءَاتِهِمْ ضِعْفَيْنِ مِنَ ٱلْعَذَابِ وَٱلْعَنْهُمْ لَعْنًۭا كَبِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,33,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَكُونُوا۟ كَٱلَّذِينَ ءَاذَوْا۟ مُوسَىٰ فَبَرَّأَهُ ٱللَّهُ مِمَّا قَالُوا۟ۚ وَكَانَ عِندَ ٱللَّهِ وَجِيهًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,33,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ ٱتَّقُوا۟ ٱللَّهَ وَقُولُوا۟ قَوْلًۭا سَدِيدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,33,' يُصْلِحْ لَكُمْ أَعْمَلَكُمْ وَيَغْفِرْ لَكُمْ ذُنُوبَكُمْۗ وَمَن يُطِعِ ٱللَّهَ وَرَسُولَهُۥ فَقَدْ فَازَ فَوْزًا عَظِيمًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,33,' إِنَّا عَرَضْنَا ٱلْأَمَانَةَ عَلَى ٱلسَّمَوَتِ وَٱلْأَرْضِ وَٱلْجِبَالِ فَأَبَيْنَ أَن يَحْمِلْنَهَا وَأَشْفَقْنَ مِنْهَا وَحَمَلَهَا ٱلْإِنسَنُۖ إِنَّهُۥ كَانَ ظَلُومًۭا جَهُولًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,33,' لِّيُعَذِّبَ ٱللَّهُ ٱلْمُنَفِقِينَ وَٱلْمُنَفِقَتِ وَٱلْمُشْرِكِينَ وَٱلْمُشْرِكَتِ وَيَتُوبَ ٱللَّهُ عَلَى ٱلْمُؤْمِنِينَ وَٱلْمُؤْمِنَتِۗ وَكَانَ ٱللَّهُ غَفُورًۭا رَّحِيمًۢا');
+INSERT INTO chapters (id, number, quran_id) VALUES(34,34,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,34,' ٱلْحَمْدُ لِلَّهِ ٱلَّذِى لَهُۥ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ وَلَهُ ٱلْحَمْدُ فِى ٱلْءَاخِرَةِۚ وَهُوَ ٱلْحَكِيمُ ٱلْخَبِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,34,' يَعْلَمُ مَا يَلِجُ فِى ٱلْأَرْضِ وَمَا يَخْرُجُ مِنْهَا وَمَا يَنزِلُ مِنَ ٱلسَّمَآءِ وَمَا يَعْرُجُ فِيهَاۚ وَهُوَ ٱلرَّحِيمُ ٱلْغَفُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,34,' وَقَالَ ٱلَّذِينَ كَفَرُوا۟ لَا تَأْتِينَا ٱلسَّاعَةُۖ قُلْ بَلَىٰ وَرَبِّى لَتَأْتِيَنَّكُمْ عَلِمِ ٱلْغَيْبِۖ لَا يَعْزُبُ عَنْهُ مِثْقَالُ ذَرَّةٍۢ فِى ٱلسَّمَوَتِ وَلَا فِى ٱلْأَرْضِ وَلَآ أَصْغَرُ مِن ذَلِكَ وَلَآ أَكْبَرُ إِلَّا فِى كِتَبٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,34,' لِّيَجْزِىَ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِۚ أُو۟لَٓئِكَ لَهُم مَّغْفِرَةٌۭ وَرِزْقٌۭ كَرِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,34,' وَٱلَّذِينَ سَعَوْ فِىٓ ءَايَتِنَا مُعَجِزِينَ أُو۟لَٓئِكَ لَهُمْ عَذَابٌۭ مِّن رِّجْزٍ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,34,' وَيَرَى ٱلَّذِينَ أُوتُوا۟ ٱلْعِلْمَ ٱلَّذِىٓ أُنزِلَ إِلَيْكَ مِن رَّبِّكَ هُوَ ٱلْحَقَّ وَيَهْدِىٓ إِلَىٰ صِرَطِ ٱلْعَزِيزِ ٱلْحَمِيدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,34,' وَقَالَ ٱلَّذِينَ كَفَرُوا۟ هَلْ نَدُلُّكُمْ عَلَىٰ رَجُلٍۢ يُنَبِّئُكُمْ إِذَا مُزِّقْتُمْ كُلَّ مُمَزَّقٍ إِنَّكُمْ لَفِى خَلْقٍۢ جَدِيدٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,34,' أَفْتَرَىٰ عَلَى ٱللَّهِ كَذِبًا أَم بِهِۦ جِنَّۗةٌۢ بَلِ ٱلَّذِينَ لَا يُؤْمِنُونَ بِٱلْءَاخِرَةِ فِى ٱلْعَذَابِ وَٱلضَّلَلِ ٱلْبَعِيدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,34,' أَفَلَمْ يَرَوْا۟ إِلَىٰ مَا بَيْنَ أَيْدِيهِمْ وَمَا خَلْفَهُم مِّنَ ٱلسَّمَآءِ وَٱلْأَرْضِۚ إِن نَّشَأْ نَخْسِفْ بِهِمُ ٱلْأَرْضَ أَوْ نُسْقِطْ عَلَيْهِمْ كِسَفًۭا مِّنَ ٱلسَّمَآءِۚ إِنَّ فِى ذَلِكَ لَءَايَةًۭ لِّكُلِّ عَبْدٍۢ مُّنِيبٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,34,' وَلَقَدْ ءَاتَيْنَا دَاوُۥدَ مِنَّا فَضْلًۭاۖ يَجِبَالُ أَوِّبِى مَعَهُۥ وَٱلطَّيْرَۖ وَأَلَنَّا لَهُ ٱلْحَدِيدَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,34,' أَنِ ٱعْمَلْ سَبِغَتٍۢ وَقَدِّرْ فِى ٱلسَّرْدِۖ وَٱعْمَلُوا۟ صَلِحًاۖ إِنِّى بِمَا تَعْمَلُونَ بَصِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,34,' وَلِسُلَيْمَنَ ٱلرِّيحَ غُدُوُّهَا شَهْرٌۭ وَرَوَاحُهَا شَهْرٌۭۖ وَأَسَلْنَا لَهُۥ عَيْنَ ٱلْقِطْرِۖ وَمِنَ ٱلْجِنِّ مَن يَعْمَلُ بَيْنَ يَدَيْهِ بِإِذْنِ رَبِّهِۖۦ وَمَن يَزِغْ مِنْهُمْ عَنْ أَمْرِنَا نُذِقْهُ مِنْ عَذَابِ ٱلسَّعِيرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,34,' يَعْمَلُونَ لَهُۥ مَا يَشَآءُ مِن مَّحَرِيبَ وَتَمَثِيلَ وَجِفَانٍۢ كَٱلْجَوَابِ وَقُدُورٍۢ رَّاسِيَتٍۚ ٱعْمَلُوٓا۟ ءَالَ دَاوُۥدَ شُكْرًۭاۚ وَقَلِيلٌۭ مِّنْ عِبَادِىَ ٱلشَّكُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,34,' فَلَمَّا قَضَيْنَا عَلَيْهِ ٱلْمَوْتَ مَا دَلَّهُمْ عَلَىٰ مَوْتِهِۦٓ إِلَّا دَآبَّةُ ٱلْأَرْضِ تَأْكُلُ مِنسَأَتَهُۖۥ فَلَمَّا خَرَّ تَبَيَّنَتِ ٱلْجِنُّ أَن لَّوْ كَانُوا۟ يَعْلَمُونَ ٱلْغَيْبَ مَا لَبِثُوا۟ فِى ٱلْعَذَابِ ٱلْمُهِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,34,' لَقَدْ كَانَ لِسَبَإٍۢ فِى مَسْكَنِهِمْ ءَايَةٌۭۖ جَنَّتَانِ عَن يَمِينٍۢ وَشِمَالٍۢۖ كُلُوا۟ مِن رِّزْقِ رَبِّكُمْ وَٱشْكُرُوا۟ لَهُۚۥ بَلْدَةٌۭ طَيِّبَةٌۭ وَرَبٌّ غَفُورٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,34,' فَأَعْرَضُوا۟ فَأَرْسَلْنَا عَلَيْهِمْ سَيْلَ ٱلْعَرِمِ وَبَدَّلْنَهُم بِجَنَّتَيْهِمْ جَنَّتَيْنِ ذَوَاتَىْ أُكُلٍ خَمْطٍۢ وَأَثْلٍۢ وَشَىْءٍۢ مِّن سِدْرٍۢ قَلِيلٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,34,' ذَلِكَ جَزَيْنَهُم بِمَا كَفَرُوا۟ۖ وَهَلْ نُجَزِىٓ إِلَّا ٱلْكَفُورَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,34,' وَجَعَلْنَا بَيْنَهُمْ وَبَيْنَ ٱلْقُرَى ٱلَّتِى بَرَكْنَا فِيهَا قُرًۭى ظَهِرَةًۭ وَقَدَّرْنَا فِيهَا ٱلسَّيْرَۖ سِيرُوا۟ فِيهَا لَيَالِىَ وَأَيَّامًا ءَامِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,34,' فَقَالُوا۟ رَبَّنَا بَعِدْ بَيْنَ أَسْفَارِنَا وَظَلَمُوٓا۟ أَنفُسَهُمْ فَجَعَلْنَهُمْ أَحَادِيثَ وَمَزَّقْنَهُمْ كُلَّ مُمَزَّقٍۚ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّكُلِّ صَبَّارٍۢ شَكُورٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,34,' وَلَقَدْ صَدَّقَ عَلَيْهِمْ إِبْلِيسُ ظَنَّهُۥ فَٱتَّبَعُوهُ إِلَّا فَرِيقًۭا مِّنَ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,34,' وَمَا كَانَ لَهُۥ عَلَيْهِم مِّن سُلْطَنٍ إِلَّا لِنَعْلَمَ مَن يُؤْمِنُ بِٱلْءَاخِرَةِ مِمَّنْ هُوَ مِنْهَا فِى شَكٍّۢۗ وَرَبُّكَ عَلَىٰ كُلِّ شَىْءٍ حَفِيظٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,34,' قُلِ ٱدْعُوا۟ ٱلَّذِينَ زَعَمْتُم مِّن دُونِ ٱللَّهِۖ لَا يَمْلِكُونَ مِثْقَالَ ذَرَّةٍۢ فِى ٱلسَّمَوَتِ وَلَا فِى ٱلْأَرْضِ وَمَا لَهُمْ فِيهِمَا مِن شِرْكٍۢ وَمَا لَهُۥ مِنْهُم مِّن ظَهِيرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,34,' وَلَا تَنفَعُ ٱلشَّفَعَةُ عِندَهُۥٓ إِلَّا لِمَنْ أَذِنَ لَهُۚۥ حَتَّىٰٓ إِذَا فُزِّعَ عَن قُلُوبِهِمْ قَالُوا۟ مَاذَا قَالَ رَبُّكُمْۖ قَالُوا۟ ٱلْحَقَّۖ وَهُوَ ٱلْعَلِىُّ ٱلْكَبِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,34,' قُلْ مَن يَرْزُقُكُم مِّنَ ٱلسَّمَوَتِ وَٱلْأَرْضِۖ قُلِ ٱللَّهُۖ وَإِنَّآ أَوْ إِيَّاكُمْ لَعَلَىٰ هُدًى أَوْ فِى ضَلَلٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,34,' قُل لَّا تُسْـَٔلُونَ عَمَّآ أَجْرَمْنَا وَلَا نُسْـَٔلُ عَمَّا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,34,' قُلْ يَجْمَعُ بَيْنَنَا رَبُّنَا ثُمَّ يَفْتَحُ بَيْنَنَا بِٱلْحَقِّ وَهُوَ ٱلْفَتَّاحُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,34,' قُلْ أَرُونِىَ ٱلَّذِينَ أَلْحَقْتُم بِهِۦ شُرَكَآءَۖ كَلَّاۚ بَلْ هُوَ ٱللَّهُ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,34,' وَمَآ أَرْسَلْنَكَ إِلَّا كَآفَّةًۭ لِّلنَّاسِ بَشِيرًۭا وَنَذِيرًۭا وَلَكِنَّ أَكْثَرَ ٱلنَّاسِ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,34,' وَيَقُولُونَ مَتَىٰ هَذَا ٱلْوَعْدُ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,34,' قُل لَّكُم مِّيعَادُ يَوْمٍۢ لَّا تَسْتَـْٔخِرُونَ عَنْهُ سَاعَةًۭ وَلَا تَسْتَقْدِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,34,' وَقَالَ ٱلَّذِينَ كَفَرُوا۟ لَن نُّؤْمِنَ بِهَذَا ٱلْقُرْءَانِ وَلَا بِٱلَّذِى بَيْنَ يَدَيْهِۗ وَلَوْ تَرَىٰٓ إِذِ ٱلظَّلِمُونَ مَوْقُوفُونَ عِندَ رَبِّهِمْ يَرْجِعُ بَعْضُهُمْ إِلَىٰ بَعْضٍ ٱلْقَوْلَ يَقُولُ ٱلَّذِينَ ٱسْتُضْعِفُوا۟ لِلَّذِينَ ٱسْتَكْبَرُوا۟ لَوْلَآ أَنتُمْ لَكُنَّا مُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,34,' قَالَ ٱلَّذِينَ ٱسْتَكْبَرُوا۟ لِلَّذِينَ ٱسْتُضْعِفُوٓا۟ أَنَحْنُ صَدَدْنَكُمْ عَنِ ٱلْهُدَىٰ بَعْدَ إِذْ جَآءَكُمۖ بَلْ كُنتُم مُّجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,34,' وَقَالَ ٱلَّذِينَ ٱسْتُضْعِفُوا۟ لِلَّذِينَ ٱسْتَكْبَرُوا۟ بَلْ مَكْرُ ٱلَّيْلِ وَٱلنَّهَارِ إِذْ تَأْمُرُونَنَآ أَن نَّكْفُرَ بِٱللَّهِ وَنَجْعَلَ لَهُۥٓ أَندَادًۭاۚ وَأَسَرُّوا۟ ٱلنَّدَامَةَ لَمَّا رَأَوُا۟ ٱلْعَذَابَ وَجَعَلْنَا ٱلْأَغْلَلَ فِىٓ أَعْنَاقِ ٱلَّذِينَ كَفَرُوا۟ۚ هَلْ يُجْزَوْنَ إِلَّا مَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,34,' وَمَآ أَرْسَلْنَا فِى قَرْيَةٍۢ مِّن نَّذِيرٍ إِلَّا قَالَ مُتْرَفُوهَآ إِنَّا بِمَآ أُرْسِلْتُم بِهِۦ كَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,34,' وَقَالُوا۟ نَحْنُ أَكْثَرُ أَمْوَلًۭا وَأَوْلَدًۭا وَمَا نَحْنُ بِمُعَذَّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,34,' قُلْ إِنَّ رَبِّى يَبْسُطُ ٱلرِّزْقَ لِمَن يَشَآءُ وَيَقْدِرُ وَلَكِنَّ أَكْثَرَ ٱلنَّاسِ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,34,' وَمَآ أَمْوَلُكُمْ وَلَآ أَوْلَدُكُم بِٱلَّتِى تُقَرِّبُكُمْ عِندَنَا زُلْفَىٰٓ إِلَّا مَنْ ءَامَنَ وَعَمِلَ صَلِحًۭا فَأُو۟لَٓئِكَ لَهُمْ جَزَآءُ ٱلضِّعْفِ بِمَا عَمِلُوا۟ وَهُمْ فِى ٱلْغُرُفَتِ ءَامِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,34,' وَٱلَّذِينَ يَسْعَوْنَ فِىٓ ءَايَتِنَا مُعَجِزِينَ أُو۟لَٓئِكَ فِى ٱلْعَذَابِ مُحْضَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,34,' قُلْ إِنَّ رَبِّى يَبْسُطُ ٱلرِّزْقَ لِمَن يَشَآءُ مِنْ عِبَادِهِۦ وَيَقْدِرُ لَهُۥۚ وَمَآ أَنفَقْتُم مِّن شَىْءٍۢ فَهُوَ يُخْلِفُهُۖۥ وَهُوَ خَيْرُ ٱلرَّزِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,34,' وَيَوْمَ يَحْشُرُهُمْ جَمِيعًۭا ثُمَّ يَقُولُ لِلْمَلَٓئِكَةِ أَهَٓؤُلَآءِ إِيَّاكُمْ كَانُوا۟ يَعْبُدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,34,' قَالُوا۟ سُبْحَنَكَ أَنتَ وَلِيُّنَا مِن دُونِهِمۖ بَلْ كَانُوا۟ يَعْبُدُونَ ٱلْجِنَّۖ أَكْثَرُهُم بِهِم مُّؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,34,' فَٱلْيَوْمَ لَا يَمْلِكُ بَعْضُكُمْ لِبَعْضٍۢ نَّفْعًۭا وَلَا ضَرًّۭا وَنَقُولُ لِلَّذِينَ ظَلَمُوا۟ ذُوقُوا۟ عَذَابَ ٱلنَّارِ ٱلَّتِى كُنتُم بِهَا تُكَذِّبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,34,' وَإِذَا تُتْلَىٰ عَلَيْهِمْ ءَايَتُنَا بَيِّنَتٍۢ قَالُوا۟ مَا هَذَآ إِلَّا رَجُلٌۭ يُرِيدُ أَن يَصُدَّكُمْ عَمَّا كَانَ يَعْبُدُ ءَابَآؤُكُمْ وَقَالُوا۟ مَا هَذَآ إِلَّآ إِفْكٌۭ مُّفْتَرًۭىۚ وَقَالَ ٱلَّذِينَ كَفَرُوا۟ لِلْحَقِّ لَمَّا جَآءَهُمْ إِنْ هَذَآ إِلَّا سِحْرٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,34,' وَمَآ ءَاتَيْنَهُم مِّن كُتُبٍۢ يَدْرُسُونَهَاۖ وَمَآ أَرْسَلْنَآ إِلَيْهِمْ قَبْلَكَ مِن نَّذِيرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,34,' وَكَذَّبَ ٱلَّذِينَ مِن قَبْلِهِمْ وَمَا بَلَغُوا۟ مِعْشَارَ مَآ ءَاتَيْنَهُمْ فَكَذَّبُوا۟ رُسُلِىۖ فَكَيْفَ كَانَ نَكِيرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,34,' قُلْ إِنَّمَآ أَعِظُكُم بِوَحِدَةٍۖ أَن تَقُومُوا۟ لِلَّهِ مَثْنَىٰ وَفُرَدَىٰ ثُمَّ تَتَفَكَّرُوا۟ۚ مَا بِصَاحِبِكُم مِّن جِنَّةٍۚ إِنْ هُوَ إِلَّا نَذِيرٌۭ لَّكُم بَيْنَ يَدَىْ عَذَابٍۢ شَدِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,34,' قُلْ مَا سَأَلْتُكُم مِّنْ أَجْرٍۢ فَهُوَ لَكُمْۖ إِنْ أَجْرِىَ إِلَّا عَلَى ٱللَّهِۖ وَهُوَ عَلَىٰ كُلِّ شَىْءٍۢ شَهِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,34,' قُلْ إِنَّ رَبِّى يَقْذِفُ بِٱلْحَقِّ عَلَّمُ ٱلْغُيُوبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,34,' قُلْ جَآءَ ٱلْحَقُّ وَمَا يُبْدِئُ ٱلْبَطِلُ وَمَا يُعِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,34,' قُلْ إِن ضَلَلْتُ فَإِنَّمَآ أَضِلُّ عَلَىٰ نَفْسِىۖ وَإِنِ ٱهْتَدَيْتُ فَبِمَا يُوحِىٓ إِلَىَّ رَبِّىٓۚ إِنَّهُۥ سَمِيعٌۭ قَرِيبٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,34,' وَلَوْ تَرَىٰٓ إِذْ فَزِعُوا۟ فَلَا فَوْتَ وَأُخِذُوا۟ مِن مَّكَانٍۢ قَرِيبٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,34,' وَقَالُوٓا۟ ءَامَنَّا بِهِۦ وَأَنَّىٰ لَهُمُ ٱلتَّنَاوُشُ مِن مَّكَانٍۭ بَعِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,34,' وَقَدْ كَفَرُوا۟ بِهِۦ مِن قَبْلُۖ وَيَقْذِفُونَ بِٱلْغَيْبِ مِن مَّكَانٍۭ بَعِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,34,' وَحِيلَ بَيْنَهُمْ وَبَيْنَ مَا يَشْتَهُونَ كَمَا فُعِلَ بِأَشْيَاعِهِم مِّن قَبْلُۚ إِنَّهُمْ كَانُوا۟ فِى شَكٍّۢ مُّرِيبٍۭ');
+INSERT INTO chapters (id, number, quran_id) VALUES(35,35,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,35,' ٱلْحَمْدُ لِلَّهِ فَاطِرِ ٱلسَّمَوَتِ وَٱلْأَرْضِ جَاعِلِ ٱلْمَلَٓئِكَةِ رُسُلًا أُو۟لِىٓ أَجْنِحَةٍۢ مَّثْنَىٰ وَثُلَثَ وَرُبَعَۚ يَزِيدُ فِى ٱلْخَلْقِ مَا يَشَآءُۚ إِنَّ ٱللَّهَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,35,' مَّا يَفْتَحِ ٱللَّهُ لِلنَّاسِ مِن رَّحْمَةٍۢ فَلَا مُمْسِكَ لَهَاۖ وَمَا يُمْسِكْ فَلَا مُرْسِلَ لَهُۥ مِنۢ بَعْدِهِۚۦ وَهُوَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,35,' يَٓأَيُّهَا ٱلنَّاسُ ٱذْكُرُوا۟ نِعْمَتَ ٱللَّهِ عَلَيْكُمْۚ هَلْ مِنْ خَلِقٍ غَيْرُ ٱللَّهِ يَرْزُقُكُم مِّنَ ٱلسَّمَآءِ وَٱلْأَرْضِۚ لَآ إِلَهَ إِلَّا هُوَۖ فَأَنَّىٰ تُؤْفَكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,35,' وَإِن يُكَذِّبُوكَ فَقَدْ كُذِّبَتْ رُسُلٌۭ مِّن قَبْلِكَۚ وَإِلَى ٱللَّهِ تُرْجَعُ ٱلْأُمُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,35,' يَٓأَيُّهَا ٱلنَّاسُ إِنَّ وَعْدَ ٱللَّهِ حَقٌّۭۖ فَلَا تَغُرَّنَّكُمُ ٱلْحَيَوٰةُ ٱلدُّنْيَاۖ وَلَا يَغُرَّنَّكُم بِٱللَّهِ ٱلْغَرُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,35,' إِنَّ ٱلشَّيْطَنَ لَكُمْ عَدُوٌّۭ فَٱتَّخِذُوهُ عَدُوًّاۚ إِنَّمَا يَدْعُوا۟ حِزْبَهُۥ لِيَكُونُوا۟ مِنْ أَصْحَبِ ٱلسَّعِيرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,35,' ٱلَّذِينَ كَفَرُوا۟ لَهُمْ عَذَابٌۭ شَدِيدٌۭۖ وَٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ لَهُم مَّغْفِرَةٌۭ وَأَجْرٌۭ كَبِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,35,' أَفَمَن زُيِّنَ لَهُۥ سُوٓءُ عَمَلِهِۦ فَرَءَاهُ حَسَنًۭاۖ فَإِنَّ ٱللَّهَ يُضِلُّ مَن يَشَآءُ وَيَهْدِى مَن يَشَآءُۖ فَلَا تَذْهَبْ نَفْسُكَ عَلَيْهِمْ حَسَرَتٍۚ إِنَّ ٱللَّهَ عَلِيمٌۢ بِمَا يَصْنَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,35,' وَٱللَّهُ ٱلَّذِىٓ أَرْسَلَ ٱلرِّيَحَ فَتُثِيرُ سَحَابًۭا فَسُقْنَهُ إِلَىٰ بَلَدٍۢ مَّيِّتٍۢ فَأَحْيَيْنَا بِهِ ٱلْأَرْضَ بَعْدَ مَوْتِهَاۚ كَذَلِكَ ٱلنُّشُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,35,' مَن كَانَ يُرِيدُ ٱلْعِزَّةَ فَلِلَّهِ ٱلْعِزَّةُ جَمِيعًاۚ إِلَيْهِ يَصْعَدُ ٱلْكَلِمُ ٱلطَّيِّبُ وَٱلْعَمَلُ ٱلصَّلِحُ يَرْفَعُهُۚۥ وَٱلَّذِينَ يَمْكُرُونَ ٱلسَّيِّـَٔاتِ لَهُمْ عَذَابٌۭ شَدِيدٌۭۖ وَمَكْرُ أُو۟لَٓئِكَ هُوَ يَبُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,35,' وَٱللَّهُ خَلَقَكُم مِّن تُرَابٍۢ ثُمَّ مِن نُّطْفَةٍۢ ثُمَّ جَعَلَكُمْ أَزْوَجًۭاۚ وَمَا تَحْمِلُ مِنْ أُنثَىٰ وَلَا تَضَعُ إِلَّا بِعِلْمِهِۚۦ وَمَا يُعَمَّرُ مِن مُّعَمَّرٍۢ وَلَا يُنقَصُ مِنْ عُمُرِهِۦٓ إِلَّا فِى كِتَبٍۚ إِنَّ ذَلِكَ عَلَى ٱللَّهِ يَسِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,35,' وَمَا يَسْتَوِى ٱلْبَحْرَانِ هَذَا عَذْبٌۭ فُرَاتٌۭ سَآئِغٌۭ شَرَابُهُۥ وَهَذَا مِلْحٌ أُجَاجٌۭۖ وَمِن كُلٍّۢ تَأْكُلُونَ لَحْمًۭا طَرِيًّۭا وَتَسْتَخْرِجُونَ حِلْيَةًۭ تَلْبَسُونَهَاۖ وَتَرَى ٱلْفُلْكَ فِيهِ مَوَاخِرَ لِتَبْتَغُوا۟ مِن فَضْلِهِۦ وَلَعَلَّكُمْ تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,35,' يُولِجُ ٱلَّيْلَ فِى ٱلنَّهَارِ وَيُولِجُ ٱلنَّهَارَ فِى ٱلَّيْلِ وَسَخَّرَ ٱلشَّمْسَ وَٱلْقَمَرَ كُلٌّۭ يَجْرِى لِأَجَلٍۢ مُّسَمًّۭىۚ ذَلِكُمُ ٱللَّهُ رَبُّكُمْ لَهُ ٱلْمُلْكُۚ وَٱلَّذِينَ تَدْعُونَ مِن دُونِهِۦ مَا يَمْلِكُونَ مِن قِطْمِيرٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,35,' إِن تَدْعُوهُمْ لَا يَسْمَعُوا۟ دُعَآءَكُمْ وَلَوْ سَمِعُوا۟ مَا ٱسْتَجَابُوا۟ لَكُمْۖ وَيَوْمَ ٱلْقِيَمَةِ يَكْفُرُونَ بِشِرْكِكُمْۚ وَلَا يُنَبِّئُكَ مِثْلُ خَبِيرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,35,' يَٓأَيُّهَا ٱلنَّاسُ أَنتُمُ ٱلْفُقَرَآءُ إِلَى ٱللَّهِۖ وَٱللَّهُ هُوَ ٱلْغَنِىُّ ٱلْحَمِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,35,' إِن يَشَأْ يُذْهِبْكُمْ وَيَأْتِ بِخَلْقٍۢ جَدِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,35,' وَمَا ذَلِكَ عَلَى ٱللَّهِ بِعَزِيزٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,35,' وَلَا تَزِرُ وَازِرَةٌۭ وِزْرَ أُخْرَىٰۚ وَإِن تَدْعُ مُثْقَلَةٌ إِلَىٰ حِمْلِهَا لَا يُحْمَلْ مِنْهُ شَىْءٌۭ وَلَوْ كَانَ ذَا قُرْبَىٰٓۗ إِنَّمَا تُنذِرُ ٱلَّذِينَ يَخْشَوْنَ رَبَّهُم بِٱلْغَيْبِ وَأَقَامُوا۟ ٱلصَّلَوٰةَۚ وَمَن تَزَكَّىٰ فَإِنَّمَا يَتَزَكَّىٰ لِنَفْسِهِۚۦ وَإِلَى ٱللَّهِ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,35,' وَمَا يَسْتَوِى ٱلْأَعْمَىٰ وَٱلْبَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,35,' وَلَا ٱلظُّلُمَتُ وَلَا ٱلنُّورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,35,' وَلَا ٱلظِّلُّ وَلَا ٱلْحَرُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,35,' وَمَا يَسْتَوِى ٱلْأَحْيَآءُ وَلَا ٱلْأَمْوَتُۚ إِنَّ ٱللَّهَ يُسْمِعُ مَن يَشَآءُۖ وَمَآ أَنتَ بِمُسْمِعٍۢ مَّن فِى ٱلْقُبُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,35,' إِنْ أَنتَ إِلَّا نَذِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,35,' إِنَّآ أَرْسَلْنَكَ بِٱلْحَقِّ بَشِيرًۭا وَنَذِيرًۭاۚ وَإِن مِّنْ أُمَّةٍ إِلَّا خَلَا فِيهَا نَذِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,35,' وَإِن يُكَذِّبُوكَ فَقَدْ كَذَّبَ ٱلَّذِينَ مِن قَبْلِهِمْ جَآءَتْهُمْ رُسُلُهُم بِٱلْبَيِّنَتِ وَبِٱلزُّبُرِ وَبِٱلْكِتَبِ ٱلْمُنِيرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,35,' ثُمَّ أَخَذْتُ ٱلَّذِينَ كَفَرُوا۟ۖ فَكَيْفَ كَانَ نَكِيرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,35,' أَلَمْ تَرَ أَنَّ ٱللَّهَ أَنزَلَ مِنَ ٱلسَّمَآءِ مَآءًۭ فَأَخْرَجْنَا بِهِۦ ثَمَرَتٍۢ مُّخْتَلِفًا أَلْوَنُهَاۚ وَمِنَ ٱلْجِبَالِ جُدَدٌۢ بِيضٌۭ وَحُمْرٌۭ مُّخْتَلِفٌ أَلْوَنُهَا وَغَرَابِيبُ سُودٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,35,' وَمِنَ ٱلنَّاسِ وَٱلدَّوَآبِّ وَٱلْأَنْعَمِ مُخْتَلِفٌ أَلْوَنُهُۥ كَذَلِكَۗ إِنَّمَا يَخْشَى ٱللَّهَ مِنْ عِبَادِهِ ٱلْعُلَمَٓؤُا۟ۗ إِنَّ ٱللَّهَ عَزِيزٌ غَفُورٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,35,' إِنَّ ٱلَّذِينَ يَتْلُونَ كِتَبَ ٱللَّهِ وَأَقَامُوا۟ ٱلصَّلَوٰةَ وَأَنفَقُوا۟ مِمَّا رَزَقْنَهُمْ سِرًّۭا وَعَلَانِيَةًۭ يَرْجُونَ تِجَرَةًۭ لَّن تَبُورَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,35,' لِيُوَفِّيَهُمْ أُجُورَهُمْ وَيَزِيدَهُم مِّن فَضْلِهِۚۦٓ إِنَّهُۥ غَفُورٌۭ شَكُورٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,35,' وَٱلَّذِىٓ أَوْحَيْنَآ إِلَيْكَ مِنَ ٱلْكِتَبِ هُوَ ٱلْحَقُّ مُصَدِّقًۭا لِّمَا بَيْنَ يَدَيْهِۗ إِنَّ ٱللَّهَ بِعِبَادِهِۦ لَخَبِيرٌۢ بَصِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,35,' ثُمَّ أَوْرَثْنَا ٱلْكِتَبَ ٱلَّذِينَ ٱصْطَفَيْنَا مِنْ عِبَادِنَاۖ فَمِنْهُمْ ظَالِمٌۭ لِّنَفْسِهِۦ وَمِنْهُم مُّقْتَصِدٌۭ وَمِنْهُمْ سَابِقٌۢ بِٱلْخَيْرَتِ بِإِذْنِ ٱللَّهِۚ ذَلِكَ هُوَ ٱلْفَضْلُ ٱلْكَبِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,35,' جَنَّتُ عَدْنٍۢ يَدْخُلُونَهَا يُحَلَّوْنَ فِيهَا مِنْ أَسَاوِرَ مِن ذَهَبٍۢ وَلُؤْلُؤًۭاۖ وَلِبَاسُهُمْ فِيهَا حَرِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,35,' وَقَالُوا۟ ٱلْحَمْدُ لِلَّهِ ٱلَّذِىٓ أَذْهَبَ عَنَّا ٱلْحَزَنَۖ إِنَّ رَبَّنَا لَغَفُورٌۭ شَكُورٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,35,' ٱلَّذِىٓ أَحَلَّنَا دَارَ ٱلْمُقَامَةِ مِن فَضْلِهِۦ لَا يَمَسُّنَا فِيهَا نَصَبٌۭ وَلَا يَمَسُّنَا فِيهَا لُغُوبٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,35,' وَٱلَّذِينَ كَفَرُوا۟ لَهُمْ نَارُ جَهَنَّمَ لَا يُقْضَىٰ عَلَيْهِمْ فَيَمُوتُوا۟ وَلَا يُخَفَّفُ عَنْهُم مِّنْ عَذَابِهَاۚ كَذَلِكَ نَجْزِى كُلَّ كَفُورٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,35,' وَهُمْ يَصْطَرِخُونَ فِيهَا رَبَّنَآ أَخْرِجْنَا نَعْمَلْ صَلِحًا غَيْرَ ٱلَّذِى كُنَّا نَعْمَلُۚ أَوَلَمْ نُعَمِّرْكُم مَّا يَتَذَكَّرُ فِيهِ مَن تَذَكَّرَ وَجَآءَكُمُ ٱلنَّذِيرُۖ فَذُوقُوا۟ فَمَا لِلظَّلِمِينَ مِن نَّصِيرٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,35,' إِنَّ ٱللَّهَ عَلِمُ غَيْبِ ٱلسَّمَوَتِ وَٱلْأَرْضِۚ إِنَّهُۥ عَلِيمٌۢ بِذَاتِ ٱلصُّدُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,35,' هُوَ ٱلَّذِى جَعَلَكُمْ خَلَٓئِفَ فِى ٱلْأَرْضِۚ فَمَن كَفَرَ فَعَلَيْهِ كُفْرُهُۖۥ وَلَا يَزِيدُ ٱلْكَفِرِينَ كُفْرُهُمْ عِندَ رَبِّهِمْ إِلَّا مَقْتًۭاۖ وَلَا يَزِيدُ ٱلْكَفِرِينَ كُفْرُهُمْ إِلَّا خَسَارًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,35,' قُلْ أَرَءَيْتُمْ شُرَكَآءَكُمُ ٱلَّذِينَ تَدْعُونَ مِن دُونِ ٱللَّهِ أَرُونِى مَاذَا خَلَقُوا۟ مِنَ ٱلْأَرْضِ أَمْ لَهُمْ شِرْكٌۭ فِى ٱلسَّمَوَتِ أَمْ ءَاتَيْنَهُمْ كِتَبًۭا فَهُمْ عَلَىٰ بَيِّنَتٍۢ مِّنْهُۚ بَلْ إِن يَعِدُ ٱلظَّلِمُونَ بَعْضُهُم بَعْضًا إِلَّا غُرُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,35,' إِنَّ ٱللَّهَ يُمْسِكُ ٱلسَّمَوَتِ وَٱلْأَرْضَ أَن تَزُولَاۚ وَلَىِٕن زَالَتَآ إِنْ أَمْسَكَهُمَا مِنْ أَحَدٍۢ مِّنۢ بَعْدِهِۚۦٓ إِنَّهُۥ كَانَ حَلِيمًا غَفُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,35,' وَأَقْسَمُوا۟ بِٱللَّهِ جَهْدَ أَيْمَنِهِمْ لَىِٕن جَآءَهُمْ نَذِيرٌۭ لَّيَكُونُنَّ أَهْدَىٰ مِنْ إِحْدَى ٱلْأُمَمِۖ فَلَمَّا جَآءَهُمْ نَذِيرٌۭ مَّا زَادَهُمْ إِلَّا نُفُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,35,' ٱسْتِكْبَارًۭا فِى ٱلْأَرْضِ وَمَكْرَ ٱلسَّيِّىِٕۚ وَلَا يَحِيقُ ٱلْمَكْرُ ٱلسَّيِّئُ إِلَّا بِأَهْلِهِۚۦ فَهَلْ يَنظُرُونَ إِلَّا سُنَّتَ ٱلْأَوَّلِينَۚ فَلَن تَجِدَ لِسُنَّتِ ٱللَّهِ تَبْدِيلًۭاۖ وَلَن تَجِدَ لِسُنَّتِ ٱللَّهِ تَحْوِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,35,' أَوَلَمْ يَسِيرُوا۟ فِى ٱلْأَرْضِ فَيَنظُرُوا۟ كَيْفَ كَانَ عَقِبَةُ ٱلَّذِينَ مِن قَبْلِهِمْ وَكَانُوٓا۟ أَشَدَّ مِنْهُمْ قُوَّۚةًۭ وَمَا كَانَ ٱللَّهُ لِيُعْجِزَهُۥ مِن شَىْءٍۢ فِى ٱلسَّمَوَتِ وَلَا فِى ٱلْأَرْضِۚ إِنَّهُۥ كَانَ عَلِيمًۭا قَدِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,35,' وَلَوْ يُؤَاخِذُ ٱللَّهُ ٱلنَّاسَ بِمَا كَسَبُوا۟ مَا تَرَكَ عَلَىٰ ظَهْرِهَا مِن دَآبَّةٍۢ وَلَكِن يُؤَخِّرُهُمْ إِلَىٰٓ أَجَلٍۢ مُّسَمًّۭىۖ فَإِذَا جَآءَ أَجَلُهُمْ فَإِنَّ ٱللَّهَ كَانَ بِعِبَادِهِۦ بَصِيرًۢا');
+INSERT INTO chapters (id, number, quran_id) VALUES(36,36,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,36,' يسٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,36,' وَٱلْقُرْءَانِ ٱلْحَكِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,36,' إِنَّكَ لَمِنَ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,36,' عَلَىٰ صِرَطٍۢ مُّسْتَقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,36,' تَنزِيلَ ٱلْعَزِيزِ ٱلرَّحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,36,' لِتُنذِرَ قَوْمًۭا مَّآ أُنذِرَ ءَابَآؤُهُمْ فَهُمْ غَفِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,36,' لَقَدْ حَقَّ ٱلْقَوْلُ عَلَىٰٓ أَكْثَرِهِمْ فَهُمْ لَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,36,' إِنَّا جَعَلْنَا فِىٓ أَعْنَقِهِمْ أَغْلَلًۭا فَهِىَ إِلَى ٱلْأَذْقَانِ فَهُم مُّقْمَحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,36,' وَجَعَلْنَا مِنۢ بَيْنِ أَيْدِيهِمْ سَدًّۭا وَمِنْ خَلْفِهِمْ سَدًّۭا فَأَغْشَيْنَهُمْ فَهُمْ لَا يُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,36,' وَسَوَآءٌ عَلَيْهِمْ ءَأَنذَرْتَهُمْ أَمْ لَمْ تُنذِرْهُمْ لَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,36,' إِنَّمَا تُنذِرُ مَنِ ٱتَّبَعَ ٱلذِّكْرَ وَخَشِىَ ٱلرَّحْمَنَ بِٱلْغَيْبِۖ فَبَشِّرْهُ بِمَغْفِرَةٍۢ وَأَجْرٍۢ كَرِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,36,' إِنَّا نَحْنُ نُحْىِ ٱلْمَوْتَىٰ وَنَكْتُبُ مَا قَدَّمُوا۟ وَءَاثَرَهُمْۚ وَكُلَّ شَىْءٍ أَحْصَيْنَهُ فِىٓ إِمَامٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,36,' وَٱضْرِبْ لَهُم مَّثَلًا أَصْحَبَ ٱلْقَرْيَةِ إِذْ جَآءَهَا ٱلْمُرْسَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,36,' إِذْ أَرْسَلْنَآ إِلَيْهِمُ ٱثْنَيْنِ فَكَذَّبُوهُمَا فَعَزَّزْنَا بِثَالِثٍۢ فَقَالُوٓا۟ إِنَّآ إِلَيْكُم مُّرْسَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,36,' قَالُوا۟ مَآ أَنتُمْ إِلَّا بَشَرٌۭ مِّثْلُنَا وَمَآ أَنزَلَ ٱلرَّحْمَنُ مِن شَىْءٍ إِنْ أَنتُمْ إِلَّا تَكْذِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,36,' قَالُوا۟ رَبُّنَا يَعْلَمُ إِنَّآ إِلَيْكُمْ لَمُرْسَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,36,' وَمَا عَلَيْنَآ إِلَّا ٱلْبَلَغُ ٱلْمُبِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,36,' قَالُوٓا۟ إِنَّا تَطَيَّرْنَا بِكُمْۖ لَىِٕن لَّمْ تَنتَهُوا۟ لَنَرْجُمَنَّكُمْ وَلَيَمَسَّنَّكُم مِّنَّا عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,36,' قَالُوا۟ طَٓئِرُكُم مَّعَكُمْۚ أَىِٕن ذُكِّرْتُمۚ بَلْ أَنتُمْ قَوْمٌۭ مُّسْرِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,36,' وَجَآءَ مِنْ أَقْصَا ٱلْمَدِينَةِ رَجُلٌۭ يَسْعَىٰ قَالَ يَقَوْمِ ٱتَّبِعُوا۟ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,36,' ٱتَّبِعُوا۟ مَن لَّا يَسْـَٔلُكُمْ أَجْرًۭا وَهُم مُّهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,36,' وَمَا لِىَ لَآ أَعْبُدُ ٱلَّذِى فَطَرَنِى وَإِلَيْهِ تُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,36,' ءَأَتَّخِذُ مِن دُونِهِۦٓ ءَالِهَةً إِن يُرِدْنِ ٱلرَّحْمَنُ بِضُرٍّۢ لَّا تُغْنِ عَنِّى شَفَعَتُهُمْ شَيْـًۭٔا وَلَا يُنقِذُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,36,' إِنِّىٓ إِذًۭا لَّفِى ضَلَلٍۢ مُّبِينٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,36,' إِنِّىٓ ءَامَنتُ بِرَبِّكُمْ فَٱسْمَعُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,36,' قِيلَ ٱدْخُلِ ٱلْجَنَّةَۖ قَالَ يَلَيْتَ قَوْمِى يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,36,' بِمَا غَفَرَ لِى رَبِّى وَجَعَلَنِى مِنَ ٱلْمُكْرَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,36,' وَمَآ أَنزَلْنَا عَلَىٰ قَوْمِهِۦ مِنۢ بَعْدِهِۦ مِن جُندٍۢ مِّنَ ٱلسَّمَآءِ وَمَا كُنَّا مُنزِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,36,' إِن كَانَتْ إِلَّا صَيْحَةًۭ وَحِدَةًۭ فَإِذَا هُمْ خَمِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,36,' يَحَسْرَةً عَلَى ٱلْعِبَادِ ۚ مَا يَأْتِيهِم مِّن رَّسُولٍ إِلَّا كَانُوا۟ بِهِۦ يَسْتَهْزِءُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,36,' أَلَمْ يَرَوْا۟ كَمْ أَهْلَكْنَا قَبْلَهُم مِّنَ ٱلْقُرُونِ أَنَّهُمْ إِلَيْهِمْ لَا يَرْجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,36,' وَإِن كُلٌّۭ لَّمَّا جَمِيعٌۭ لَّدَيْنَا مُحْضَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,36,' وَءَايَةٌۭ لَّهُمُ ٱلْأَرْضُ ٱلْمَيْتَةُ أَحْيَيْنَهَا وَأَخْرَجْنَا مِنْهَا حَبًّۭا فَمِنْهُ يَأْكُلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,36,' وَجَعَلْنَا فِيهَا جَنَّتٍۢ مِّن نَّخِيلٍۢ وَأَعْنَبٍۢ وَفَجَّرْنَا فِيهَا مِنَ ٱلْعُيُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,36,' لِيَأْكُلُوا۟ مِن ثَمَرِهِۦ وَمَا عَمِلَتْهُ أَيْدِيهِمْ ۖ أَفَلَا يَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,36,' سُبْحَنَ ٱلَّذِى خَلَقَ ٱلْأَزْوَجَ كُلَّهَا مِمَّا تُنۢبِتُ ٱلْأَرْضُ وَمِنْ أَنفُسِهِمْ وَمِمَّا لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,36,' وَءَايَةٌۭ لَّهُمُ ٱلَّيْلُ نَسْلَخُ مِنْهُ ٱلنَّهَارَ فَإِذَا هُم مُّظْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,36,' وَٱلشَّمْسُ تَجْرِى لِمُسْتَقَرٍّۢ لَّهَا ۚ ذَلِكَ تَقْدِيرُ ٱلْعَزِيزِ ٱلْعَلِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,36,' وَٱلْقَمَرَ قَدَّرْنَهُ مَنَازِلَ حَتَّىٰ عَادَ كَٱلْعُرْجُونِ ٱلْقَدِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,36,' لَا ٱلشَّمْسُ يَنۢبَغِى لَهَآ أَن تُدْرِكَ ٱلْقَمَرَ وَلَا ٱلَّيْلُ سَابِقُ ٱلنَّهَارِ ۚ وَكُلٌّۭ فِى فَلَكٍۢ يَسْبَحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,36,' وَءَايَةٌۭ لَّهُمْ أَنَّا حَمَلْنَا ذُرِّيَّتَهُمْ فِى ٱلْفُلْكِ ٱلْمَشْحُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,36,' وَخَلَقْنَا لَهُم مِّن مِّثْلِهِۦ مَا يَرْكَبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,36,' وَإِن نَّشَأْ نُغْرِقْهُمْ فَلَا صَرِيخَ لَهُمْ وَلَا هُمْ يُنقَذُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,36,' إِلَّا رَحْمَةًۭ مِّنَّا وَمَتَعًا إِلَىٰ حِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,36,' وَإِذَا قِيلَ لَهُمُ ٱتَّقُوا۟ مَا بَيْنَ أَيْدِيكُمْ وَمَا خَلْفَكُمْ لَعَلَّكُمْ تُرْحَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,36,' وَمَا تَأْتِيهِم مِّنْ ءَايَةٍۢ مِّنْ ءَايَتِ رَبِّهِمْ إِلَّا كَانُوا۟ عَنْهَا مُعْرِضِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,36,' وَإِذَا قِيلَ لَهُمْ أَنفِقُوا۟ مِمَّا رَزَقَكُمُ ٱللَّهُ قَالَ ٱلَّذِينَ كَفَرُوا۟ لِلَّذِينَ ءَامَنُوٓا۟ أَنُطْعِمُ مَن لَّوْ يَشَآءُ ٱللَّهُ أَطْعَمَهُۥٓ إِنْ أَنتُمْ إِلَّا فِى ضَلَلٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,36,' وَيَقُولُونَ مَتَىٰ هَذَا ٱلْوَعْدُ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,36,' مَا يَنظُرُونَ إِلَّا صَيْحَةًۭ وَحِدَةًۭ تَأْخُذُهُمْ وَهُمْ يَخِصِّمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,36,' فَلَا يَسْتَطِيعُونَ تَوْصِيَةًۭ وَلَآ إِلَىٰٓ أَهْلِهِمْ يَرْجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,36,' وَنُفِخَ فِى ٱلصُّورِ فَإِذَا هُم مِّنَ ٱلْأَجْدَاثِ إِلَىٰ رَبِّهِمْ يَنسِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,36,' قَالُوا۟ يَوَيْلَنَا مَنۢ بَعَثَنَا مِن مَّرْقَدِنَاۜ ۗ هَذَا مَا وَعَدَ ٱلرَّحْمَنُ وَصَدَقَ ٱلْمُرْسَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,36,' إِن كَانَتْ إِلَّا صَيْحَةًۭ وَحِدَةًۭ فَإِذَا هُمْ جَمِيعٌۭ لَّدَيْنَا مُحْضَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,36,' فَٱلْيَوْمَ لَا تُظْلَمُ نَفْسٌۭ شَيْـًۭٔا وَلَا تُجْزَوْنَ إِلَّا مَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,36,' إِنَّ أَصْحَبَ ٱلْجَنَّةِ ٱلْيَوْمَ فِى شُغُلٍۢ فَكِهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,36,' هُمْ وَأَزْوَجُهُمْ فِى ظِلَلٍ عَلَى ٱلْأَرَآئِكِ مُتَّكِـُٔونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,36,' لَهُمْ فِيهَا فَكِهَةٌۭ وَلَهُم مَّا يَدَّعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,36,' سَلَمٌۭ قَوْلًۭا مِّن رَّبٍّۢ رَّحِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,36,' وَٱمْتَزُوا۟ ٱلْيَوْمَ أَيُّهَا ٱلْمُجْرِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,36,' أَلَمْ أَعْهَدْ إِلَيْكُمْ يَبَنِىٓ ءَادَمَ أَن لَّا تَعْبُدُوا۟ ٱلشَّيْطَنَ ۖ إِنَّهُۥ لَكُمْ عَدُوٌّۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,36,' وَأَنِ ٱعْبُدُونِى ۚ هَذَا صِرَطٌۭ مُّسْتَقِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,36,' وَلَقَدْ أَضَلَّ مِنكُمْ جِبِلًّۭا كَثِيرًا ۖ أَفَلَمْ تَكُونُوا۟ تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,36,' هَذِهِۦ جَهَنَّمُ ٱلَّتِى كُنتُمْ تُوعَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,36,' ٱصْلَوْهَا ٱلْيَوْمَ بِمَا كُنتُمْ تَكْفُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,36,' ٱلْيَوْمَ نَخْتِمُ عَلَىٰٓ أَفْوَهِهِمْ وَتُكَلِّمُنَآ أَيْدِيهِمْ وَتَشْهَدُ أَرْجُلُهُم بِمَا كَانُوا۟ يَكْسِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,36,' وَلَوْ نَشَآءُ لَطَمَسْنَا عَلَىٰٓ أَعْيُنِهِمْ فَٱسْتَبَقُوا۟ ٱلصِّرَطَ فَأَنَّىٰ يُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,36,' وَلَوْ نَشَآءُ لَمَسَخْنَهُمْ عَلَىٰ مَكَانَتِهِمْ فَمَا ٱسْتَطَعُوا۟ مُضِيًّۭا وَلَا يَرْجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,36,' وَمَن نُّعَمِّرْهُ نُنَكِّسْهُ فِى ٱلْخَلْقِ ۖ أَفَلَا يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,36,' وَمَا عَلَّمْنَهُ ٱلشِّعْرَ وَمَا يَنۢبَغِى لَهُۥٓ ۚ إِنْ هُوَ إِلَّا ذِكْرٌۭ وَقُرْءَانٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,36,' لِّيُنذِرَ مَن كَانَ حَيًّۭا وَيَحِقَّ ٱلْقَوْلُ عَلَى ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,36,' أَوَلَمْ يَرَوْا۟ أَنَّا خَلَقْنَا لَهُم مِّمَّا عَمِلَتْ أَيْدِينَآ أَنْعَمًۭا فَهُمْ لَهَا مَلِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,36,' وَذَلَّلْنَهَا لَهُمْ فَمِنْهَا رَكُوبُهُمْ وَمِنْهَا يَأْكُلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,36,' وَلَهُمْ فِيهَا مَنَفِعُ وَمَشَارِبُ ۖ أَفَلَا يَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,36,' وَٱتَّخَذُوا۟ مِن دُونِ ٱللَّهِ ءَالِهَةًۭ لَّعَلَّهُمْ يُنصَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,36,' لَا يَسْتَطِيعُونَ نَصْرَهُمْ وَهُمْ لَهُمْ جُندٌۭ مُّحْضَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,36,' فَلَا يَحْزُنكَ قَوْلُهُمْ ۘ إِنَّا نَعْلَمُ مَا يُسِرُّونَ وَمَا يُعْلِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,36,' أَوَلَمْ يَرَ ٱلْإِنسَنُ أَنَّا خَلَقْنَهُ مِن نُّطْفَةٍۢ فَإِذَا هُوَ خَصِيمٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,36,' وَضَرَبَ لَنَا مَثَلًۭا وَنَسِىَ خَلْقَهُۥ ۖ قَالَ مَن يُحْىِ ٱلْعِظَمَ وَهِىَ رَمِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,36,' قُلْ يُحْيِيهَا ٱلَّذِىٓ أَنشَأَهَآ أَوَّلَ مَرَّةٍۢ ۖ وَهُوَ بِكُلِّ خَلْقٍ عَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,36,' ٱلَّذِى جَعَلَ لَكُم مِّنَ ٱلشَّجَرِ ٱلْأَخْضَرِ نَارًۭا فَإِذَآ أَنتُم مِّنْهُ تُوقِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,36,' أَوَلَيْسَ ٱلَّذِى خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ بِقَدِرٍ عَلَىٰٓ أَن يَخْلُقَ مِثْلَهُم ۚ بَلَىٰ وَهُوَ ٱلْخَلَّقُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,36,' إِنَّمَآ أَمْرُهُۥٓ إِذَآ أَرَادَ شَيْـًٔا أَن يَقُولَ لَهُۥ كُن فَيَكُونُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,36,' فَسُبْحَنَ ٱلَّذِى بِيَدِهِۦ مَلَكُوتُ كُلِّ شَىْءٍۢ وَإِلَيْهِ تُرْجَعُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(37,37,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,37,' وَٱلصَّٓفَّتِ صَفًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,37,' فَٱلزَّجِرَتِ زَجْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,37,' فَٱلتَّلِيَتِ ذِكْرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,37,' إِنَّ إِلَهَكُمْ لَوَحِدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,37,' رَّبُّ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَمَا بَيْنَهُمَا وَرَبُّ ٱلْمَشَرِقِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,37,' إِنَّا زَيَّنَّا ٱلسَّمَآءَ ٱلدُّنْيَا بِزِينَةٍ ٱلْكَوَاكِبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,37,' وَحِفْظًۭا مِّن كُلِّ شَيْطَنٍۢ مَّارِدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,37,' لَّا يَسَّمَّعُونَ إِلَى ٱلْمَلَإِ ٱلْأَعْلَىٰ وَيُقْذَفُونَ مِن كُلِّ جَانِبٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,37,' دُحُورًۭا ۖ وَلَهُمْ عَذَابٌۭ وَاصِبٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,37,' إِلَّا مَنْ خَطِفَ ٱلْخَطْفَةَ فَأَتْبَعَهُۥ شِهَابٌۭ ثَاقِبٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,37,' فَٱسْتَفْتِهِمْ أَهُمْ أَشَدُّ خَلْقًا أَم مَّنْ خَلَقْنَآ ۚ إِنَّا خَلَقْنَهُم مِّن طِينٍۢ لَّازِبٍۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,37,' بَلْ عَجِبْتَ وَيَسْخَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,37,' وَإِذَا ذُكِّرُوا۟ لَا يَذْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,37,' وَإِذَا رَأَوْا۟ ءَايَةًۭ يَسْتَسْخِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,37,' وَقَالُوٓا۟ إِنْ هَذَآ إِلَّا سِحْرٌۭ مُّبِينٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,37,' أَءِذَا مِتْنَا وَكُنَّا تُرَابًۭا وَعِظَمًا أَءِنَّا لَمَبْعُوثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,37,' أَوَءَابَآؤُنَا ٱلْأَوَّلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,37,' قُلْ نَعَمْ وَأَنتُمْ دَخِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,37,' فَإِنَّمَا هِىَ زَجْرَةٌۭ وَحِدَةٌۭ فَإِذَا هُمْ يَنظُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,37,' وَقَالُوا۟ يَوَيْلَنَا هَذَا يَوْمُ ٱلدِّينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,37,' هَذَا يَوْمُ ٱلْفَصْلِ ٱلَّذِى كُنتُم بِهِۦ تُكَذِّبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,37,' ٱحْشُرُوا۟ ٱلَّذِينَ ظَلَمُوا۟ وَأَزْوَجَهُمْ وَمَا كَانُوا۟ يَعْبُدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,37,' مِن دُونِ ٱللَّهِ فَٱهْدُوهُمْ إِلَىٰ صِرَطِ ٱلْجَحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,37,' وَقِفُوهُمْ ۖ إِنَّهُم مَّسْـُٔولُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,37,' مَا لَكُمْ لَا تَنَاصَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,37,' بَلْ هُمُ ٱلْيَوْمَ مُسْتَسْلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,37,' وَأَقْبَلَ بَعْضُهُمْ عَلَىٰ بَعْضٍۢ يَتَسَآءَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,37,' قَالُوٓا۟ إِنَّكُمْ كُنتُمْ تَأْتُونَنَا عَنِ ٱلْيَمِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,37,' قَالُوا۟ بَل لَّمْ تَكُونُوا۟ مُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,37,' وَمَا كَانَ لَنَا عَلَيْكُم مِّن سُلْطَنٍۭ ۖ بَلْ كُنتُمْ قَوْمًۭا طَغِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,37,' فَحَقَّ عَلَيْنَا قَوْلُ رَبِّنَآ ۖ إِنَّا لَذَآئِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,37,' فَأَغْوَيْنَكُمْ إِنَّا كُنَّا غَوِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,37,' فَإِنَّهُمْ يَوْمَئِذٍۢ فِى ٱلْعَذَابِ مُشْتَرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,37,' إِنَّا كَذَلِكَ نَفْعَلُ بِٱلْمُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,37,' إِنَّهُمْ كَانُوٓا۟ إِذَا قِيلَ لَهُمْ لَآ إِلَهَ إِلَّا ٱللَّهُ يَسْتَكْبِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,37,' وَيَقُولُونَ أَئِنَّا لَتَارِكُوٓا۟ ءَالِهَتِنَا لِشَاعِرٍۢ مَّجْنُونٍۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,37,' بَلْ جَآءَ بِٱلْحَقِّ وَصَدَّقَ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,37,' إِنَّكُمْ لَذَآئِقُوا۟ ٱلْعَذَابِ ٱلْأَلِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,37,' وَمَا تُجْزَوْنَ إِلَّا مَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,37,' إِلَّا عِبَادَ ٱللَّهِ ٱلْمُخْلَصِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,37,' أُو۟لَٓئِكَ لَهُمْ رِزْقٌۭ مَّعْلُومٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,37,' فَوَكِهُ ۖ وَهُم مُّكْرَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,37,' فِى جَنَّتِ ٱلنَّعِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,37,' عَلَىٰ سُرُرٍۢ مُّتَقَبِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,37,' يُطَافُ عَلَيْهِم بِكَأْسٍۢ مِّن مَّعِينٍۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,37,' بَيْضَآءَ لَذَّةٍۢ لِّلشَّرِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,37,' لَا فِيهَا غَوْلٌۭ وَلَا هُمْ عَنْهَا يُنزَفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,37,' وَعِندَهُمْ قَصِرَتُ ٱلطَّرْفِ عِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,37,' كَأَنَّهُنَّ بَيْضٌۭ مَّكْنُونٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,37,' فَأَقْبَلَ بَعْضُهُمْ عَلَىٰ بَعْضٍۢ يَتَسَآءَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,37,' قَالَ قَآئِلٌۭ مِّنْهُمْ إِنِّى كَانَ لِى قَرِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,37,' يَقُولُ أَءِنَّكَ لَمِنَ ٱلْمُصَدِّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,37,' أَءِذَا مِتْنَا وَكُنَّا تُرَابًۭا وَعِظَمًا أَءِنَّا لَمَدِينُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,37,' قَالَ هَلْ أَنتُم مُّطَّلِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,37,' فَٱطَّلَعَ فَرَءَاهُ فِى سَوَآءِ ٱلْجَحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,37,' قَالَ تَٱللَّهِ إِن كِدتَّ لَتُرْدِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,37,' وَلَوْلَا نِعْمَةُ رَبِّى لَكُنتُ مِنَ ٱلْمُحْضَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,37,' أَفَمَا نَحْنُ بِمَيِّتِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,37,' إِلَّا مَوْتَتَنَا ٱلْأُولَىٰ وَمَا نَحْنُ بِمُعَذَّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,37,' إِنَّ هَذَا لَهُوَ ٱلْفَوْزُ ٱلْعَظِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,37,' لِمِثْلِ هَذَا فَلْيَعْمَلِ ٱلْعَمِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,37,' أَذَلِكَ خَيْرٌۭ نُّزُلًا أَمْ شَجَرَةُ ٱلزَّقُّومِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,37,' إِنَّا جَعَلْنَهَا فِتْنَةًۭ لِّلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,37,' إِنَّهَا شَجَرَةٌۭ تَخْرُجُ فِىٓ أَصْلِ ٱلْجَحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,37,' طَلْعُهَا كَأَنَّهُۥ رُءُوسُ ٱلشَّيَطِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,37,' فَإِنَّهُمْ لَءَاكِلُونَ مِنْهَا فَمَالِـُٔونَ مِنْهَا ٱلْبُطُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,37,' ثُمَّ إِنَّ لَهُمْ عَلَيْهَا لَشَوْبًۭا مِّنْ حَمِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,37,' ثُمَّ إِنَّ مَرْجِعَهُمْ لَإِلَى ٱلْجَحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,37,' إِنَّهُمْ أَلْفَوْا۟ ءَابَآءَهُمْ ضَآلِّينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,37,' فَهُمْ عَلَىٰٓ ءَاثَرِهِمْ يُهْرَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,37,' وَلَقَدْ ضَلَّ قَبْلَهُمْ أَكْثَرُ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,37,' وَلَقَدْ أَرْسَلْنَا فِيهِم مُّنذِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,37,' فَٱنظُرْ كَيْفَ كَانَ عَقِبَةُ ٱلْمُنذَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,37,' إِلَّا عِبَادَ ٱللَّهِ ٱلْمُخْلَصِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,37,' وَلَقَدْ نَادَىٰنَا نُوحٌۭ فَلَنِعْمَ ٱلْمُجِيبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,37,' وَنَجَّيْنَهُ وَأَهْلَهُۥ مِنَ ٱلْكَرْبِ ٱلْعَظِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,37,' وَجَعَلْنَا ذُرِّيَّتَهُۥ هُمُ ٱلْبَاقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,37,' وَتَرَكْنَا عَلَيْهِ فِى ٱلْءَاخِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,37,' سَلَمٌ عَلَىٰ نُوحٍۢ فِى ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,37,' إِنَّا كَذَلِكَ نَجْزِى ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,37,' إِنَّهُۥ مِنْ عِبَادِنَا ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,37,' ثُمَّ أَغْرَقْنَا ٱلْءَاخَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,37,' وَإِنَّ مِن شِيعَتِهِۦ لَإِبْرَهِيمَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,37,' إِذْ جَآءَ رَبَّهُۥ بِقَلْبٍۢ سَلِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,37,' إِذْ قَالَ لِأَبِيهِ وَقَوْمِهِۦ مَاذَا تَعْبُدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,37,' أَئِفْكًا ءَالِهَةًۭ دُونَ ٱللَّهِ تُرِيدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,37,' فَمَا ظَنُّكُم بِرَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,37,' فَنَظَرَ نَظْرَةًۭ فِى ٱلنُّجُومِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,37,' فَقَالَ إِنِّى سَقِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,37,' فَتَوَلَّوْا۟ عَنْهُ مُدْبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,37,' فَرَاغَ إِلَىٰٓ ءَالِهَتِهِمْ فَقَالَ أَلَا تَأْكُلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,37,' مَا لَكُمْ لَا تَنطِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,37,' فَرَاغَ عَلَيْهِمْ ضَرْبًۢا بِٱلْيَمِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,37,' فَأَقْبَلُوٓا۟ إِلَيْهِ يَزِفُّونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,37,' قَالَ أَتَعْبُدُونَ مَا تَنْحِتُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,37,' وَٱللَّهُ خَلَقَكُمْ وَمَا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,1,37,' قَالُوا۟ ٱبْنُوا۟ لَهُۥ بُنْيَنًۭا فَأَلْقُوهُ فِى ٱلْجَحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,1,37,' فَأَرَادُوا۟ بِهِۦ كَيْدًۭا فَجَعَلْنَهُمُ ٱلْأَسْفَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,1,37,' وَقَالَ إِنِّى ذَاهِبٌ إِلَىٰ رَبِّى سَيَهْدِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,1,37,' رَبِّ هَبْ لِى مِنَ ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,1,37,' فَبَشَّرْنَهُ بِغُلَمٍ حَلِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,1,37,' فَلَمَّا بَلَغَ مَعَهُ ٱلسَّعْىَ قَالَ يَبُنَىَّ إِنِّىٓ أَرَىٰ فِى ٱلْمَنَامِ أَنِّىٓ أَذْبَحُكَ فَٱنظُرْ مَاذَا تَرَىٰ ۚ قَالَ يَٓأَبَتِ ٱفْعَلْ مَا تُؤْمَرُ ۖ سَتَجِدُنِىٓ إِن شَآءَ ٱللَّهُ مِنَ ٱلصَّبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,1,37,' فَلَمَّآ أَسْلَمَا وَتَلَّهُۥ لِلْجَبِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,1,37,' وَنَدَيْنَهُ أَن يَٓإِبْرَهِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,1,37,' قَدْ صَدَّقْتَ ٱلرُّءْيَآ ۚ إِنَّا كَذَلِكَ نَجْزِى ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,1,37,' إِنَّ هَذَا لَهُوَ ٱلْبَلَٓؤُا۟ ٱلْمُبِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,1,37,' وَفَدَيْنَهُ بِذِبْحٍ عَظِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,1,37,' وَتَرَكْنَا عَلَيْهِ فِى ٱلْءَاخِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,1,37,' سَلَمٌ عَلَىٰٓ إِبْرَهِيمَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,1,37,' كَذَلِكَ نَجْزِى ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,1,37,' إِنَّهُۥ مِنْ عِبَادِنَا ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,1,37,' وَبَشَّرْنَهُ بِإِسْحَقَ نَبِيًّۭا مِّنَ ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,1,37,' وَبَرَكْنَا عَلَيْهِ وَعَلَىٰٓ إِسْحَقَ ۚ وَمِن ذُرِّيَّتِهِمَا مُحْسِنٌۭ وَظَالِمٌۭ لِّنَفْسِهِۦ مُبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,1,37,' وَلَقَدْ مَنَنَّا عَلَىٰ مُوسَىٰ وَهَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,1,37,' وَنَجَّيْنَهُمَا وَقَوْمَهُمَا مِنَ ٱلْكَرْبِ ٱلْعَظِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,1,37,' وَنَصَرْنَهُمْ فَكَانُوا۟ هُمُ ٱلْغَلِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,1,37,' وَءَاتَيْنَهُمَا ٱلْكِتَبَ ٱلْمُسْتَبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,1,37,' وَهَدَيْنَهُمَا ٱلصِّرَطَ ٱلْمُسْتَقِيمَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,1,37,' وَتَرَكْنَا عَلَيْهِمَا فِى ٱلْءَاخِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,1,37,' سَلَمٌ عَلَىٰ مُوسَىٰ وَهَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,1,37,' إِنَّا كَذَلِكَ نَجْزِى ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,1,37,' إِنَّهُمَا مِنْ عِبَادِنَا ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,1,37,' وَإِنَّ إِلْيَاسَ لَمِنَ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,1,37,' إِذْ قَالَ لِقَوْمِهِۦٓ أَلَا تَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,1,37,' أَتَدْعُونَ بَعْلًۭا وَتَذَرُونَ أَحْسَنَ ٱلْخَلِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,1,37,' ٱللَّهَ رَبَّكُمْ وَرَبَّ ءَابَآئِكُمُ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,1,37,' فَكَذَّبُوهُ فَإِنَّهُمْ لَمُحْضَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,1,37,' إِلَّا عِبَادَ ٱللَّهِ ٱلْمُخْلَصِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,1,37,' وَتَرَكْنَا عَلَيْهِ فِى ٱلْءَاخِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,1,37,' سَلَمٌ عَلَىٰٓ إِلْ يَاسِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,1,37,' إِنَّا كَذَلِكَ نَجْزِى ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,1,37,' إِنَّهُۥ مِنْ عِبَادِنَا ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,1,37,' وَإِنَّ لُوطًۭا لَّمِنَ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,1,37,' إِذْ نَجَّيْنَهُ وَأَهْلَهُۥٓ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,1,37,' إِلَّا عَجُوزًۭا فِى ٱلْغَبِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,1,37,' ثُمَّ دَمَّرْنَا ٱلْءَاخَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,1,37,' وَإِنَّكُمْ لَتَمُرُّونَ عَلَيْهِم مُّصْبِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,1,37,' وَبِٱلَّيْلِ ۗ أَفَلَا تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,1,37,' وَإِنَّ يُونُسَ لَمِنَ ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,1,37,' إِذْ أَبَقَ إِلَى ٱلْفُلْكِ ٱلْمَشْحُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,1,37,' فَسَاهَمَ فَكَانَ مِنَ ٱلْمُدْحَضِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,1,37,' فَٱلْتَقَمَهُ ٱلْحُوتُ وَهُوَ مُلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,1,37,' فَلَوْلَآ أَنَّهُۥ كَانَ مِنَ ٱلْمُسَبِّحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,1,37,' لَلَبِثَ فِى بَطْنِهِۦٓ إِلَىٰ يَوْمِ يُبْعَثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,1,37,' فَنَبَذْنَهُ بِٱلْعَرَآءِ وَهُوَ سَقِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,1,37,' وَأَنۢبَتْنَا عَلَيْهِ شَجَرَةًۭ مِّن يَقْطِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,1,37,' وَأَرْسَلْنَهُ إِلَىٰ مِا۟ئَةِ أَلْفٍ أَوْ يَزِيدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,1,37,' فَـَٔامَنُوا۟ فَمَتَّعْنَهُمْ إِلَىٰ حِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,1,37,' فَٱسْتَفْتِهِمْ أَلِرَبِّكَ ٱلْبَنَاتُ وَلَهُمُ ٱلْبَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,1,37,' أَمْ خَلَقْنَا ٱلْمَلَٓئِكَةَ إِنَثًۭا وَهُمْ شَهِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,1,37,' أَلَآ إِنَّهُم مِّنْ إِفْكِهِمْ لَيَقُولُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,1,37,' وَلَدَ ٱللَّهُ وَإِنَّهُمْ لَكَذِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,1,37,' أَصْطَفَى ٱلْبَنَاتِ عَلَى ٱلْبَنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,1,37,' مَا لَكُمْ كَيْفَ تَحْكُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,1,37,' أَفَلَا تَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,1,37,' أَمْ لَكُمْ سُلْطَنٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,1,37,' فَأْتُوا۟ بِكِتَبِكُمْ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,1,37,' وَجَعَلُوا۟ بَيْنَهُۥ وَبَيْنَ ٱلْجِنَّةِ نَسَبًۭا ۚ وَلَقَدْ عَلِمَتِ ٱلْجِنَّةُ إِنَّهُمْ لَمُحْضَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,1,37,' سُبْحَنَ ٱللَّهِ عَمَّا يَصِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,1,37,' إِلَّا عِبَادَ ٱللَّهِ ٱلْمُخْلَصِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,1,37,' فَإِنَّكُمْ وَمَا تَعْبُدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,1,37,' مَآ أَنتُمْ عَلَيْهِ بِفَتِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,1,37,' إِلَّا مَنْ هُوَ صَالِ ٱلْجَحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,1,37,' وَمَا مِنَّآ إِلَّا لَهُۥ مَقَامٌۭ مَّعْلُومٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,1,37,' وَإِنَّا لَنَحْنُ ٱلصَّآفُّونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,1,37,' وَإِنَّا لَنَحْنُ ٱلْمُسَبِّحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,1,37,' وَإِن كَانُوا۟ لَيَقُولُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,1,37,' لَوْ أَنَّ عِندَنَا ذِكْرًۭا مِّنَ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,1,37,' لَكُنَّا عِبَادَ ٱللَّهِ ٱلْمُخْلَصِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,1,37,' فَكَفَرُوا۟ بِهِۦ ۖ فَسَوْفَ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,1,37,' وَلَقَدْ سَبَقَتْ كَلِمَتُنَا لِعِبَادِنَا ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,1,37,' إِنَّهُمْ لَهُمُ ٱلْمَنصُورُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,1,37,' وَإِنَّ جُندَنَا لَهُمُ ٱلْغَلِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,1,37,' فَتَوَلَّ عَنْهُمْ حَتَّىٰ حِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,1,37,' وَأَبْصِرْهُمْ فَسَوْفَ يُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,1,37,' أَفَبِعَذَابِنَا يَسْتَعْجِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,1,37,' فَإِذَا نَزَلَ بِسَاحَتِهِمْ فَسَآءَ صَبَاحُ ٱلْمُنذَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,1,37,' وَتَوَلَّ عَنْهُمْ حَتَّىٰ حِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,1,37,' وَأَبْصِرْ فَسَوْفَ يُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,1,37,' سُبْحَنَ رَبِّكَ رَبِّ ٱلْعِزَّةِ عَمَّا يَصِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,1,37,' وَسَلَمٌ عَلَى ٱلْمُرْسَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,1,37,' وَٱلْحَمْدُ لِلَّهِ رَبِّ ٱلْعَلَمِينَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(38,38,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,38,' صٓ ۚ وَٱلْقُرْءَانِ ذِى ٱلذِّكْرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,38,' بَلِ ٱلَّذِينَ كَفَرُوا۟ فِى عِزَّةٍۢ وَشِقَاقٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,38,' كَمْ أَهْلَكْنَا مِن قَبْلِهِم مِّن قَرْنٍۢ فَنَادَوا۟ وَّلَاتَ حِينَ مَنَاصٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,38,' وَعَجِبُوٓا۟ أَن جَآءَهُم مُّنذِرٌۭ مِّنْهُمْ ۖ وَقَالَ ٱلْكَفِرُونَ هَذَا سَحِرٌۭ كَذَّابٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,38,' أَجَعَلَ ٱلْءَالِهَةَ إِلَهًۭا وَحِدًا ۖ إِنَّ هَذَا لَشَىْءٌ عُجَابٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,38,' وَٱنطَلَقَ ٱلْمَلَأُ مِنْهُمْ أَنِ ٱمْشُوا۟ وَٱصْبِرُوا۟ عَلَىٰٓ ءَالِهَتِكُمْ ۖ إِنَّ هَذَا لَشَىْءٌۭ يُرَادُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,38,' مَا سَمِعْنَا بِهَذَا فِى ٱلْمِلَّةِ ٱلْءَاخِرَةِ إِنْ هَذَآ إِلَّا ٱخْتِلَقٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,38,' أَءُنزِلَ عَلَيْهِ ٱلذِّكْرُ مِنۢ بَيْنِنَا ۚ بَلْ هُمْ فِى شَكٍّۢ مِّن ذِكْرِى ۖ بَل لَّمَّا يَذُوقُوا۟ عَذَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,38,' أَمْ عِندَهُمْ خَزَآىِٕنُ رَحْمَةِ رَبِّكَ ٱلْعَزِيزِ ٱلْوَهَّابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,38,' أَمْ لَهُم مُّلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَمَا بَيْنَهُمَا ۖ فَلْيَرْتَقُوا۟ فِى ٱلْأَسْبَبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,38,' جُندٌۭ مَّا هُنَالِكَ مَهْزُومٌۭ مِّنَ ٱلْأَحْزَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,38,' كَذَّبَتْ قَبْلَهُمْ قَوْمُ نُوحٍۢ وَعَادٌۭ وَفِرْعَوْنُ ذُو ٱلْأَوْتَادِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,38,' وَثَمُودُ وَقَوْمُ لُوطٍۢ وَأَصْحَبُ لْـَٔيْكَةِ ۚ أُو۟لَٓئِكَ ٱلْأَحْزَابُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,38,' إِن كُلٌّ إِلَّا كَذَّبَ ٱلرُّسُلَ فَحَقَّ عِقَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,38,' وَمَا يَنظُرُ هَٓؤُلَآءِ إِلَّا صَيْحَةًۭ وَحِدَةًۭ مَّا لَهَا مِن فَوَاقٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,38,' وَقَالُوا۟ رَبَّنَا عَجِّل لَّنَا قِطَّنَا قَبْلَ يَوْمِ ٱلْحِسَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,38,' ٱصْبِرْ عَلَىٰ مَا يَقُولُونَ وَٱذْكُرْ عَبْدَنَا دَاوُۥدَ ذَا ٱلْأَيْدِ ۖ إِنَّهُۥٓ أَوَّابٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,38,' إِنَّا سَخَّرْنَا ٱلْجِبَالَ مَعَهُۥ يُسَبِّحْنَ بِٱلْعَشِىِّ وَٱلْإِشْرَاقِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,38,' وَٱلطَّيْرَ مَحْشُورَةًۭ ۖ كُلٌّۭ لَّهُۥٓ أَوَّابٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,38,' وَشَدَدْنَا مُلْكَهُۥ وَءَاتَيْنَهُ ٱلْحِكْمَةَ وَفَصْلَ ٱلْخِطَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,38,' وَهَلْ أَتَىٰكَ نَبَؤُا۟ ٱلْخَصْمِ إِذْ تَسَوَّرُوا۟ ٱلْمِحْرَابَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,38,' إِذْ دَخَلُوا۟ عَلَىٰ دَاوُۥدَ فَفَزِعَ مِنْهُمْ ۖ قَالُوا۟ لَا تَخَفْ ۖ خَصْمَانِ بَغَىٰ بَعْضُنَا عَلَىٰ بَعْضٍۢ فَٱحْكُم بَيْنَنَا بِٱلْحَقِّ وَلَا تُشْطِطْ وَٱهْدِنَآ إِلَىٰ سَوَآءِ ٱلصِّرَطِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,38,' إِنَّ هَذَآ أَخِى لَهُۥ تِسْعٌۭ وَتِسْعُونَ نَعْجَةًۭ وَلِىَ نَعْجَةٌۭ وَحِدَةٌۭ فَقَالَ أَكْفِلْنِيهَا وَعَزَّنِى فِى ٱلْخِطَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,38,' قَالَ لَقَدْ ظَلَمَكَ بِسُؤَالِ نَعْجَتِكَ إِلَىٰ نِعَاجِهِۦ ۖ وَإِنَّ كَثِيرًۭا مِّنَ ٱلْخُلَطَآءِ لَيَبْغِى بَعْضُهُمْ عَلَىٰ بَعْضٍ إِلَّا ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ وَقَلِيلٌۭ مَّا هُمْ ۗ وَظَنَّ دَاوُۥدُ أَنَّمَا فَتَنَّهُ فَٱسْتَغْفَرَ رَبَّهُۥ وَخَرَّ رَاكِعًۭا وَأَنَابَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,38,' فَغَفَرْنَا لَهُۥ ذَلِكَ ۖ وَإِنَّ لَهُۥ عِندَنَا لَزُلْفَىٰ وَحُسْنَ مَـَٔابٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,38,' يَدَاوُۥدُ إِنَّا جَعَلْنَكَ خَلِيفَةًۭ فِى ٱلْأَرْضِ فَٱحْكُم بَيْنَ ٱلنَّاسِ بِٱلْحَقِّ وَلَا تَتَّبِعِ ٱلْهَوَىٰ فَيُضِلَّكَ عَن سَبِيلِ ٱللَّهِ ۚ إِنَّ ٱلَّذِينَ يَضِلُّونَ عَن سَبِيلِ ٱللَّهِ لَهُمْ عَذَابٌۭ شَدِيدٌۢ بِمَا نَسُوا۟ يَوْمَ ٱلْحِسَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,38,' وَمَا خَلَقْنَا ٱلسَّمَآءَ وَٱلْأَرْضَ وَمَا بَيْنَهُمَا بَطِلًۭا ۚ ذَلِكَ ظَنُّ ٱلَّذِينَ كَفَرُوا۟ ۚ فَوَيْلٌۭ لِّلَّذِينَ كَفَرُوا۟ مِنَ ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,38,' أَمْ نَجْعَلُ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ كَٱلْمُفْسِدِينَ فِى ٱلْأَرْضِ أَمْ نَجْعَلُ ٱلْمُتَّقِينَ كَٱلْفُجَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,38,' كِتَبٌ أَنزَلْنَهُ إِلَيْكَ مُبَرَكٌۭ لِّيَدَّبَّرُوٓا۟ ءَايَتِهِۦ وَلِيَتَذَكَّرَ أُو۟لُوا۟ ٱلْأَلْبَبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,38,' وَوَهَبْنَا لِدَاوُۥدَ سُلَيْمَنَ ۚ نِعْمَ ٱلْعَبْدُ ۖ إِنَّهُۥٓ أَوَّابٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,38,' إِذْ عُرِضَ عَلَيْهِ بِٱلْعَشِىِّ ٱلصَّفِنَتُ ٱلْجِيَادُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,38,' فَقَالَ إِنِّىٓ أَحْبَبْتُ حُبَّ ٱلْخَيْرِ عَن ذِكْرِ رَبِّى حَتَّىٰ تَوَارَتْ بِٱلْحِجَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,38,' رُدُّوهَا عَلَىَّ ۖ فَطَفِقَ مَسْحًۢا بِٱلسُّوقِ وَٱلْأَعْنَاقِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,38,' وَلَقَدْ فَتَنَّا سُلَيْمَنَ وَأَلْقَيْنَا عَلَىٰ كُرْسِيِّهِۦ جَسَدًۭا ثُمَّ أَنَابَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,38,' قَالَ رَبِّ ٱغْفِرْ لِى وَهَبْ لِى مُلْكًۭا لَّا يَنۢبَغِى لِأَحَدٍۢ مِّنۢ بَعْدِىٓ ۖ إِنَّكَ أَنتَ ٱلْوَهَّابُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,38,' فَسَخَّرْنَا لَهُ ٱلرِّيحَ تَجْرِى بِأَمْرِهِۦ رُخَآءً حَيْثُ أَصَابَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,38,' وَٱلشَّيَطِينَ كُلَّ بَنَّآءٍۢ وَغَوَّاصٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,38,' وَءَاخَرِينَ مُقَرَّنِينَ فِى ٱلْأَصْفَادِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,38,' هَذَا عَطَآؤُنَا فَٱمْنُنْ أَوْ أَمْسِكْ بِغَيْرِ حِسَابٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,38,' وَإِنَّ لَهُۥ عِندَنَا لَزُلْفَىٰ وَحُسْنَ مَـَٔابٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,38,' وَٱذْكُرْ عَبْدَنَآ أَيُّوبَ إِذْ نَادَىٰ رَبَّهُۥٓ أَنِّى مَسَّنِىَ ٱلشَّيْطَنُ بِنُصْبٍۢ وَعَذَابٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,38,' ٱرْكُضْ بِرِجْلِكَ ۖ هَذَا مُغْتَسَلٌۢ بَارِدٌۭ وَشَرَابٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,38,' وَوَهَبْنَا لَهُۥٓ أَهْلَهُۥ وَمِثْلَهُم مَّعَهُمْ رَحْمَةًۭ مِّنَّا وَذِكْرَىٰ لِأُو۟لِى ٱلْأَلْبَبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,38,' وَخُذْ بِيَدِكَ ضِغْثًۭا فَٱضْرِب بِّهِۦ وَلَا تَحْنَثْ ۗ إِنَّا وَجَدْنَهُ صَابِرًۭا ۚ نِّعْمَ ٱلْعَبْدُ ۖ إِنَّهُۥٓ أَوَّابٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,38,' وَٱذْكُرْ عِبَدَنَآ إِبْرَهِيمَ وَإِسْحَقَ وَيَعْقُوبَ أُو۟لِى ٱلْأَيْدِى وَٱلْأَبْصَرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,38,' إِنَّآ أَخْلَصْنَهُم بِخَالِصَةٍۢ ذِكْرَى ٱلدَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,38,' وَإِنَّهُمْ عِندَنَا لَمِنَ ٱلْمُصْطَفَيْنَ ٱلْأَخْيَارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,38,' وَٱذْكُرْ إِسْمَعِيلَ وَٱلْيَسَعَ وَذَا ٱلْكِفْلِ ۖ وَكُلٌّۭ مِّنَ ٱلْأَخْيَارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,38,' هَذَا ذِكْرٌۭ ۚ وَإِنَّ لِلْمُتَّقِينَ لَحُسْنَ مَـَٔابٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,38,' جَنَّتِ عَدْنٍۢ مُّفَتَّحَةًۭ لَّهُمُ ٱلْأَبْوَبُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,38,' مُتَّكِـِٔينَ فِيهَا يَدْعُونَ فِيهَا بِفَكِهَةٍۢ كَثِيرَةٍۢ وَشَرَابٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,38,' وَعِندَهُمْ قَصِرَتُ ٱلطَّرْفِ أَتْرَابٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,38,' هَذَا مَا تُوعَدُونَ لِيَوْمِ ٱلْحِسَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,38,' إِنَّ هَذَا لَرِزْقُنَا مَا لَهُۥ مِن نَّفَادٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,38,' هَذَا ۚ وَإِنَّ لِلطَّغِينَ لَشَرَّ مَـَٔابٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,38,' جَهَنَّمَ يَصْلَوْنَهَا فَبِئْسَ ٱلْمِهَادُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,38,' هَذَا فَلْيَذُوقُوهُ حَمِيمٌۭ وَغَسَّاقٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,38,' وَءَاخَرُ مِن شَكْلِهِۦٓ أَزْوَجٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,38,' هَذَا فَوْجٌۭ مُّقْتَحِمٌۭ مَّعَكُمْ ۖ لَا مَرْحَبًۢا بِهِمْ ۚ إِنَّهُمْ صَالُوا۟ ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,38,' قَالُوا۟ بَلْ أَنتُمْ لَا مَرْحَبًۢا بِكُمْ ۖ أَنتُمْ قَدَّمْتُمُوهُ لَنَا ۖ فَبِئْسَ ٱلْقَرَارُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,38,' قَالُوا۟ رَبَّنَا مَن قَدَّمَ لَنَا هَذَا فَزِدْهُ عَذَابًۭا ضِعْفًۭا فِى ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,38,' وَقَالُوا۟ مَا لَنَا لَا نَرَىٰ رِجَالًۭا كُنَّا نَعُدُّهُم مِّنَ ٱلْأَشْرَارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,38,' أَتَّخَذْنَهُمْ سِخْرِيًّا أَمْ زَاغَتْ عَنْهُمُ ٱلْأَبْصَرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,38,' إِنَّ ذَلِكَ لَحَقٌّۭ تَخَاصُمُ أَهْلِ ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,38,' قُلْ إِنَّمَآ أَنَا۠ مُنذِرٌۭ ۖ وَمَا مِنْ إِلَهٍ إِلَّا ٱللَّهُ ٱلْوَحِدُ ٱلْقَهَّارُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,38,' رَبُّ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَمَا بَيْنَهُمَا ٱلْعَزِيزُ ٱلْغَفَّرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,38,' قُلْ هُوَ نَبَؤٌا۟ عَظِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,38,' أَنتُمْ عَنْهُ مُعْرِضُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,38,' مَا كَانَ لِىَ مِنْ عِلْمٍۭ بِٱلْمَلَإِ ٱلْأَعْلَىٰٓ إِذْ يَخْتَصِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,38,' إِن يُوحَىٰٓ إِلَىَّ إِلَّآ أَنَّمَآ أَنَا۠ نَذِيرٌۭ مُّبِينٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,38,' إِذْ قَالَ رَبُّكَ لِلْمَلَٓئِكَةِ إِنِّى خَلِقٌۢ بَشَرًۭا مِّن طِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,38,' فَإِذَا سَوَّيْتُهُۥ وَنَفَخْتُ فِيهِ مِن رُّوحِى فَقَعُوا۟ لَهُۥ سَجِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,38,' فَسَجَدَ ٱلْمَلَٓئِكَةُ كُلُّهُمْ أَجْمَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,38,' إِلَّآ إِبْلِيسَ ٱسْتَكْبَرَ وَكَانَ مِنَ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,38,' قَالَ يَٓإِبْلِيسُ مَا مَنَعَكَ أَن تَسْجُدَ لِمَا خَلَقْتُ بِيَدَىَّ ۖ أَسْتَكْبَرْتَ أَمْ كُنتَ مِنَ ٱلْعَالِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,38,' قَالَ أَنَا۠ خَيْرٌۭ مِّنْهُ ۖ خَلَقْتَنِى مِن نَّارٍۢ وَخَلَقْتَهُۥ مِن طِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,38,' قَالَ فَٱخْرُجْ مِنْهَا فَإِنَّكَ رَجِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,38,' وَإِنَّ عَلَيْكَ لَعْنَتِىٓ إِلَىٰ يَوْمِ ٱلدِّينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,38,' قَالَ رَبِّ فَأَنظِرْنِىٓ إِلَىٰ يَوْمِ يُبْعَثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,38,' قَالَ فَإِنَّكَ مِنَ ٱلْمُنظَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,38,' إِلَىٰ يَوْمِ ٱلْوَقْتِ ٱلْمَعْلُومِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,38,' قَالَ فَبِعِزَّتِكَ لَأُغْوِيَنَّهُمْ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,38,' إِلَّا عِبَادَكَ مِنْهُمُ ٱلْمُخْلَصِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,38,' قَالَ فَٱلْحَقُّ وَٱلْحَقَّ أَقُولُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,38,' لَأَمْلَأَنَّ جَهَنَّمَ مِنكَ وَمِمَّن تَبِعَكَ مِنْهُمْ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,38,' قُلْ مَآ أَسْـَٔلُكُمْ عَلَيْهِ مِنْ أَجْرٍۢ وَمَآ أَنَا۠ مِنَ ٱلْمُتَكَلِّفِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,38,' إِنْ هُوَ إِلَّا ذِكْرٌۭ لِّلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,38,' وَلَتَعْلَمُنَّ نَبَأَهُۥ بَعْدَ حِينٍۭ');
+INSERT INTO chapters (id, number, quran_id) VALUES(39,39,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,39,' تَنزِيلُ ٱلْكِتَبِ مِنَ ٱللَّهِ ٱلْعَزِيزِ ٱلْحَكِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,39,' إِنَّآ أَنزَلْنَآ إِلَيْكَ ٱلْكِتَبَ بِٱلْحَقِّ فَٱعْبُدِ ٱللَّهَ مُخْلِصًۭا لَّهُ ٱلدِّينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,39,' أَلَا لِلَّهِ ٱلدِّينُ ٱلْخَالِصُ ۚ وَٱلَّذِينَ ٱتَّخَذُوا۟ مِن دُونِهِۦٓ أَوْلِيَآءَ مَا نَعْبُدُهُمْ إِلَّا لِيُقَرِّبُونَآ إِلَى ٱللَّهِ زُلْفَىٰٓ إِنَّ ٱللَّهَ يَحْكُمُ بَيْنَهُمْ فِى مَا هُمْ فِيهِ يَخْتَلِفُونَ ۗ إِنَّ ٱللَّهَ لَا يَهْدِى مَنْ هُوَ كَذِبٌۭ كَفَّارٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,39,' لَّوْ أَرَادَ ٱللَّهُ أَن يَتَّخِذَ وَلَدًۭا لَّٱصْطَفَىٰ مِمَّا يَخْلُقُ مَا يَشَآءُ ۚ سُبْحَنَهُۥ ۖ هُوَ ٱللَّهُ ٱلْوَحِدُ ٱلْقَهَّارُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,39,' خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ بِٱلْحَقِّ ۖ يُكَوِّرُ ٱلَّيْلَ عَلَى ٱلنَّهَارِ وَيُكَوِّرُ ٱلنَّهَارَ عَلَى ٱلَّيْلِ ۖ وَسَخَّرَ ٱلشَّمْسَ وَٱلْقَمَرَ ۖ كُلٌّۭ يَجْرِى لِأَجَلٍۢ مُّسَمًّى ۗ أَلَا هُوَ ٱلْعَزِيزُ ٱلْغَفَّرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,39,' خَلَقَكُم مِّن نَّفْسٍۢ وَحِدَةٍۢ ثُمَّ جَعَلَ مِنْهَا زَوْجَهَا وَأَنزَلَ لَكُم مِّنَ ٱلْأَنْعَمِ ثَمَنِيَةَ أَزْوَجٍۢ ۚ يَخْلُقُكُمْ فِى بُطُونِ أُمَّهَتِكُمْ خَلْقًۭا مِّنۢ بَعْدِ خَلْقٍۢ فِى ظُلُمَتٍۢ ثَلَثٍۢ ۚ ذَلِكُمُ ٱللَّهُ رَبُّكُمْ لَهُ ٱلْمُلْكُ ۖ لَآ إِلَهَ إِلَّا هُوَ ۖ فَأَنَّىٰ تُصْرَفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,39,' إِن تَكْفُرُوا۟ فَإِنَّ ٱللَّهَ غَنِىٌّ عَنكُمْ ۖ وَلَا يَرْضَىٰ لِعِبَادِهِ ٱلْكُفْرَ ۖ وَإِن تَشْكُرُوا۟ يَرْضَهُ لَكُمْ ۗ وَلَا تَزِرُ وَازِرَةٌۭ وِزْرَ أُخْرَىٰ ۗ ثُمَّ إِلَىٰ رَبِّكُم مَّرْجِعُكُمْ فَيُنَبِّئُكُم بِمَا كُنتُمْ تَعْمَلُونَ ۚ إِنَّهُۥ عَلِيمٌۢ بِذَاتِ ٱلصُّدُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,39,' وَإِذَا مَسَّ ٱلْإِنسَنَ ضُرٌّۭ دَعَا رَبَّهُۥ مُنِيبًا إِلَيْهِ ثُمَّ إِذَا خَوَّلَهُۥ نِعْمَةًۭ مِّنْهُ نَسِىَ مَا كَانَ يَدْعُوٓا۟ إِلَيْهِ مِن قَبْلُ وَجَعَلَ لِلَّهِ أَندَادًۭا لِّيُضِلَّ عَن سَبِيلِهِۦ ۚ قُلْ تَمَتَّعْ بِكُفْرِكَ قَلِيلًا ۖ إِنَّكَ مِنْ أَصْحَبِ ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,39,' أَمَّنْ هُوَ قَنِتٌ ءَانَآءَ ٱلَّيْلِ سَاجِدًۭا وَقَآئِمًۭا يَحْذَرُ ٱلْءَاخِرَةَ وَيَرْجُوا۟ رَحْمَةَ رَبِّهِۦ ۗ قُلْ هَلْ يَسْتَوِى ٱلَّذِينَ يَعْلَمُونَ وَٱلَّذِينَ لَا يَعْلَمُونَ ۗ إِنَّمَا يَتَذَكَّرُ أُو۟لُوا۟ ٱلْأَلْبَبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,39,' قُلْ يَعِبَادِ ٱلَّذِينَ ءَامَنُوا۟ ٱتَّقُوا۟ رَبَّكُمْ ۚ لِلَّذِينَ أَحْسَنُوا۟ فِى هَذِهِ ٱلدُّنْيَا حَسَنَةٌۭ ۗ وَأَرْضُ ٱللَّهِ وَسِعَةٌ ۗ إِنَّمَا يُوَفَّى ٱلصَّبِرُونَ أَجْرَهُم بِغَيْرِ حِسَابٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,39,' قُلْ إِنِّىٓ أُمِرْتُ أَنْ أَعْبُدَ ٱللَّهَ مُخْلِصًۭا لَّهُ ٱلدِّينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,39,' وَأُمِرْتُ لِأَنْ أَكُونَ أَوَّلَ ٱلْمُسْلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,39,' قُلْ إِنِّىٓ أَخَافُ إِنْ عَصَيْتُ رَبِّى عَذَابَ يَوْمٍ عَظِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,39,' قُلِ ٱللَّهَ أَعْبُدُ مُخْلِصًۭا لَّهُۥ دِينِى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,39,' فَٱعْبُدُوا۟ مَا شِئْتُم مِّن دُونِهِۦ ۗ قُلْ إِنَّ ٱلْخَسِرِينَ ٱلَّذِينَ خَسِرُوٓا۟ أَنفُسَهُمْ وَأَهْلِيهِمْ يَوْمَ ٱلْقِيَمَةِ ۗ أَلَا ذَلِكَ هُوَ ٱلْخُسْرَانُ ٱلْمُبِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,39,' لَهُم مِّن فَوْقِهِمْ ظُلَلٌۭ مِّنَ ٱلنَّارِ وَمِن تَحْتِهِمْ ظُلَلٌۭ ۚ ذَلِكَ يُخَوِّفُ ٱللَّهُ بِهِۦ عِبَادَهُۥ ۚ يَعِبَادِ فَٱتَّقُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,39,' وَٱلَّذِينَ ٱجْتَنَبُوا۟ ٱلطَّغُوتَ أَن يَعْبُدُوهَا وَأَنَابُوٓا۟ إِلَى ٱللَّهِ لَهُمُ ٱلْبُشْرَىٰ ۚ فَبَشِّرْ عِبَادِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,39,' ٱلَّذِينَ يَسْتَمِعُونَ ٱلْقَوْلَ فَيَتَّبِعُونَ أَحْسَنَهُۥٓ ۚ أُو۟لَٓئِكَ ٱلَّذِينَ هَدَىٰهُمُ ٱللَّهُ ۖ وَأُو۟لَٓئِكَ هُمْ أُو۟لُوا۟ ٱلْأَلْبَبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,39,' أَفَمَنْ حَقَّ عَلَيْهِ كَلِمَةُ ٱلْعَذَابِ أَفَأَنتَ تُنقِذُ مَن فِى ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,39,' لَكِنِ ٱلَّذِينَ ٱتَّقَوْا۟ رَبَّهُمْ لَهُمْ غُرَفٌۭ مِّن فَوْقِهَا غُرَفٌۭ مَّبْنِيَّةٌۭ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ ۖ وَعْدَ ٱللَّهِ ۖ لَا يُخْلِفُ ٱللَّهُ ٱلْمِيعَادَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,39,' أَلَمْ تَرَ أَنَّ ٱللَّهَ أَنزَلَ مِنَ ٱلسَّمَآءِ مَآءًۭ فَسَلَكَهُۥ يَنَبِيعَ فِى ٱلْأَرْضِ ثُمَّ يُخْرِجُ بِهِۦ زَرْعًۭا مُّخْتَلِفًا أَلْوَنُهُۥ ثُمَّ يَهِيجُ فَتَرَىٰهُ مُصْفَرًّۭا ثُمَّ يَجْعَلُهُۥ حُطَمًا ۚ إِنَّ فِى ذَلِكَ لَذِكْرَىٰ لِأُو۟لِى ٱلْأَلْبَبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,39,' أَفَمَن شَرَحَ ٱللَّهُ صَدْرَهُۥ لِلْإِسْلَمِ فَهُوَ عَلَىٰ نُورٍۢ مِّن رَّبِّهِۦ ۚ فَوَيْلٌۭ لِّلْقَسِيَةِ قُلُوبُهُم مِّن ذِكْرِ ٱللَّهِ ۚ أُو۟لَٓئِكَ فِى ضَلَلٍۢ مُّبِينٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,39,' ٱللَّهُ نَزَّلَ أَحْسَنَ ٱلْحَدِيثِ كِتَبًۭا مُّتَشَبِهًۭا مَّثَانِىَ تَقْشَعِرُّ مِنْهُ جُلُودُ ٱلَّذِينَ يَخْشَوْنَ رَبَّهُمْ ثُمَّ تَلِينُ جُلُودُهُمْ وَقُلُوبُهُمْ إِلَىٰ ذِكْرِ ٱللَّهِ ۚ ذَلِكَ هُدَى ٱللَّهِ يَهْدِى بِهِۦ مَن يَشَآءُ ۚ وَمَن يُضْلِلِ ٱللَّهُ فَمَا لَهُۥ مِنْ هَادٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,39,' أَفَمَن يَتَّقِى بِوَجْهِهِۦ سُوٓءَ ٱلْعَذَابِ يَوْمَ ٱلْقِيَمَةِ ۚ وَقِيلَ لِلظَّلِمِينَ ذُوقُوا۟ مَا كُنتُمْ تَكْسِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,39,' كَذَّبَ ٱلَّذِينَ مِن قَبْلِهِمْ فَأَتَىٰهُمُ ٱلْعَذَابُ مِنْ حَيْثُ لَا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,39,' فَأَذَاقَهُمُ ٱللَّهُ ٱلْخِزْىَ فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا ۖ وَلَعَذَابُ ٱلْءَاخِرَةِ أَكْبَرُ ۚ لَوْ كَانُوا۟ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,39,' وَلَقَدْ ضَرَبْنَا لِلنَّاسِ فِى هَذَا ٱلْقُرْءَانِ مِن كُلِّ مَثَلٍۢ لَّعَلَّهُمْ يَتَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,39,' قُرْءَانًا عَرَبِيًّا غَيْرَ ذِى عِوَجٍۢ لَّعَلَّهُمْ يَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,39,' ضَرَبَ ٱللَّهُ مَثَلًۭا رَّجُلًۭا فِيهِ شُرَكَآءُ مُتَشَكِسُونَ وَرَجُلًۭا سَلَمًۭا لِّرَجُلٍ هَلْ يَسْتَوِيَانِ مَثَلًا ۚ ٱلْحَمْدُ لِلَّهِ ۚ بَلْ أَكْثَرُهُمْ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,39,' إِنَّكَ مَيِّتٌۭ وَإِنَّهُم مَّيِّتُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,39,' ثُمَّ إِنَّكُمْ يَوْمَ ٱلْقِيَمَةِ عِندَ رَبِّكُمْ تَخْتَصِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,39,' فَمَنْ أَظْلَمُ مِمَّن كَذَبَ عَلَى ٱللَّهِ وَكَذَّبَ بِٱلصِّدْقِ إِذْ جَآءَهُۥٓ ۚ أَلَيْسَ فِى جَهَنَّمَ مَثْوًۭى لِّلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,39,' وَٱلَّذِى جَآءَ بِٱلصِّدْقِ وَصَدَّقَ بِهِۦٓ ۙ أُو۟لَٓئِكَ هُمُ ٱلْمُتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,39,' لَهُم مَّا يَشَآءُونَ عِندَ رَبِّهِمْ ۚ ذَلِكَ جَزَآءُ ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,39,' لِيُكَفِّرَ ٱللَّهُ عَنْهُمْ أَسْوَأَ ٱلَّذِى عَمِلُوا۟ وَيَجْزِيَهُمْ أَجْرَهُم بِأَحْسَنِ ٱلَّذِى كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,39,' أَلَيْسَ ٱللَّهُ بِكَافٍ عَبْدَهُۥ ۖ وَيُخَوِّفُونَكَ بِٱلَّذِينَ مِن دُونِهِۦ ۚ وَمَن يُضْلِلِ ٱللَّهُ فَمَا لَهُۥ مِنْ هَادٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,39,' وَمَن يَهْدِ ٱللَّهُ فَمَا لَهُۥ مِن مُّضِلٍّ ۗ أَلَيْسَ ٱللَّهُ بِعَزِيزٍۢ ذِى ٱنتِقَامٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,39,' وَلَىِٕن سَأَلْتَهُم مَّنْ خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ لَيَقُولُنَّ ٱللَّهُ ۚ قُلْ أَفَرَءَيْتُم مَّا تَدْعُونَ مِن دُونِ ٱللَّهِ إِنْ أَرَادَنِىَ ٱللَّهُ بِضُرٍّ هَلْ هُنَّ كَشِفَتُ ضُرِّهِۦٓ أَوْ أَرَادَنِى بِرَحْمَةٍ هَلْ هُنَّ مُمْسِكَتُ رَحْمَتِهِۦ ۚ قُلْ حَسْبِىَ ٱللَّهُ ۖ عَلَيْهِ يَتَوَكَّلُ ٱلْمُتَوَكِّلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,39,' قُلْ يَقَوْمِ ٱعْمَلُوا۟ عَلَىٰ مَكَانَتِكُمْ إِنِّى عَمِلٌۭ ۖ فَسَوْفَ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,39,' مَن يَأْتِيهِ عَذَابٌۭ يُخْزِيهِ وَيَحِلُّ عَلَيْهِ عَذَابٌۭ مُّقِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,39,' إِنَّآ أَنزَلْنَا عَلَيْكَ ٱلْكِتَبَ لِلنَّاسِ بِٱلْحَقِّ ۖ فَمَنِ ٱهْتَدَىٰ فَلِنَفْسِهِۦ ۖ وَمَن ضَلَّ فَإِنَّمَا يَضِلُّ عَلَيْهَا ۖ وَمَآ أَنتَ عَلَيْهِم بِوَكِيلٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,39,' ٱللَّهُ يَتَوَفَّى ٱلْأَنفُسَ حِينَ مَوْتِهَا وَٱلَّتِى لَمْ تَمُتْ فِى مَنَامِهَا ۖ فَيُمْسِكُ ٱلَّتِى قَضَىٰ عَلَيْهَا ٱلْمَوْتَ وَيُرْسِلُ ٱلْأُخْرَىٰٓ إِلَىٰٓ أَجَلٍۢ مُّسَمًّى ۚ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّقَوْمٍۢ يَتَفَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,39,' أَمِ ٱتَّخَذُوا۟ مِن دُونِ ٱللَّهِ شُفَعَآءَ ۚ قُلْ أَوَلَوْ كَانُوا۟ لَا يَمْلِكُونَ شَيْـًۭٔا وَلَا يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,39,' قُل لِّلَّهِ ٱلشَّفَعَةُ جَمِيعًۭا ۖ لَّهُۥ مُلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۖ ثُمَّ إِلَيْهِ تُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,39,' وَإِذَا ذُكِرَ ٱللَّهُ وَحْدَهُ ٱشْمَأَزَّتْ قُلُوبُ ٱلَّذِينَ لَا يُؤْمِنُونَ بِٱلْءَاخِرَةِ ۖ وَإِذَا ذُكِرَ ٱلَّذِينَ مِن دُونِهِۦٓ إِذَا هُمْ يَسْتَبْشِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,39,' قُلِ ٱللَّهُمَّ فَاطِرَ ٱلسَّمَوَتِ وَٱلْأَرْضِ عَلِمَ ٱلْغَيْبِ وَٱلشَّهَدَةِ أَنتَ تَحْكُمُ بَيْنَ عِبَادِكَ فِى مَا كَانُوا۟ فِيهِ يَخْتَلِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,39,' وَلَوْ أَنَّ لِلَّذِينَ ظَلَمُوا۟ مَا فِى ٱلْأَرْضِ جَمِيعًۭا وَمِثْلَهُۥ مَعَهُۥ لَٱفْتَدَوْا۟ بِهِۦ مِن سُوٓءِ ٱلْعَذَابِ يَوْمَ ٱلْقِيَمَةِ ۚ وَبَدَا لَهُم مِّنَ ٱللَّهِ مَا لَمْ يَكُونُوا۟ يَحْتَسِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,39,' وَبَدَا لَهُمْ سَيِّـَٔاتُ مَا كَسَبُوا۟ وَحَاقَ بِهِم مَّا كَانُوا۟ بِهِۦ يَسْتَهْزِءُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,39,' فَإِذَا مَسَّ ٱلْإِنسَنَ ضُرٌّۭ دَعَانَا ثُمَّ إِذَا خَوَّلْنَهُ نِعْمَةًۭ مِّنَّا قَالَ إِنَّمَآ أُوتِيتُهُۥ عَلَىٰ عِلْمٍۭ ۚ بَلْ هِىَ فِتْنَةٌۭ وَلَكِنَّ أَكْثَرَهُمْ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,39,' قَدْ قَالَهَا ٱلَّذِينَ مِن قَبْلِهِمْ فَمَآ أَغْنَىٰ عَنْهُم مَّا كَانُوا۟ يَكْسِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,39,' فَأَصَابَهُمْ سَيِّـَٔاتُ مَا كَسَبُوا۟ ۚ وَٱلَّذِينَ ظَلَمُوا۟ مِنْ هَٓؤُلَآءِ سَيُصِيبُهُمْ سَيِّـَٔاتُ مَا كَسَبُوا۟ وَمَا هُم بِمُعْجِزِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,39,' أَوَلَمْ يَعْلَمُوٓا۟ أَنَّ ٱللَّهَ يَبْسُطُ ٱلرِّزْقَ لِمَن يَشَآءُ وَيَقْدِرُ ۚ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّقَوْمٍۢ يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,39,' قُلْ يَعِبَادِىَ ٱلَّذِينَ أَسْرَفُوا۟ عَلَىٰٓ أَنفُسِهِمْ لَا تَقْنَطُوا۟ مِن رَّحْمَةِ ٱللَّهِ ۚ إِنَّ ٱللَّهَ يَغْفِرُ ٱلذُّنُوبَ جَمِيعًا ۚ إِنَّهُۥ هُوَ ٱلْغَفُورُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,39,' وَأَنِيبُوٓا۟ إِلَىٰ رَبِّكُمْ وَأَسْلِمُوا۟ لَهُۥ مِن قَبْلِ أَن يَأْتِيَكُمُ ٱلْعَذَابُ ثُمَّ لَا تُنصَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,39,' وَٱتَّبِعُوٓا۟ أَحْسَنَ مَآ أُنزِلَ إِلَيْكُم مِّن رَّبِّكُم مِّن قَبْلِ أَن يَأْتِيَكُمُ ٱلْعَذَابُ بَغْتَةًۭ وَأَنتُمْ لَا تَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,39,' أَن تَقُولَ نَفْسٌۭ يَحَسْرَتَىٰ عَلَىٰ مَا فَرَّطتُ فِى جَنۢبِ ٱللَّهِ وَإِن كُنتُ لَمِنَ ٱلسَّخِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,39,' أَوْ تَقُولَ لَوْ أَنَّ ٱللَّهَ هَدَىٰنِى لَكُنتُ مِنَ ٱلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,39,' أَوْ تَقُولَ حِينَ تَرَى ٱلْعَذَابَ لَوْ أَنَّ لِى كَرَّةًۭ فَأَكُونَ مِنَ ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,39,' بَلَىٰ قَدْ جَآءَتْكَ ءَايَتِى فَكَذَّبْتَ بِهَا وَٱسْتَكْبَرْتَ وَكُنتَ مِنَ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,39,' وَيَوْمَ ٱلْقِيَمَةِ تَرَى ٱلَّذِينَ كَذَبُوا۟ عَلَى ٱللَّهِ وُجُوهُهُم مُّسْوَدَّةٌ ۚ أَلَيْسَ فِى جَهَنَّمَ مَثْوًۭى لِّلْمُتَكَبِّرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,39,' وَيُنَجِّى ٱللَّهُ ٱلَّذِينَ ٱتَّقَوْا۟ بِمَفَازَتِهِمْ لَا يَمَسُّهُمُ ٱلسُّوٓءُ وَلَا هُمْ يَحْزَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,39,' ٱللَّهُ خَلِقُ كُلِّ شَىْءٍۢ ۖ وَهُوَ عَلَىٰ كُلِّ شَىْءٍۢ وَكِيلٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,39,' لَّهُۥ مَقَالِيدُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۗ وَٱلَّذِينَ كَفَرُوا۟ بِـَٔايَتِ ٱللَّهِ أُو۟لَٓئِكَ هُمُ ٱلْخَسِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,39,' قُلْ أَفَغَيْرَ ٱللَّهِ تَأْمُرُوٓنِّىٓ أَعْبُدُ أَيُّهَا ٱلْجَهِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,39,' وَلَقَدْ أُوحِىَ إِلَيْكَ وَإِلَى ٱلَّذِينَ مِن قَبْلِكَ لَىِٕنْ أَشْرَكْتَ لَيَحْبَطَنَّ عَمَلُكَ وَلَتَكُونَنَّ مِنَ ٱلْخَسِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,39,' بَلِ ٱللَّهَ فَٱعْبُدْ وَكُن مِّنَ ٱلشَّكِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,39,' وَمَا قَدَرُوا۟ ٱللَّهَ حَقَّ قَدْرِهِۦ وَٱلْأَرْضُ جَمِيعًۭا قَبْضَتُهُۥ يَوْمَ ٱلْقِيَمَةِ وَٱلسَّمَوَتُ مَطْوِيَّتٌۢ بِيَمِينِهِۦ ۚ سُبْحَنَهُۥ وَتَعَلَىٰ عَمَّا يُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,39,' وَنُفِخَ فِى ٱلصُّورِ فَصَعِقَ مَن فِى ٱلسَّمَوَتِ وَمَن فِى ٱلْأَرْضِ إِلَّا مَن شَآءَ ٱللَّهُ ۖ ثُمَّ نُفِخَ فِيهِ أُخْرَىٰ فَإِذَا هُمْ قِيَامٌۭ يَنظُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,39,' وَأَشْرَقَتِ ٱلْأَرْضُ بِنُورِ رَبِّهَا وَوُضِعَ ٱلْكِتَبُ وَجِا۟ىٓءَ بِٱلنَّبِيِّۦنَ وَٱلشُّهَدَآءِ وَقُضِىَ بَيْنَهُم بِٱلْحَقِّ وَهُمْ لَا يُظْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,39,' وَوُفِّيَتْ كُلُّ نَفْسٍۢ مَّا عَمِلَتْ وَهُوَ أَعْلَمُ بِمَا يَفْعَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,39,' وَسِيقَ ٱلَّذِينَ كَفَرُوٓا۟ إِلَىٰ جَهَنَّمَ زُمَرًا ۖ حَتَّىٰٓ إِذَا جَآءُوهَا فُتِحَتْ أَبْوَبُهَا وَقَالَ لَهُمْ خَزَنَتُهَآ أَلَمْ يَأْتِكُمْ رُسُلٌۭ مِّنكُمْ يَتْلُونَ عَلَيْكُمْ ءَايَتِ رَبِّكُمْ وَيُنذِرُونَكُمْ لِقَآءَ يَوْمِكُمْ هَذَا ۚ قَالُوا۟ بَلَىٰ وَلَكِنْ حَقَّتْ كَلِمَةُ ٱلْعَذَابِ عَلَى ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,39,' قِيلَ ٱدْخُلُوٓا۟ أَبْوَبَ جَهَنَّمَ خَلِدِينَ فِيهَا ۖ فَبِئْسَ مَثْوَى ٱلْمُتَكَبِّرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,39,' وَسِيقَ ٱلَّذِينَ ٱتَّقَوْا۟ رَبَّهُمْ إِلَى ٱلْجَنَّةِ زُمَرًا ۖ حَتَّىٰٓ إِذَا جَآءُوهَا وَفُتِحَتْ أَبْوَبُهَا وَقَالَ لَهُمْ خَزَنَتُهَا سَلَمٌ عَلَيْكُمْ طِبْتُمْ فَٱدْخُلُوهَا خَلِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,39,' وَقَالُوا۟ ٱلْحَمْدُ لِلَّهِ ٱلَّذِى صَدَقَنَا وَعْدَهُۥ وَأَوْرَثَنَا ٱلْأَرْضَ نَتَبَوَّأُ مِنَ ٱلْجَنَّةِ حَيْثُ نَشَآءُ ۖ فَنِعْمَ أَجْرُ ٱلْعَمِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,39,' وَتَرَى ٱلْمَلَٓئِكَةَ حَآفِّينَ مِنْ حَوْلِ ٱلْعَرْشِ يُسَبِّحُونَ بِحَمْدِ رَبِّهِمْ ۖ وَقُضِىَ بَيْنَهُم بِٱلْحَقِّ وَقِيلَ ٱلْحَمْدُ لِلَّهِ رَبِّ ٱلْعَلَمِينَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(40,40,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,40,' حمٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,40,' تَنزِيلُ ٱلْكِتَبِ مِنَ ٱللَّهِ ٱلْعَزِيزِ ٱلْعَلِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,40,' غَافِرِ ٱلذَّنۢبِ وَقَابِلِ ٱلتَّوْبِ شَدِيدِ ٱلْعِقَابِ ذِى ٱلطَّوْلِۖ لَآ إِلَهَ إِلَّا هُوَۖ إِلَيْهِ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,40,' مَا يُجَدِلُ فِىٓ ءَايَتِ ٱللَّهِ إِلَّا ٱلَّذِينَ كَفَرُوا۟ فَلَا يَغْرُرْكَ تَقَلُّبُهُمْ فِى ٱلْبِلَدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,40,' كَذَّبَتْ قَبْلَهُمْ قَوْمُ نُوحٍۢ وَٱلْأَحْزَابُ مِنۢ بَعْدِهِمْۖ وَهَمَّتْ كُلُّ أُمَّةٍۭ بِرَسُولِهِمْ لِيَأْخُذُوهُۖ وَجَدَلُوا۟ بِٱلْبَطِلِ لِيُدْحِضُوا۟ بِهِ ٱلْحَقَّ فَأَخَذْتُهُمْۖ فَكَيْفَ كَانَ عِقَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,40,' وَكَذَلِكَ حَقَّتْ كَلِمَتُ رَبِّكَ عَلَى ٱلَّذِينَ كَفَرُوٓا۟ أَنَّهُمْ أَصْحَبُ ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,40,' ٱلَّذِينَ يَحْمِلُونَ ٱلْعَرْشَ وَمَنْ حَوْلَهُۥ يُسَبِّحُونَ بِحَمْدِ رَبِّهِمْ وَيُؤْمِنُونَ بِهِۦ وَيَسْتَغْفِرُونَ لِلَّذِينَ ءَامَنُوا۟ رَبَّنَا وَسِعْتَ كُلَّ شَىْءٍۢ رَّحْمَةًۭ وَعِلْمًۭا فَٱغْفِرْ لِلَّذِينَ تَابُوا۟ وَٱتَّبَعُوا۟ سَبِيلَكَ وَقِهِمْ عَذَابَ ٱلْجَحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,40,' رَبَّنَا وَأَدْخِلْهُمْ جَنَّتِ عَدْنٍ ٱلَّتِى وَعَدتَّهُمْ وَمَن صَلَحَ مِنْ ءَابَآئِهِمْ وَأَزْوَجِهِمْ وَذُرِّيَّتِهِمْۚ إِنَّكَ أَنتَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,40,' وَقِهِمُ ٱلسَّيِّـَٔاتِۚ وَمَن تَقِ ٱلسَّيِّـَٔاتِ يَوْمَئِذٍۢ فَقَدْ رَحِمْتَهُۥۚ وَذَلِكَ هُوَ ٱلْفَوْزُ ٱلْعَظِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,40,' إِنَّ ٱلَّذِينَ كَفَرُوا۟ يُنَادَوْنَ لَمَقْتُ ٱللَّهِ أَكْبَرُ مِن مَّقْتِكُمْ أَنفُسَكُمْ إِذْ تُدْعَوْنَ إِلَى ٱلْإِيمَنِ فَتَكْفُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,40,' قَالُوا۟ رَبَّنَآ أَمَتَّنَا ٱثْنَتَيْنِ وَأَحْيَيْتَنَا ٱثْنَتَيْنِ فَٱعْتَرَفْنَا بِذُنُوبِنَا فَهَلْ إِلَىٰ خُرُوجٍۢ مِّن سَبِيلٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,40,' ذَلِكُم بِأَنَّهُۥٓ إِذَا دُعِىَ ٱللَّهُ وَحْدَهُۥ كَفَرْتُمْۖ وَإِن يُشْرَكْ بِهِۦ تُؤْمِنُوا۟ۚ فَٱلْحُكْمُ لِلَّهِ ٱلْعَلِىِّ ٱلْكَبِيرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,40,' هُوَ ٱلَّذِى يُرِيكُمْ ءَايَتِهِۦ وَيُنَزِّلُ لَكُم مِّنَ ٱلسَّمَآءِ رِزْقًۭاۚ وَمَا يَتَذَكَّرُ إِلَّا مَن يُنِيبُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,40,' فَٱدْعُوا۟ ٱللَّهَ مُخْلِصِينَ لَهُ ٱلدِّينَ وَلَوْ كَرِهَ ٱلْكَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,40,' رَفِيعُ ٱلدَّرَجَتِ ذُو ٱلْعَرْشِ يُلْقِى ٱلرُّوحَ مِنْ أَمْرِهِۦ عَلَىٰ مَن يَشَآءُ مِنْ عِبَادِهِۦ لِيُنذِرَ يَوْمَ ٱلتَّلَاقِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,40,' يَوْمَ هُم بَرِزُونَۖ لَا يَخْفَىٰ عَلَى ٱللَّهِ مِنْهُمْ شَىْءٌۭۚ لِّمَنِ ٱلْمُلْكُ ٱلْيَوْمَۖ لِلَّهِ ٱلْوَحِدِ ٱلْقَهَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,40,' ٱلْيَوْمَ تُجْزَىٰ كُلُّ نَفْسٍۭ بِمَا كَسَبَتْۚ لَا ظُلْمَ ٱلْيَوْمَۚ إِنَّ ٱللَّهَ سَرِيعُ ٱلْحِسَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,40,' وَأَنذِرْهُمْ يَوْمَ ٱلْءَازِفَةِ إِذِ ٱلْقُلُوبُ لَدَى ٱلْحَنَاجِرِ كَظِمِينَۚ مَا لِلظَّلِمِينَ مِنْ حَمِيمٍۢ وَلَا شَفِيعٍۢ يُطَاعُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,40,' يَعْلَمُ خَآئِنَةَ ٱلْأَعْيُنِ وَمَا تُخْفِى ٱلصُّدُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,40,' وَٱللَّهُ يَقْضِى بِٱلْحَقِّۖ وَٱلَّذِينَ يَدْعُونَ مِن دُونِهِۦ لَا يَقْضُونَ بِشَىْءٍۗ إِنَّ ٱللَّهَ هُوَ ٱلسَّمِيعُ ٱلْبَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,40,' أَوَلَمْ يَسِيرُوا۟ فِى ٱلْأَرْضِ فَيَنظُرُوا۟ كَيْفَ كَانَ عَقِبَةُ ٱلَّذِينَ كَانُوا۟ مِن قَبْلِهِمْۚ كَانُوا۟ هُمْ أَشَدَّ مِنْهُمْ قُوَّةًۭ وَءَاثَارًۭا فِى ٱلْأَرْضِ فَأَخَذَهُمُ ٱللَّهُ بِذُنُوبِهِمْ وَمَا كَانَ لَهُم مِّنَ ٱللَّهِ مِن وَاقٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,40,' ذَلِكَ بِأَنَّهُمْ كَانَت تَّأْتِيهِمْ رُسُلُهُم بِٱلْبَيِّنَتِ فَكَفَرُوا۟ فَأَخَذَهُمُ ٱللَّهُۚ إِنَّهُۥ قَوِىٌّۭ شَدِيدُ ٱلْعِقَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,40,' وَلَقَدْ أَرْسَلْنَا مُوسَىٰ بِـَٔايَتِنَا وَسُلْطَنٍۢ مُّبِينٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,40,' إِلَىٰ فِرْعَوْنَ وَهَمَنَ وَقَرُونَ فَقَالُوا۟ سَحِرٌۭ كَذَّابٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,40,' فَلَمَّا جَآءَهُم بِٱلْحَقِّ مِنْ عِندِنَا قَالُوا۟ ٱقْتُلُوٓا۟ أَبْنَآءَ ٱلَّذِينَ ءَامَنُوا۟ مَعَهُۥ وَٱسْتَحْيُوا۟ نِسَآءَهُمْۚ وَمَا كَيْدُ ٱلْكَفِرِينَ إِلَّا فِى ضَلَلٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,40,' وَقَالَ فِرْعَوْنُ ذَرُونِىٓ أَقْتُلْ مُوسَىٰ وَلْيَدْعُ رَبَّهُۥٓ ۖ إِنِّىٓ أَخَافُ أَن يُبَدِّلَ دِينَكُمْ أَوْ أَن يُظْهِرَ فِى ٱلْأَرْضِ ٱلْفَسَادَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,40,' وَقَالَ مُوسَىٰٓ إِنِّى عُذْتُ بِرَبِّى وَرَبِّكُم مِّن كُلِّ مُتَكَبِّرٍۢ لَّا يُؤْمِنُ بِيَوْمِ ٱلْحِسَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,40,' وَقَالَ رَجُلٌۭ مُّؤْمِنٌۭ مِّنْ ءَالِ فِرْعَوْنَ يَكْتُمُ إِيمَنَهُۥٓ أَتَقْتُلُونَ رَجُلًا أَن يَقُولَ رَبِّىَ ٱللَّهُ وَقَدْ جَآءَكُم بِٱلْبَيِّنَتِ مِن رَّبِّكُمْۖ وَإِن يَكُ كَذِبًۭا فَعَلَيْهِ كَذِبُهُۥۖ وَإِن يَكُ صَادِقًۭا يُصِبْكُم بَعْضُ ٱلَّذِى يَعِدُكُمْۖ إِنَّ ٱللَّهَ لَا يَهْدِى مَنْ هُوَ مُسْرِفٌۭ كَذَّابٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,40,' يَقَوْمِ لَكُمُ ٱلْمُلْكُ ٱلْيَوْمَ ظَهِرِينَ فِى ٱلْأَرْضِ فَمَن يَنصُرُنَا مِنۢ بَأْسِ ٱللَّهِ إِن جَآءَنَاۚ قَالَ فِرْعَوْنُ مَآ أُرِيكُمْ إِلَّا مَآ أَرَىٰ وَمَآ أَهْدِيكُمْ إِلَّا سَبِيلَ ٱلرَّشَادِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,40,' وَقَالَ ٱلَّذِىٓ ءَامَنَ يَقَوْمِ إِنِّىٓ أَخَافُ عَلَيْكُم مِّثْلَ يَوْمِ ٱلْأَحْزَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,40,' مِثْلَ دَأْبِ قَوْمِ نُوحٍۢ وَعَادٍۢ وَثَمُودَ وَٱلَّذِينَ مِنۢ بَعْدِهِمْۚ وَمَا ٱللَّهُ يُرِيدُ ظُلْمًۭا لِّلْعِبَادِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,40,' وَيَقَوْمِ إِنِّىٓ أَخَافُ عَلَيْكُمْ يَوْمَ ٱلتَّنَادِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,40,' يَوْمَ تُوَلُّونَ مُدْبِرِينَ مَا لَكُم مِّنَ ٱللَّهِ مِنْ عَاصِمٍۢۗ وَمَن يُضْلِلِ ٱللَّهُ فَمَا لَهُۥ مِنْ هَادٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,40,' وَلَقَدْ جَآءَكُمْ يُوسُفُ مِن قَبْلُ بِٱلْبَيِّنَتِ فَمَا زِلْتُمْ فِى شَكٍّۢ مِّمَّا جَآءَكُم بِهِۦۖ حَتَّىٰٓ إِذَا هَلَكَ قُلْتُمْ لَن يَبْعَثَ ٱللَّهُ مِنۢ بَعْدِهِۦ رَسُوۚلًۭا كَذَلِكَ يُضِلُّ ٱللَّهُ مَنْ هُوَ مُسْرِفٌۭ مُّرْتَابٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,40,' ٱلَّذِينَ يُجَدِلُونَ فِىٓ ءَايَتِ ٱللَّهِ بِغَيْرِ سُلْطَنٍ أَتَىٰهُمْۖ كَبُرَ مَقْتًا عِندَ ٱللَّهِ وَعِندَ ٱلَّذِينَ ءَامَنُوا۟ۚ كَذَلِكَ يَطْبَعُ ٱللَّهُ عَلَىٰ كُلِّ قَلْبِ مُتَكَبِّرٍۢ جَبَّارٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,40,' وَقَالَ فِرْعَوْنُ يَهَمَنُ ٱبْنِ لِى صَرْحًۭا لَّعَلِّىٓ أَبْلُغُ ٱلْأَسْبَبَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,40,' أَسْبَبَ ٱلسَّمَوَتِ فَأَطَّلِعَ إِلَىٰٓ إِلَهِ مُوسَىٰ وَإِنِّى لَأَظُنُّهُۥ كَذِبًۭاۚ وَكَذَلِكَ زُيِّنَ لِفِرْعَوْنَ سُوٓءُ عَمَلِهِۦ وَصُدَّ عَنِ ٱلسَّبِيلِۚ وَمَا كَيْدُ فِرْعَوْنَ إِلَّا فِى تَبَابٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,40,' وَقَالَ ٱلَّذِىٓ ءَامَنَ يَقَوْمِ ٱتَّبِعُونِ أَهْدِكُمْ سَبِيلَ ٱلرَّشَادِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,40,' يَقَوْمِ إِنَّمَا هَذِهِ ٱلْحَيَوٰةُ ٱلدُّنْيَا مَتَعٌۭ وَإِنَّ ٱلْءَاخِرَةَ هِىَ دَارُ ٱلْقَرَارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,40,' مَنْ عَمِلَ سَيِّئَةًۭ فَلَا يُجْزَىٰٓ إِلَّا مِثْلَهَاۖ وَمَنْ عَمِلَ صَلِحًۭا مِّن ذَكَرٍ أَوْ أُنثَىٰ وَهُوَ مُؤْمِنٌۭ فَأُو۟لَٓئِكَ يَدْخُلُونَ ٱلْجَنَّةَ يُرْزَقُونَ فِيهَا بِغَيْرِ حِسَابٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,40,' وَيَقَوْمِ مَا لِىٓ أَدْعُوكُمْ إِلَى ٱلنَّجَوٰةِ وَتَدْعُونَنِىٓ إِلَى ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,40,' تَدْعُونَنِى لِأَكْفُرَ بِٱللَّهِ وَأُشْرِكَ بِهِۦ مَا لَيْسَ لِى بِهِۦ عِلْمٌۭ وَأَنَا۠ أَدْعُوكُمْ إِلَى ٱلْعَزِيزِ ٱلْغَفَّرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,40,' لَا جَرَمَ أَنَّمَا تَدْعُونَنِىٓ إِلَيْهِ لَيْسَ لَهُۥ دَعْوَةٌۭ فِى ٱلدُّنْيَا وَلَا فِى ٱلْءَاخِرَةِ وَأَنَّ مَرَدَّنَآ إِلَى ٱللَّهِ وَأَنَّ ٱلْمُسْرِفِينَ هُمْ أَصْحَبُ ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,40,' فَسَتَذْكُرُونَ مَآ أَقُولُ لَكُمْۚ وَأُفَوِّضُ أَمْرِىٓ إِلَى ٱللَّهِۚ إِنَّ ٱللَّهَ بَصِيرٌۢ بِٱلْعِبَادِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,40,' فَوَقَىٰهُ ٱللَّهُ سَيِّـَٔاتِ مَا مَكَرُوا۟ۖ وَحَاقَ بِـَٔالِ فِرْعَوْنَ سُوٓءُ ٱلْعَذَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,40,' ٱلنَّارُ يُعْرَضُونَ عَلَيْهَا غُدُوًّۭا وَعَشِيًّۭاۖ وَيَوْمَ تَقُومُ ٱلسَّاعَةُ أَدْخِلُوٓا۟ ءَالَ فِرْعَوْنَ أَشَدَّ ٱلْعَذَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,40,' وَإِذْ يَتَحَآجُّونَ فِى ٱلنَّارِ فَيَقُولُ ٱلضُّعَفَٓؤُا۟ لِلَّذِينَ ٱسْتَكْبَرُوٓا۟ إِنَّا كُنَّا لَكُمْ تَبَعًۭا فَهَلْ أَنتُم مُّغْنُونَ عَنَّا نَصِيبًۭا مِّنَ ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,40,' قَالَ ٱلَّذِينَ ٱسْتَكْبَرُوٓا۟ إِنَّا كُلٌّۭ فِيهَآ إِنَّ ٱللَّهَ قَدْ حَكَمَ بَيْنَ ٱلْعِبَادِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,40,' وَقَالَ ٱلَّذِينَ فِى ٱلنَّارِ لِخَزَنَةِ جَهَنَّمَ ٱدْعُوا۟ رَبَّكُمْ يُخَفِّفْ عَنَّا يَوْمًۭا مِّنَ ٱلْعَذَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,40,' قَالُوٓا۟ أَوَلَمْ تَكُ تَأْتِيكُمْ رُسُلُكُم بِٱلْبَيِّنَتِۖ قَالُوا۟ بَلَىٰۚ قَالُوا۟ فَٱدْعُوا۟ۗ وَمَا دُعَٓؤُا۟ ٱلْكَفِرِينَ إِلَّا فِى ضَلَلٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,40,' إِنَّا لَنَنصُرُ رُسُلَنَا وَٱلَّذِينَ ءَامَنُوا۟ فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا وَيَوْمَ يَقُومُ ٱلْأَشْهَدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,40,' يَوْمَ لَا يَنفَعُ ٱلظَّلِمِينَ مَعْذِرَتُهُمْۖ وَلَهُمُ ٱللَّعْنَةُ وَلَهُمْ سُوٓءُ ٱلدَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,40,' وَلَقَدْ ءَاتَيْنَا مُوسَى ٱلْهُدَىٰ وَأَوْرَثْنَا بَنِىٓ إِسْرَٓءِيلَ ٱلْكِتَبَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,40,' هُدًۭى وَذِكْرَىٰ لِأُو۟لِى ٱلْأَلْبَبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,40,' فَٱصْبِرْ إِنَّ وَعْدَ ٱللَّهِ حَقٌّۭ وَٱسْتَغْفِرْ لِذَنۢبِكَ وَسَبِّحْ بِحَمْدِ رَبِّكَ بِٱلْعَشِىِّ وَٱلْإِبْكَرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,40,' إِنَّ ٱلَّذِينَ يُجَدِلُونَ فِىٓ ءَايَتِ ٱللَّهِ بِغَيْرِ سُلْطَنٍ أَتَىٰهُمْۙ إِن فِى صُدُورِهِمْ إِلَّا كِبْرٌۭ مَّا هُم بِبَلِغِيهِۚ فَٱسْتَعِذْ بِٱللَّهِۖ إِنَّهُۥ هُوَ ٱلسَّمِيعُ ٱلْبَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,40,' لَخَلْقُ ٱلسَّمَوَتِ وَٱلْأَرْضِ أَكْبَرُ مِنْ خَلْقِ ٱلنَّاسِ وَلَكِنَّ أَكْثَرَ ٱلنَّاسِ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,40,' وَمَا يَسْتَوِى ٱلْأَعْمَىٰ وَٱلْبَصِيرُ وَٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ وَلَا ٱلْمُسِىٓءُۚ قَلِيلًۭا مَّا تَتَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,40,' إِنَّ ٱلسَّاعَةَ لَءَاتِيَةٌۭ لَّا رَيْبَ فِيهَا وَلَكِنَّ أَكْثَرَ ٱلنَّاسِ لَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,40,' وَقَالَ رَبُّكُمُ ٱدْعُونِىٓ أَسْتَجِبْ لَكُمْۚ إِنَّ ٱلَّذِينَ يَسْتَكْبِرُونَ عَنْ عِبَادَتِى سَيَدْخُلُونَ جَهَنَّمَ دَاخِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,40,' ٱللَّهُ ٱلَّذِى جَعَلَ لَكُمُ ٱلَّيْلَ لِتَسْكُنُوا۟ فِيهِ وَٱلنَّهَارَ مُبْصِرًاۚ إِنَّ ٱللَّهَ لَذُو فَضْلٍ عَلَى ٱلنَّاسِ وَلَكِنَّ أَكْثَرَ ٱلنَّاسِ لَا يَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,40,' ذَلِكُمُ ٱللَّهُ رَبُّكُمْ خَلِقُ كُلِّ شَىْءٍۢ لَّآ إِلَهَ إِلَّا هُوَۖ فَأَنَّىٰ تُؤْفَكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,40,' كَذَلِكَ يُؤْفَكُ ٱلَّذِينَ كَانُوا۟ بِـَٔايَتِ ٱللَّهِ يَجْحَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,40,' ٱللَّهُ ٱلَّذِى جَعَلَ لَكُمُ ٱلْأَرْضَ قَرَارًۭا وَٱلسَّمَآءَ بِنَآءًۭ وَصَوَّرَكُمْ فَأَحْسَنَ صُوَرَكُمْ وَرَزَقَكُم مِّنَ ٱلطَّيِّبَتِۚ ذَلِكُمُ ٱللَّهُ رَبُّكُمْۖ فَتَبَارَكَ ٱللَّهُ رَبُّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,40,' هُوَ ٱلْحَىُّ لَآ إِلَهَ إِلَّا هُوَ فَٱدْعُوهُ مُخْلِصِينَ لَهُ ٱلدِّينَۗ ٱلْحَمْدُ لِلَّهِ رَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,40,' قُلْ إِنِّى نُهِيتُ أَنْ أَعْبُدَ ٱلَّذِينَ تَدْعُونَ مِن دُونِ ٱللَّهِ لَمَّا جَآءَنِىَ ٱلْبَيِّنَتُ مِن رَّبِّى وَأُمِرْتُ أَنْ أُسْلِمَ لِرَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,40,' هُوَ ٱلَّذِى خَلَقَكُم مِّن تُرَابٍۢ ثُمَّ مِن نُّطْفَةٍۢ ثُمَّ مِنْ عَلَقَةٍۢ ثُمَّ يُخْرِجُكُمْ طِفْلًۭا ثُمَّ لِتَبْلُغُوٓا۟ أَشُدَّكُمْ ثُمَّ لِتَكُونُوا۟ شُيُوخًۭاۚ وَمِنكُم مَّن يُتَوَفَّىٰ مِن قَبْلُۖ وَلِتَبْلُغُوٓا۟ أَجَلًۭا مُّسَمًّۭى وَلَعَلَّكُمْ تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,40,' هُوَ ٱلَّذِى يُحْىِۦ وَيُمِيتُۖ فَإِذَا قَضَىٰٓ أَمْرًۭا فَإِنَّمَا يَقُولُ لَهُۥ كُن فَيَكُونُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,40,' أَلَمْ تَرَ إِلَى ٱلَّذِينَ يُجَدِلُونَ فِىٓ ءَايَتِ ٱللَّهِ أَنَّىٰ يُصْرَفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,40,' ٱلَّذِينَ كَذَّبُوا۟ بِٱلْكِتَبِ وَبِمَآ أَرْسَلْنَا بِهِۦ رُسُلَنَاۖ فَسَوْفَ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,40,' إِذِ ٱلْأَغْلَلُ فِىٓ أَعْنَقِهِمْ وَٱلسَّلَسِلُ يُسْحَبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,40,' فِى ٱلْحَمِيمِ ثُمَّ فِى ٱلنَّارِ يُسْجَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,40,' ثُمَّ قِيلَ لَهُمْ أَيْنَ مَا كُنتُمْ تُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,40,' مِن دُونِ ٱللَّهِۖ قَالُوا۟ ضَلُّوا۟ عَنَّا بَل لَّمْ نَكُن نَّدْعُوا۟ مِن قَبْلُ شَيْـًۭٔاۚ كَذَلِكَ يُضِلُّ ٱللَّهُ ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,40,' ذَلِكُم بِمَا كُنتُمْ تَفْرَحُونَ فِى ٱلْأَرْضِ بِغَيْرِ ٱلْحَقِّ وَبِمَا كُنتُمْ تَمْرَحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,40,' ٱدْخُلُوٓا۟ أَبْوَبَ جَهَنَّمَ خَلِدِينَ فِيهَاۖ فَبِئْسَ مَثْوَى ٱلْمُتَكَبِّرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,40,' فَٱصْبِرْ إِنَّ وَعْدَ ٱللَّهِ حَۚقٌّۭ فَإِمَّا نُرِيَنَّكَ بَعْضَ ٱلَّذِى نَعِدُهُمْ أَوْ نَتَوَفَّيَنَّكَ فَإِلَيْنَا يُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,40,' وَلَقَدْ أَرْسَلْنَا رُسُلًۭا مِّن قَبْلِكَ مِنْهُم مَّن قَصَصْنَا عَلَيْكَ وَمِنْهُم مَّن لَّمْ نَقْصُصْ عَلَيْكَۗ وَمَا كَانَ لِرَسُولٍ أَن يَأْتِىَ بِـَٔايَةٍ إِلَّا بِإِذْنِ ٱللَّهِۚ فَإِذَا جَآءَ أَمْرُ ٱللَّهِ قُضِىَ بِٱلْحَقِّ وَخَسِرَ هُنَالِكَ ٱلْمُبْطِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,40,' ٱللَّهُ ٱلَّذِى جَعَلَ لَكُمُ ٱلْأَنْعَمَ لِتَرْكَبُوا۟ مِنْهَا وَمِنْهَا تَأْكُلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,40,' وَلَكُمْ فِيهَا مَنَفِعُ وَلِتَبْلُغُوا۟ عَلَيْهَا حَاجَةًۭ فِى صُدُورِكُمْ وَعَلَيْهَا وَعَلَى ٱلْفُلْكِ تُحْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,40,' وَيُرِيكُمْ ءَايَتِهِۦ فَأَىَّ ءَايَتِ ٱللَّهِ تُنكِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,40,' أَفَلَمْ يَسِيرُوا۟ فِى ٱلْأَرْضِ فَيَنظُرُوا۟ كَيْفَ كَانَ عَقِبَةُ ٱلَّذِينَ مِن قَبْلِهِمْۚ كَانُوٓا۟ أَكْثَرَ مِنْهُمْ وَأَشَدَّ قُوَّةًۭ وَءَاثَارًۭا فِى ٱلْأَرْضِ فَمَآ أَغْنَىٰ عَنْهُم مَّا كَانُوا۟ يَكْسِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,40,' فَلَمَّا جَآءَتْهُمْ رُسُلُهُم بِٱلْبَيِّنَتِ فَرِحُوا۟ بِمَا عِندَهُم مِّنَ ٱلْعِلْمِ وَحَاقَ بِهِم مَّا كَانُوا۟ بِهِۦ يَسْتَهْزِءُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,40,' فَلَمَّا رَأَوْا۟ بَأْسَنَا قَالُوٓا۟ ءَامَنَّا بِٱللَّهِ وَحْدَهُۥ وَكَفَرْنَا بِمَا كُنَّا بِهِۦ مُشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,40,' فَلَمْ يَكُ يَنفَعُهُمْ إِيمَنُهُمْ لَمَّا رَأَوْا۟ بَأْسَنَاۖ سُنَّتَ ٱللَّهِ ٱلَّتِى قَدْ خَلَتْ فِى عِبَادِهِۖۦ وَخَسِرَ هُنَالِكَ ٱلْكَفِرُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(41,41,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,41,' حمٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,41,' تَنزِيلٌۭ مِّنَ ٱلرَّحْمَنِ ٱلرَّحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,41,' كِتَبٌۭ فُصِّلَتْ ءَايَتُهُۥ قُرْءَانًا عَرَبِيًّۭا لِّقَوْمٍۢ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,41,' بَشِيرًۭا وَنَذِيرًۭا فَأَعْرَضَ أَكْثَرُهُمْ فَهُمْ لَا يَسْمَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,41,' وَقَالُوا۟ قُلُوبُنَا فِىٓ أَكِنَّةٍۢ مِّمَّا تَدْعُونَآ إِلَيْهِ وَفِىٓ ءَاذَانِنَا وَقْرٌۭ وَمِنۢ بَيْنِنَا وَبَيْنِكَ حِجَابٌۭ فَٱعْمَلْ إِنَّنَا عَمِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,41,' قُلْ إِنَّمَآ أَنَا۠ بَشَرٌۭ مِّثْلُكُمْ يُوحَىٰٓ إِلَىَّ أَنَّمَآ إِلَهُكُمْ إِلَهٌۭ وَحِدٌۭ فَٱسْتَقِيمُوٓا۟ إِلَيْهِ وَٱسْتَغْفِرُوهُ ۗ وَوَيْلٌۭ لِّلْمُشْرِكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,41,' ٱلَّذِينَ لَا يُؤْتُونَ ٱلزَّكَوٰةَ وَهُم بِٱلْءَاخِرَةِ هُمْ كَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,41,' إِنَّ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ لَهُمْ أَجْرٌ غَيْرُ مَمْنُونٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,41,' قُلْ أَئِنَّكُمْ لَتَكْفُرُونَ بِٱلَّذِى خَلَقَ ٱلْأَرْضَ فِى يَوْمَيْنِ وَتَجْعَلُونَ لَهُۥٓ أَندَادًۭا ۚ ذَلِكَ رَبُّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,41,' وَجَعَلَ فِيهَا رَوَسِىَ مِن فَوْقِهَا وَبَرَكَ فِيهَا وَقَدَّرَ فِيهَآ أَقْوَتَهَا فِىٓ أَرْبَعَةِ أَيَّامٍۢ سَوَآءًۭ لِّلسَّآئِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,41,' ثُمَّ ٱسْتَوَىٰٓ إِلَى ٱلسَّمَآءِ وَهِىَ دُخَانٌۭ فَقَالَ لَهَا وَلِلْأَرْضِ ٱئْتِيَا طَوْعًا أَوْ كَرْهًۭا قَالَتَآ أَتَيْنَا طَآئِعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,41,' فَقَضَىٰهُنَّ سَبْعَ سَمَوَاتٍۢ فِى يَوْمَيْنِ وَأَوْحَىٰ فِى كُلِّ سَمَآءٍ أَمْرَهَا ۚ وَزَيَّنَّا ٱلسَّمَآءَ ٱلدُّنْيَا بِمَصَبِيحَ وَحِفْظًۭا ۚ ذَلِكَ تَقْدِيرُ ٱلْعَزِيزِ ٱلْعَلِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,41,' فَإِنْ أَعْرَضُوا۟ فَقُلْ أَنذَرْتُكُمْ صَعِقَةًۭ مِّثْلَ صَعِقَةِ عَادٍۢ وَثَمُودَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,41,' إِذْ جَآءَتْهُمُ ٱلرُّسُلُ مِنۢ بَيْنِ أَيْدِيهِمْ وَمِنْ خَلْفِهِمْ أَلَّا تَعْبُدُوٓا۟ إِلَّا ٱللَّهَ ۖ قَالُوا۟ لَوْ شَآءَ رَبُّنَا لَأَنزَلَ مَلَٓئِكَةًۭ فَإِنَّا بِمَآ أُرْسِلْتُم بِهِۦ كَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,41,' فَأَمَّا عَادٌۭ فَٱسْتَكْبَرُوا۟ فِى ٱلْأَرْضِ بِغَيْرِ ٱلْحَقِّ وَقَالُوا۟ مَنْ أَشَدُّ مِنَّا قُوَّةً ۖ أَوَلَمْ يَرَوْا۟ أَنَّ ٱللَّهَ ٱلَّذِى خَلَقَهُمْ هُوَ أَشَدُّ مِنْهُمْ قُوَّةًۭ ۖ وَكَانُوا۟ بِـَٔايَتِنَا يَجْحَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,41,' فَأَرْسَلْنَا عَلَيْهِمْ رِيحًۭا صَرْصَرًۭا فِىٓ أَيَّامٍۢ نَّحِسَاتٍۢ لِّنُذِيقَهُمْ عَذَابَ ٱلْخِزْىِ فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا ۖ وَلَعَذَابُ ٱلْءَاخِرَةِ أَخْزَىٰ ۖ وَهُمْ لَا يُنصَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,41,' وَأَمَّا ثَمُودُ فَهَدَيْنَهُمْ فَٱسْتَحَبُّوا۟ ٱلْعَمَىٰ عَلَى ٱلْهُدَىٰ فَأَخَذَتْهُمْ صَعِقَةُ ٱلْعَذَابِ ٱلْهُونِ بِمَا كَانُوا۟ يَكْسِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,41,' وَنَجَّيْنَا ٱلَّذِينَ ءَامَنُوا۟ وَكَانُوا۟ يَتَّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,41,' وَيَوْمَ يُحْشَرُ أَعْدَآءُ ٱللَّهِ إِلَى ٱلنَّارِ فَهُمْ يُوزَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,41,' حَتَّىٰٓ إِذَا مَا جَآءُوهَا شَهِدَ عَلَيْهِمْ سَمْعُهُمْ وَأَبْصَرُهُمْ وَجُلُودُهُم بِمَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,41,' وَقَالُوا۟ لِجُلُودِهِمْ لِمَ شَهِدتُّمْ عَلَيْنَا ۖ قَالُوٓا۟ أَنطَقَنَا ٱللَّهُ ٱلَّذِىٓ أَنطَقَ كُلَّ شَىْءٍۢ وَهُوَ خَلَقَكُمْ أَوَّلَ مَرَّةٍۢ وَإِلَيْهِ تُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,41,' وَمَا كُنتُمْ تَسْتَتِرُونَ أَن يَشْهَدَ عَلَيْكُمْ سَمْعُكُمْ وَلَآ أَبْصَرُكُمْ وَلَا جُلُودُكُمْ وَلَكِن ظَنَنتُمْ أَنَّ ٱللَّهَ لَا يَعْلَمُ كَثِيرًۭا مِّمَّا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,41,' وَذَلِكُمْ ظَنُّكُمُ ٱلَّذِى ظَنَنتُم بِرَبِّكُمْ أَرْدَىٰكُمْ فَأَصْبَحْتُم مِّنَ ٱلْخَسِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,41,' فَإِن يَصْبِرُوا۟ فَٱلنَّارُ مَثْوًۭى لَّهُمْ ۖ وَإِن يَسْتَعْتِبُوا۟ فَمَا هُم مِّنَ ٱلْمُعْتَبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,41,' وَقَيَّضْنَا لَهُمْ قُرَنَآءَ فَزَيَّنُوا۟ لَهُم مَّا بَيْنَ أَيْدِيهِمْ وَمَا خَلْفَهُمْ وَحَقَّ عَلَيْهِمُ ٱلْقَوْلُ فِىٓ أُمَمٍۢ قَدْ خَلَتْ مِن قَبْلِهِم مِّنَ ٱلْجِنِّ وَٱلْإِنسِ ۖ إِنَّهُمْ كَانُوا۟ خَسِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,41,' وَقَالَ ٱلَّذِينَ كَفَرُوا۟ لَا تَسْمَعُوا۟ لِهَذَا ٱلْقُرْءَانِ وَٱلْغَوْا۟ فِيهِ لَعَلَّكُمْ تَغْلِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,41,' فَلَنُذِيقَنَّ ٱلَّذِينَ كَفَرُوا۟ عَذَابًۭا شَدِيدًۭا وَلَنَجْزِيَنَّهُمْ أَسْوَأَ ٱلَّذِى كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,41,' ذَلِكَ جَزَآءُ أَعْدَآءِ ٱللَّهِ ٱلنَّارُ ۖ لَهُمْ فِيهَا دَارُ ٱلْخُلْدِ ۖ جَزَآءًۢ بِمَا كَانُوا۟ بِـَٔايَتِنَا يَجْحَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,41,' وَقَالَ ٱلَّذِينَ كَفَرُوا۟ رَبَّنَآ أَرِنَا ٱلَّذَيْنِ أَضَلَّانَا مِنَ ٱلْجِنِّ وَٱلْإِنسِ نَجْعَلْهُمَا تَحْتَ أَقْدَامِنَا لِيَكُونَا مِنَ ٱلْأَسْفَلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,41,' إِنَّ ٱلَّذِينَ قَالُوا۟ رَبُّنَا ٱللَّهُ ثُمَّ ٱسْتَقَمُوا۟ تَتَنَزَّلُ عَلَيْهِمُ ٱلْمَلَٓئِكَةُ أَلَّا تَخَافُوا۟ وَلَا تَحْزَنُوا۟ وَأَبْشِرُوا۟ بِٱلْجَنَّةِ ٱلَّتِى كُنتُمْ تُوعَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,41,' نَحْنُ أَوْلِيَآؤُكُمْ فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا وَفِى ٱلْءَاخِرَةِ ۖ وَلَكُمْ فِيهَا مَا تَشْتَهِىٓ أَنفُسُكُمْ وَلَكُمْ فِيهَا مَا تَدَّعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,41,' نُزُلًۭا مِّنْ غَفُورٍۢ رَّحِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,41,' وَمَنْ أَحْسَنُ قَوْلًۭا مِّمَّن دَعَآ إِلَى ٱللَّهِ وَعَمِلَ صَلِحًۭا وَقَالَ إِنَّنِى مِنَ ٱلْمُسْلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,41,' وَلَا تَسْتَوِى ٱلْحَسَنَةُ وَلَا ٱلسَّيِّئَةُ ۚ ٱدْفَعْ بِٱلَّتِى هِىَ أَحْسَنُ فَإِذَا ٱلَّذِى بَيْنَكَ وَبَيْنَهُۥ عَدَوَةٌۭ كَأَنَّهُۥ وَلِىٌّ حَمِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,41,' وَمَا يُلَقَّىٰهَآ إِلَّا ٱلَّذِينَ صَبَرُوا۟ وَمَا يُلَقَّىٰهَآ إِلَّا ذُو حَظٍّ عَظِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,41,' وَإِمَّا يَنزَغَنَّكَ مِنَ ٱلشَّيْطَنِ نَزْغٌۭ فَٱسْتَعِذْ بِٱللَّهِ ۖ إِنَّهُۥ هُوَ ٱلسَّمِيعُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,41,' وَمِنْ ءَايَتِهِ ٱلَّيْلُ وَٱلنَّهَارُ وَٱلشَّمْسُ وَٱلْقَمَرُ ۚ لَا تَسْجُدُوا۟ لِلشَّمْسِ وَلَا لِلْقَمَرِ وَٱسْجُدُوا۟ لِلَّهِ ٱلَّذِى خَلَقَهُنَّ إِن كُنتُمْ إِيَّاهُ تَعْبُدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,41,' فَإِنِ ٱسْتَكْبَرُوا۟ فَٱلَّذِينَ عِندَ رَبِّكَ يُسَبِّحُونَ لَهُۥ بِٱلَّيْلِ وَٱلنَّهَارِ وَهُمْ لَا يَسْـَٔمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,41,' وَمِنْ ءَايَتِهِۦٓ أَنَّكَ تَرَى ٱلْأَرْضَ خَشِعَةًۭ فَإِذَآ أَنزَلْنَا عَلَيْهَا ٱلْمَآءَ ٱهْتَزَّتْ وَرَبَتْ ۚ إِنَّ ٱلَّذِىٓ أَحْيَاهَا لَمُحْىِ ٱلْمَوْتَىٰٓ ۚ إِنَّهُۥ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,41,' إِنَّ ٱلَّذِينَ يُلْحِدُونَ فِىٓ ءَايَتِنَا لَا يَخْفَوْنَ عَلَيْنَآ ۗ أَفَمَن يُلْقَىٰ فِى ٱلنَّارِ خَيْرٌ أَم مَّن يَأْتِىٓ ءَامِنًۭا يَوْمَ ٱلْقِيَمَةِ ۚ ٱعْمَلُوا۟ مَا شِئْتُمْ ۖ إِنَّهُۥ بِمَا تَعْمَلُونَ بَصِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,41,' إِنَّ ٱلَّذِينَ كَفَرُوا۟ بِٱلذِّكْرِ لَمَّا جَآءَهُمْ ۖ وَإِنَّهُۥ لَكِتَبٌ عَزِيزٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,41,' لَّا يَأْتِيهِ ٱلْبَطِلُ مِنۢ بَيْنِ يَدَيْهِ وَلَا مِنْ خَلْفِهِۦ ۖ تَنزِيلٌۭ مِّنْ حَكِيمٍ حَمِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,41,' مَّا يُقَالُ لَكَ إِلَّا مَا قَدْ قِيلَ لِلرُّسُلِ مِن قَبْلِكَ ۚ إِنَّ رَبَّكَ لَذُو مَغْفِرَةٍۢ وَذُو عِقَابٍ أَلِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,41,' وَلَوْ جَعَلْنَهُ قُرْءَانًا أَعْجَمِيًّۭا لَّقَالُوا۟ لَوْلَا فُصِّلَتْ ءَايَتُهُۥٓ ۖ ءَا۬عْجَمِىٌّۭ وَعَرَبِىٌّۭ ۗ قُلْ هُوَ لِلَّذِينَ ءَامَنُوا۟ هُدًۭى وَشِفَآءٌۭ ۖ وَٱلَّذِينَ لَا يُؤْمِنُونَ فِىٓ ءَاذَانِهِمْ وَقْرٌۭ وَهُوَ عَلَيْهِمْ عَمًى ۚ أُو۟لَٓئِكَ يُنَادَوْنَ مِن مَّكَانٍۭ بَعِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,41,' وَلَقَدْ ءَاتَيْنَا مُوسَى ٱلْكِتَبَ فَٱخْتُلِفَ فِيهِ ۗ وَلَوْلَا كَلِمَةٌۭ سَبَقَتْ مِن رَّبِّكَ لَقُضِىَ بَيْنَهُمْ ۚ وَإِنَّهُمْ لَفِى شَكٍّۢ مِّنْهُ مُرِيبٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,41,' مَّنْ عَمِلَ صَلِحًۭا فَلِنَفْسِهِۦ ۖ وَمَنْ أَسَآءَ فَعَلَيْهَا ۗ وَمَا رَبُّكَ بِظَلَّمٍۢ لِّلْعَبِيدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,41,' إِلَيْهِ يُرَدُّ عِلْمُ ٱلسَّاعَةِ ۚ وَمَا تَخْرُجُ مِن ثَمَرَتٍۢ مِّنْ أَكْمَامِهَا وَمَا تَحْمِلُ مِنْ أُنثَىٰ وَلَا تَضَعُ إِلَّا بِعِلْمِهِۦ ۚ وَيَوْمَ يُنَادِيهِمْ أَيْنَ شُرَكَآءِى قَالُوٓا۟ ءَاذَنَّكَ مَا مِنَّا مِن شَهِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,41,' وَضَلَّ عَنْهُم مَّا كَانُوا۟ يَدْعُونَ مِن قَبْلُ ۖ وَظَنُّوا۟ مَا لَهُم مِّن مَّحِيصٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,41,' لَّا يَسْـَٔمُ ٱلْإِنسَنُ مِن دُعَآءِ ٱلْخَيْرِ وَإِن مَّسَّهُ ٱلشَّرُّ فَيَـُٔوسٌۭ قَنُوطٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,41,' وَلَىِٕنْ أَذَقْنَهُ رَحْمَةًۭ مِّنَّا مِنۢ بَعْدِ ضَرَّآءَ مَسَّتْهُ لَيَقُولَنَّ هَذَا لِى وَمَآ أَظُنُّ ٱلسَّاعَةَ قَآئِمَةًۭ وَلَىِٕن رُّجِعْتُ إِلَىٰ رَبِّىٓ إِنَّ لِى عِندَهُۥ لَلْحُسْنَىٰ ۚ فَلَنُنَبِّئَنَّ ٱلَّذِينَ كَفَرُوا۟ بِمَا عَمِلُوا۟ وَلَنُذِيقَنَّهُم مِّنْ عَذَابٍ غَلِيظٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,41,' وَإِذَآ أَنْعَمْنَا عَلَى ٱلْإِنسَنِ أَعْرَضَ وَنَـَٔا بِجَانِبِهِۦ وَإِذَا مَسَّهُ ٱلشَّرُّ فَذُو دُعَآءٍ عَرِيضٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,41,' قُلْ أَرَءَيْتُمْ إِن كَانَ مِنْ عِندِ ٱللَّهِ ثُمَّ كَفَرْتُم بِهِۦ مَنْ أَضَلُّ مِمَّنْ هُوَ فِى شِقَاقٍۭ بَعِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,41,' سَنُرِيهِمْ ءَايَتِنَا فِى ٱلْءَافَاقِ وَفِىٓ أَنفُسِهِمْ حَتَّىٰ يَتَبَيَّنَ لَهُمْ أَنَّهُ ٱلْحَقُّ ۗ أَوَلَمْ يَكْفِ بِرَبِّكَ أَنَّهُۥ عَلَىٰ كُلِّ شَىْءٍۢ شَهِيدٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,41,' أَلَآ إِنَّهُمْ فِى مِرْيَةٍۢ مِّن لِّقَآءِ رَبِّهِمْ ۗ أَلَآ إِنَّهُۥ بِكُلِّ شَىْءٍۢ مُّحِيطٌۢ');
+INSERT INTO chapters (id, number, quran_id) VALUES(42,42,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,42,' حمٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,42,' عٓسٓقٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,42,' كَذَلِكَ يُوحِىٓ إِلَيْكَ وَإِلَى ٱلَّذِينَ مِن قَبْلِكَ ٱللَّهُ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,42,' لَهُۥ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۖ وَهُوَ ٱلْعَلِىُّ ٱلْعَظِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,42,' تَكَادُ ٱلسَّمَوَتُ يَتَفَطَّرْنَ مِن فَوْقِهِنَّ ۚ وَٱلْمَلَٓئِكَةُ يُسَبِّحُونَ بِحَمْدِ رَبِّهِمْ وَيَسْتَغْفِرُونَ لِمَن فِى ٱلْأَرْضِ ۗ أَلَآ إِنَّ ٱللَّهَ هُوَ ٱلْغَفُورُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,42,' وَٱلَّذِينَ ٱتَّخَذُوا۟ مِن دُونِهِۦٓ أَوْلِيَآءَ ٱللَّهُ حَفِيظٌ عَلَيْهِمْ وَمَآ أَنتَ عَلَيْهِم بِوَكِيلٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,42,' وَكَذَلِكَ أَوْحَيْنَآ إِلَيْكَ قُرْءَانًا عَرَبِيًّۭا لِّتُنذِرَ أُمَّ ٱلْقُرَىٰ وَمَنْ حَوْلَهَا وَتُنذِرَ يَوْمَ ٱلْجَمْعِ لَا رَيْبَ فِيهِ ۚ فَرِيقٌۭ فِى ٱلْجَنَّةِ وَفَرِيقٌۭ فِى ٱلسَّعِيرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,42,' وَلَوْ شَآءَ ٱللَّهُ لَجَعَلَهُمْ أُمَّةًۭ وَحِدَةًۭ وَلَكِن يُدْخِلُ مَن يَشَآءُ فِى رَحْمَتِهِۦ ۚ وَٱلظَّلِمُونَ مَا لَهُم مِّن وَلِىٍّۢ وَلَا نَصِيرٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,42,' أَمِ ٱتَّخَذُوا۟ مِن دُونِهِۦٓ أَوْلِيَآءَ ۖ فَٱللَّهُ هُوَ ٱلْوَلِىُّ وَهُوَ يُحْىِ ٱلْمَوْتَىٰ وَهُوَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,42,' وَمَا ٱخْتَلَفْتُمْ فِيهِ مِن شَىْءٍۢ فَحُكْمُهُۥٓ إِلَى ٱللَّهِ ۚ ذَلِكُمُ ٱللَّهُ رَبِّى عَلَيْهِ تَوَكَّلْتُ وَإِلَيْهِ أُنِيبُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,42,' فَاطِرُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ جَعَلَ لَكُم مِّنْ أَنفُسِكُمْ أَزْوَجًۭا وَمِنَ ٱلْأَنْعَمِ أَزْوَجًۭا ۖ يَذْرَؤُكُمْ فِيهِ ۚ لَيْسَ كَمِثْلِهِۦ شَىْءٌۭ ۖ وَهُوَ ٱلسَّمِيعُ ٱلْبَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,42,' لَهُۥ مَقَالِيدُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۖ يَبْسُطُ ٱلرِّزْقَ لِمَن يَشَآءُ وَيَقْدِرُ ۚ إِنَّهُۥ بِكُلِّ شَىْءٍ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,42,' شَرَعَ لَكُم مِّنَ ٱلدِّينِ مَا وَصَّىٰ بِهِۦ نُوحًۭا وَٱلَّذِىٓ أَوْحَيْنَآ إِلَيْكَ وَمَا وَصَّيْنَا بِهِۦٓ إِبْرَهِيمَ وَمُوسَىٰ وَعِيسَىٰٓ ۖ أَنْ أَقِيمُوا۟ ٱلدِّينَ وَلَا تَتَفَرَّقُوا۟ فِيهِ ۚ كَبُرَ عَلَى ٱلْمُشْرِكِينَ مَا تَدْعُوهُمْ إِلَيْهِ ۚ ٱللَّهُ يَجْتَبِىٓ إِلَيْهِ مَن يَشَآءُ وَيَهْدِىٓ إِلَيْهِ مَن يُنِيبُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,42,' وَمَا تَفَرَّقُوٓا۟ إِلَّا مِنۢ بَعْدِ مَا جَآءَهُمُ ٱلْعِلْمُ بَغْيًۢا بَيْنَهُمْ ۚ وَلَوْلَا كَلِمَةٌۭ سَبَقَتْ مِن رَّبِّكَ إِلَىٰٓ أَجَلٍۢ مُّسَمًّۭى لَّقُضِىَ بَيْنَهُمْ ۚ وَإِنَّ ٱلَّذِينَ أُورِثُوا۟ ٱلْكِتَبَ مِنۢ بَعْدِهِمْ لَفِى شَكٍّۢ مِّنْهُ مُرِيبٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,42,' فَلِذَلِكَ فَٱدْعُ ۖ وَٱسْتَقِمْ كَمَآ أُمِرْتَ ۖ وَلَا تَتَّبِعْ أَهْوَآءَهُمْ ۖ وَقُلْ ءَامَنتُ بِمَآ أَنزَلَ ٱللَّهُ مِن كِتَبٍۢ ۖ وَأُمِرْتُ لِأَعْدِلَ بَيْنَكُمُ ۖ ٱللَّهُ رَبُّنَا وَرَبُّكُمْ ۖ لَنَآ أَعْمَلُنَا وَلَكُمْ أَعْمَلُكُمْ ۖ لَا حُجَّةَ بَيْنَنَا وَبَيْنَكُمُ ۖ ٱللَّهُ يَجْمَعُ بَيْنَنَا ۖ وَإِلَيْهِ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,42,' وَٱلَّذِينَ يُحَآجُّونَ فِى ٱللَّهِ مِنۢ بَعْدِ مَا ٱسْتُجِيبَ لَهُۥ حُجَّتُهُمْ دَاحِضَةٌ عِندَ رَبِّهِمْ وَعَلَيْهِمْ غَضَبٌۭ وَلَهُمْ عَذَابٌۭ شَدِيدٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,42,' ٱللَّهُ ٱلَّذِىٓ أَنزَلَ ٱلْكِتَبَ بِٱلْحَقِّ وَٱلْمِيزَانَ ۗ وَمَا يُدْرِيكَ لَعَلَّ ٱلسَّاعَةَ قَرِيبٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,42,' يَسْتَعْجِلُ بِهَا ٱلَّذِينَ لَا يُؤْمِنُونَ بِهَا ۖ وَٱلَّذِينَ ءَامَنُوا۟ مُشْفِقُونَ مِنْهَا وَيَعْلَمُونَ أَنَّهَا ٱلْحَقُّ ۗ أَلَآ إِنَّ ٱلَّذِينَ يُمَارُونَ فِى ٱلسَّاعَةِ لَفِى ضَلَلٍۭ بَعِيدٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,42,' ٱللَّهُ لَطِيفٌۢ بِعِبَادِهِۦ يَرْزُقُ مَن يَشَآءُ ۖ وَهُوَ ٱلْقَوِىُّ ٱلْعَزِيزُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,42,' مَن كَانَ يُرِيدُ حَرْثَ ٱلْءَاخِرَةِ نَزِدْ لَهُۥ فِى حَرْثِهِۦ ۖ وَمَن كَانَ يُرِيدُ حَرْثَ ٱلدُّنْيَا نُؤْتِهِۦ مِنْهَا وَمَا لَهُۥ فِى ٱلْءَاخِرَةِ مِن نَّصِيبٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,42,' أَمْ لَهُمْ شُرَكَٓؤُا۟ شَرَعُوا۟ لَهُم مِّنَ ٱلدِّينِ مَا لَمْ يَأْذَنۢ بِهِ ٱللَّهُ ۚ وَلَوْلَا كَلِمَةُ ٱلْفَصْلِ لَقُضِىَ بَيْنَهُمْ ۗ وَإِنَّ ٱلظَّلِمِينَ لَهُمْ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,42,' تَرَى ٱلظَّلِمِينَ مُشْفِقِينَ مِمَّا كَسَبُوا۟ وَهُوَ وَاقِعٌۢ بِهِمْ ۗ وَٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ فِى رَوْضَاتِ ٱلْجَنَّاتِ ۖ لَهُم مَّا يَشَآءُونَ عِندَ رَبِّهِمْ ۚ ذَلِكَ هُوَ ٱلْفَضْلُ ٱلْكَبِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,42,' ذَلِكَ ٱلَّذِى يُبَشِّرُ ٱللَّهُ عِبَادَهُ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ ۗ قُل لَّآ أَسْـَٔلُكُمْ عَلَيْهِ أَجْرًا إِلَّا ٱلْمَوَدَّةَ فِى ٱلْقُرْبَىٰ ۗ وَمَن يَقْتَرِفْ حَسَنَةًۭ نَّزِدْ لَهُۥ فِيهَا حُسْنًا ۚ إِنَّ ٱللَّهَ غَفُورٌۭ شَكُورٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,42,' أَمْ يَقُولُونَ ٱفْتَرَىٰ عَلَى ٱللَّهِ كَذِبًۭا ۖ فَإِن يَشَإِ ٱللَّهُ يَخْتِمْ عَلَىٰ قَلْبِكَ ۗ وَيَمْحُ ٱللَّهُ ٱلْبَطِلَ وَيُحِقُّ ٱلْحَقَّ بِكَلِمَتِهِۦٓ ۚ إِنَّهُۥ عَلِيمٌۢ بِذَاتِ ٱلصُّدُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,42,' وَهُوَ ٱلَّذِى يَقْبَلُ ٱلتَّوْبَةَ عَنْ عِبَادِهِۦ وَيَعْفُوا۟ عَنِ ٱلسَّيِّـَٔاتِ وَيَعْلَمُ مَا تَفْعَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,42,' وَيَسْتَجِيبُ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ وَيَزِيدُهُم مِّن فَضْلِهِۦ ۚ وَٱلْكَفِرُونَ لَهُمْ عَذَابٌۭ شَدِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,42,' وَلَوْ بَسَطَ ٱللَّهُ ٱلرِّزْقَ لِعِبَادِهِۦ لَبَغَوْا۟ فِى ٱلْأَرْضِ وَلَكِن يُنَزِّلُ بِقَدَرٍۢ مَّا يَشَآءُ ۚ إِنَّهُۥ بِعِبَادِهِۦ خَبِيرٌۢ بَصِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,42,' وَهُوَ ٱلَّذِى يُنَزِّلُ ٱلْغَيْثَ مِنۢ بَعْدِ مَا قَنَطُوا۟ وَيَنشُرُ رَحْمَتَهُۥ ۚ وَهُوَ ٱلْوَلِىُّ ٱلْحَمِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,42,' وَمِنْ ءَايَتِهِۦ خَلْقُ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَمَا بَثَّ فِيهِمَا مِن دَآبَّةٍۢ ۚ وَهُوَ عَلَىٰ جَمْعِهِمْ إِذَا يَشَآءُ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,42,' وَمَآ أَصَبَكُم مِّن مُّصِيبَةٍۢ فَبِمَا كَسَبَتْ أَيْدِيكُمْ وَيَعْفُوا۟ عَن كَثِيرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,42,' وَمَآ أَنتُم بِمُعْجِزِينَ فِى ٱلْأَرْضِ ۖ وَمَا لَكُم مِّن دُونِ ٱللَّهِ مِن وَلِىٍّۢ وَلَا نَصِيرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,42,' وَمِنْ ءَايَتِهِ ٱلْجَوَارِ فِى ٱلْبَحْرِ كَٱلْأَعْلَمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,42,' إِن يَشَأْ يُسْكِنِ ٱلرِّيحَ فَيَظْلَلْنَ رَوَاكِدَ عَلَىٰ ظَهْرِهِۦٓ ۚ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّكُلِّ صَبَّارٍۢ شَكُورٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,42,' أَوْ يُوبِقْهُنَّ بِمَا كَسَبُوا۟ وَيَعْفُ عَن كَثِيرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,42,' وَيَعْلَمَ ٱلَّذِينَ يُجَدِلُونَ فِىٓ ءَايَتِنَا مَا لَهُم مِّن مَّحِيصٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,42,' فَمَآ أُوتِيتُم مِّن شَىْءٍۢ فَمَتَعُ ٱلْحَيَوٰةِ ٱلدُّنْيَا ۖ وَمَا عِندَ ٱللَّهِ خَيْرٌۭ وَأَبْقَىٰ لِلَّذِينَ ءَامَنُوا۟ وَعَلَىٰ رَبِّهِمْ يَتَوَكَّلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,42,' وَٱلَّذِينَ يَجْتَنِبُونَ كَبَٓئِرَ ٱلْإِثْمِ وَٱلْفَوَحِشَ وَإِذَا مَا غَضِبُوا۟ هُمْ يَغْفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,42,' وَٱلَّذِينَ ٱسْتَجَابُوا۟ لِرَبِّهِمْ وَأَقَامُوا۟ ٱلصَّلَوٰةَ وَأَمْرُهُمْ شُورَىٰ بَيْنَهُمْ وَمِمَّا رَزَقْنَهُمْ يُنفِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,42,' وَٱلَّذِينَ إِذَآ أَصَابَهُمُ ٱلْبَغْىُ هُمْ يَنتَصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,42,' وَجَزَٓؤُا۟ سَيِّئَةٍۢ سَيِّئَةٌۭ مِّثْلُهَا ۖ فَمَنْ عَفَا وَأَصْلَحَ فَأَجْرُهُۥ عَلَى ٱللَّهِ ۚ إِنَّهُۥ لَا يُحِبُّ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,42,' وَلَمَنِ ٱنتَصَرَ بَعْدَ ظُلْمِهِۦ فَأُو۟لَٓئِكَ مَا عَلَيْهِم مِّن سَبِيلٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,42,' إِنَّمَا ٱلسَّبِيلُ عَلَى ٱلَّذِينَ يَظْلِمُونَ ٱلنَّاسَ وَيَبْغُونَ فِى ٱلْأَرْضِ بِغَيْرِ ٱلْحَقِّ ۚ أُو۟لَٓئِكَ لَهُمْ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,42,' وَلَمَن صَبَرَ وَغَفَرَ إِنَّ ذَلِكَ لَمِنْ عَزْمِ ٱلْأُمُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,42,' وَمَن يُضْلِلِ ٱللَّهُ فَمَا لَهُۥ مِن وَلِىٍّۢ مِّنۢ بَعْدِهِۦ ۗ وَتَرَى ٱلظَّلِمِينَ لَمَّا رَأَوُا۟ ٱلْعَذَابَ يَقُولُونَ هَلْ إِلَىٰ مَرَدٍّۢ مِّن سَبِيلٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,42,' وَتَرَىٰهُمْ يُعْرَضُونَ عَلَيْهَا خَشِعِينَ مِنَ ٱلذُّلِّ يَنظُرُونَ مِن طَرْفٍ خَفِىٍّۢ ۗ وَقَالَ ٱلَّذِينَ ءَامَنُوٓا۟ إِنَّ ٱلْخَسِرِينَ ٱلَّذِينَ خَسِرُوٓا۟ أَنفُسَهُمْ وَأَهْلِيهِمْ يَوْمَ ٱلْقِيَمَةِ ۗ أَلَآ إِنَّ ٱلظَّلِمِينَ فِى عَذَابٍۢ مُّقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,42,' وَمَا كَانَ لَهُم مِّنْ أَوْلِيَآءَ يَنصُرُونَهُم مِّن دُونِ ٱللَّهِ ۗ وَمَن يُضْلِلِ ٱللَّهُ فَمَا لَهُۥ مِن سَبِيلٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,42,' ٱسْتَجِيبُوا۟ لِرَبِّكُم مِّن قَبْلِ أَن يَأْتِىَ يَوْمٌۭ لَّا مَرَدَّ لَهُۥ مِنَ ٱللَّهِ ۚ مَا لَكُم مِّن مَّلْجَإٍۢ يَوْمَئِذٍۢ وَمَا لَكُم مِّن نَّكِيرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,42,' فَإِنْ أَعْرَضُوا۟ فَمَآ أَرْسَلْنَكَ عَلَيْهِمْ حَفِيظًا ۖ إِنْ عَلَيْكَ إِلَّا ٱلْبَلَغُ ۗ وَإِنَّآ إِذَآ أَذَقْنَا ٱلْإِنسَنَ مِنَّا رَحْمَةًۭ فَرِحَ بِهَا ۖ وَإِن تُصِبْهُمْ سَيِّئَةٌۢ بِمَا قَدَّمَتْ أَيْدِيهِمْ فَإِنَّ ٱلْإِنسَنَ كَفُورٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,42,' لِّلَّهِ مُلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ يَخْلُقُ مَا يَشَآءُ ۚ يَهَبُ لِمَن يَشَآءُ إِنَثًۭا وَيَهَبُ لِمَن يَشَآءُ ٱلذُّكُورَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,42,' أَوْ يُزَوِّجُهُمْ ذُكْرَانًۭا وَإِنَثًۭا ۖ وَيَجْعَلُ مَن يَشَآءُ عَقِيمًا ۚ إِنَّهُۥ عَلِيمٌۭ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,42,' وَمَا كَانَ لِبَشَرٍ أَن يُكَلِّمَهُ ٱللَّهُ إِلَّا وَحْيًا أَوْ مِن وَرَآئِ حِجَابٍ أَوْ يُرْسِلَ رَسُولًۭا فَيُوحِىَ بِإِذْنِهِۦ مَا يَشَآءُ ۚ إِنَّهُۥ عَلِىٌّ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,42,' وَكَذَلِكَ أَوْحَيْنَآ إِلَيْكَ رُوحًۭا مِّنْ أَمْرِنَا ۚ مَا كُنتَ تَدْرِى مَا ٱلْكِتَبُ وَلَا ٱلْإِيمَنُ وَلَكِن جَعَلْنَهُ نُورًۭا نَّهْدِى بِهِۦ مَن نَّشَآءُ مِنْ عِبَادِنَا ۚ وَإِنَّكَ لَتَهْدِىٓ إِلَىٰ صِرَطٍۢ مُّسْتَقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,42,' صِرَطِ ٱللَّهِ ٱلَّذِى لَهُۥ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۗ أَلَآ إِلَى ٱللَّهِ تَصِيرُ ٱلْأُمُورُ');
+INSERT INTO chapters (id, number, quran_id) VALUES(43,43,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,43,' حمٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,43,' وَٱلْكِتَبِ ٱلْمُبِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,43,' إِنَّا جَعَلْنَهُ قُرْءَنًا عَرَبِيًّۭا لَّعَلَّكُمْ تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,43,' وَإِنَّهُۥ فِىٓ أُمِّ ٱلْكِتَبِ لَدَيْنَا لَعَلِىٌّ حَكِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,43,' أَفَنَضْرِبُ عَنكُمُ ٱلذِّكْرَ صَفْحًا أَن كُنتُمْ قَوْمًۭا مُّسْرِفِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,43,' وَكَمْ أَرْسَلْنَا مِن نَّبِىٍّۢ فِى ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,43,' وَمَا يَأْتِيهِم مِّن نَّبِىٍّ إِلَّا كَانُوا۟ بِهِۦ يَسْتَهْزِءُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,43,' فَأَهْلَكْنَآ أَشَدَّ مِنْهُم بَطْشًۭا وَمَضَىٰ مَثَلُ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,43,' وَلَىِٕن سَأَلْتَهُم مَّنْ خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ لَيَقُولُنَّ خَلَقَهُنَّ ٱلْعَزِيزُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,43,' ٱلَّذِى جَعَلَ لَكُمُ ٱلْأَرْضَ مَهْدًۭا وَجَعَلَ لَكُمْ فِيهَا سُبُلًۭا لَّعَلَّكُمْ تَهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,43,' وَٱلَّذِى نَزَّلَ مِنَ ٱلسَّمَآءِ مَآءًۢ بِقَدَرٍۢ فَأَنشَرْنَا بِهِۦ بَلْدَةًۭ مَّيْتًۭا ۚ كَذَلِكَ تُخْرَجُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,43,' وَٱلَّذِى خَلَقَ ٱلْأَزْوَجَ كُلَّهَا وَجَعَلَ لَكُم مِّنَ ٱلْفُلْكِ وَٱلْأَنْعَمِ مَا تَرْكَبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,43,' لِتَسْتَوُۥا۟ عَلَىٰ ظُهُورِهِۦ ثُمَّ تَذْكُرُوا۟ نِعْمَةَ رَبِّكُمْ إِذَا ٱسْتَوَيْتُمْ عَلَيْهِ وَتَقُولُوا۟ سُبْحَنَ ٱلَّذِى سَخَّرَ لَنَا هَذَا وَمَا كُنَّا لَهُۥ مُقْرِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,43,' وَإِنَّآ إِلَىٰ رَبِّنَا لَمُنقَلِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,43,' وَجَعَلُوا۟ لَهُۥ مِنْ عِبَادِهِۦ جُزْءًا ۚ إِنَّ ٱلْإِنسَنَ لَكَفُورٌۭ مُّبِينٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,43,' أَمِ ٱتَّخَذَ مِمَّا يَخْلُقُ بَنَاتٍۢ وَأَصْفَىٰكُم بِٱلْبَنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,43,' وَإِذَا بُشِّرَ أَحَدُهُم بِمَا ضَرَبَ لِلرَّحْمَنِ مَثَلًۭا ظَلَّ وَجْهُهُۥ مُسْوَدًّۭا وَهُوَ كَظِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,43,' أَوَمَن يُنَشَّؤُا۟ فِى ٱلْحِلْيَةِ وَهُوَ فِى ٱلْخِصَامِ غَيْرُ مُبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,43,' وَجَعَلُوا۟ ٱلْمَلَٓئِكَةَ ٱلَّذِينَ هُمْ عِبَدُ ٱلرَّحْمَنِ إِنَثًا ۚ أَشَهِدُوا۟ خَلْقَهُمْ ۚ سَتُكْتَبُ شَهَدَتُهُمْ وَيُسْـَٔلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,43,' وَقَالُوا۟ لَوْ شَآءَ ٱلرَّحْمَنُ مَا عَبَدْنَهُم ۗ مَّا لَهُم بِذَلِكَ مِنْ عِلْمٍ ۖ إِنْ هُمْ إِلَّا يَخْرُصُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,43,' أَمْ ءَاتَيْنَهُمْ كِتَبًۭا مِّن قَبْلِهِۦ فَهُم بِهِۦ مُسْتَمْسِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,43,' بَلْ قَالُوٓا۟ إِنَّا وَجَدْنَآ ءَابَآءَنَا عَلَىٰٓ أُمَّةٍۢ وَإِنَّا عَلَىٰٓ ءَاثَرِهِم مُّهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,43,' وَكَذَلِكَ مَآ أَرْسَلْنَا مِن قَبْلِكَ فِى قَرْيَةٍۢ مِّن نَّذِيرٍ إِلَّا قَالَ مُتْرَفُوهَآ إِنَّا وَجَدْنَآ ءَابَآءَنَا عَلَىٰٓ أُمَّةٍۢ وَإِنَّا عَلَىٰٓ ءَاثَرِهِم مُّقْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,43,' قَلَ أَوَلَوْ جِئْتُكُم بِأَهْدَىٰ مِمَّا وَجَدتُّمْ عَلَيْهِ ءَابَآءَكُمْ ۖ قَالُوٓا۟ إِنَّا بِمَآ أُرْسِلْتُم بِهِۦ كَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,43,' فَٱنتَقَمْنَا مِنْهُمْ ۖ فَٱنظُرْ كَيْفَ كَانَ عَقِبَةُ ٱلْمُكَذِّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,43,' وَإِذْ قَالَ إِبْرَهِيمُ لِأَبِيهِ وَقَوْمِهِۦٓ إِنَّنِى بَرَآءٌۭ مِّمَّا تَعْبُدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,43,' إِلَّا ٱلَّذِى فَطَرَنِى فَإِنَّهُۥ سَيَهْدِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,43,' وَجَعَلَهَا كَلِمَةًۢ بَاقِيَةًۭ فِى عَقِبِهِۦ لَعَلَّهُمْ يَرْجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,43,' بَلْ مَتَّعْتُ هَٓؤُلَآءِ وَءَابَآءَهُمْ حَتَّىٰ جَآءَهُمُ ٱلْحَقُّ وَرَسُولٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,43,' وَلَمَّا جَآءَهُمُ ٱلْحَقُّ قَالُوا۟ هَذَا سِحْرٌۭ وَإِنَّا بِهِۦ كَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,43,' وَقَالُوا۟ لَوْلَا نُزِّلَ هَذَا ٱلْقُرْءَانُ عَلَىٰ رَجُلٍۢ مِّنَ ٱلْقَرْيَتَيْنِ عَظِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,43,' أَهُمْ يَقْسِمُونَ رَحْمَتَ رَبِّكَ ۚ نَحْنُ قَسَمْنَا بَيْنَهُم مَّعِيشَتَهُمْ فِى ٱلْحَيَوٰةِ ٱلدُّنْيَا ۚ وَرَفَعْنَا بَعْضَهُمْ فَوْقَ بَعْضٍۢ دَرَجَتٍۢ لِّيَتَّخِذَ بَعْضُهُم بَعْضًۭا سُخْرِيًّۭا ۗ وَرَحْمَتُ رَبِّكَ خَيْرٌۭ مِّمَّا يَجْمَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,43,' وَلَوْلَآ أَن يَكُونَ ٱلنَّاسُ أُمَّةًۭ وَحِدَةًۭ لَّجَعَلْنَا لِمَن يَكْفُرُ بِٱلرَّحْمَنِ لِبُيُوتِهِمْ سُقُفًۭا مِّن فِضَّةٍۢ وَمَعَارِجَ عَلَيْهَا يَظْهَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,43,' وَلِبُيُوتِهِمْ أَبْوَبًۭا وَسُرُرًا عَلَيْهَا يَتَّكِـُٔونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,43,' وَزُخْرُفًۭا ۚ وَإِن كُلُّ ذَلِكَ لَمَّا مَتَعُ ٱلْحَيَوٰةِ ٱلدُّنْيَا ۚ وَٱلْءَاخِرَةُ عِندَ رَبِّكَ لِلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,43,' وَمَن يَعْشُ عَن ذِكْرِ ٱلرَّحْمَنِ نُقَيِّضْ لَهُۥ شَيْطَنًۭا فَهُوَ لَهُۥ قَرِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,43,' وَإِنَّهُمْ لَيَصُدُّونَهُمْ عَنِ ٱلسَّبِيلِ وَيَحْسَبُونَ أَنَّهُم مُّهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,43,' حَتَّىٰٓ إِذَا جَآءَنَا قَالَ يَلَيْتَ بَيْنِى وَبَيْنَكَ بُعْدَ ٱلْمَشْرِقَيْنِ فَبِئْسَ ٱلْقَرِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,43,' وَلَن يَنفَعَكُمُ ٱلْيَوْمَ إِذ ظَّلَمْتُمْ أَنَّكُمْ فِى ٱلْعَذَابِ مُشْتَرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,43,' أَفَأَنتَ تُسْمِعُ ٱلصُّمَّ أَوْ تَهْدِى ٱلْعُمْىَ وَمَن كَانَ فِى ضَلَلٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,43,' فَإِمَّا نَذْهَبَنَّ بِكَ فَإِنَّا مِنْهُم مُّنتَقِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,43,' أَوْ نُرِيَنَّكَ ٱلَّذِى وَعَدْنَهُمْ فَإِنَّا عَلَيْهِم مُّقْتَدِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,43,' فَٱسْتَمْسِكْ بِٱلَّذِىٓ أُوحِىَ إِلَيْكَ ۖ إِنَّكَ عَلَىٰ صِرَطٍۢ مُّسْتَقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,43,' وَإِنَّهُۥ لَذِكْرٌۭ لَّكَ وَلِقَوْمِكَ ۖ وَسَوْفَ تُسْـَٔلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,43,' وَسْـَٔلْ مَنْ أَرْسَلْنَا مِن قَبْلِكَ مِن رُّسُلِنَآ أَجَعَلْنَا مِن دُونِ ٱلرَّحْمَنِ ءَالِهَةًۭ يُعْبَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,43,' وَلَقَدْ أَرْسَلْنَا مُوسَىٰ بِـَٔايَتِنَآ إِلَىٰ فِرْعَوْنَ وَمَلَإِي۟هِۦ فَقَالَ إِنِّى رَسُولُ رَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,43,' فَلَمَّا جَآءَهُم بِـَٔايَتِنَآ إِذَا هُم مِّنْهَا يَضْحَكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,43,' وَمَا نُرِيهِم مِّنْ ءَايَةٍ إِلَّا هِىَ أَكْبَرُ مِنْ أُخْتِهَا ۖ وَأَخَذْنَهُم بِٱلْعَذَابِ لَعَلَّهُمْ يَرْجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,43,' وَقَالُوا۟ يَٓأَيُّهَ ٱلسَّاحِرُ ٱدْعُ لَنَا رَبَّكَ بِمَا عَهِدَ عِندَكَ إِنَّنَا لَمُهْتَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,43,' فَلَمَّا كَشَفْنَا عَنْهُمُ ٱلْعَذَابَ إِذَا هُمْ يَنكُثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,43,' وَنَادَىٰ فِرْعَوْنُ فِى قَوْمِهِۦ قَالَ يَقَوْمِ أَلَيْسَ لِى مُلْكُ مِصْرَ وَهَذِهِ ٱلْأَنْهَرُ تَجْرِى مِن تَحْتِىٓ ۖ أَفَلَا تُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,43,' أَمْ أَنَا۠ خَيْرٌۭ مِّنْ هَذَا ٱلَّذِى هُوَ مَهِينٌۭ وَلَا يَكَادُ يُبِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,43,' فَلَوْلَآ أُلْقِىَ عَلَيْهِ أَسْوِرَةٌۭ مِّن ذَهَبٍ أَوْ جَآءَ مَعَهُ ٱلْمَلَٓئِكَةُ مُقْتَرِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,43,' فَٱسْتَخَفَّ قَوْمَهُۥ فَأَطَاعُوهُ ۚ إِنَّهُمْ كَانُوا۟ قَوْمًۭا فَسِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,43,' فَلَمَّآ ءَاسَفُونَا ٱنتَقَمْنَا مِنْهُمْ فَأَغْرَقْنَهُمْ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,43,' فَجَعَلْنَهُمْ سَلَفًۭا وَمَثَلًۭا لِّلْءَاخِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,43,' وَلَمَّا ضُرِبَ ٱبْنُ مَرْيَمَ مَثَلًا إِذَا قَوْمُكَ مِنْهُ يَصِدُّونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,43,' وَقَالُوٓا۟ ءَأَلِهَتُنَا خَيْرٌ أَمْ هُوَ ۚ مَا ضَرَبُوهُ لَكَ إِلَّا جَدَلًۢا ۚ بَلْ هُمْ قَوْمٌ خَصِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,43,' إِنْ هُوَ إِلَّا عَبْدٌ أَنْعَمْنَا عَلَيْهِ وَجَعَلْنَهُ مَثَلًۭا لِّبَنِىٓ إِسْرَٓءِيلَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,43,' وَلَوْ نَشَآءُ لَجَعَلْنَا مِنكُم مَّلَٓئِكَةًۭ فِى ٱلْأَرْضِ يَخْلُفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,43,' وَإِنَّهُۥ لَعِلْمٌۭ لِّلسَّاعَةِ فَلَا تَمْتَرُنَّ بِهَا وَٱتَّبِعُونِ ۚ هَذَا صِرَطٌۭ مُّسْتَقِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,43,' وَلَا يَصُدَّنَّكُمُ ٱلشَّيْطَنُ ۖ إِنَّهُۥ لَكُمْ عَدُوٌّۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,43,' وَلَمَّا جَآءَ عِيسَىٰ بِٱلْبَيِّنَتِ قَالَ قَدْ جِئْتُكُم بِٱلْحِكْمَةِ وَلِأُبَيِّنَ لَكُم بَعْضَ ٱلَّذِى تَخْتَلِفُونَ فِيهِ ۖ فَٱتَّقُوا۟ ٱللَّهَ وَأَطِيعُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,43,' إِنَّ ٱللَّهَ هُوَ رَبِّى وَرَبُّكُمْ فَٱعْبُدُوهُ ۚ هَذَا صِرَطٌۭ مُّسْتَقِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,43,' فَٱخْتَلَفَ ٱلْأَحْزَابُ مِنۢ بَيْنِهِمْ ۖ فَوَيْلٌۭ لِّلَّذِينَ ظَلَمُوا۟ مِنْ عَذَابِ يَوْمٍ أَلِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,43,' هَلْ يَنظُرُونَ إِلَّا ٱلسَّاعَةَ أَن تَأْتِيَهُم بَغْتَةًۭ وَهُمْ لَا يَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,43,' ٱلْأَخِلَّآءُ يَوْمَئِذٍۭ بَعْضُهُمْ لِبَعْضٍ عَدُوٌّ إِلَّا ٱلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,43,' يَعِبَادِ لَا خَوْفٌ عَلَيْكُمُ ٱلْيَوْمَ وَلَآ أَنتُمْ تَحْزَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,43,' ٱلَّذِينَ ءَامَنُوا۟ بِـَٔايَتِنَا وَكَانُوا۟ مُسْلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,43,' ٱدْخُلُوا۟ ٱلْجَنَّةَ أَنتُمْ وَأَزْوَجُكُمْ تُحْبَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,43,' يُطَافُ عَلَيْهِم بِصِحَافٍۢ مِّن ذَهَبٍۢ وَأَكْوَابٍۢ ۖ وَفِيهَا مَا تَشْتَهِيهِ ٱلْأَنفُسُ وَتَلَذُّ ٱلْأَعْيُنُ ۖ وَأَنتُمْ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,43,' وَتِلْكَ ٱلْجَنَّةُ ٱلَّتِىٓ أُورِثْتُمُوهَا بِمَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,43,' لَكُمْ فِيهَا فَكِهَةٌۭ كَثِيرَةٌۭ مِّنْهَا تَأْكُلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,43,' إِنَّ ٱلْمُجْرِمِينَ فِى عَذَابِ جَهَنَّمَ خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,43,' لَا يُفَتَّرُ عَنْهُمْ وَهُمْ فِيهِ مُبْلِسُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,43,' وَمَا ظَلَمْنَهُمْ وَلَكِن كَانُوا۟ هُمُ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,43,' وَنَادَوْا۟ يَمَلِكُ لِيَقْضِ عَلَيْنَا رَبُّكَ ۖ قَالَ إِنَّكُم مَّكِثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,43,' لَقَدْ جِئْنَكُم بِٱلْحَقِّ وَلَكِنَّ أَكْثَرَكُمْ لِلْحَقِّ كَرِهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,43,' أَمْ أَبْرَمُوٓا۟ أَمْرًۭا فَإِنَّا مُبْرِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,43,' أَمْ يَحْسَبُونَ أَنَّا لَا نَسْمَعُ سِرَّهُمْ وَنَجْوَىٰهُم ۚ بَلَىٰ وَرُسُلُنَا لَدَيْهِمْ يَكْتُبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,43,' قُلْ إِن كَانَ لِلرَّحْمَنِ وَلَدٌۭ فَأَنَا۠ أَوَّلُ ٱلْعَبِدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,43,' سُبْحَنَ رَبِّ ٱلسَّمَوَتِ وَٱلْأَرْضِ رَبِّ ٱلْعَرْشِ عَمَّا يَصِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,43,' فَذَرْهُمْ يَخُوضُوا۟ وَيَلْعَبُوا۟ حَتَّىٰ يُلَقُوا۟ يَوْمَهُمُ ٱلَّذِى يُوعَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,43,' وَهُوَ ٱلَّذِى فِى ٱلسَّمَآءِ إِلَهٌۭ وَفِى ٱلْأَرْضِ إِلَهٌۭ ۚ وَهُوَ ٱلْحَكِيمُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,43,' وَتَبَارَكَ ٱلَّذِى لَهُۥ مُلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَمَا بَيْنَهُمَا وَعِندَهُۥ عِلْمُ ٱلسَّاعَةِ وَإِلَيْهِ تُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,43,' وَلَا يَمْلِكُ ٱلَّذِينَ يَدْعُونَ مِن دُونِهِ ٱلشَّفَعَةَ إِلَّا مَن شَهِدَ بِٱلْحَقِّ وَهُمْ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,43,' وَلَىِٕن سَأَلْتَهُم مَّنْ خَلَقَهُمْ لَيَقُولُنَّ ٱللَّهُ ۖ فَأَنَّىٰ يُؤْفَكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,43,' وَقِيلِهِۦ يَرَبِّ إِنَّ هَٓؤُلَآءِ قَوْمٌۭ لَّا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,43,' فَٱصْفَحْ عَنْهُمْ وَقُلْ سَلَمٌۭ ۚ فَسَوْفَ يَعْلَمُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(44,44,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,44,' حمٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,44,' وَٱلْكِتَبِ ٱلْمُبِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,44,' إِنَّآ أَنزَلْنَهُ فِى لَيْلَةٍۢ مُّبَرَكَةٍ ۚ إِنَّا كُنَّا مُنذِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,44,' فِيهَا يُفْرَقُ كُلُّ أَمْرٍ حَكِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,44,' أَمْرًۭا مِّنْ عِندِنَآ ۚ إِنَّا كُنَّا مُرْسِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,44,' رَحْمَةًۭ مِّن رَّبِّكَ ۚ إِنَّهُۥ هُوَ ٱلسَّمِيعُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,44,' رَبِّ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَمَا بَيْنَهُمَآ ۖ إِن كُنتُم مُّوقِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,44,' لَآ إِلَهَ إِلَّا هُوَ يُحْىِۦ وَيُمِيتُ ۖ رَبُّكُمْ وَرَبُّ ءَابَآئِكُمُ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,44,' بَلْ هُمْ فِى شَكٍّۢ يَلْعَبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,44,' فَٱرْتَقِبْ يَوْمَ تَأْتِى ٱلسَّمَآءُ بِدُخَانٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,44,' يَغْشَى ٱلنَّاسَ ۖ هَذَا عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,44,' رَّبَّنَا ٱكْشِفْ عَنَّا ٱلْعَذَابَ إِنَّا مُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,44,' أَنَّىٰ لَهُمُ ٱلذِّكْرَىٰ وَقَدْ جَآءَهُمْ رَسُولٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,44,' ثُمَّ تَوَلَّوْا۟ عَنْهُ وَقَالُوا۟ مُعَلَّمٌۭ مَّجْنُونٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,44,' إِنَّا كَاشِفُوا۟ ٱلْعَذَابِ قَلِيلًا ۚ إِنَّكُمْ عَآئِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,44,' يَوْمَ نَبْطِشُ ٱلْبَطْشَةَ ٱلْكُبْرَىٰٓ إِنَّا مُنتَقِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,44,' وَلَقَدْ فَتَنَّا قَبْلَهُمْ قَوْمَ فِرْعَوْنَ وَجَآءَهُمْ رَسُولٌۭ كَرِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,44,' أَنْ أَدُّوٓا۟ إِلَىَّ عِبَادَ ٱللَّهِ ۖ إِنِّى لَكُمْ رَسُولٌ أَمِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,44,' وَأَن لَّا تَعْلُوا۟ عَلَى ٱللَّهِ ۖ إِنِّىٓ ءَاتِيكُم بِسُلْطَنٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,44,' وَإِنِّى عُذْتُ بِرَبِّى وَرَبِّكُمْ أَن تَرْجُمُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,44,' وَإِن لَّمْ تُؤْمِنُوا۟ لِى فَٱعْتَزِلُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,44,' فَدَعَا رَبَّهُۥٓ أَنَّ هَٓؤُلَآءِ قَوْمٌۭ مُّجْرِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,44,' فَأَسْرِ بِعِبَادِى لَيْلًا إِنَّكُم مُّتَّبَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,44,' وَٱتْرُكِ ٱلْبَحْرَ رَهْوًا ۖ إِنَّهُمْ جُندٌۭ مُّغْرَقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,44,' كَمْ تَرَكُوا۟ مِن جَنَّتٍۢ وَعُيُونٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,44,' وَزُرُوعٍۢ وَمَقَامٍۢ كَرِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,44,' وَنَعْمَةٍۢ كَانُوا۟ فِيهَا فَكِهِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,44,' كَذَلِكَ ۖ وَأَوْرَثْنَهَا قَوْمًا ءَاخَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,44,' فَمَا بَكَتْ عَلَيْهِمُ ٱلسَّمَآءُ وَٱلْأَرْضُ وَمَا كَانُوا۟ مُنظَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,44,' وَلَقَدْ نَجَّيْنَا بَنِىٓ إِسْرَٓءِيلَ مِنَ ٱلْعَذَابِ ٱلْمُهِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,44,' مِن فِرْعَوْنَ ۚ إِنَّهُۥ كَانَ عَالِيًۭا مِّنَ ٱلْمُسْرِفِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,44,' وَلَقَدِ ٱخْتَرْنَهُمْ عَلَىٰ عِلْمٍ عَلَى ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,44,' وَءَاتَيْنَهُم مِّنَ ٱلْءَايَتِ مَا فِيهِ بَلَٓؤٌۭا۟ مُّبِينٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,44,' إِنَّ هَٓؤُلَآءِ لَيَقُولُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,44,' إِنْ هِىَ إِلَّا مَوْتَتُنَا ٱلْأُولَىٰ وَمَا نَحْنُ بِمُنشَرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,44,' فَأْتُوا۟ بِـَٔابَآئِنَآ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,44,' أَهُمْ خَيْرٌ أَمْ قَوْمُ تُبَّعٍۢ وَٱلَّذِينَ مِن قَبْلِهِمْ ۚ أَهْلَكْنَهُمْ ۖ إِنَّهُمْ كَانُوا۟ مُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,44,' وَمَا خَلَقْنَا ٱلسَّمَوَتِ وَٱلْأَرْضَ وَمَا بَيْنَهُمَا لَعِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,44,' مَا خَلَقْنَهُمَآ إِلَّا بِٱلْحَقِّ وَلَكِنَّ أَكْثَرَهُمْ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,44,' إِنَّ يَوْمَ ٱلْفَصْلِ مِيقَتُهُمْ أَجْمَعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,44,' يَوْمَ لَا يُغْنِى مَوْلًى عَن مَّوْلًۭى شَيْـًۭٔا وَلَا هُمْ يُنصَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,44,' إِلَّا مَن رَّحِمَ ٱللَّهُ ۚ إِنَّهُۥ هُوَ ٱلْعَزِيزُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,44,' إِنَّ شَجَرَتَ ٱلزَّقُّومِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,44,' طَعَامُ ٱلْأَثِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,44,' كَٱلْمُهْلِ يَغْلِى فِى ٱلْبُطُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,44,' كَغَلْىِ ٱلْحَمِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,44,' خُذُوهُ فَٱعْتِلُوهُ إِلَىٰ سَوَآءِ ٱلْجَحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,44,' ثُمَّ صُبُّوا۟ فَوْقَ رَأْسِهِۦ مِنْ عَذَابِ ٱلْحَمِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,44,' ذُقْ إِنَّكَ أَنتَ ٱلْعَزِيزُ ٱلْكَرِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,44,' إِنَّ هَذَا مَا كُنتُم بِهِۦ تَمْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,44,' إِنَّ ٱلْمُتَّقِينَ فِى مَقَامٍ أَمِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,44,' فِى جَنَّتٍۢ وَعُيُونٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,44,' يَلْبَسُونَ مِن سُندُسٍۢ وَإِسْتَبْرَقٍۢ مُّتَقَبِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,44,' كَذَلِكَ وَزَوَّجْنَهُم بِحُورٍ عِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,44,' يَدْعُونَ فِيهَا بِكُلِّ فَكِهَةٍ ءَامِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,44,' لَا يَذُوقُونَ فِيهَا ٱلْمَوْتَ إِلَّا ٱلْمَوْتَةَ ٱلْأُولَىٰ ۖ وَوَقَىٰهُمْ عَذَابَ ٱلْجَحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,44,' فَضْلًۭا مِّن رَّبِّكَ ۚ ذَلِكَ هُوَ ٱلْفَوْزُ ٱلْعَظِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,44,' فَإِنَّمَا يَسَّرْنَهُ بِلِسَانِكَ لَعَلَّهُمْ يَتَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,44,' فَٱرْتَقِبْ إِنَّهُم مُّرْتَقِبُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(45,45,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,45,' حمٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,45,' تَنزِيلُ ٱلْكِتَبِ مِنَ ٱللَّهِ ٱلْعَزِيزِ ٱلْحَكِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,45,' إِنَّ فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ لَءَايَتٍۢ لِّلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,45,' وَفِى خَلْقِكُمْ وَمَا يَبُثُّ مِن دَآبَّةٍ ءَايَتٌۭ لِّقَوْمٍۢ يُوقِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,45,' وَٱخْتِلَفِ ٱلَّيْلِ وَٱلنَّهَارِ وَمَآ أَنزَلَ ٱللَّهُ مِنَ ٱلسَّمَآءِ مِن رِّزْقٍۢ فَأَحْيَا بِهِ ٱلْأَرْضَ بَعْدَ مَوْتِهَا وَتَصْرِيفِ ٱلرِّيَحِ ءَايَتٌۭ لِّقَوْمٍۢ يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,45,' تِلْكَ ءَايَتُ ٱللَّهِ نَتْلُوهَا عَلَيْكَ بِٱلْحَقِّ ۖ فَبِأَىِّ حَدِيثٍۭ بَعْدَ ٱللَّهِ وَءَايَتِهِۦ يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,45,' وَيْلٌۭ لِّكُلِّ أَفَّاكٍ أَثِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,45,' يَسْمَعُ ءَايَتِ ٱللَّهِ تُتْلَىٰ عَلَيْهِ ثُمَّ يُصِرُّ مُسْتَكْبِرًۭا كَأَن لَّمْ يَسْمَعْهَا ۖ فَبَشِّرْهُ بِعَذَابٍ أَلِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,45,' وَإِذَا عَلِمَ مِنْ ءَايَتِنَا شَيْـًٔا ٱتَّخَذَهَا هُزُوًا ۚ أُو۟لَٓئِكَ لَهُمْ عَذَابٌۭ مُّهِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,45,' مِّن وَرَآئِهِمْ جَهَنَّمُ ۖ وَلَا يُغْنِى عَنْهُم مَّا كَسَبُوا۟ شَيْـًۭٔا وَلَا مَا ٱتَّخَذُوا۟ مِن دُونِ ٱللَّهِ أَوْلِيَآءَ ۖ وَلَهُمْ عَذَابٌ عَظِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,45,' هَذَا هُدًۭى ۖ وَٱلَّذِينَ كَفَرُوا۟ بِـَٔايَتِ رَبِّهِمْ لَهُمْ عَذَابٌۭ مِّن رِّجْزٍ أَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,45,' ٱللَّهُ ٱلَّذِى سَخَّرَ لَكُمُ ٱلْبَحْرَ لِتَجْرِىَ ٱلْفُلْكُ فِيهِ بِأَمْرِهِۦ وَلِتَبْتَغُوا۟ مِن فَضْلِهِۦ وَلَعَلَّكُمْ تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,45,' وَسَخَّرَ لَكُم مَّا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ جَمِيعًۭا مِّنْهُ ۚ إِنَّ فِى ذَلِكَ لَءَايَتٍۢ لِّقَوْمٍۢ يَتَفَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,45,' قُل لِّلَّذِينَ ءَامَنُوا۟ يَغْفِرُوا۟ لِلَّذِينَ لَا يَرْجُونَ أَيَّامَ ٱللَّهِ لِيَجْزِىَ قَوْمًۢا بِمَا كَانُوا۟ يَكْسِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,45,' مَنْ عَمِلَ صَلِحًۭا فَلِنَفْسِهِۦ ۖ وَمَنْ أَسَآءَ فَعَلَيْهَا ۖ ثُمَّ إِلَىٰ رَبِّكُمْ تُرْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,45,' وَلَقَدْ ءَاتَيْنَا بَنِىٓ إِسْرَٓءِيلَ ٱلْكِتَبَ وَٱلْحُكْمَ وَٱلنُّبُوَّةَ وَرَزَقْنَهُم مِّنَ ٱلطَّيِّبَتِ وَفَضَّلْنَهُمْ عَلَى ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,45,' وَءَاتَيْنَهُم بَيِّنَتٍۢ مِّنَ ٱلْأَمْرِ ۖ فَمَا ٱخْتَلَفُوٓا۟ إِلَّا مِنۢ بَعْدِ مَا جَآءَهُمُ ٱلْعِلْمُ بَغْيًۢا بَيْنَهُمْ ۚ إِنَّ رَبَّكَ يَقْضِى بَيْنَهُمْ يَوْمَ ٱلْقِيَمَةِ فِيمَا كَانُوا۟ فِيهِ يَخْتَلِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,45,' ثُمَّ جَعَلْنَكَ عَلَىٰ شَرِيعَةٍۢ مِّنَ ٱلْأَمْرِ فَٱتَّبِعْهَا وَلَا تَتَّبِعْ أَهْوَآءَ ٱلَّذِينَ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,45,' إِنَّهُمْ لَن يُغْنُوا۟ عَنكَ مِنَ ٱللَّهِ شَيْـًۭٔا ۚ وَإِنَّ ٱلظَّلِمِينَ بَعْضُهُمْ أَوْلِيَآءُ بَعْضٍۢ ۖ وَٱللَّهُ وَلِىُّ ٱلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,45,' هَذَا بَصَٓئِرُ لِلنَّاسِ وَهُدًۭى وَرَحْمَةٌۭ لِّقَوْمٍۢ يُوقِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,45,' أَمْ حَسِبَ ٱلَّذِينَ ٱجْتَرَحُوا۟ ٱلسَّيِّـَٔاتِ أَن نَّجْعَلَهُمْ كَٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ سَوَآءًۭ مَّحْيَاهُمْ وَمَمَاتُهُمْ ۚ سَآءَ مَا يَحْكُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,45,' وَخَلَقَ ٱللَّهُ ٱلسَّمَوَتِ وَٱلْأَرْضَ بِٱلْحَقِّ وَلِتُجْزَىٰ كُلُّ نَفْسٍۭ بِمَا كَسَبَتْ وَهُمْ لَا يُظْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,45,' أَفَرَءَيْتَ مَنِ ٱتَّخَذَ إِلَهَهُۥ هَوَىٰهُ وَأَضَلَّهُ ٱللَّهُ عَلَىٰ عِلْمٍۢ وَخَتَمَ عَلَىٰ سَمْعِهِۦ وَقَلْبِهِۦ وَجَعَلَ عَلَىٰ بَصَرِهِۦ غِشَوَةًۭ فَمَن يَهْدِيهِ مِنۢ بَعْدِ ٱللَّهِ ۚ أَفَلَا تَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,45,' وَقَالُوا۟ مَا هِىَ إِلَّا حَيَاتُنَا ٱلدُّنْيَا نَمُوتُ وَنَحْيَا وَمَا يُهْلِكُنَآ إِلَّا ٱلدَّهْرُ ۚ وَمَا لَهُم بِذَلِكَ مِنْ عِلْمٍ ۖ إِنْ هُمْ إِلَّا يَظُنُّونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,45,' وَإِذَا تُتْلَىٰ عَلَيْهِمْ ءَايَتُنَا بَيِّنَتٍۢ مَّا كَانَ حُجَّتَهُمْ إِلَّآ أَن قَالُوا۟ ٱئْتُوا۟ بِـَٔابَآئِنَآ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,45,' قُلِ ٱللَّهُ يُحْيِيكُمْ ثُمَّ يُمِيتُكُمْ ثُمَّ يَجْمَعُكُمْ إِلَىٰ يَوْمِ ٱلْقِيَمَةِ لَا رَيْبَ فِيهِ وَلَكِنَّ أَكْثَرَ ٱلنَّاسِ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,45,' وَلِلَّهِ مُلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ وَيَوْمَ تَقُومُ ٱلسَّاعَةُ يَوْمَئِذٍۢ يَخْسَرُ ٱلْمُبْطِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,45,' وَتَرَىٰ كُلَّ أُمَّةٍۢ جَاثِيَةًۭ ۚ كُلُّ أُمَّةٍۢ تُدْعَىٰٓ إِلَىٰ كِتَبِهَا ٱلْيَوْمَ تُجْزَوْنَ مَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,45,' هَذَا كِتَبُنَا يَنطِقُ عَلَيْكُم بِٱلْحَقِّ ۚ إِنَّا كُنَّا نَسْتَنسِخُ مَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,45,' فَأَمَّا ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ فَيُدْخِلُهُمْ رَبُّهُمْ فِى رَحْمَتِهِۦ ۚ ذَلِكَ هُوَ ٱلْفَوْزُ ٱلْمُبِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,45,' وَأَمَّا ٱلَّذِينَ كَفَرُوٓا۟ أَفَلَمْ تَكُنْ ءَايَتِى تُتْلَىٰ عَلَيْكُمْ فَٱسْتَكْبَرْتُمْ وَكُنتُمْ قَوْمًۭا مُّجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,45,' وَإِذَا قِيلَ إِنَّ وَعْدَ ٱللَّهِ حَقٌّۭ وَٱلسَّاعَةُ لَا رَيْبَ فِيهَا قُلْتُم مَّا نَدْرِى مَا ٱلسَّاعَةُ إِن نَّظُنُّ إِلَّا ظَنًّۭا وَمَا نَحْنُ بِمُسْتَيْقِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,45,' وَبَدَا لَهُمْ سَيِّـَٔاتُ مَا عَمِلُوا۟ وَحَاقَ بِهِم مَّا كَانُوا۟ بِهِۦ يَسْتَهْزِءُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,45,' وَقِيلَ ٱلْيَوْمَ نَنسَىٰكُمْ كَمَا نَسِيتُمْ لِقَآءَ يَوْمِكُمْ هَذَا وَمَأْوَىٰكُمُ ٱلنَّارُ وَمَا لَكُم مِّن نَّصِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,45,' ذَلِكُم بِأَنَّكُمُ ٱتَّخَذْتُمْ ءَايَتِ ٱللَّهِ هُزُوًۭا وَغَرَّتْكُمُ ٱلْحَيَوٰةُ ٱلدُّنْيَا ۚ فَٱلْيَوْمَ لَا يُخْرَجُونَ مِنْهَا وَلَا هُمْ يُسْتَعْتَبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,45,' فَلِلَّهِ ٱلْحَمْدُ رَبِّ ٱلسَّمَوَتِ وَرَبِّ ٱلْأَرْضِ رَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,45,' وَلَهُ ٱلْكِبْرِيَآءُ فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ۖ وَهُوَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO chapters (id, number, quran_id) VALUES(46,46,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,46,' حمٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,46,' تَنزِيلُ ٱلْكِتَبِ مِنَ ٱللَّهِ ٱلْعَزِيزِ ٱلْحَكِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,46,' مَا خَلَقْنَا ٱلسَّمَوَتِ وَٱلْأَرْضَ وَمَا بَيْنَهُمَآ إِلَّا بِٱلْحَقِّ وَأَجَلٍۢ مُّسَمًّۭى ۚ وَٱلَّذِينَ كَفَرُوا۟ عَمَّآ أُنذِرُوا۟ مُعْرِضُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,46,' قُلْ أَرَءَيْتُم مَّا تَدْعُونَ مِن دُونِ ٱللَّهِ أَرُونِى مَاذَا خَلَقُوا۟ مِنَ ٱلْأَرْضِ أَمْ لَهُمْ شِرْكٌۭ فِى ٱلسَّمَوَتِ ۖ ٱئْتُونِى بِكِتَبٍۢ مِّن قَبْلِ هَذَآ أَوْ أَثَرَةٍۢ مِّنْ عِلْمٍ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,46,' وَمَنْ أَضَلُّ مِمَّن يَدْعُوا۟ مِن دُونِ ٱللَّهِ مَن لَّا يَسْتَجِيبُ لَهُۥٓ إِلَىٰ يَوْمِ ٱلْقِيَمَةِ وَهُمْ عَن دُعَآئِهِمْ غَفِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,46,' وَإِذَا حُشِرَ ٱلنَّاسُ كَانُوا۟ لَهُمْ أَعْدَآءًۭ وَكَانُوا۟ بِعِبَادَتِهِمْ كَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,46,' وَإِذَا تُتْلَىٰ عَلَيْهِمْ ءَايَتُنَا بَيِّنَتٍۢ قَالَ ٱلَّذِينَ كَفَرُوا۟ لِلْحَقِّ لَمَّا جَآءَهُمْ هَذَا سِحْرٌۭ مُّبِينٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,46,' أَمْ يَقُولُونَ ٱفْتَرَىٰهُ ۖ قُلْ إِنِ ٱفْتَرَيْتُهُۥ فَلَا تَمْلِكُونَ لِى مِنَ ٱللَّهِ شَيْـًٔا ۖ هُوَ أَعْلَمُ بِمَا تُفِيضُونَ فِيهِ ۖ كَفَىٰ بِهِۦ شَهِيدًۢا بَيْنِى وَبَيْنَكُمْ ۖ وَهُوَ ٱلْغَفُورُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,46,' قُلْ مَا كُنتُ بِدْعًۭا مِّنَ ٱلرُّسُلِ وَمَآ أَدْرِى مَا يُفْعَلُ بِى وَلَا بِكُمْ ۖ إِنْ أَتَّبِعُ إِلَّا مَا يُوحَىٰٓ إِلَىَّ وَمَآ أَنَا۠ إِلَّا نَذِيرٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,46,' قُلْ أَرَءَيْتُمْ إِن كَانَ مِنْ عِندِ ٱللَّهِ وَكَفَرْتُم بِهِۦ وَشَهِدَ شَاهِدٌۭ مِّنۢ بَنِىٓ إِسْرَٓءِيلَ عَلَىٰ مِثْلِهِۦ فَـَٔامَنَ وَٱسْتَكْبَرْتُمْ ۖ إِنَّ ٱللَّهَ لَا يَهْدِى ٱلْقَوْمَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,46,' وَقَالَ ٱلَّذِينَ كَفَرُوا۟ لِلَّذِينَ ءَامَنُوا۟ لَوْ كَانَ خَيْرًۭا مَّا سَبَقُونَآ إِلَيْهِ ۚ وَإِذْ لَمْ يَهْتَدُوا۟ بِهِۦ فَسَيَقُولُونَ هَذَآ إِفْكٌۭ قَدِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,46,' وَمِن قَبْلِهِۦ كِتَبُ مُوسَىٰٓ إِمَامًۭا وَرَحْمَةًۭ ۚ وَهَذَا كِتَبٌۭ مُّصَدِّقٌۭ لِّسَانًا عَرَبِيًّۭا لِّيُنذِرَ ٱلَّذِينَ ظَلَمُوا۟ وَبُشْرَىٰ لِلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,46,' إِنَّ ٱلَّذِينَ قَالُوا۟ رَبُّنَا ٱللَّهُ ثُمَّ ٱسْتَقَمُوا۟ فَلَا خَوْفٌ عَلَيْهِمْ وَلَا هُمْ يَحْزَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,46,' أُو۟لَٓئِكَ أَصْحَبُ ٱلْجَنَّةِ خَلِدِينَ فِيهَا جَزَآءًۢ بِمَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,46,' وَوَصَّيْنَا ٱلْإِنسَنَ بِوَلِدَيْهِ إِحْسَنًا ۖ حَمَلَتْهُ أُمُّهُۥ كُرْهًۭا وَوَضَعَتْهُ كُرْهًۭا ۖ وَحَمْلُهُۥ وَفِصَلُهُۥ ثَلَثُونَ شَهْرًا ۚ حَتَّىٰٓ إِذَا بَلَغَ أَشُدَّهُۥ وَبَلَغَ أَرْبَعِينَ سَنَةًۭ قَالَ رَبِّ أَوْزِعْنِىٓ أَنْ أَشْكُرَ نِعْمَتَكَ ٱلَّتِىٓ أَنْعَمْتَ عَلَىَّ وَعَلَىٰ وَلِدَىَّ وَأَنْ أَعْمَلَ صَلِحًۭا تَرْضَىٰهُ وَأَصْلِحْ لِى فِى ذُرِّيَّتِىٓ ۖ إِنِّى تُبْتُ إِلَيْكَ وَإِنِّى مِنَ ٱلْمُسْلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,46,' أُو۟لَٓئِكَ ٱلَّذِينَ نَتَقَبَّلُ عَنْهُمْ أَحْسَنَ مَا عَمِلُوا۟ وَنَتَجَاوَزُ عَن سَيِّـَٔاتِهِمْ فِىٓ أَصْحَبِ ٱلْجَنَّةِ ۖ وَعْدَ ٱلصِّدْقِ ٱلَّذِى كَانُوا۟ يُوعَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,46,' وَٱلَّذِى قَالَ لِوَلِدَيْهِ أُفٍّۢ لَّكُمَآ أَتَعِدَانِنِىٓ أَنْ أُخْرَجَ وَقَدْ خَلَتِ ٱلْقُرُونُ مِن قَبْلِى وَهُمَا يَسْتَغِيثَانِ ٱللَّهَ وَيْلَكَ ءَامِنْ إِنَّ وَعْدَ ٱللَّهِ حَقٌّۭ فَيَقُولُ مَا هَذَآ إِلَّآ أَسَطِيرُ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,46,' أُو۟لَٓئِكَ ٱلَّذِينَ حَقَّ عَلَيْهِمُ ٱلْقَوْلُ فِىٓ أُمَمٍۢ قَدْ خَلَتْ مِن قَبْلِهِم مِّنَ ٱلْجِنِّ وَٱلْإِنسِ ۖ إِنَّهُمْ كَانُوا۟ خَسِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,46,' وَلِكُلٍّۢ دَرَجَتٌۭ مِّمَّا عَمِلُوا۟ ۖ وَلِيُوَفِّيَهُمْ أَعْمَلَهُمْ وَهُمْ لَا يُظْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,46,' وَيَوْمَ يُعْرَضُ ٱلَّذِينَ كَفَرُوا۟ عَلَى ٱلنَّارِ أَذْهَبْتُمْ طَيِّبَتِكُمْ فِى حَيَاتِكُمُ ٱلدُّنْيَا وَٱسْتَمْتَعْتُم بِهَا فَٱلْيَوْمَ تُجْزَوْنَ عَذَابَ ٱلْهُونِ بِمَا كُنتُمْ تَسْتَكْبِرُونَ فِى ٱلْأَرْضِ بِغَيْرِ ٱلْحَقِّ وَبِمَا كُنتُمْ تَفْسُقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,46,' وَٱذْكُرْ أَخَا عَادٍ إِذْ أَنذَرَ قَوْمَهُۥ بِٱلْأَحْقَافِ وَقَدْ خَلَتِ ٱلنُّذُرُ مِنۢ بَيْنِ يَدَيْهِ وَمِنْ خَلْفِهِۦٓ أَلَّا تَعْبُدُوٓا۟ إِلَّا ٱللَّهَ إِنِّىٓ أَخَافُ عَلَيْكُمْ عَذَابَ يَوْمٍ عَظِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,46,' قَالُوٓا۟ أَجِئْتَنَا لِتَأْفِكَنَا عَنْ ءَالِهَتِنَا فَأْتِنَا بِمَا تَعِدُنَآ إِن كُنتَ مِنَ ٱلصَّدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,46,' قَالَ إِنَّمَا ٱلْعِلْمُ عِندَ ٱللَّهِ وَأُبَلِّغُكُم مَّآ أُرْسِلْتُ بِهِۦ وَلَكِنِّىٓ أَرَىٰكُمْ قَوْمًۭا تَجْهَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,46,' فَلَمَّا رَأَوْهُ عَارِضًۭا مُّسْتَقْبِلَ أَوْدِيَتِهِمْ قَالُوا۟ هَذَا عَارِضٌۭ مُّمْطِرُنَا ۚ بَلْ هُوَ مَا ٱسْتَعْجَلْتُم بِهِۦ ۖ رِيحٌۭ فِيهَا عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,46,' تُدَمِّرُ كُلَّ شَىْءٍۭ بِأَمْرِ رَبِّهَا فَأَصْبَحُوا۟ لَا يُرَىٰٓ إِلَّا مَسَكِنُهُمْ ۚ كَذَلِكَ نَجْزِى ٱلْقَوْمَ ٱلْمُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,46,' وَلَقَدْ مَكَّنَّهُمْ فِيمَآ إِن مَّكَّنَّكُمْ فِيهِ وَجَعَلْنَا لَهُمْ سَمْعًۭا وَأَبْصَرًۭا وَأَفْـِٔدَةًۭ فَمَآ أَغْنَىٰ عَنْهُمْ سَمْعُهُمْ وَلَآ أَبْصَرُهُمْ وَلَآ أَفْـِٔدَتُهُم مِّن شَىْءٍ إِذْ كَانُوا۟ يَجْحَدُونَ بِـَٔايَتِ ٱللَّهِ وَحَاقَ بِهِم مَّا كَانُوا۟ بِهِۦ يَسْتَهْزِءُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,46,' وَلَقَدْ أَهْلَكْنَا مَا حَوْلَكُم مِّنَ ٱلْقُرَىٰ وَصَرَّفْنَا ٱلْءَايَتِ لَعَلَّهُمْ يَرْجِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,46,' فَلَوْلَا نَصَرَهُمُ ٱلَّذِينَ ٱتَّخَذُوا۟ مِن دُونِ ٱللَّهِ قُرْبَانًا ءَالِهَةًۢ ۖ بَلْ ضَلُّوا۟ عَنْهُمْ ۚ وَذَلِكَ إِفْكُهُمْ وَمَا كَانُوا۟ يَفْتَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,46,' وَإِذْ صَرَفْنَآ إِلَيْكَ نَفَرًۭا مِّنَ ٱلْجِنِّ يَسْتَمِعُونَ ٱلْقُرْءَانَ فَلَمَّا حَضَرُوهُ قَالُوٓا۟ أَنصِتُوا۟ ۖ فَلَمَّا قُضِىَ وَلَّوْا۟ إِلَىٰ قَوْمِهِم مُّنذِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,46,' قَالُوا۟ يَقَوْمَنَآ إِنَّا سَمِعْنَا كِتَبًا أُنزِلَ مِنۢ بَعْدِ مُوسَىٰ مُصَدِّقًۭا لِّمَا بَيْنَ يَدَيْهِ يَهْدِىٓ إِلَى ٱلْحَقِّ وَإِلَىٰ طَرِيقٍۢ مُّسْتَقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,46,' يَقَوْمَنَآ أَجِيبُوا۟ دَاعِىَ ٱللَّهِ وَءَامِنُوا۟ بِهِۦ يَغْفِرْ لَكُم مِّن ذُنُوبِكُمْ وَيُجِرْكُم مِّنْ عَذَابٍ أَلِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,46,' وَمَن لَّا يُجِبْ دَاعِىَ ٱللَّهِ فَلَيْسَ بِمُعْجِزٍۢ فِى ٱلْأَرْضِ وَلَيْسَ لَهُۥ مِن دُونِهِۦٓ أَوْلِيَآءُ ۚ أُو۟لَٓئِكَ فِى ضَلَلٍۢ مُّبِينٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,46,' أَوَلَمْ يَرَوْا۟ أَنَّ ٱللَّهَ ٱلَّذِى خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ وَلَمْ يَعْىَ بِخَلْقِهِنَّ بِقَدِرٍ عَلَىٰٓ أَن يُحْۦِىَ ٱلْمَوْتَىٰ ۚ بَلَىٰٓ إِنَّهُۥ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,46,' وَيَوْمَ يُعْرَضُ ٱلَّذِينَ كَفَرُوا۟ عَلَى ٱلنَّارِ أَلَيْسَ هَذَا بِٱلْحَقِّ ۖ قَالُوا۟ بَلَىٰ وَرَبِّنَا ۚ قَالَ فَذُوقُوا۟ ٱلْعَذَابَ بِمَا كُنتُمْ تَكْفُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,46,' فَٱصْبِرْ كَمَا صَبَرَ أُو۟لُوا۟ ٱلْعَزْمِ مِنَ ٱلرُّسُلِ وَلَا تَسْتَعْجِل لَّهُمْ ۚ كَأَنَّهُمْ يَوْمَ يَرَوْنَ مَا يُوعَدُونَ لَمْ يَلْبَثُوٓا۟ إِلَّا سَاعَةًۭ مِّن نَّهَارٍۭ ۚ بَلَغٌۭ ۚ فَهَلْ يُهْلَكُ إِلَّا ٱلْقَوْمُ ٱلْفَسِقُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(47,47,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,47,' ٱلَّذِينَ كَفَرُوا۟ وَصَدُّوا۟ عَن سَبِيلِ ٱللَّهِ أَضَلَّ أَعْمَلَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,47,' وَٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ وَءَامَنُوا۟ بِمَا نُزِّلَ عَلَىٰ مُحَمَّدٍۢ وَهُوَ ٱلْحَقُّ مِن رَّبِّهِمْ ۙ كَفَّرَ عَنْهُمْ سَيِّـَٔاتِهِمْ وَأَصْلَحَ بَالَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,47,' ذَلِكَ بِأَنَّ ٱلَّذِينَ كَفَرُوا۟ ٱتَّبَعُوا۟ ٱلْبَطِلَ وَأَنَّ ٱلَّذِينَ ءَامَنُوا۟ ٱتَّبَعُوا۟ ٱلْحَقَّ مِن رَّبِّهِمْ ۚ كَذَلِكَ يَضْرِبُ ٱللَّهُ لِلنَّاسِ أَمْثَلَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,47,' فَإِذَا لَقِيتُمُ ٱلَّذِينَ كَفَرُوا۟ فَضَرْبَ ٱلرِّقَابِ حَتَّىٰٓ إِذَآ أَثْخَنتُمُوهُمْ فَشُدُّوا۟ ٱلْوَثَاقَ فَإِمَّا مَنًّۢا بَعْدُ وَإِمَّا فِدَآءً حَتَّىٰ تَضَعَ ٱلْحَرْبُ أَوْزَارَهَا ۚ ذَلِكَ وَلَوْ يَشَآءُ ٱللَّهُ لَٱنتَصَرَ مِنْهُمْ وَلَكِن لِّيَبْلُوَا۟ بَعْضَكُم بِبَعْضٍۢ ۗ وَٱلَّذِينَ قُتِلُوا۟ فِى سَبِيلِ ٱللَّهِ فَلَن يُضِلَّ أَعْمَلَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,47,' سَيَهْدِيهِمْ وَيُصْلِحُ بَالَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,47,' وَيُدْخِلُهُمُ ٱلْجَنَّةَ عَرَّفَهَا لَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,47,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِن تَنصُرُوا۟ ٱللَّهَ يَنصُرْكُمْ وَيُثَبِّتْ أَقْدَامَكُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,47,' وَٱلَّذِينَ كَفَرُوا۟ فَتَعْسًۭا لَّهُمْ وَأَضَلَّ أَعْمَلَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,47,' ذَلِكَ بِأَنَّهُمْ كَرِهُوا۟ مَآ أَنزَلَ ٱللَّهُ فَأَحْبَطَ أَعْمَلَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,47,' أَفَلَمْ يَسِيرُوا۟ فِى ٱلْأَرْضِ فَيَنظُرُوا۟ كَيْفَ كَانَ عَقِبَةُ ٱلَّذِينَ مِن قَبْلِهِمْ ۚ دَمَّرَ ٱللَّهُ عَلَيْهِمْ ۖ وَلِلْكَفِرِينَ أَمْثَلُهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,47,' ذَلِكَ بِأَنَّ ٱللَّهَ مَوْلَى ٱلَّذِينَ ءَامَنُوا۟ وَأَنَّ ٱلْكَفِرِينَ لَا مَوْلَىٰ لَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,47,' إِنَّ ٱللَّهَ يُدْخِلُ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ ۖ وَٱلَّذِينَ كَفَرُوا۟ يَتَمَتَّعُونَ وَيَأْكُلُونَ كَمَا تَأْكُلُ ٱلْأَنْعَمُ وَٱلنَّارُ مَثْوًۭى لَّهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,47,' وَكَأَيِّن مِّن قَرْيَةٍ هِىَ أَشَدُّ قُوَّةًۭ مِّن قَرْيَتِكَ ٱلَّتِىٓ أَخْرَجَتْكَ أَهْلَكْنَهُمْ فَلَا نَاصِرَ لَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,47,' أَفَمَن كَانَ عَلَىٰ بَيِّنَةٍۢ مِّن رَّبِّهِۦ كَمَن زُيِّنَ لَهُۥ سُوٓءُ عَمَلِهِۦ وَٱتَّبَعُوٓا۟ أَهْوَآءَهُم');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,47,' مَّثَلُ ٱلْجَنَّةِ ٱلَّتِى وُعِدَ ٱلْمُتَّقُونَ ۖ فِيهَآ أَنْهَرٌۭ مِّن مَّآءٍ غَيْرِ ءَاسِنٍۢ وَأَنْهَرٌۭ مِّن لَّبَنٍۢ لَّمْ يَتَغَيَّرْ طَعْمُهُۥ وَأَنْهَرٌۭ مِّنْ خَمْرٍۢ لَّذَّةٍۢ لِّلشَّرِبِينَ وَأَنْهَرٌۭ مِّنْ عَسَلٍۢ مُّصَفًّۭى ۖ وَلَهُمْ فِيهَا مِن كُلِّ ٱلثَّمَرَتِ وَمَغْفِرَةٌۭ مِّن رَّبِّهِمْ ۖ كَمَنْ هُوَ خَلِدٌۭ فِى ٱلنَّارِ وَسُقُوا۟ مَآءً حَمِيمًۭا فَقَطَّعَ أَمْعَآءَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,47,' وَمِنْهُم مَّن يَسْتَمِعُ إِلَيْكَ حَتَّىٰٓ إِذَا خَرَجُوا۟ مِنْ عِندِكَ قَالُوا۟ لِلَّذِينَ أُوتُوا۟ ٱلْعِلْمَ مَاذَا قَالَ ءَانِفًا ۚ أُو۟لَٓئِكَ ٱلَّذِينَ طَبَعَ ٱللَّهُ عَلَىٰ قُلُوبِهِمْ وَٱتَّبَعُوٓا۟ أَهْوَآءَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,47,' وَٱلَّذِينَ ٱهْتَدَوْا۟ زَادَهُمْ هُدًۭى وَءَاتَىٰهُمْ تَقْوَىٰهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,47,' فَهَلْ يَنظُرُونَ إِلَّا ٱلسَّاعَةَ أَن تَأْتِيَهُم بَغْتَةًۭ ۖ فَقَدْ جَآءَ أَشْرَاطُهَا ۚ فَأَنَّىٰ لَهُمْ إِذَا جَآءَتْهُمْ ذِكْرَىٰهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,47,' فَٱعْلَمْ أَنَّهُۥ لَآ إِلَهَ إِلَّا ٱللَّهُ وَٱسْتَغْفِرْ لِذَنۢبِكَ وَلِلْمُؤْمِنِينَ وَٱلْمُؤْمِنَتِ ۗ وَٱللَّهُ يَعْلَمُ مُتَقَلَّبَكُمْ وَمَثْوَىٰكُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,47,' وَيَقُولُ ٱلَّذِينَ ءَامَنُوا۟ لَوْلَا نُزِّلَتْ سُورَةٌۭ ۖ فَإِذَآ أُنزِلَتْ سُورَةٌۭ مُّحْكَمَةٌۭ وَذُكِرَ فِيهَا ٱلْقِتَالُ ۙ رَأَيْتَ ٱلَّذِينَ فِى قُلُوبِهِم مَّرَضٌۭ يَنظُرُونَ إِلَيْكَ نَظَرَ ٱلْمَغْشِىِّ عَلَيْهِ مِنَ ٱلْمَوْتِ ۖ فَأَوْلَىٰ لَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,47,' طَاعَةٌۭ وَقَوْلٌۭ مَّعْرُوفٌۭ ۚ فَإِذَا عَزَمَ ٱلْأَمْرُ فَلَوْ صَدَقُوا۟ ٱللَّهَ لَكَانَ خَيْرًۭا لَّهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,47,' فَهَلْ عَسَيْتُمْ إِن تَوَلَّيْتُمْ أَن تُفْسِدُوا۟ فِى ٱلْأَرْضِ وَتُقَطِّعُوٓا۟ أَرْحَامَكُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,47,' أُو۟لَٓئِكَ ٱلَّذِينَ لَعَنَهُمُ ٱللَّهُ فَأَصَمَّهُمْ وَأَعْمَىٰٓ أَبْصَرَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,47,' أَفَلَا يَتَدَبَّرُونَ ٱلْقُرْءَانَ أَمْ عَلَىٰ قُلُوبٍ أَقْفَالُهَآ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,47,' إِنَّ ٱلَّذِينَ ٱرْتَدُّوا۟ عَلَىٰٓ أَدْبَرِهِم مِّنۢ بَعْدِ مَا تَبَيَّنَ لَهُمُ ٱلْهُدَى ۙ ٱلشَّيْطَنُ سَوَّلَ لَهُمْ وَأَمْلَىٰ لَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,47,' ذَلِكَ بِأَنَّهُمْ قَالُوا۟ لِلَّذِينَ كَرِهُوا۟ مَا نَزَّلَ ٱللَّهُ سَنُطِيعُكُمْ فِى بَعْضِ ٱلْأَمْرِ ۖ وَٱللَّهُ يَعْلَمُ إِسْرَارَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,47,' فَكَيْفَ إِذَا تَوَفَّتْهُمُ ٱلْمَلَٓئِكَةُ يَضْرِبُونَ وُجُوهَهُمْ وَأَدْبَرَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,47,' ذَلِكَ بِأَنَّهُمُ ٱتَّبَعُوا۟ مَآ أَسْخَطَ ٱللَّهَ وَكَرِهُوا۟ رِضْوَنَهُۥ فَأَحْبَطَ أَعْمَلَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,47,' أَمْ حَسِبَ ٱلَّذِينَ فِى قُلُوبِهِم مَّرَضٌ أَن لَّن يُخْرِجَ ٱللَّهُ أَضْغَنَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,47,' وَلَوْ نَشَآءُ لَأَرَيْنَكَهُمْ فَلَعَرَفْتَهُم بِسِيمَهُمْ ۚ وَلَتَعْرِفَنَّهُمْ فِى لَحْنِ ٱلْقَوْلِ ۚ وَٱللَّهُ يَعْلَمُ أَعْمَلَكُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,47,' وَلَنَبْلُوَنَّكُمْ حَتَّىٰ نَعْلَمَ ٱلْمُجَهِدِينَ مِنكُمْ وَٱلصَّبِرِينَ وَنَبْلُوَا۟ أَخْبَارَكُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,47,' إِنَّ ٱلَّذِينَ كَفَرُوا۟ وَصَدُّوا۟ عَن سَبِيلِ ٱللَّهِ وَشَآقُّوا۟ ٱلرَّسُولَ مِنۢ بَعْدِ مَا تَبَيَّنَ لَهُمُ ٱلْهُدَىٰ لَن يَضُرُّوا۟ ٱللَّهَ شَيْـًۭٔا وَسَيُحْبِطُ أَعْمَلَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,47,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ أَطِيعُوا۟ ٱللَّهَ وَأَطِيعُوا۟ ٱلرَّسُولَ وَلَا تُبْطِلُوٓا۟ أَعْمَلَكُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,47,' إِنَّ ٱلَّذِينَ كَفَرُوا۟ وَصَدُّوا۟ عَن سَبِيلِ ٱللَّهِ ثُمَّ مَاتُوا۟ وَهُمْ كُفَّارٌۭ فَلَن يَغْفِرَ ٱللَّهُ لَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,47,' فَلَا تَهِنُوا۟ وَتَدْعُوٓا۟ إِلَى ٱلسَّلْمِ وَأَنتُمُ ٱلْأَعْلَوْنَ وَٱللَّهُ مَعَكُمْ وَلَن يَتِرَكُمْ أَعْمَلَكُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,47,' إِنَّمَا ٱلْحَيَوٰةُ ٱلدُّنْيَا لَعِبٌۭ وَلَهْوٌۭ ۚ وَإِن تُؤْمِنُوا۟ وَتَتَّقُوا۟ يُؤْتِكُمْ أُجُورَكُمْ وَلَا يَسْـَٔلْكُمْ أَمْوَلَكُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,47,' إِن يَسْـَٔلْكُمُوهَا فَيُحْفِكُمْ تَبْخَلُوا۟ وَيُخْرِجْ أَضْغَنَكُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,47,' هَٓأَنتُمْ هَٓؤُلَآءِ تُدْعَوْنَ لِتُنفِقُوا۟ فِى سَبِيلِ ٱللَّهِ فَمِنكُم مَّن يَبْخَلُ ۖ وَمَن يَبْخَلْ فَإِنَّمَا يَبْخَلُ عَن نَّفْسِهِۦ ۚ وَٱللَّهُ ٱلْغَنِىُّ وَأَنتُمُ ٱلْفُقَرَآءُ ۚ وَإِن تَتَوَلَّوْا۟ يَسْتَبْدِلْ قَوْمًا غَيْرَكُمْ ثُمَّ لَا يَكُونُوٓا۟ أَمْثَلَكُم');
+INSERT INTO chapters (id, number, quran_id) VALUES(48,48,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,48,' إِنَّا فَتَحْنَا لَكَ فَتْحًۭا مُّبِينًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,48,' لِّيَغْفِرَ لَكَ ٱللَّهُ مَا تَقَدَّمَ مِن ذَنۢبِكَ وَمَا تَأَخَّرَ وَيُتِمَّ نِعْمَتَهُۥ عَلَيْكَ وَيَهْدِيَكَ صِرَطًۭا مُّسْتَقِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,48,' وَيَنصُرَكَ ٱللَّهُ نَصْرًا عَزِيزًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,48,' هُوَ ٱلَّذِىٓ أَنزَلَ ٱلسَّكِينَةَ فِى قُلُوبِ ٱلْمُؤْمِنِينَ لِيَزْدَادُوٓا۟ إِيمَنًۭا مَّعَ إِيمَنِهِمْ ۗ وَلِلَّهِ جُنُودُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ وَكَانَ ٱللَّهُ عَلِيمًا حَكِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,48,' لِّيُدْخِلَ ٱلْمُؤْمِنِينَ وَٱلْمُؤْمِنَتِ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَا وَيُكَفِّرَ عَنْهُمْ سَيِّـَٔاتِهِمْ ۚ وَكَانَ ذَلِكَ عِندَ ٱللَّهِ فَوْزًا عَظِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,48,' وَيُعَذِّبَ ٱلْمُنَفِقِينَ وَٱلْمُنَفِقَتِ وَٱلْمُشْرِكِينَ وَٱلْمُشْرِكَتِ ٱلظَّآنِّينَ بِٱللَّهِ ظَنَّ ٱلسَّوْءِ ۚ عَلَيْهِمْ دَآئِرَةُ ٱلسَّوْءِ ۖ وَغَضِبَ ٱللَّهُ عَلَيْهِمْ وَلَعَنَهُمْ وَأَعَدَّ لَهُمْ جَهَنَّمَ ۖ وَسَآءَتْ مَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,48,' وَلِلَّهِ جُنُودُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ وَكَانَ ٱللَّهُ عَزِيزًا حَكِيمًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,48,' إِنَّآ أَرْسَلْنَكَ شَهِدًۭا وَمُبَشِّرًۭا وَنَذِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,48,' لِّتُؤْمِنُوا۟ بِٱللَّهِ وَرَسُولِهِۦ وَتُعَزِّرُوهُ وَتُوَقِّرُوهُ وَتُسَبِّحُوهُ بُكْرَةًۭ وَأَصِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,48,' إِنَّ ٱلَّذِينَ يُبَايِعُونَكَ إِنَّمَا يُبَايِعُونَ ٱللَّهَ يَدُ ٱللَّهِ فَوْقَ أَيْدِيهِمْ ۚ فَمَن نَّكَثَ فَإِنَّمَا يَنكُثُ عَلَىٰ نَفْسِهِۦ ۖ وَمَنْ أَوْفَىٰ بِمَا عَهَدَ عَلَيْهُ ٱللَّهَ فَسَيُؤْتِيهِ أَجْرًا عَظِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,48,' سَيَقُولُ لَكَ ٱلْمُخَلَّفُونَ مِنَ ٱلْأَعْرَابِ شَغَلَتْنَآ أَمْوَلُنَا وَأَهْلُونَا فَٱسْتَغْفِرْ لَنَا ۚ يَقُولُونَ بِأَلْسِنَتِهِم مَّا لَيْسَ فِى قُلُوبِهِمْ ۚ قُلْ فَمَن يَمْلِكُ لَكُم مِّنَ ٱللَّهِ شَيْـًٔا إِنْ أَرَادَ بِكُمْ ضَرًّا أَوْ أَرَادَ بِكُمْ نَفْعًۢا ۚ بَلْ كَانَ ٱللَّهُ بِمَا تَعْمَلُونَ خَبِيرًۢا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,48,' بَلْ ظَنَنتُمْ أَن لَّن يَنقَلِبَ ٱلرَّسُولُ وَٱلْمُؤْمِنُونَ إِلَىٰٓ أَهْلِيهِمْ أَبَدًۭا وَزُيِّنَ ذَلِكَ فِى قُلُوبِكُمْ وَظَنَنتُمْ ظَنَّ ٱلسَّوْءِ وَكُنتُمْ قَوْمًۢا بُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,48,' وَمَن لَّمْ يُؤْمِنۢ بِٱللَّهِ وَرَسُولِهِۦ فَإِنَّآ أَعْتَدْنَا لِلْكَفِرِينَ سَعِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,48,' وَلِلَّهِ مُلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ يَغْفِرُ لِمَن يَشَآءُ وَيُعَذِّبُ مَن يَشَآءُ ۚ وَكَانَ ٱللَّهُ غَفُورًۭا رَّحِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,48,' سَيَقُولُ ٱلْمُخَلَّفُونَ إِذَا ٱنطَلَقْتُمْ إِلَىٰ مَغَانِمَ لِتَأْخُذُوهَا ذَرُونَا نَتَّبِعْكُمْ ۖ يُرِيدُونَ أَن يُبَدِّلُوا۟ كَلَمَ ٱللَّهِ ۚ قُل لَّن تَتَّبِعُونَا كَذَلِكُمْ قَالَ ٱللَّهُ مِن قَبْلُ ۖ فَسَيَقُولُونَ بَلْ تَحْسُدُونَنَا ۚ بَلْ كَانُوا۟ لَا يَفْقَهُونَ إِلَّا قَلِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,48,' قُل لِّلْمُخَلَّفِينَ مِنَ ٱلْأَعْرَابِ سَتُدْعَوْنَ إِلَىٰ قَوْمٍ أُو۟لِى بَأْسٍۢ شَدِيدٍۢ تُقَتِلُونَهُمْ أَوْ يُسْلِمُونَ ۖ فَإِن تُطِيعُوا۟ يُؤْتِكُمُ ٱللَّهُ أَجْرًا حَسَنًۭا ۖ وَإِن تَتَوَلَّوْا۟ كَمَا تَوَلَّيْتُم مِّن قَبْلُ يُعَذِّبْكُمْ عَذَابًا أَلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,48,' لَّيْسَ عَلَى ٱلْأَعْمَىٰ حَرَجٌۭ وَلَا عَلَى ٱلْأَعْرَجِ حَرَجٌۭ وَلَا عَلَى ٱلْمَرِيضِ حَرَجٌۭ ۗ وَمَن يُطِعِ ٱللَّهَ وَرَسُولَهُۥ يُدْخِلْهُ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ ۖ وَمَن يَتَوَلَّ يُعَذِّبْهُ عَذَابًا أَلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,48,' لَّقَدْ رَضِىَ ٱللَّهُ عَنِ ٱلْمُؤْمِنِينَ إِذْ يُبَايِعُونَكَ تَحْتَ ٱلشَّجَرَةِ فَعَلِمَ مَا فِى قُلُوبِهِمْ فَأَنزَلَ ٱلسَّكِينَةَ عَلَيْهِمْ وَأَثَبَهُمْ فَتْحًۭا قَرِيبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,48,' وَمَغَانِمَ كَثِيرَةًۭ يَأْخُذُونَهَا ۗ وَكَانَ ٱللَّهُ عَزِيزًا حَكِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,48,' وَعَدَكُمُ ٱللَّهُ مَغَانِمَ كَثِيرَةًۭ تَأْخُذُونَهَا فَعَجَّلَ لَكُمْ هَذِهِۦ وَكَفَّ أَيْدِىَ ٱلنَّاسِ عَنكُمْ وَلِتَكُونَ ءَايَةًۭ لِّلْمُؤْمِنِينَ وَيَهْدِيَكُمْ صِرَطًۭا مُّسْتَقِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,48,' وَأُخْرَىٰ لَمْ تَقْدِرُوا۟ عَلَيْهَا قَدْ أَحَاطَ ٱللَّهُ بِهَا ۚ وَكَانَ ٱللَّهُ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,48,' وَلَوْ قَتَلَكُمُ ٱلَّذِينَ كَفَرُوا۟ لَوَلَّوُا۟ ٱلْأَدْبَرَ ثُمَّ لَا يَجِدُونَ وَلِيًّۭا وَلَا نَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,48,' سُنَّةَ ٱللَّهِ ٱلَّتِى قَدْ خَلَتْ مِن قَبْلُ ۖ وَلَن تَجِدَ لِسُنَّةِ ٱللَّهِ تَبْدِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,48,' وَهُوَ ٱلَّذِى كَفَّ أَيْدِيَهُمْ عَنكُمْ وَأَيْدِيَكُمْ عَنْهُم بِبَطْنِ مَكَّةَ مِنۢ بَعْدِ أَنْ أَظْفَرَكُمْ عَلَيْهِمْ ۚ وَكَانَ ٱللَّهُ بِمَا تَعْمَلُونَ بَصِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,48,' هُمُ ٱلَّذِينَ كَفَرُوا۟ وَصَدُّوكُمْ عَنِ ٱلْمَسْجِدِ ٱلْحَرَامِ وَٱلْهَدْىَ مَعْكُوفًا أَن يَبْلُغَ مَحِلَّهُۥ ۚ وَلَوْلَا رِجَالٌۭ مُّؤْمِنُونَ وَنِسَآءٌۭ مُّؤْمِنَتٌۭ لَّمْ تَعْلَمُوهُمْ أَن تَطَـُٔوهُمْ فَتُصِيبَكُم مِّنْهُم مَّعَرَّةٌۢ بِغَيْرِ عِلْمٍۢ ۖ لِّيُدْخِلَ ٱللَّهُ فِى رَحْمَتِهِۦ مَن يَشَآءُ ۚ لَوْ تَزَيَّلُوا۟ لَعَذَّبْنَا ٱلَّذِينَ كَفَرُوا۟ مِنْهُمْ عَذَابًا أَلِيمًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,48,' إِذْ جَعَلَ ٱلَّذِينَ كَفَرُوا۟ فِى قُلُوبِهِمُ ٱلْحَمِيَّةَ حَمِيَّةَ ٱلْجَهِلِيَّةِ فَأَنزَلَ ٱللَّهُ سَكِينَتَهُۥ عَلَىٰ رَسُولِهِۦ وَعَلَى ٱلْمُؤْمِنِينَ وَأَلْزَمَهُمْ كَلِمَةَ ٱلتَّقْوَىٰ وَكَانُوٓا۟ أَحَقَّ بِهَا وَأَهْلَهَا ۚ وَكَانَ ٱللَّهُ بِكُلِّ شَىْءٍ عَلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,48,' لَّقَدْ صَدَقَ ٱللَّهُ رَسُولَهُ ٱلرُّءْيَا بِٱلْحَقِّ ۖ لَتَدْخُلُنَّ ٱلْمَسْجِدَ ٱلْحَرَامَ إِن شَآءَ ٱللَّهُ ءَامِنِينَ مُحَلِّقِينَ رُءُوسَكُمْ وَمُقَصِّرِينَ لَا تَخَافُونَ ۖ فَعَلِمَ مَا لَمْ تَعْلَمُوا۟ فَجَعَلَ مِن دُونِ ذَلِكَ فَتْحًۭا قَرِيبًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,48,' هُوَ ٱلَّذِىٓ أَرْسَلَ رَسُولَهُۥ بِٱلْهُدَىٰ وَدِينِ ٱلْحَقِّ لِيُظْهِرَهُۥ عَلَى ٱلدِّينِ كُلِّهِۦ ۚ وَكَفَىٰ بِٱللَّهِ شَهِيدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,48,' مُّحَمَّدٌۭ رَّسُولُ ٱللَّهِ ۚ وَٱلَّذِينَ مَعَهُۥٓ أَشِدَّآءُ عَلَى ٱلْكُفَّارِ رُحَمَآءُ بَيْنَهُمْ ۖ تَرَىٰهُمْ رُكَّعًۭا سُجَّدًۭا يَبْتَغُونَ فَضْلًۭا مِّنَ ٱللَّهِ وَرِضْوَنًۭا ۖ سِيمَاهُمْ فِى وُجُوهِهِم مِّنْ أَثَرِ ٱلسُّجُودِ ۚ ذَلِكَ مَثَلُهُمْ فِى ٱلتَّوْرَىٰةِ ۚ وَمَثَلُهُمْ فِى ٱلْإِنجِيلِ كَزَرْعٍ أَخْرَجَ شَطْـَٔهُۥ فَـَٔازَرَهُۥ فَٱسْتَغْلَظَ فَٱسْتَوَىٰ عَلَىٰ سُوقِهِۦ يُعْجِبُ ٱلزُّرَّاعَ لِيَغِيظَ بِهِمُ ٱلْكُفَّارَ ۗ وَعَدَ ٱللَّهُ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ مِنْهُم مَّغْفِرَةًۭ وَأَجْرًا عَظِيمًۢا');
+INSERT INTO chapters (id, number, quran_id) VALUES(49,49,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,49,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تُقَدِّمُوا۟ بَيْنَ يَدَىِ ٱللَّهِ وَرَسُولِهِۦ ۖ وَٱتَّقُوا۟ ٱللَّهَ ۚ إِنَّ ٱللَّهَ سَمِيعٌ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,49,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَرْفَعُوٓا۟ أَصْوَتَكُمْ فَوْقَ صَوْتِ ٱلنَّبِىِّ وَلَا تَجْهَرُوا۟ لَهُۥ بِٱلْقَوْلِ كَجَهْرِ بَعْضِكُمْ لِبَعْضٍ أَن تَحْبَطَ أَعْمَلُكُمْ وَأَنتُمْ لَا تَشْعُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,49,' إِنَّ ٱلَّذِينَ يَغُضُّونَ أَصْوَتَهُمْ عِندَ رَسُولِ ٱللَّهِ أُو۟لَٓئِكَ ٱلَّذِينَ ٱمْتَحَنَ ٱللَّهُ قُلُوبَهُمْ لِلتَّقْوَىٰ ۚ لَهُم مَّغْفِرَةٌۭ وَأَجْرٌ عَظِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,49,' إِنَّ ٱلَّذِينَ يُنَادُونَكَ مِن وَرَآءِ ٱلْحُجُرَتِ أَكْثَرُهُمْ لَا يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,49,' وَلَوْ أَنَّهُمْ صَبَرُوا۟ حَتَّىٰ تَخْرُجَ إِلَيْهِمْ لَكَانَ خَيْرًۭا لَّهُمْ ۚ وَٱللَّهُ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,49,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِن جَآءَكُمْ فَاسِقٌۢ بِنَبَإٍۢ فَتَبَيَّنُوٓا۟ أَن تُصِيبُوا۟ قَوْمًۢا بِجَهَلَةٍۢ فَتُصْبِحُوا۟ عَلَىٰ مَا فَعَلْتُمْ نَدِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,49,' وَٱعْلَمُوٓا۟ أَنَّ فِيكُمْ رَسُولَ ٱللَّهِ ۚ لَوْ يُطِيعُكُمْ فِى كَثِيرٍۢ مِّنَ ٱلْأَمْرِ لَعَنِتُّمْ وَلَكِنَّ ٱللَّهَ حَبَّبَ إِلَيْكُمُ ٱلْإِيمَنَ وَزَيَّنَهُۥ فِى قُلُوبِكُمْ وَكَرَّهَ إِلَيْكُمُ ٱلْكُفْرَ وَٱلْفُسُوقَ وَٱلْعِصْيَانَ ۚ أُو۟لَٓئِكَ هُمُ ٱلرَّشِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,49,' فَضْلًۭا مِّنَ ٱللَّهِ وَنِعْمَةًۭ ۚ وَٱللَّهُ عَلِيمٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,49,' وَإِن طَآئِفَتَانِ مِنَ ٱلْمُؤْمِنِينَ ٱقْتَتَلُوا۟ فَأَصْلِحُوا۟ بَيْنَهُمَا ۖ فَإِنۢ بَغَتْ إِحْدَىٰهُمَا عَلَى ٱلْأُخْرَىٰ فَقَتِلُوا۟ ٱلَّتِى تَبْغِى حَتَّىٰ تَفِىٓءَ إِلَىٰٓ أَمْرِ ٱللَّهِ ۚ فَإِن فَآءَتْ فَأَصْلِحُوا۟ بَيْنَهُمَا بِٱلْعَدْلِ وَأَقْسِطُوٓا۟ ۖ إِنَّ ٱللَّهَ يُحِبُّ ٱلْمُقْسِطِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,49,' إِنَّمَا ٱلْمُؤْمِنُونَ إِخْوَةٌۭ فَأَصْلِحُوا۟ بَيْنَ أَخَوَيْكُمْ ۚ وَٱتَّقُوا۟ ٱللَّهَ لَعَلَّكُمْ تُرْحَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,49,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا يَسْخَرْ قَوْمٌۭ مِّن قَوْمٍ عَسَىٰٓ أَن يَكُونُوا۟ خَيْرًۭا مِّنْهُمْ وَلَا نِسَآءٌۭ مِّن نِّسَآءٍ عَسَىٰٓ أَن يَكُنَّ خَيْرًۭا مِّنْهُنَّ ۖ وَلَا تَلْمِزُوٓا۟ أَنفُسَكُمْ وَلَا تَنَابَزُوا۟ بِٱلْأَلْقَبِ ۖ بِئْسَ ٱلِٱسْمُ ٱلْفُسُوقُ بَعْدَ ٱلْإِيمَنِ ۚ وَمَن لَّمْ يَتُبْ فَأُو۟لَٓئِكَ هُمُ ٱلظَّلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,49,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ ٱجْتَنِبُوا۟ كَثِيرًۭا مِّنَ ٱلظَّنِّ إِنَّ بَعْضَ ٱلظَّنِّ إِثْمٌۭ ۖ وَلَا تَجَسَّسُوا۟ وَلَا يَغْتَب بَّعْضُكُم بَعْضًا ۚ أَيُحِبُّ أَحَدُكُمْ أَن يَأْكُلَ لَحْمَ أَخِيهِ مَيْتًۭا فَكَرِهْتُمُوهُ ۚ وَٱتَّقُوا۟ ٱللَّهَ ۚ إِنَّ ٱللَّهَ تَوَّابٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,49,' يَٓأَيُّهَا ٱلنَّاسُ إِنَّا خَلَقْنَكُم مِّن ذَكَرٍۢ وَأُنثَىٰ وَجَعَلْنَكُمْ شُعُوبًۭا وَقَبَآئِلَ لِتَعَارَفُوٓا۟ ۚ إِنَّ أَكْرَمَكُمْ عِندَ ٱللَّهِ أَتْقَىٰكُمْ ۚ إِنَّ ٱللَّهَ عَلِيمٌ خَبِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,49,' قَالَتِ ٱلْأَعْرَابُ ءَامَنَّا ۖ قُل لَّمْ تُؤْمِنُوا۟ وَلَكِن قُولُوٓا۟ أَسْلَمْنَا وَلَمَّا يَدْخُلِ ٱلْإِيمَنُ فِى قُلُوبِكُمْ ۖ وَإِن تُطِيعُوا۟ ٱللَّهَ وَرَسُولَهُۥ لَا يَلِتْكُم مِّنْ أَعْمَلِكُمْ شَيْـًٔا ۚ إِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,49,' إِنَّمَا ٱلْمُؤْمِنُونَ ٱلَّذِينَ ءَامَنُوا۟ بِٱللَّهِ وَرَسُولِهِۦ ثُمَّ لَمْ يَرْتَابُوا۟ وَجَهَدُوا۟ بِأَمْوَلِهِمْ وَأَنفُسِهِمْ فِى سَبِيلِ ٱللَّهِ ۚ أُو۟لَٓئِكَ هُمُ ٱلصَّدِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,49,' قُلْ أَتُعَلِّمُونَ ٱللَّهَ بِدِينِكُمْ وَٱللَّهُ يَعْلَمُ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۚ وَٱللَّهُ بِكُلِّ شَىْءٍ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,49,' يَمُنُّونَ عَلَيْكَ أَنْ أَسْلَمُوا۟ ۖ قُل لَّا تَمُنُّوا۟ عَلَىَّ إِسْلَمَكُم ۖ بَلِ ٱللَّهُ يَمُنُّ عَلَيْكُمْ أَنْ هَدَىٰكُمْ لِلْإِيمَنِ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,49,' إِنَّ ٱللَّهَ يَعْلَمُ غَيْبَ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ وَٱللَّهُ بَصِيرٌۢ بِمَا تَعْمَلُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(50,50,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,50,' قٓ ۚ وَٱلْقُرْءَانِ ٱلْمَجِيدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,50,' بَلْ عَجِبُوٓا۟ أَن جَآءَهُم مُّنذِرٌۭ مِّنْهُمْ فَقَالَ ٱلْكَفِرُونَ هَذَا شَىْءٌ عَجِيبٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,50,' أَءِذَا مِتْنَا وَكُنَّا تُرَابًۭا ۖ ذَلِكَ رَجْعٌۢ بَعِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,50,' قَدْ عَلِمْنَا مَا تَنقُصُ ٱلْأَرْضُ مِنْهُمْ ۖ وَعِندَنَا كِتَبٌ حَفِيظٌۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,50,' بَلْ كَذَّبُوا۟ بِٱلْحَقِّ لَمَّا جَآءَهُمْ فَهُمْ فِىٓ أَمْرٍۢ مَّرِيجٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,50,' أَفَلَمْ يَنظُرُوٓا۟ إِلَى ٱلسَّمَآءِ فَوْقَهُمْ كَيْفَ بَنَيْنَهَا وَزَيَّنَّهَا وَمَا لَهَا مِن فُرُوجٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,50,' وَٱلْأَرْضَ مَدَدْنَهَا وَأَلْقَيْنَا فِيهَا رَوَسِىَ وَأَنۢبَتْنَا فِيهَا مِن كُلِّ زَوْجٍۭ بَهِيجٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,50,' تَبْصِرَةًۭ وَذِكْرَىٰ لِكُلِّ عَبْدٍۢ مُّنِيبٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,50,' وَنَزَّلْنَا مِنَ ٱلسَّمَآءِ مَآءًۭ مُّبَرَكًۭا فَأَنۢبَتْنَا بِهِۦ جَنَّتٍۢ وَحَبَّ ٱلْحَصِيدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,50,' وَٱلنَّخْلَ بَاسِقَتٍۢ لَّهَا طَلْعٌۭ نَّضِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,50,' رِّزْقًۭا لِّلْعِبَادِ ۖ وَأَحْيَيْنَا بِهِۦ بَلْدَةًۭ مَّيْتًۭا ۚ كَذَلِكَ ٱلْخُرُوجُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,50,' كَذَّبَتْ قَبْلَهُمْ قَوْمُ نُوحٍۢ وَأَصْحَبُ ٱلرَّسِّ وَثَمُودُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,50,' وَعَادٌۭ وَفِرْعَوْنُ وَإِخْوَنُ لُوطٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,50,' وَأَصْحَبُ ٱلْأَيْكَةِ وَقَوْمُ تُبَّعٍۢ ۚ كُلٌّۭ كَذَّبَ ٱلرُّسُلَ فَحَقَّ وَعِيدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,50,' أَفَعَيِينَا بِٱلْخَلْقِ ٱلْأَوَّلِ ۚ بَلْ هُمْ فِى لَبْسٍۢ مِّنْ خَلْقٍۢ جَدِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,50,' وَلَقَدْ خَلَقْنَا ٱلْإِنسَنَ وَنَعْلَمُ مَا تُوَسْوِسُ بِهِۦ نَفْسُهُۥ ۖ وَنَحْنُ أَقْرَبُ إِلَيْهِ مِنْ حَبْلِ ٱلْوَرِيدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,50,' إِذْ يَتَلَقَّى ٱلْمُتَلَقِّيَانِ عَنِ ٱلْيَمِينِ وَعَنِ ٱلشِّمَالِ قَعِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,50,' مَّا يَلْفِظُ مِن قَوْلٍ إِلَّا لَدَيْهِ رَقِيبٌ عَتِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,50,' وَجَآءَتْ سَكْرَةُ ٱلْمَوْتِ بِٱلْحَقِّ ۖ ذَلِكَ مَا كُنتَ مِنْهُ تَحِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,50,' وَنُفِخَ فِى ٱلصُّورِ ۚ ذَلِكَ يَوْمُ ٱلْوَعِيدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,50,' وَجَآءَتْ كُلُّ نَفْسٍۢ مَّعَهَا سَآئِقٌۭ وَشَهِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,50,' لَّقَدْ كُنتَ فِى غَفْلَةٍۢ مِّنْ هَذَا فَكَشَفْنَا عَنكَ غِطَآءَكَ فَبَصَرُكَ ٱلْيَوْمَ حَدِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,50,' وَقَالَ قَرِينُهُۥ هَذَا مَا لَدَىَّ عَتِيدٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,50,' أَلْقِيَا فِى جَهَنَّمَ كُلَّ كَفَّارٍ عَنِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,50,' مَّنَّاعٍۢ لِّلْخَيْرِ مُعْتَدٍۢ مُّرِيبٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,50,' ٱلَّذِى جَعَلَ مَعَ ٱللَّهِ إِلَهًا ءَاخَرَ فَأَلْقِيَاهُ فِى ٱلْعَذَابِ ٱلشَّدِيدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,50,' قَالَ قَرِينُهُۥ رَبَّنَا مَآ أَطْغَيْتُهُۥ وَلَكِن كَانَ فِى ضَلَلٍۭ بَعِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,50,' قَالَ لَا تَخْتَصِمُوا۟ لَدَىَّ وَقَدْ قَدَّمْتُ إِلَيْكُم بِٱلْوَعِيدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,50,' مَا يُبَدَّلُ ٱلْقَوْلُ لَدَىَّ وَمَآ أَنَا۠ بِظَلَّمٍۢ لِّلْعَبِيدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,50,' يَوْمَ نَقُولُ لِجَهَنَّمَ هَلِ ٱمْتَلَأْتِ وَتَقُولُ هَلْ مِن مَّزِيدٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,50,' وَأُزْلِفَتِ ٱلْجَنَّةُ لِلْمُتَّقِينَ غَيْرَ بَعِيدٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,50,' هَذَا مَا تُوعَدُونَ لِكُلِّ أَوَّابٍ حَفِيظٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,50,' مَّنْ خَشِىَ ٱلرَّحْمَنَ بِٱلْغَيْبِ وَجَآءَ بِقَلْبٍۢ مُّنِيبٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,50,' ٱدْخُلُوهَا بِسَلَمٍۢ ۖ ذَلِكَ يَوْمُ ٱلْخُلُودِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,50,' لَهُم مَّا يَشَآءُونَ فِيهَا وَلَدَيْنَا مَزِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,50,' وَكَمْ أَهْلَكْنَا قَبْلَهُم مِّن قَرْنٍ هُمْ أَشَدُّ مِنْهُم بَطْشًۭا فَنَقَّبُوا۟ فِى ٱلْبِلَدِ هَلْ مِن مَّحِيصٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,50,' إِنَّ فِى ذَلِكَ لَذِكْرَىٰ لِمَن كَانَ لَهُۥ قَلْبٌ أَوْ أَلْقَى ٱلسَّمْعَ وَهُوَ شَهِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,50,' وَلَقَدْ خَلَقْنَا ٱلسَّمَوَتِ وَٱلْأَرْضَ وَمَا بَيْنَهُمَا فِى سِتَّةِ أَيَّامٍۢ وَمَا مَسَّنَا مِن لُّغُوبٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,50,' فَٱصْبِرْ عَلَىٰ مَا يَقُولُونَ وَسَبِّحْ بِحَمْدِ رَبِّكَ قَبْلَ طُلُوعِ ٱلشَّمْسِ وَقَبْلَ ٱلْغُرُوبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,50,' وَمِنَ ٱلَّيْلِ فَسَبِّحْهُ وَأَدْبَرَ ٱلسُّجُودِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,50,' وَٱسْتَمِعْ يَوْمَ يُنَادِ ٱلْمُنَادِ مِن مَّكَانٍۢ قَرِيبٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,50,' يَوْمَ يَسْمَعُونَ ٱلصَّيْحَةَ بِٱلْحَقِّ ۚ ذَلِكَ يَوْمُ ٱلْخُرُوجِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,50,' إِنَّا نَحْنُ نُحْىِۦئ وَنُمِيتُ وَإِلَيْنَا ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,50,' يَوْمَ تَشَقَّقُ ٱلْأَرْضُ عَنْهُمْ سِرَاعًۭا ۚ ذَلِكَ حَشْرٌ عَلَيْنَا يَسِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,50,' نَّحْنُ أَعْلَمُ بِمَا يَقُولُونَ ۖ وَمَآ أَنتَ عَلَيْهِم بِجَبَّارٍۢ ۖ فَذَكِّرْ بِٱلْقُرْءَانِ مَن يَخَافُ وَعِيدِ');
+INSERT INTO chapters (id, number, quran_id) VALUES(51,51,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,51,' وَٱلذَّرِيَتِ ذَرْوًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,51,' فَٱلْحَمِلَتِ وِقْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,51,' فَٱلْجَرِيَتِ يُسْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,51,' فَٱلْمُقَسِّمَتِ أَمْرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,51,' إِنَّمَا تُوعَدُونَ لَصَادِقٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,51,' وَإِنَّ ٱلدِّينَ لَوَقِعٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,51,' وَٱلسَّمَآءِ ذَاتِ ٱلْحُبُكِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,51,' إِنَّكُمْ لَفِى قَوْلٍۢ مُّخْتَلِفٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,51,' يُؤْفَكُ عَنْهُ مَنْ أُفِكَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,51,' قُتِلَ ٱلْخَرَّصُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,51,' ٱلَّذِينَ هُمْ فِى غَمْرَةٍۢ سَاهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,51,' يَسْـَٔلُونَ أَيَّانَ يَوْمُ ٱلدِّينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,51,' يَوْمَ هُمْ عَلَى ٱلنَّارِ يُفْتَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,51,' ذُوقُوا۟ فِتْنَتَكُمْ هَذَا ٱلَّذِى كُنتُم بِهِۦ تَسْتَعْجِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,51,' إِنَّ ٱلْمُتَّقِينَ فِى جَنَّتٍۢ وَعُيُونٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,51,' ءَاخِذِينَ مَآ ءَاتَىٰهُمْ رَبُّهُمْ ۚ إِنَّهُمْ كَانُوا۟ قَبْلَ ذَلِكَ مُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,51,' كَانُوا۟ قَلِيلًۭا مِّنَ ٱلَّيْلِ مَا يَهْجَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,51,' وَبِٱلْأَسْحَارِ هُمْ يَسْتَغْفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,51,' وَفِىٓ أَمْوَلِهِمْ حَقٌّۭ لِّلسَّآئِلِ وَٱلْمَحْرُومِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,51,' وَفِى ٱلْأَرْضِ ءَايَتٌۭ لِّلْمُوقِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,51,' وَفِىٓ أَنفُسِكُمْ ۚ أَفَلَا تُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,51,' وَفِى ٱلسَّمَآءِ رِزْقُكُمْ وَمَا تُوعَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,51,' فَوَرَبِّ ٱلسَّمَآءِ وَٱلْأَرْضِ إِنَّهُۥ لَحَقٌّۭ مِّثْلَ مَآ أَنَّكُمْ تَنطِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,51,' هَلْ أَتَىٰكَ حَدِيثُ ضَيْفِ إِبْرَهِيمَ ٱلْمُكْرَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,51,' إِذْ دَخَلُوا۟ عَلَيْهِ فَقَالُوا۟ سَلَمًۭا ۖ قَالَ سَلَمٌۭ قَوْمٌۭ مُّنكَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,51,' فَرَاغَ إِلَىٰٓ أَهْلِهِۦ فَجَآءَ بِعِجْلٍۢ سَمِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,51,' فَقَرَّبَهُۥٓ إِلَيْهِمْ قَالَ أَلَا تَأْكُلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,51,' فَأَوْجَسَ مِنْهُمْ خِيفَةًۭ ۖ قَالُوا۟ لَا تَخَفْ ۖ وَبَشَّرُوهُ بِغُلَمٍ عَلِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,51,' فَأَقْبَلَتِ ٱمْرَأَتُهُۥ فِى صَرَّةٍۢ فَصَكَّتْ وَجْهَهَا وَقَالَتْ عَجُوزٌ عَقِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,51,' قَالُوا۟ كَذَلِكِ قَالَ رَبُّكِ ۖ إِنَّهُۥ هُوَ ٱلْحَكِيمُ ٱلْعَلِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,51,' قَالَ فَمَا خَطْبُكُمْ أَيُّهَا ٱلْمُرْسَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,51,' قَالُوٓا۟ إِنَّآ أُرْسِلْنَآ إِلَىٰ قَوْمٍۢ مُّجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,51,' لِنُرْسِلَ عَلَيْهِمْ حِجَارَةًۭ مِّن طِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,51,' مُّسَوَّمَةً عِندَ رَبِّكَ لِلْمُسْرِفِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,51,' فَأَخْرَجْنَا مَن كَانَ فِيهَا مِنَ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,51,' فَمَا وَجَدْنَا فِيهَا غَيْرَ بَيْتٍۢ مِّنَ ٱلْمُسْلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,51,' وَتَرَكْنَا فِيهَآ ءَايَةًۭ لِّلَّذِينَ يَخَافُونَ ٱلْعَذَابَ ٱلْأَلِيمَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,51,' وَفِى مُوسَىٰٓ إِذْ أَرْسَلْنَهُ إِلَىٰ فِرْعَوْنَ بِسُلْطَنٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,51,' فَتَوَلَّىٰ بِرُكْنِهِۦ وَقَالَ سَحِرٌ أَوْ مَجْنُونٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,51,' فَأَخَذْنَهُ وَجُنُودَهُۥ فَنَبَذْنَهُمْ فِى ٱلْيَمِّ وَهُوَ مُلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,51,' وَفِى عَادٍ إِذْ أَرْسَلْنَا عَلَيْهِمُ ٱلرِّيحَ ٱلْعَقِيمَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,51,' مَا تَذَرُ مِن شَىْءٍ أَتَتْ عَلَيْهِ إِلَّا جَعَلَتْهُ كَٱلرَّمِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,51,' وَفِى ثَمُودَ إِذْ قِيلَ لَهُمْ تَمَتَّعُوا۟ حَتَّىٰ حِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,51,' فَعَتَوْا۟ عَنْ أَمْرِ رَبِّهِمْ فَأَخَذَتْهُمُ ٱلصَّعِقَةُ وَهُمْ يَنظُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,51,' فَمَا ٱسْتَطَعُوا۟ مِن قِيَامٍۢ وَمَا كَانُوا۟ مُنتَصِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,51,' وَقَوْمَ نُوحٍۢ مِّن قَبْلُ ۖ إِنَّهُمْ كَانُوا۟ قَوْمًۭا فَسِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,51,' وَٱلسَّمَآءَ بَنَيْنَهَا بِأَيْي۟دٍۢ وَإِنَّا لَمُوسِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,51,' وَٱلْأَرْضَ فَرَشْنَهَا فَنِعْمَ ٱلْمَهِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,51,' وَمِن كُلِّ شَىْءٍ خَلَقْنَا زَوْجَيْنِ لَعَلَّكُمْ تَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,51,' فَفِرُّوٓا۟ إِلَى ٱللَّهِ ۖ إِنِّى لَكُم مِّنْهُ نَذِيرٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,51,' وَلَا تَجْعَلُوا۟ مَعَ ٱللَّهِ إِلَهًا ءَاخَرَ ۖ إِنِّى لَكُم مِّنْهُ نَذِيرٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,51,' كَذَلِكَ مَآ أَتَى ٱلَّذِينَ مِن قَبْلِهِم مِّن رَّسُولٍ إِلَّا قَالُوا۟ سَاحِرٌ أَوْ مَجْنُونٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,51,' أَتَوَاصَوْا۟ بِهِۦ ۚ بَلْ هُمْ قَوْمٌۭ طَاغُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,51,' فَتَوَلَّ عَنْهُمْ فَمَآ أَنتَ بِمَلُومٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,51,' وَذَكِّرْ فَإِنَّ ٱلذِّكْرَىٰ تَنفَعُ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,51,' وَمَا خَلَقْتُ ٱلْجِنَّ وَٱلْإِنسَ إِلَّا لِيَعْبُدُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,51,' مَآ أُرِيدُ مِنْهُم مِّن رِّزْقٍۢ وَمَآ أُرِيدُ أَن يُطْعِمُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,51,' إِنَّ ٱللَّهَ هُوَ ٱلرَّزَّاقُ ذُو ٱلْقُوَّةِ ٱلْمَتِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,51,' فَإِنَّ لِلَّذِينَ ظَلَمُوا۟ ذَنُوبًۭا مِّثْلَ ذَنُوبِ أَصْحَبِهِمْ فَلَا يَسْتَعْجِلُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,51,' فَوَيْلٌۭ لِّلَّذِينَ كَفَرُوا۟ مِن يَوْمِهِمُ ٱلَّذِى يُوعَدُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(52,52,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,52,' وَٱلطُّورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,52,' وَكِتَبٍۢ مَّسْطُورٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,52,' فِى رَقٍّۢ مَّنشُورٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,52,' وَٱلْبَيْتِ ٱلْمَعْمُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,52,' وَٱلسَّقْفِ ٱلْمَرْفُوعِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,52,' وَٱلْبَحْرِ ٱلْمَسْجُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,52,' إِنَّ عَذَابَ رَبِّكَ لَوَقِعٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,52,' مَّا لَهُۥ مِن دَافِعٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,52,' يَوْمَ تَمُورُ ٱلسَّمَآءُ مَوْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,52,' وَتَسِيرُ ٱلْجِبَالُ سَيْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,52,' فَوَيْلٌۭ يَوْمَئِذٍۢ لِّلْمُكَذِّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,52,' ٱلَّذِينَ هُمْ فِى خَوْضٍۢ يَلْعَبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,52,' يَوْمَ يُدَعُّونَ إِلَىٰ نَارِ جَهَنَّمَ دَعًّا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,52,' هَذِهِ ٱلنَّارُ ٱلَّتِى كُنتُم بِهَا تُكَذِّبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,52,' أَفَسِحْرٌ هَذَآ أَمْ أَنتُمْ لَا تُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,52,' ٱصْلَوْهَا فَٱصْبِرُوٓا۟ أَوْ لَا تَصْبِرُوا۟ سَوَآءٌ عَلَيْكُمْ ۖ إِنَّمَا تُجْزَوْنَ مَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,52,' إِنَّ ٱلْمُتَّقِينَ فِى جَنَّتٍۢ وَنَعِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,52,' فَكِهِينَ بِمَآ ءَاتَىٰهُمْ رَبُّهُمْ وَوَقَىٰهُمْ رَبُّهُمْ عَذَابَ ٱلْجَحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,52,' كُلُوا۟ وَٱشْرَبُوا۟ هَنِيٓـًٔۢا بِمَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,52,' مُتَّكِـِٔينَ عَلَىٰ سُرُرٍۢ مَّصْفُوفَةٍۢ ۖ وَزَوَّجْنَهُم بِحُورٍ عِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,52,' وَٱلَّذِينَ ءَامَنُوا۟ وَٱتَّبَعَتْهُمْ ذُرِّيَّتُهُم بِإِيمَنٍ أَلْحَقْنَا بِهِمْ ذُرِّيَّتَهُمْ وَمَآ أَلَتْنَهُم مِّنْ عَمَلِهِم مِّن شَىْءٍۢ ۚ كُلُّ ٱمْرِئٍۭ بِمَا كَسَبَ رَهِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,52,' وَأَمْدَدْنَهُم بِفَكِهَةٍۢ وَلَحْمٍۢ مِّمَّا يَشْتَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,52,' يَتَنَزَعُونَ فِيهَا كَأْسًۭا لَّا لَغْوٌۭ فِيهَا وَلَا تَأْثِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,52,' وَيَطُوفُ عَلَيْهِمْ غِلْمَانٌۭ لَّهُمْ كَأَنَّهُمْ لُؤْلُؤٌۭ مَّكْنُونٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,52,' وَأَقْبَلَ بَعْضُهُمْ عَلَىٰ بَعْضٍۢ يَتَسَآءَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,52,' قَالُوٓا۟ إِنَّا كُنَّا قَبْلُ فِىٓ أَهْلِنَا مُشْفِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,52,' فَمَنَّ ٱللَّهُ عَلَيْنَا وَوَقَىٰنَا عَذَابَ ٱلسَّمُومِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,52,' إِنَّا كُنَّا مِن قَبْلُ نَدْعُوهُ ۖ إِنَّهُۥ هُوَ ٱلْبَرُّ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,52,' فَذَكِّرْ فَمَآ أَنتَ بِنِعْمَتِ رَبِّكَ بِكَاهِنٍۢ وَلَا مَجْنُونٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,52,' أَمْ يَقُولُونَ شَاعِرٌۭ نَّتَرَبَّصُ بِهِۦ رَيْبَ ٱلْمَنُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,52,' قُلْ تَرَبَّصُوا۟ فَإِنِّى مَعَكُم مِّنَ ٱلْمُتَرَبِّصِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,52,' أَمْ تَأْمُرُهُمْ أَحْلَمُهُم بِهَذَآ ۚ أَمْ هُمْ قَوْمٌۭ طَاغُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,52,' أَمْ يَقُولُونَ تَقَوَّلَهُۥ ۚ بَل لَّا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,52,' فَلْيَأْتُوا۟ بِحَدِيثٍۢ مِّثْلِهِۦٓ إِن كَانُوا۟ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,52,' أَمْ خُلِقُوا۟ مِنْ غَيْرِ شَىْءٍ أَمْ هُمُ ٱلْخَلِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,52,' أَمْ خَلَقُوا۟ ٱلسَّمَوَتِ وَٱلْأَرْضَ ۚ بَل لَّا يُوقِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,52,' أَمْ عِندَهُمْ خَزَآىِٕنُ رَبِّكَ أَمْ هُمُ ٱلْمُصَۣيْطِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,52,' أَمْ لَهُمْ سُلَّمٌۭ يَسْتَمِعُونَ فِيهِ ۖ فَلْيَأْتِ مُسْتَمِعُهُم بِسُلْطَنٍۢ مُّبِينٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,52,' أَمْ لَهُ ٱلْبَنَتُ وَلَكُمُ ٱلْبَنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,52,' أَمْ تَسْـَٔلُهُمْ أَجْرًۭا فَهُم مِّن مَّغْرَمٍۢ مُّثْقَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,52,' أَمْ عِندَهُمُ ٱلْغَيْبُ فَهُمْ يَكْتُبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,52,' أَمْ يُرِيدُونَ كَيْدًۭا ۖ فَٱلَّذِينَ كَفَرُوا۟ هُمُ ٱلْمَكِيدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,52,' أَمْ لَهُمْ إِلَهٌ غَيْرُ ٱللَّهِ ۚ سُبْحَنَ ٱللَّهِ عَمَّا يُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,52,' وَإِن يَرَوْا۟ كِسْفًۭا مِّنَ ٱلسَّمَآءِ سَاقِطًۭا يَقُولُوا۟ سَحَابٌۭ مَّرْكُومٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,52,' فَذَرْهُمْ حَتَّىٰ يُلَقُوا۟ يَوْمَهُمُ ٱلَّذِى فِيهِ يُصْعَقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,52,' يَوْمَ لَا يُغْنِى عَنْهُمْ كَيْدُهُمْ شَيْـًۭٔا وَلَا هُمْ يُنصَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,52,' وَإِنَّ لِلَّذِينَ ظَلَمُوا۟ عَذَابًۭا دُونَ ذَلِكَ وَلَكِنَّ أَكْثَرَهُمْ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,52,' وَٱصْبِرْ لِحُكْمِ رَبِّكَ فَإِنَّكَ بِأَعْيُنِنَا ۖ وَسَبِّحْ بِحَمْدِ رَبِّكَ حِينَ تَقُومُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,52,' وَمِنَ ٱلَّيْلِ فَسَبِّحْهُ وَإِدْبَرَ ٱلنُّجُومِ');
+INSERT INTO chapters (id, number, quran_id) VALUES(53,53,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,53,' وَٱلنَّجْمِ إِذَا هَوَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,53,' مَا ضَلَّ صَاحِبُكُمْ وَمَا غَوَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,53,' وَمَا يَنطِقُ عَنِ ٱلْهَوَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,53,' إِنْ هُوَ إِلَّا وَحْىٌۭ يُوحَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,53,' عَلَّمَهُۥ شَدِيدُ ٱلْقُوَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,53,' ذُو مِرَّةٍۢ فَٱسْتَوَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,53,' وَهُوَ بِٱلْأُفُقِ ٱلْأَعْلَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,53,' ثُمَّ دَنَا فَتَدَلَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,53,' فَكَانَ قَابَ قَوْسَيْنِ أَوْ أَدْنَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,53,' فَأَوْحَىٰٓ إِلَىٰ عَبْدِهِۦ مَآ أَوْحَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,53,' مَا كَذَبَ ٱلْفُؤَادُ مَا رَأَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,53,' أَفَتُمَرُونَهُۥ عَلَىٰ مَا يَرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,53,' وَلَقَدْ رَءَاهُ نَزْلَةً أُخْرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,53,' عِندَ سِدْرَةِ ٱلْمُنتَهَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,53,' عِندَهَا جَنَّةُ ٱلْمَأْوَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,53,' إِذْ يَغْشَى ٱلسِّدْرَةَ مَا يَغْشَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,53,' مَا زَاغَ ٱلْبَصَرُ وَمَا طَغَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,53,' لَقَدْ رَأَىٰ مِنْ ءَايَتِ رَبِّهِ ٱلْكُبْرَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,53,' أَفَرَءَيْتُمُ ٱللَّتَ وَٱلْعُزَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,53,' وَمَنَوٰةَ ٱلثَّالِثَةَ ٱلْأُخْرَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,53,' أَلَكُمُ ٱلذَّكَرُ وَلَهُ ٱلْأُنثَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,53,' تِلْكَ إِذًۭا قِسْمَةٌۭ ضِيزَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,53,' إِنْ هِىَ إِلَّآ أَسْمَآءٌۭ سَمَّيْتُمُوهَآ أَنتُمْ وَءَابَآؤُكُم مَّآ أَنزَلَ ٱللَّهُ بِهَا مِن سُلْطَنٍ ۚ إِن يَتَّبِعُونَ إِلَّا ٱلظَّنَّ وَمَا تَهْوَى ٱلْأَنفُسُ ۖ وَلَقَدْ جَآءَهُم مِّن رَّبِّهِمُ ٱلْهُدَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,53,' أَمْ لِلْإِنسَنِ مَا تَمَنَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,53,' فَلِلَّهِ ٱلْءَاخِرَةُ وَٱلْأُولَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,53,' وَكَم مِّن مَّلَكٍۢ فِى ٱلسَّمَوَتِ لَا تُغْنِى شَفَعَتُهُمْ شَيْـًٔا إِلَّا مِنۢ بَعْدِ أَن يَأْذَنَ ٱللَّهُ لِمَن يَشَآءُ وَيَرْضَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,53,' إِنَّ ٱلَّذِينَ لَا يُؤْمِنُونَ بِٱلْءَاخِرَةِ لَيُسَمُّونَ ٱلْمَلَٓئِكَةَ تَسْمِيَةَ ٱلْأُنثَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,53,' وَمَا لَهُم بِهِۦ مِنْ عِلْمٍ ۖ إِن يَتَّبِعُونَ إِلَّا ٱلظَّنَّ ۖ وَإِنَّ ٱلظَّنَّ لَا يُغْنِى مِنَ ٱلْحَقِّ شَيْـًۭٔا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,53,' فَأَعْرِضْ عَن مَّن تَوَلَّىٰ عَن ذِكْرِنَا وَلَمْ يُرِدْ إِلَّا ٱلْحَيَوٰةَ ٱلدُّنْيَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,53,' ذَلِكَ مَبْلَغُهُم مِّنَ ٱلْعِلْمِ ۚ إِنَّ رَبَّكَ هُوَ أَعْلَمُ بِمَن ضَلَّ عَن سَبِيلِهِۦ وَهُوَ أَعْلَمُ بِمَنِ ٱهْتَدَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,53,' وَلِلَّهِ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ لِيَجْزِىَ ٱلَّذِينَ أَسَٓـُٔوا۟ بِمَا عَمِلُوا۟ وَيَجْزِىَ ٱلَّذِينَ أَحْسَنُوا۟ بِٱلْحُسْنَى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,53,' ٱلَّذِينَ يَجْتَنِبُونَ كَبَٓئِرَ ٱلْإِثْمِ وَٱلْفَوَحِشَ إِلَّا ٱللَّمَمَ ۚ إِنَّ رَبَّكَ وَسِعُ ٱلْمَغْفِرَةِ ۚ هُوَ أَعْلَمُ بِكُمْ إِذْ أَنشَأَكُم مِّنَ ٱلْأَرْضِ وَإِذْ أَنتُمْ أَجِنَّةٌۭ فِى بُطُونِ أُمَّهَتِكُمْ ۖ فَلَا تُزَكُّوٓا۟ أَنفُسَكُمْ ۖ هُوَ أَعْلَمُ بِمَنِ ٱتَّقَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,53,' أَفَرَءَيْتَ ٱلَّذِى تَوَلَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,53,' وَأَعْطَىٰ قَلِيلًۭا وَأَكْدَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,53,' أَعِندَهُۥ عِلْمُ ٱلْغَيْبِ فَهُوَ يَرَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,53,' أَمْ لَمْ يُنَبَّأْ بِمَا فِى صُحُفِ مُوسَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,53,' وَإِبْرَهِيمَ ٱلَّذِى وَفَّىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,53,' أَلَّا تَزِرُ وَازِرَةٌۭ وِزْرَ أُخْرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,53,' وَأَن لَّيْسَ لِلْإِنسَنِ إِلَّا مَا سَعَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,53,' وَأَنَّ سَعْيَهُۥ سَوْفَ يُرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,53,' ثُمَّ يُجْزَىٰهُ ٱلْجَزَآءَ ٱلْأَوْفَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,53,' وَأَنَّ إِلَىٰ رَبِّكَ ٱلْمُنتَهَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,53,' وَأَنَّهُۥ هُوَ أَضْحَكَ وَأَبْكَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,53,' وَأَنَّهُۥ هُوَ أَمَاتَ وَأَحْيَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,53,' وَأَنَّهُۥ خَلَقَ ٱلزَّوْجَيْنِ ٱلذَّكَرَ وَٱلْأُنثَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,53,' مِن نُّطْفَةٍ إِذَا تُمْنَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,53,' وَأَنَّ عَلَيْهِ ٱلنَّشْأَةَ ٱلْأُخْرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,53,' وَأَنَّهُۥ هُوَ أَغْنَىٰ وَأَقْنَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,53,' وَأَنَّهُۥ هُوَ رَبُّ ٱلشِّعْرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,53,' وَأَنَّهُۥٓ أَهْلَكَ عَادًا ٱلْأُولَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,53,' وَثَمُودَا۟ فَمَآ أَبْقَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,53,' وَقَوْمَ نُوحٍۢ مِّن قَبْلُ ۖ إِنَّهُمْ كَانُوا۟ هُمْ أَظْلَمَ وَأَطْغَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,53,' وَٱلْمُؤْتَفِكَةَ أَهْوَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,53,' فَغَشَّىٰهَا مَا غَشَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,53,' فَبِأَىِّ ءَالَآءِ رَبِّكَ تَتَمَارَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,53,' هَذَا نَذِيرٌۭ مِّنَ ٱلنُّذُرِ ٱلْأُولَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,53,' أَزِفَتِ ٱلْءَازِفَةُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,53,' لَيْسَ لَهَا مِن دُونِ ٱللَّهِ كَاشِفَةٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,53,' أَفَمِنْ هَذَا ٱلْحَدِيثِ تَعْجَبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,53,' وَتَضْحَكُونَ وَلَا تَبْكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,53,' وَأَنتُمْ سَمِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,53,' فَٱسْجُدُوا۟ لِلَّهِ وَٱعْبُدُوا۟');
+INSERT INTO chapters (id, number, quran_id) VALUES(54,54,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,54,' ٱقْتَرَبَتِ ٱلسَّاعَةُ وَٱنشَقَّ ٱلْقَمَرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,54,' وَإِن يَرَوْا۟ ءَايَةًۭ يُعْرِضُوا۟ وَيَقُولُوا۟ سِحْرٌۭ مُّسْتَمِرٌّۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,54,' وَكَذَّبُوا۟ وَٱتَّبَعُوٓا۟ أَهْوَآءَهُمْ ۚ وَكُلُّ أَمْرٍۢ مُّسْتَقِرٌّۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,54,' وَلَقَدْ جَآءَهُم مِّنَ ٱلْأَنۢبَآءِ مَا فِيهِ مُزْدَجَرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,54,' حِكْمَةٌۢ بَلِغَةٌۭ ۖ فَمَا تُغْنِ ٱلنُّذُرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,54,' فَتَوَلَّ عَنْهُمْ ۘ يَوْمَ يَدْعُ ٱلدَّاعِ إِلَىٰ شَىْءٍۢ نُّكُرٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,54,' خُشَّعًا أَبْصَرُهُمْ يَخْرُجُونَ مِنَ ٱلْأَجْدَاثِ كَأَنَّهُمْ جَرَادٌۭ مُّنتَشِرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,54,' مُّهْطِعِينَ إِلَى ٱلدَّاعِ ۖ يَقُولُ ٱلْكَفِرُونَ هَذَا يَوْمٌ عَسِرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,54,' كَذَّبَتْ قَبْلَهُمْ قَوْمُ نُوحٍۢ فَكَذَّبُوا۟ عَبْدَنَا وَقَالُوا۟ مَجْنُونٌۭ وَٱزْدُجِرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,54,' فَدَعَا رَبَّهُۥٓ أَنِّى مَغْلُوبٌۭ فَٱنتَصِرْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,54,' فَفَتَحْنَآ أَبْوَبَ ٱلسَّمَآءِ بِمَآءٍۢ مُّنْهَمِرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,54,' وَفَجَّرْنَا ٱلْأَرْضَ عُيُونًۭا فَٱلْتَقَى ٱلْمَآءُ عَلَىٰٓ أَمْرٍۢ قَدْ قُدِرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,54,' وَحَمَلْنَهُ عَلَىٰ ذَاتِ أَلْوَحٍۢ وَدُسُرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,54,' تَجْرِى بِأَعْيُنِنَا جَزَآءًۭ لِّمَن كَانَ كُفِرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,54,' وَلَقَد تَّرَكْنَهَآ ءَايَةًۭ فَهَلْ مِن مُّدَّكِرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,54,' فَكَيْفَ كَانَ عَذَابِى وَنُذُرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,54,' وَلَقَدْ يَسَّرْنَا ٱلْقُرْءَانَ لِلذِّكْرِ فَهَلْ مِن مُّدَّكِرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,54,' كَذَّبَتْ عَادٌۭ فَكَيْفَ كَانَ عَذَابِى وَنُذُرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,54,' إِنَّآ أَرْسَلْنَا عَلَيْهِمْ رِيحًۭا صَرْصَرًۭا فِى يَوْمِ نَحْسٍۢ مُّسْتَمِرٍّۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,54,' تَنزِعُ ٱلنَّاسَ كَأَنَّهُمْ أَعْجَازُ نَخْلٍۢ مُّنقَعِرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,54,' فَكَيْفَ كَانَ عَذَابِى وَنُذُرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,54,' وَلَقَدْ يَسَّرْنَا ٱلْقُرْءَانَ لِلذِّكْرِ فَهَلْ مِن مُّدَّكِرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,54,' كَذَّبَتْ ثَمُودُ بِٱلنُّذُرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,54,' فَقَالُوٓا۟ أَبَشَرًۭا مِّنَّا وَحِدًۭا نَّتَّبِعُهُۥٓ إِنَّآ إِذًۭا لَّفِى ضَلَلٍۢ وَسُعُرٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,54,' أَءُلْقِىَ ٱلذِّكْرُ عَلَيْهِ مِنۢ بَيْنِنَا بَلْ هُوَ كَذَّابٌ أَشِرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,54,' سَيَعْلَمُونَ غَدًۭا مَّنِ ٱلْكَذَّابُ ٱلْأَشِرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,54,' إِنَّا مُرْسِلُوا۟ ٱلنَّاقَةِ فِتْنَةًۭ لَّهُمْ فَٱرْتَقِبْهُمْ وَٱصْطَبِرْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,54,' وَنَبِّئْهُمْ أَنَّ ٱلْمَآءَ قِسْمَةٌۢ بَيْنَهُمْ ۖ كُلُّ شِرْبٍۢ مُّحْتَضَرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,54,' فَنَادَوْا۟ صَاحِبَهُمْ فَتَعَاطَىٰ فَعَقَرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,54,' فَكَيْفَ كَانَ عَذَابِى وَنُذُرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,54,' إِنَّآ أَرْسَلْنَا عَلَيْهِمْ صَيْحَةًۭ وَحِدَةًۭ فَكَانُوا۟ كَهَشِيمِ ٱلْمُحْتَظِرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,54,' وَلَقَدْ يَسَّرْنَا ٱلْقُرْءَانَ لِلذِّكْرِ فَهَلْ مِن مُّدَّكِرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,54,' كَذَّبَتْ قَوْمُ لُوطٍۭ بِٱلنُّذُرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,54,' إِنَّآ أَرْسَلْنَا عَلَيْهِمْ حَاصِبًا إِلَّآ ءَالَ لُوطٍۢ ۖ نَّجَّيْنَهُم بِسَحَرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,54,' نِّعْمَةًۭ مِّنْ عِندِنَا ۚ كَذَلِكَ نَجْزِى مَن شَكَرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,54,' وَلَقَدْ أَنذَرَهُم بَطْشَتَنَا فَتَمَارَوْا۟ بِٱلنُّذُرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,54,' وَلَقَدْ رَوَدُوهُ عَن ضَيْفِهِۦ فَطَمَسْنَآ أَعْيُنَهُمْ فَذُوقُوا۟ عَذَابِى وَنُذُرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,54,' وَلَقَدْ صَبَّحَهُم بُكْرَةً عَذَابٌۭ مُّسْتَقِرٌّۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,54,' فَذُوقُوا۟ عَذَابِى وَنُذُرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,54,' وَلَقَدْ يَسَّرْنَا ٱلْقُرْءَانَ لِلذِّكْرِ فَهَلْ مِن مُّدَّكِرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,54,' وَلَقَدْ جَآءَ ءَالَ فِرْعَوْنَ ٱلنُّذُرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,54,' كَذَّبُوا۟ بِـَٔايَتِنَا كُلِّهَا فَأَخَذْنَهُمْ أَخْذَ عَزِيزٍۢ مُّقْتَدِرٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,54,' أَكُفَّارُكُمْ خَيْرٌۭ مِّنْ أُو۟لَٓئِكُمْ أَمْ لَكُم بَرَآءَةٌۭ فِى ٱلزُّبُرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,54,' أَمْ يَقُولُونَ نَحْنُ جَمِيعٌۭ مُّنتَصِرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,54,' سَيُهْزَمُ ٱلْجَمْعُ وَيُوَلُّونَ ٱلدُّبُرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,54,' بَلِ ٱلسَّاعَةُ مَوْعِدُهُمْ وَٱلسَّاعَةُ أَدْهَىٰ وَأَمَرُّ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,54,' إِنَّ ٱلْمُجْرِمِينَ فِى ضَلَلٍۢ وَسُعُرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,54,' يَوْمَ يُسْحَبُونَ فِى ٱلنَّارِ عَلَىٰ وُجُوهِهِمْ ذُوقُوا۟ مَسَّ سَقَرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,54,' إِنَّا كُلَّ شَىْءٍ خَلَقْنَهُ بِقَدَرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,54,' وَمَآ أَمْرُنَآ إِلَّا وَحِدَةٌۭ كَلَمْحٍۭ بِٱلْبَصَرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,54,' وَلَقَدْ أَهْلَكْنَآ أَشْيَاعَكُمْ فَهَلْ مِن مُّدَّكِرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,54,' وَكُلُّ شَىْءٍۢ فَعَلُوهُ فِى ٱلزُّبُرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,54,' وَكُلُّ صَغِيرٍۢ وَكَبِيرٍۢ مُّسْتَطَرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,54,' إِنَّ ٱلْمُتَّقِينَ فِى جَنَّتٍۢ وَنَهَرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,54,' فِى مَقْعَدِ صِدْقٍ عِندَ مَلِيكٍۢ مُّقْتَدِرٍۭ');
+INSERT INTO chapters (id, number, quran_id) VALUES(55,55,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,55,' ٱلرَّحْمَنُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,55,' عَلَّمَ ٱلْقُرْءَانَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,55,' خَلَقَ ٱلْإِنسَنَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,55,' عَلَّمَهُ ٱلْبَيَانَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,55,' ٱلشَّمْسُ وَٱلْقَمَرُ بِحُسْبَانٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,55,' وَٱلنَّجْمُ وَٱلشَّجَرُ يَسْجُدَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,55,' وَٱلسَّمَآءَ رَفَعَهَا وَوَضَعَ ٱلْمِيزَانَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,55,' أَلَّا تَطْغَوْا۟ فِى ٱلْمِيزَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,55,' وَأَقِيمُوا۟ ٱلْوَزْنَ بِٱلْقِسْطِ وَلَا تُخْسِرُوا۟ ٱلْمِيزَانَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,55,' وَٱلْأَرْضَ وَضَعَهَا لِلْأَنَامِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,55,' فِيهَا فَكِهَةٌۭ وَٱلنَّخْلُ ذَاتُ ٱلْأَكْمَامِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,55,' وَٱلْحَبُّ ذُو ٱلْعَصْفِ وَٱلرَّيْحَانُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,55,' خَلَقَ ٱلْإِنسَنَ مِن صَلْصَلٍۢ كَٱلْفَخَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,55,' وَخَلَقَ ٱلْجَآنَّ مِن مَّارِجٍۢ مِّن نَّارٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,55,' رَبُّ ٱلْمَشْرِقَيْنِ وَرَبُّ ٱلْمَغْرِبَيْنِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,55,' مَرَجَ ٱلْبَحْرَيْنِ يَلْتَقِيَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,55,' بَيْنَهُمَا بَرْزَخٌۭ لَّا يَبْغِيَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,55,' يَخْرُجُ مِنْهُمَا ٱللُّؤْلُؤُ وَٱلْمَرْجَانُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,55,' وَلَهُ ٱلْجَوَارِ ٱلْمُنشَـَٔاتُ فِى ٱلْبَحْرِ كَٱلْأَعْلَمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,55,' كُلُّ مَنْ عَلَيْهَا فَانٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,55,' وَيَبْقَىٰ وَجْهُ رَبِّكَ ذُو ٱلْجَلَلِ وَٱلْإِكْرَامِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,55,' يَسْـَٔلُهُۥ مَن فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ كُلَّ يَوْمٍ هُوَ فِى شَأْنٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,55,' سَنَفْرُغُ لَكُمْ أَيُّهَ ٱلثَّقَلَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,55,' يَمَعْشَرَ ٱلْجِنِّ وَٱلْإِنسِ إِنِ ٱسْتَطَعْتُمْ أَن تَنفُذُوا۟ مِنْ أَقْطَارِ ٱلسَّمَوَتِ وَٱلْأَرْضِ فَٱنفُذُوا۟ ۚ لَا تَنفُذُونَ إِلَّا بِسُلْطَنٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,55,' يُرْسَلُ عَلَيْكُمَا شُوَاظٌۭ مِّن نَّارٍۢ وَنُحَاسٌۭ فَلَا تَنتَصِرَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,55,' فَإِذَا ٱنشَقَّتِ ٱلسَّمَآءُ فَكَانَتْ وَرْدَةًۭ كَٱلدِّهَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,55,' فَيَوْمَئِذٍۢ لَّا يُسْـَٔلُ عَن ذَنۢبِهِۦٓ إِنسٌۭ وَلَا جَآنٌّۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,55,' يُعْرَفُ ٱلْمُجْرِمُونَ بِسِيمَهُمْ فَيُؤْخَذُ بِٱلنَّوَصِى وَٱلْأَقْدَامِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,55,' هَذِهِۦ جَهَنَّمُ ٱلَّتِى يُكَذِّبُ بِهَا ٱلْمُجْرِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,55,' يَطُوفُونَ بَيْنَهَا وَبَيْنَ حَمِيمٍ ءَانٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,55,' وَلِمَنْ خَافَ مَقَامَ رَبِّهِۦ جَنَّتَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,55,' ذَوَاتَآ أَفْنَانٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,55,' فِيهِمَا عَيْنَانِ تَجْرِيَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,55,' فِيهِمَا مِن كُلِّ فَكِهَةٍۢ زَوْجَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,55,' مُتَّكِـِٔينَ عَلَىٰ فُرُشٍۭ بَطَآئِنُهَا مِنْ إِسْتَبْرَقٍۢ ۚ وَجَنَى ٱلْجَنَّتَيْنِ دَانٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,55,' فِيهِنَّ قَصِرَتُ ٱلطَّرْفِ لَمْ يَطْمِثْهُنَّ إِنسٌۭ قَبْلَهُمْ وَلَا جَآنٌّۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,55,' كَأَنَّهُنَّ ٱلْيَاقُوتُ وَٱلْمَرْجَانُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,55,' هَلْ جَزَآءُ ٱلْإِحْسَنِ إِلَّا ٱلْإِحْسَنُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,55,' وَمِن دُونِهِمَا جَنَّتَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,55,' مُدْهَآمَّتَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,55,' فِيهِمَا عَيْنَانِ نَضَّاخَتَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,55,' فِيهِمَا فَكِهَةٌۭ وَنَخْلٌۭ وَرُمَّانٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,55,' فِيهِنَّ خَيْرَتٌ حِسَانٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,55,' حُورٌۭ مَّقْصُورَتٌۭ فِى ٱلْخِيَامِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,55,' لَمْ يَطْمِثْهُنَّ إِنسٌۭ قَبْلَهُمْ وَلَا جَآنٌّۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,55,' مُتَّكِـِٔينَ عَلَىٰ رَفْرَفٍ خُضْرٍۢ وَعَبْقَرِىٍّ حِسَانٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,55,' فَبِأَىِّ ءَالَآءِ رَبِّكُمَا تُكَذِّبَانِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,55,' تَبَرَكَ ٱسْمُ رَبِّكَ ذِى ٱلْجَلَلِ وَٱلْإِكْرَامِ');
+INSERT INTO chapters (id, number, quran_id) VALUES(56,56,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,56,' إِذَا وَقَعَتِ ٱلْوَاقِعَةُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,56,' لَيْسَ لِوَقْعَتِهَا كَاذِبَةٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,56,' خَافِضَةٌۭ رَّافِعَةٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,56,' إِذَا رُجَّتِ ٱلْأَرْضُ رَجًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,56,' وَبُسَّتِ ٱلْجِبَالُ بَسًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,56,' فَكَانَتْ هَبَآءًۭ مُّنۢبَثًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,56,' وَكُنتُمْ أَزْوَجًۭا ثَلَثَةًۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,56,' فَأَصْحَبُ ٱلْمَيْمَنَةِ مَآ أَصْحَبُ ٱلْمَيْمَنَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,56,' وَأَصْحَبُ ٱلْمَشْـَٔمَةِ مَآ أَصْحَبُ ٱلْمَشْـَٔمَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,56,' وَٱلسَّبِقُونَ ٱلسَّبِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,56,' أُو۟لَٓئِكَ ٱلْمُقَرَّبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,56,' فِى جَنَّتِ ٱلنَّعِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,56,' ثُلَّةٌۭ مِّنَ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,56,' وَقَلِيلٌۭ مِّنَ ٱلْءَاخِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,56,' عَلَىٰ سُرُرٍۢ مَّوْضُونَةٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,56,' مُّتَّكِـِٔينَ عَلَيْهَا مُتَقَبِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,56,' يَطُوفُ عَلَيْهِمْ وِلْدَنٌۭ مُّخَلَّدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,56,' بِأَكْوَابٍۢ وَأَبَارِيقَ وَكَأْسٍۢ مِّن مَّعِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,56,' لَّا يُصَدَّعُونَ عَنْهَا وَلَا يُنزِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,56,' وَفَكِهَةٍۢ مِّمَّا يَتَخَيَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,56,' وَلَحْمِ طَيْرٍۢ مِّمَّا يَشْتَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,56,' وَحُورٌ عِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,56,' كَأَمْثَلِ ٱللُّؤْلُوِٕ ٱلْمَكْنُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,56,' جَزَآءًۢ بِمَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,56,' لَا يَسْمَعُونَ فِيهَا لَغْوًۭا وَلَا تَأْثِيمًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,56,' إِلَّا قِيلًۭا سَلَمًۭا سَلَمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,56,' وَأَصْحَبُ ٱلْيَمِينِ مَآ أَصْحَبُ ٱلْيَمِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,56,' فِى سِدْرٍۢ مَّخْضُودٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,56,' وَطَلْحٍۢ مَّنضُودٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,56,' وَظِلٍّۢ مَّمْدُودٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,56,' وَمَآءٍۢ مَّسْكُوبٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,56,' وَفَكِهَةٍۢ كَثِيرَةٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,56,' لَّا مَقْطُوعَةٍۢ وَلَا مَمْنُوعَةٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,56,' وَفُرُشٍۢ مَّرْفُوعَةٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,56,' إِنَّآ أَنشَأْنَهُنَّ إِنشَآءًۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,56,' فَجَعَلْنَهُنَّ أَبْكَارًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,56,' عُرُبًا أَتْرَابًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,56,' لِأَصْحَبِ ٱلْيَمِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,56,' ثُلَّةٌۭ مِّنَ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,56,' وَثُلَّةٌۭ مِّنَ ٱلْءَاخِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,56,' وَأَصْحَبُ ٱلشِّمَالِ مَآ أَصْحَبُ ٱلشِّمَالِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,56,' فِى سَمُومٍۢ وَحَمِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,56,' وَظِلٍّۢ مِّن يَحْمُومٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,56,' لَّا بَارِدٍۢ وَلَا كَرِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,56,' إِنَّهُمْ كَانُوا۟ قَبْلَ ذَلِكَ مُتْرَفِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,56,' وَكَانُوا۟ يُصِرُّونَ عَلَى ٱلْحِنثِ ٱلْعَظِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,56,' وَكَانُوا۟ يَقُولُونَ أَئِذَا مِتْنَا وَكُنَّا تُرَابًۭا وَعِظَمًا أَءِنَّا لَمَبْعُوثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,56,' أَوَءَابَآؤُنَا ٱلْأَوَّلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,56,' قُلْ إِنَّ ٱلْأَوَّلِينَ وَٱلْءَاخِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,56,' لَمَجْمُوعُونَ إِلَىٰ مِيقَتِ يَوْمٍۢ مَّعْلُومٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,56,' ثُمَّ إِنَّكُمْ أَيُّهَا ٱلضَّآلُّونَ ٱلْمُكَذِّبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,56,' لَءَاكِلُونَ مِن شَجَرٍۢ مِّن زَقُّومٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,56,' فَمَالِـُٔونَ مِنْهَا ٱلْبُطُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,56,' فَشَرِبُونَ عَلَيْهِ مِنَ ٱلْحَمِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,56,' فَشَرِبُونَ شُرْبَ ٱلْهِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,56,' هَذَا نُزُلُهُمْ يَوْمَ ٱلدِّينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,1,56,' نَحْنُ خَلَقْنَكُمْ فَلَوْلَا تُصَدِّقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,1,56,' أَفَرَءَيْتُم مَّا تُمْنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,1,56,' ءَأَنتُمْ تَخْلُقُونَهُۥٓ أَمْ نَحْنُ ٱلْخَلِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,1,56,' نَحْنُ قَدَّرْنَا بَيْنَكُمُ ٱلْمَوْتَ وَمَا نَحْنُ بِمَسْبُوقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,1,56,' عَلَىٰٓ أَن نُّبَدِّلَ أَمْثَلَكُمْ وَنُنشِئَكُمْ فِى مَا لَا تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,1,56,' وَلَقَدْ عَلِمْتُمُ ٱلنَّشْأَةَ ٱلْأُولَىٰ فَلَوْلَا تَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,1,56,' أَفَرَءَيْتُم مَّا تَحْرُثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,1,56,' ءَأَنتُمْ تَزْرَعُونَهُۥٓ أَمْ نَحْنُ ٱلزَّرِعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,1,56,' لَوْ نَشَآءُ لَجَعَلْنَهُ حُطَمًۭا فَظَلْتُمْ تَفَكَّهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,1,56,' إِنَّا لَمُغْرَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,1,56,' بَلْ نَحْنُ مَحْرُومُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,1,56,' أَفَرَءَيْتُمُ ٱلْمَآءَ ٱلَّذِى تَشْرَبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,1,56,' ءَأَنتُمْ أَنزَلْتُمُوهُ مِنَ ٱلْمُزْنِ أَمْ نَحْنُ ٱلْمُنزِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,1,56,' لَوْ نَشَآءُ جَعَلْنَهُ أُجَاجًۭا فَلَوْلَا تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,1,56,' أَفَرَءَيْتُمُ ٱلنَّارَ ٱلَّتِى تُورُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,1,56,' ءَأَنتُمْ أَنشَأْتُمْ شَجَرَتَهَآ أَمْ نَحْنُ ٱلْمُنشِـُٔونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,1,56,' نَحْنُ جَعَلْنَهَا تَذْكِرَةًۭ وَمَتَعًۭا لِّلْمُقْوِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,1,56,' فَسَبِّحْ بِٱسْمِ رَبِّكَ ٱلْعَظِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,1,56,' فَلَآ أُقْسِمُ بِمَوَقِعِ ٱلنُّجُومِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,1,56,' وَإِنَّهُۥ لَقَسَمٌۭ لَّوْ تَعْلَمُونَ عَظِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,1,56,' إِنَّهُۥ لَقُرْءَانٌۭ كَرِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,1,56,' فِى كِتَبٍۢ مَّكْنُونٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,1,56,' لَّا يَمَسُّهُۥٓ إِلَّا ٱلْمُطَهَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,1,56,' تَنزِيلٌۭ مِّن رَّبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,1,56,' أَفَبِهَذَا ٱلْحَدِيثِ أَنتُم مُّدْهِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,1,56,' وَتَجْعَلُونَ رِزْقَكُمْ أَنَّكُمْ تُكَذِّبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,1,56,' فَلَوْلَآ إِذَا بَلَغَتِ ٱلْحُلْقُومَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,1,56,' وَأَنتُمْ حِينَئِذٍۢ تَنظُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,1,56,' وَنَحْنُ أَقْرَبُ إِلَيْهِ مِنكُمْ وَلَكِن لَّا تُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,1,56,' فَلَوْلَآ إِن كُنتُمْ غَيْرَ مَدِينِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,1,56,' تَرْجِعُونَهَآ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,1,56,' فَأَمَّآ إِن كَانَ مِنَ ٱلْمُقَرَّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,1,56,' فَرَوْحٌۭ وَرَيْحَانٌۭ وَجَنَّتُ نَعِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,1,56,' وَأَمَّآ إِن كَانَ مِنْ أَصْحَبِ ٱلْيَمِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,1,56,' فَسَلَمٌۭ لَّكَ مِنْ أَصْحَبِ ٱلْيَمِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,1,56,' وَأَمَّآ إِن كَانَ مِنَ ٱلْمُكَذِّبِينَ ٱلضَّآلِّينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,1,56,' فَنُزُلٌۭ مِّنْ حَمِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,1,56,' وَتَصْلِيَةُ جَحِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,1,56,' إِنَّ هَذَا لَهُوَ حَقُّ ٱلْيَقِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,1,56,' فَسَبِّحْ بِٱسْمِ رَبِّكَ ٱلْعَظِيمِ');
+INSERT INTO chapters (id, number, quran_id) VALUES(57,57,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,57,' سَبَّحَ لِلَّهِ مَا فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ۖ وَهُوَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,57,' لَهُۥ مُلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۖ يُحْىِۦ وَيُمِيتُ ۖ وَهُوَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,57,' هُوَ ٱلْأَوَّلُ وَٱلْءَاخِرُ وَٱلظَّهِرُ وَٱلْبَاطِنُ ۖ وَهُوَ بِكُلِّ شَىْءٍ عَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,57,' هُوَ ٱلَّذِى خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ فِى سِتَّةِ أَيَّامٍۢ ثُمَّ ٱسْتَوَىٰ عَلَى ٱلْعَرْشِ ۚ يَعْلَمُ مَا يَلِجُ فِى ٱلْأَرْضِ وَمَا يَخْرُجُ مِنْهَا وَمَا يَنزِلُ مِنَ ٱلسَّمَآءِ وَمَا يَعْرُجُ فِيهَا ۖ وَهُوَ مَعَكُمْ أَيْنَ مَا كُنتُمْ ۚ وَٱللَّهُ بِمَا تَعْمَلُونَ بَصِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,57,' لَّهُۥ مُلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ وَإِلَى ٱللَّهِ تُرْجَعُ ٱلْأُمُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,57,' يُولِجُ ٱلَّيْلَ فِى ٱلنَّهَارِ وَيُولِجُ ٱلنَّهَارَ فِى ٱلَّيْلِ ۚ وَهُوَ عَلِيمٌۢ بِذَاتِ ٱلصُّدُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,57,' ءَامِنُوا۟ بِٱللَّهِ وَرَسُولِهِۦ وَأَنفِقُوا۟ مِمَّا جَعَلَكُم مُّسْتَخْلَفِينَ فِيهِ ۖ فَٱلَّذِينَ ءَامَنُوا۟ مِنكُمْ وَأَنفَقُوا۟ لَهُمْ أَجْرٌۭ كَبِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,57,' وَمَا لَكُمْ لَا تُؤْمِنُونَ بِٱللَّهِ ۙ وَٱلرَّسُولُ يَدْعُوكُمْ لِتُؤْمِنُوا۟ بِرَبِّكُمْ وَقَدْ أَخَذَ مِيثَقَكُمْ إِن كُنتُم مُّؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,57,' هُوَ ٱلَّذِى يُنَزِّلُ عَلَىٰ عَبْدِهِۦٓ ءَايَتٍۭ بَيِّنَتٍۢ لِّيُخْرِجَكُم مِّنَ ٱلظُّلُمَتِ إِلَى ٱلنُّورِ ۚ وَإِنَّ ٱللَّهَ بِكُمْ لَرَءُوفٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,57,' وَمَا لَكُمْ أَلَّا تُنفِقُوا۟ فِى سَبِيلِ ٱللَّهِ وَلِلَّهِ مِيرَثُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ لَا يَسْتَوِى مِنكُم مَّنْ أَنفَقَ مِن قَبْلِ ٱلْفَتْحِ وَقَتَلَ ۚ أُو۟لَٓئِكَ أَعْظَمُ دَرَجَةًۭ مِّنَ ٱلَّذِينَ أَنفَقُوا۟ مِنۢ بَعْدُ وَقَتَلُوا۟ ۚ وَكُلًّۭا وَعَدَ ٱللَّهُ ٱلْحُسْنَىٰ ۚ وَٱللَّهُ بِمَا تَعْمَلُونَ خَبِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,57,' مَّن ذَا ٱلَّذِى يُقْرِضُ ٱللَّهَ قَرْضًا حَسَنًۭا فَيُضَعِفَهُۥ لَهُۥ وَلَهُۥٓ أَجْرٌۭ كَرِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,57,' يَوْمَ تَرَى ٱلْمُؤْمِنِينَ وَٱلْمُؤْمِنَتِ يَسْعَىٰ نُورُهُم بَيْنَ أَيْدِيهِمْ وَبِأَيْمَنِهِم بُشْرَىٰكُمُ ٱلْيَوْمَ جَنَّتٌۭ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَا ۚ ذَلِكَ هُوَ ٱلْفَوْزُ ٱلْعَظِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,57,' يَوْمَ يَقُولُ ٱلْمُنَفِقُونَ وَٱلْمُنَفِقَتُ لِلَّذِينَ ءَامَنُوا۟ ٱنظُرُونَا نَقْتَبِسْ مِن نُّورِكُمْ قِيلَ ٱرْجِعُوا۟ وَرَآءَكُمْ فَٱلْتَمِسُوا۟ نُورًۭا فَضُرِبَ بَيْنَهُم بِسُورٍۢ لَّهُۥ بَابٌۢ بَاطِنُهُۥ فِيهِ ٱلرَّحْمَةُ وَظَهِرُهُۥ مِن قِبَلِهِ ٱلْعَذَابُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,57,' يُنَادُونَهُمْ أَلَمْ نَكُن مَّعَكُمْ ۖ قَالُوا۟ بَلَىٰ وَلَكِنَّكُمْ فَتَنتُمْ أَنفُسَكُمْ وَتَرَبَّصْتُمْ وَٱرْتَبْتُمْ وَغَرَّتْكُمُ ٱلْأَمَانِىُّ حَتَّىٰ جَآءَ أَمْرُ ٱللَّهِ وَغَرَّكُم بِٱللَّهِ ٱلْغَرُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,57,' فَٱلْيَوْمَ لَا يُؤْخَذُ مِنكُمْ فِدْيَةٌۭ وَلَا مِنَ ٱلَّذِينَ كَفَرُوا۟ ۚ مَأْوَىٰكُمُ ٱلنَّارُ ۖ هِىَ مَوْلَىٰكُمْ ۖ وَبِئْسَ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,57,' أَلَمْ يَأْنِ لِلَّذِينَ ءَامَنُوٓا۟ أَن تَخْشَعَ قُلُوبُهُمْ لِذِكْرِ ٱللَّهِ وَمَا نَزَلَ مِنَ ٱلْحَقِّ وَلَا يَكُونُوا۟ كَٱلَّذِينَ أُوتُوا۟ ٱلْكِتَبَ مِن قَبْلُ فَطَالَ عَلَيْهِمُ ٱلْأَمَدُ فَقَسَتْ قُلُوبُهُمْ ۖ وَكَثِيرٌۭ مِّنْهُمْ فَسِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,57,' ٱعْلَمُوٓا۟ أَنَّ ٱللَّهَ يُحْىِ ٱلْأَرْضَ بَعْدَ مَوْتِهَا ۚ قَدْ بَيَّنَّا لَكُمُ ٱلْءَايَتِ لَعَلَّكُمْ تَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,57,' إِنَّ ٱلْمُصَّدِّقِينَ وَٱلْمُصَّدِّقَتِ وَأَقْرَضُوا۟ ٱللَّهَ قَرْضًا حَسَنًۭا يُضَعَفُ لَهُمْ وَلَهُمْ أَجْرٌۭ كَرِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,57,' وَٱلَّذِينَ ءَامَنُوا۟ بِٱللَّهِ وَرُسُلِهِۦٓ أُو۟لَٓئِكَ هُمُ ٱلصِّدِّيقُونَ ۖ وَٱلشُّهَدَآءُ عِندَ رَبِّهِمْ لَهُمْ أَجْرُهُمْ وَنُورُهُمْ ۖ وَٱلَّذِينَ كَفَرُوا۟ وَكَذَّبُوا۟ بِـَٔايَتِنَآ أُو۟لَٓئِكَ أَصْحَبُ ٱلْجَحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,57,' ٱعْلَمُوٓا۟ أَنَّمَا ٱلْحَيَوٰةُ ٱلدُّنْيَا لَعِبٌۭ وَلَهْوٌۭ وَزِينَةٌۭ وَتَفَاخُرٌۢ بَيْنَكُمْ وَتَكَاثُرٌۭ فِى ٱلْأَمْوَلِ وَٱلْأَوْلَدِ ۖ كَمَثَلِ غَيْثٍ أَعْجَبَ ٱلْكُفَّارَ نَبَاتُهُۥ ثُمَّ يَهِيجُ فَتَرَىٰهُ مُصْفَرًّۭا ثُمَّ يَكُونُ حُطَمًۭا ۖ وَفِى ٱلْءَاخِرَةِ عَذَابٌۭ شَدِيدٌۭ وَمَغْفِرَةٌۭ مِّنَ ٱللَّهِ وَرِضْوَنٌۭ ۚ وَمَا ٱلْحَيَوٰةُ ٱلدُّنْيَآ إِلَّا مَتَعُ ٱلْغُرُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,57,' سَابِقُوٓا۟ إِلَىٰ مَغْفِرَةٍۢ مِّن رَّبِّكُمْ وَجَنَّةٍ عَرْضُهَا كَعَرْضِ ٱلسَّمَآءِ وَٱلْأَرْضِ أُعِدَّتْ لِلَّذِينَ ءَامَنُوا۟ بِٱللَّهِ وَرُسُلِهِۦ ۚ ذَلِكَ فَضْلُ ٱللَّهِ يُؤْتِيهِ مَن يَشَآءُ ۚ وَٱللَّهُ ذُو ٱلْفَضْلِ ٱلْعَظِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,57,' مَآ أَصَابَ مِن مُّصِيبَةٍۢ فِى ٱلْأَرْضِ وَلَا فِىٓ أَنفُسِكُمْ إِلَّا فِى كِتَبٍۢ مِّن قَبْلِ أَن نَّبْرَأَهَآ ۚ إِنَّ ذَلِكَ عَلَى ٱللَّهِ يَسِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,57,' لِّكَيْلَا تَأْسَوْا۟ عَلَىٰ مَا فَاتَكُمْ وَلَا تَفْرَحُوا۟ بِمَآ ءَاتَىٰكُمْ ۗ وَٱللَّهُ لَا يُحِبُّ كُلَّ مُخْتَالٍۢ فَخُورٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,57,' ٱلَّذِينَ يَبْخَلُونَ وَيَأْمُرُونَ ٱلنَّاسَ بِٱلْبُخْلِ ۗ وَمَن يَتَوَلَّ فَإِنَّ ٱللَّهَ هُوَ ٱلْغَنِىُّ ٱلْحَمِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,57,' لَقَدْ أَرْسَلْنَا رُسُلَنَا بِٱلْبَيِّنَتِ وَأَنزَلْنَا مَعَهُمُ ٱلْكِتَبَ وَٱلْمِيزَانَ لِيَقُومَ ٱلنَّاسُ بِٱلْقِسْطِ ۖ وَأَنزَلْنَا ٱلْحَدِيدَ فِيهِ بَأْسٌۭ شَدِيدٌۭ وَمَنَفِعُ لِلنَّاسِ وَلِيَعْلَمَ ٱللَّهُ مَن يَنصُرُهُۥ وَرُسُلَهُۥ بِٱلْغَيْبِ ۚ إِنَّ ٱللَّهَ قَوِىٌّ عَزِيزٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,57,' وَلَقَدْ أَرْسَلْنَا نُوحًۭا وَإِبْرَهِيمَ وَجَعَلْنَا فِى ذُرِّيَّتِهِمَا ٱلنُّبُوَّةَ وَٱلْكِتَبَ ۖ فَمِنْهُم مُّهْتَدٍۢ ۖ وَكَثِيرٌۭ مِّنْهُمْ فَسِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,57,' ثُمَّ قَفَّيْنَا عَلَىٰٓ ءَاثَرِهِم بِرُسُلِنَا وَقَفَّيْنَا بِعِيسَى ٱبْنِ مَرْيَمَ وَءَاتَيْنَهُ ٱلْإِنجِيلَ وَجَعَلْنَا فِى قُلُوبِ ٱلَّذِينَ ٱتَّبَعُوهُ رَأْفَةًۭ وَرَحْمَةًۭ وَرَهْبَانِيَّةً ٱبْتَدَعُوهَا مَا كَتَبْنَهَا عَلَيْهِمْ إِلَّا ٱبْتِغَآءَ رِضْوَنِ ٱللَّهِ فَمَا رَعَوْهَا حَقَّ رِعَايَتِهَا ۖ فَـَٔاتَيْنَا ٱلَّذِينَ ءَامَنُوا۟ مِنْهُمْ أَجْرَهُمْ ۖ وَكَثِيرٌۭ مِّنْهُمْ فَسِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,57,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ ٱتَّقُوا۟ ٱللَّهَ وَءَامِنُوا۟ بِرَسُولِهِۦ يُؤْتِكُمْ كِفْلَيْنِ مِن رَّحْمَتِهِۦ وَيَجْعَل لَّكُمْ نُورًۭا تَمْشُونَ بِهِۦ وَيَغْفِرْ لَكُمْ ۚ وَٱللَّهُ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,57,' لِّئَلَّا يَعْلَمَ أَهْلُ ٱلْكِتَبِ أَلَّا يَقْدِرُونَ عَلَىٰ شَىْءٍۢ مِّن فَضْلِ ٱللَّهِ ۙ وَأَنَّ ٱلْفَضْلَ بِيَدِ ٱللَّهِ يُؤْتِيهِ مَن يَشَآءُ ۚ وَٱللَّهُ ذُو ٱلْفَضْلِ ٱلْعَظِيمِ');
+INSERT INTO chapters (id, number, quran_id) VALUES(58,58,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,58,' قَدْ سَمِعَ ٱللَّهُ قَوْلَ ٱلَّتِى تُجَدِلُكَ فِى زَوْجِهَا وَتَشْتَكِىٓ إِلَى ٱللَّهِ وَٱللَّهُ يَسْمَعُ تَحَاوُرَكُمَآ ۚ إِنَّ ٱللَّهَ سَمِيعٌۢ بَصِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,58,' ٱلَّذِينَ يُظَهِرُونَ مِنكُم مِّن نِّسَآئِهِم مَّا هُنَّ أُمَّهَتِهِمْ ۖ إِنْ أُمَّهَتُهُمْ إِلَّا ٱلَّٓـِٔى وَلَدْنَهُمْ ۚ وَإِنَّهُمْ لَيَقُولُونَ مُنكَرًۭا مِّنَ ٱلْقَوْلِ وَزُورًۭا ۚ وَإِنَّ ٱللَّهَ لَعَفُوٌّ غَفُورٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,58,' وَٱلَّذِينَ يُظَهِرُونَ مِن نِّسَآئِهِمْ ثُمَّ يَعُودُونَ لِمَا قَالُوا۟ فَتَحْرِيرُ رَقَبَةٍۢ مِّن قَبْلِ أَن يَتَمَآسَّا ۚ ذَلِكُمْ تُوعَظُونَ بِهِۦ ۚ وَٱللَّهُ بِمَا تَعْمَلُونَ خَبِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,58,' فَمَن لَّمْ يَجِدْ فَصِيَامُ شَهْرَيْنِ مُتَتَابِعَيْنِ مِن قَبْلِ أَن يَتَمَآسَّا ۖ فَمَن لَّمْ يَسْتَطِعْ فَإِطْعَامُ سِتِّينَ مِسْكِينًۭا ۚ ذَلِكَ لِتُؤْمِنُوا۟ بِٱللَّهِ وَرَسُولِهِۦ ۚ وَتِلْكَ حُدُودُ ٱللَّهِ ۗ وَلِلْكَفِرِينَ عَذَابٌ أَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,58,' إِنَّ ٱلَّذِينَ يُحَآدُّونَ ٱللَّهَ وَرَسُولَهُۥ كُبِتُوا۟ كَمَا كُبِتَ ٱلَّذِينَ مِن قَبْلِهِمْ ۚ وَقَدْ أَنزَلْنَآ ءَايَتٍۭ بَيِّنَتٍۢ ۚ وَلِلْكَفِرِينَ عَذَابٌۭ مُّهِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,58,' يَوْمَ يَبْعَثُهُمُ ٱللَّهُ جَمِيعًۭا فَيُنَبِّئُهُم بِمَا عَمِلُوٓا۟ ۚ أَحْصَىٰهُ ٱللَّهُ وَنَسُوهُ ۚ وَٱللَّهُ عَلَىٰ كُلِّ شَىْءٍۢ شَهِيدٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,58,' أَلَمْ تَرَ أَنَّ ٱللَّهَ يَعْلَمُ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۖ مَا يَكُونُ مِن نَّجْوَىٰ ثَلَثَةٍ إِلَّا هُوَ رَابِعُهُمْ وَلَا خَمْسَةٍ إِلَّا هُوَ سَادِسُهُمْ وَلَآ أَدْنَىٰ مِن ذَلِكَ وَلَآ أَكْثَرَ إِلَّا هُوَ مَعَهُمْ أَيْنَ مَا كَانُوا۟ ۖ ثُمَّ يُنَبِّئُهُم بِمَا عَمِلُوا۟ يَوْمَ ٱلْقِيَمَةِ ۚ إِنَّ ٱللَّهَ بِكُلِّ شَىْءٍ عَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,58,' أَلَمْ تَرَ إِلَى ٱلَّذِينَ نُهُوا۟ عَنِ ٱلنَّجْوَىٰ ثُمَّ يَعُودُونَ لِمَا نُهُوا۟ عَنْهُ وَيَتَنَجَوْنَ بِٱلْإِثْمِ وَٱلْعُدْوَنِ وَمَعْصِيَتِ ٱلرَّسُولِ وَإِذَا جَآءُوكَ حَيَّوْكَ بِمَا لَمْ يُحَيِّكَ بِهِ ٱللَّهُ وَيَقُولُونَ فِىٓ أَنفُسِهِمْ لَوْلَا يُعَذِّبُنَا ٱللَّهُ بِمَا نَقُولُ ۚ حَسْبُهُمْ جَهَنَّمُ يَصْلَوْنَهَا ۖ فَبِئْسَ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,58,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِذَا تَنَجَيْتُمْ فَلَا تَتَنَجَوْا۟ بِٱلْإِثْمِ وَٱلْعُدْوَنِ وَمَعْصِيَتِ ٱلرَّسُولِ وَتَنَجَوْا۟ بِٱلْبِرِّ وَٱلتَّقْوَىٰ ۖ وَٱتَّقُوا۟ ٱللَّهَ ٱلَّذِىٓ إِلَيْهِ تُحْشَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,58,' إِنَّمَا ٱلنَّجْوَىٰ مِنَ ٱلشَّيْطَنِ لِيَحْزُنَ ٱلَّذِينَ ءَامَنُوا۟ وَلَيْسَ بِضَآرِّهِمْ شَيْـًٔا إِلَّا بِإِذْنِ ٱللَّهِ ۚ وَعَلَى ٱللَّهِ فَلْيَتَوَكَّلِ ٱلْمُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,58,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِذَا قِيلَ لَكُمْ تَفَسَّحُوا۟ فِى ٱلْمَجَلِسِ فَٱفْسَحُوا۟ يَفْسَحِ ٱللَّهُ لَكُمْ ۖ وَإِذَا قِيلَ ٱنشُزُوا۟ فَٱنشُزُوا۟ يَرْفَعِ ٱللَّهُ ٱلَّذِينَ ءَامَنُوا۟ مِنكُمْ وَٱلَّذِينَ أُوتُوا۟ ٱلْعِلْمَ دَرَجَتٍۢ ۚ وَٱللَّهُ بِمَا تَعْمَلُونَ خَبِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,58,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِذَا نَجَيْتُمُ ٱلرَّسُولَ فَقَدِّمُوا۟ بَيْنَ يَدَىْ نَجْوَىٰكُمْ صَدَقَةًۭ ۚ ذَلِكَ خَيْرٌۭ لَّكُمْ وَأَطْهَرُ ۚ فَإِن لَّمْ تَجِدُوا۟ فَإِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,58,' ءَأَشْفَقْتُمْ أَن تُقَدِّمُوا۟ بَيْنَ يَدَىْ نَجْوَىٰكُمْ صَدَقَتٍۢ ۚ فَإِذْ لَمْ تَفْعَلُوا۟ وَتَابَ ٱللَّهُ عَلَيْكُمْ فَأَقِيمُوا۟ ٱلصَّلَوٰةَ وَءَاتُوا۟ ٱلزَّكَوٰةَ وَأَطِيعُوا۟ ٱللَّهَ وَرَسُولَهُۥ ۚ وَٱللَّهُ خَبِيرٌۢ بِمَا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,58,' أَلَمْ تَرَ إِلَى ٱلَّذِينَ تَوَلَّوْا۟ قَوْمًا غَضِبَ ٱللَّهُ عَلَيْهِم مَّا هُم مِّنكُمْ وَلَا مِنْهُمْ وَيَحْلِفُونَ عَلَى ٱلْكَذِبِ وَهُمْ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,58,' أَعَدَّ ٱللَّهُ لَهُمْ عَذَابًۭا شَدِيدًا ۖ إِنَّهُمْ سَآءَ مَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,58,' ٱتَّخَذُوٓا۟ أَيْمَنَهُمْ جُنَّةًۭ فَصَدُّوا۟ عَن سَبِيلِ ٱللَّهِ فَلَهُمْ عَذَابٌۭ مُّهِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,58,' لَّن تُغْنِىَ عَنْهُمْ أَمْوَلُهُمْ وَلَآ أَوْلَدُهُم مِّنَ ٱللَّهِ شَيْـًٔا ۚ أُو۟لَٓئِكَ أَصْحَبُ ٱلنَّارِ ۖ هُمْ فِيهَا خَلِدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,58,' يَوْمَ يَبْعَثُهُمُ ٱللَّهُ جَمِيعًۭا فَيَحْلِفُونَ لَهُۥ كَمَا يَحْلِفُونَ لَكُمْ ۖ وَيَحْسَبُونَ أَنَّهُمْ عَلَىٰ شَىْءٍ ۚ أَلَآ إِنَّهُمْ هُمُ ٱلْكَذِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,58,' ٱسْتَحْوَذَ عَلَيْهِمُ ٱلشَّيْطَنُ فَأَنسَىٰهُمْ ذِكْرَ ٱللَّهِ ۚ أُو۟لَٓئِكَ حِزْبُ ٱلشَّيْطَنِ ۚ أَلَآ إِنَّ حِزْبَ ٱلشَّيْطَنِ هُمُ ٱلْخَسِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,58,' إِنَّ ٱلَّذِينَ يُحَآدُّونَ ٱللَّهَ وَرَسُولَهُۥٓ أُو۟لَٓئِكَ فِى ٱلْأَذَلِّينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,58,' كَتَبَ ٱللَّهُ لَأَغْلِبَنَّ أَنَا۠ وَرُسُلِىٓ ۚ إِنَّ ٱللَّهَ قَوِىٌّ عَزِيزٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,58,' لَّا تَجِدُ قَوْمًۭا يُؤْمِنُونَ بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ يُوَآدُّونَ مَنْ حَآدَّ ٱللَّهَ وَرَسُولَهُۥ وَلَوْ كَانُوٓا۟ ءَابَآءَهُمْ أَوْ أَبْنَآءَهُمْ أَوْ إِخْوَنَهُمْ أَوْ عَشِيرَتَهُمْ ۚ أُو۟لَٓئِكَ كَتَبَ فِى قُلُوبِهِمُ ٱلْإِيمَنَ وَأَيَّدَهُم بِرُوحٍۢ مِّنْهُ ۖ وَيُدْخِلُهُمْ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَا ۚ رَضِىَ ٱللَّهُ عَنْهُمْ وَرَضُوا۟ عَنْهُ ۚ أُو۟لَٓئِكَ حِزْبُ ٱللَّهِ ۚ أَلَآ إِنَّ حِزْبَ ٱللَّهِ هُمُ ٱلْمُفْلِحُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(59,59,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,59,' سَبَّحَ لِلَّهِ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۖ وَهُوَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,59,' هُوَ ٱلَّذِىٓ أَخْرَجَ ٱلَّذِينَ كَفَرُوا۟ مِنْ أَهْلِ ٱلْكِتَبِ مِن دِيَرِهِمْ لِأَوَّلِ ٱلْحَشْرِ ۚ مَا ظَنَنتُمْ أَن يَخْرُجُوا۟ ۖ وَظَنُّوٓا۟ أَنَّهُم مَّانِعَتُهُمْ حُصُونُهُم مِّنَ ٱللَّهِ فَأَتَىٰهُمُ ٱللَّهُ مِنْ حَيْثُ لَمْ يَحْتَسِبُوا۟ ۖ وَقَذَفَ فِى قُلُوبِهِمُ ٱلرُّعْبَ ۚ يُخْرِبُونَ بُيُوتَهُم بِأَيْدِيهِمْ وَأَيْدِى ٱلْمُؤْمِنِينَ فَٱعْتَبِرُوا۟ يَٓأُو۟لِى ٱلْأَبْصَرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,59,' وَلَوْلَآ أَن كَتَبَ ٱللَّهُ عَلَيْهِمُ ٱلْجَلَآءَ لَعَذَّبَهُمْ فِى ٱلدُّنْيَا ۖ وَلَهُمْ فِى ٱلْءَاخِرَةِ عَذَابُ ٱلنَّارِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,59,' ذَلِكَ بِأَنَّهُمْ شَآقُّوا۟ ٱللَّهَ وَرَسُولَهُۥ ۖ وَمَن يُشَآقِّ ٱللَّهَ فَإِنَّ ٱللَّهَ شَدِيدُ ٱلْعِقَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,59,' مَا قَطَعْتُم مِّن لِّينَةٍ أَوْ تَرَكْتُمُوهَا قَآئِمَةً عَلَىٰٓ أُصُولِهَا فَبِإِذْنِ ٱللَّهِ وَلِيُخْزِىَ ٱلْفَسِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,59,' وَمَآ أَفَآءَ ٱللَّهُ عَلَىٰ رَسُولِهِۦ مِنْهُمْ فَمَآ أَوْجَفْتُمْ عَلَيْهِ مِنْ خَيْلٍۢ وَلَا رِكَابٍۢ وَلَكِنَّ ٱللَّهَ يُسَلِّطُ رُسُلَهُۥ عَلَىٰ مَن يَشَآءُ ۚ وَٱللَّهُ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,59,' مَّآ أَفَآءَ ٱللَّهُ عَلَىٰ رَسُولِهِۦ مِنْ أَهْلِ ٱلْقُرَىٰ فَلِلَّهِ وَلِلرَّسُولِ وَلِذِى ٱلْقُرْبَىٰ وَٱلْيَتَمَىٰ وَٱلْمَسَكِينِ وَٱبْنِ ٱلسَّبِيلِ كَىْ لَا يَكُونَ دُولَةًۢ بَيْنَ ٱلْأَغْنِيَآءِ مِنكُمْ ۚ وَمَآ ءَاتَىٰكُمُ ٱلرَّسُولُ فَخُذُوهُ وَمَا نَهَىٰكُمْ عَنْهُ فَٱنتَهُوا۟ ۚ وَٱتَّقُوا۟ ٱللَّهَ ۖ إِنَّ ٱللَّهَ شَدِيدُ ٱلْعِقَابِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,59,' لِلْفُقَرَآءِ ٱلْمُهَجِرِينَ ٱلَّذِينَ أُخْرِجُوا۟ مِن دِيَرِهِمْ وَأَمْوَلِهِمْ يَبْتَغُونَ فَضْلًۭا مِّنَ ٱللَّهِ وَرِضْوَنًۭا وَيَنصُرُونَ ٱللَّهَ وَرَسُولَهُۥٓ ۚ أُو۟لَٓئِكَ هُمُ ٱلصَّدِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,59,' وَٱلَّذِينَ تَبَوَّءُو ٱلدَّارَ وَٱلْإِيمَنَ مِن قَبْلِهِمْ يُحِبُّونَ مَنْ هَاجَرَ إِلَيْهِمْ وَلَا يَجِدُونَ فِى صُدُورِهِمْ حَاجَةًۭ مِّمَّآ أُوتُوا۟ وَيُؤْثِرُونَ عَلَىٰٓ أَنفُسِهِمْ وَلَوْ كَانَ بِهِمْ خَصَاصَةٌۭ ۚ وَمَن يُوقَ شُحَّ نَفْسِهِۦ فَأُو۟لَٓئِكَ هُمُ ٱلْمُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,59,' وَٱلَّذِينَ جَآءُو مِنۢ بَعْدِهِمْ يَقُولُونَ رَبَّنَا ٱغْفِرْ لَنَا وَلِإِخْوَنِنَا ٱلَّذِينَ سَبَقُونَا بِٱلْإِيمَنِ وَلَا تَجْعَلْ فِى قُلُوبِنَا غِلًّۭا لِّلَّذِينَ ءَامَنُوا۟ رَبَّنَآ إِنَّكَ رَءُوفٌۭ رَّحِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,59,' أَلَمْ تَرَ إِلَى ٱلَّذِينَ نَافَقُوا۟ يَقُولُونَ لِإِخْوَنِهِمُ ٱلَّذِينَ كَفَرُوا۟ مِنْ أَهْلِ ٱلْكِتَبِ لَىِٕنْ أُخْرِجْتُمْ لَنَخْرُجَنَّ مَعَكُمْ وَلَا نُطِيعُ فِيكُمْ أَحَدًا أَبَدًۭا وَإِن قُوتِلْتُمْ لَنَنصُرَنَّكُمْ وَٱللَّهُ يَشْهَدُ إِنَّهُمْ لَكَذِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,59,' لَىِٕنْ أُخْرِجُوا۟ لَا يَخْرُجُونَ مَعَهُمْ وَلَىِٕن قُوتِلُوا۟ لَا يَنصُرُونَهُمْ وَلَىِٕن نَّصَرُوهُمْ لَيُوَلُّنَّ ٱلْأَدْبَرَ ثُمَّ لَا يُنصَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,59,' لَأَنتُمْ أَشَدُّ رَهْبَةًۭ فِى صُدُورِهِم مِّنَ ٱللَّهِ ۚ ذَلِكَ بِأَنَّهُمْ قَوْمٌۭ لَّا يَفْقَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,59,' لَا يُقَتِلُونَكُمْ جَمِيعًا إِلَّا فِى قُرًۭى مُّحَصَّنَةٍ أَوْ مِن وَرَآءِ جُدُرٍۭ ۚ بَأْسُهُم بَيْنَهُمْ شَدِيدٌۭ ۚ تَحْسَبُهُمْ جَمِيعًۭا وَقُلُوبُهُمْ شَتَّىٰ ۚ ذَلِكَ بِأَنَّهُمْ قَوْمٌۭ لَّا يَعْقِلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,59,' كَمَثَلِ ٱلَّذِينَ مِن قَبْلِهِمْ قَرِيبًۭا ۖ ذَاقُوا۟ وَبَالَ أَمْرِهِمْ وَلَهُمْ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,59,' كَمَثَلِ ٱلشَّيْطَنِ إِذْ قَالَ لِلْإِنسَنِ ٱكْفُرْ فَلَمَّا كَفَرَ قَالَ إِنِّى بَرِىٓءٌۭ مِّنكَ إِنِّىٓ أَخَافُ ٱللَّهَ رَبَّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,59,' فَكَانَ عَقِبَتَهُمَآ أَنَّهُمَا فِى ٱلنَّارِ خَلِدَيْنِ فِيهَا ۚ وَذَلِكَ جَزَٓؤُا۟ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,59,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ ٱتَّقُوا۟ ٱللَّهَ وَلْتَنظُرْ نَفْسٌۭ مَّا قَدَّمَتْ لِغَدٍۢ ۖ وَٱتَّقُوا۟ ٱللَّهَ ۚ إِنَّ ٱللَّهَ خَبِيرٌۢ بِمَا تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,59,' وَلَا تَكُونُوا۟ كَٱلَّذِينَ نَسُوا۟ ٱللَّهَ فَأَنسَىٰهُمْ أَنفُسَهُمْ ۚ أُو۟لَٓئِكَ هُمُ ٱلْفَسِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,59,' لَا يَسْتَوِىٓ أَصْحَبُ ٱلنَّارِ وَأَصْحَبُ ٱلْجَنَّةِ ۚ أَصْحَبُ ٱلْجَنَّةِ هُمُ ٱلْفَآئِزُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,59,' لَوْ أَنزَلْنَا هَذَا ٱلْقُرْءَانَ عَلَىٰ جَبَلٍۢ لَّرَأَيْتَهُۥ خَشِعًۭا مُّتَصَدِّعًۭا مِّنْ خَشْيَةِ ٱللَّهِ ۚ وَتِلْكَ ٱلْأَمْثَلُ نَضْرِبُهَا لِلنَّاسِ لَعَلَّهُمْ يَتَفَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,59,' هُوَ ٱللَّهُ ٱلَّذِى لَآ إِلَهَ إِلَّا هُوَ ۖ عَلِمُ ٱلْغَيْبِ وَٱلشَّهَدَةِ ۖ هُوَ ٱلرَّحْمَنُ ٱلرَّحِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,59,' هُوَ ٱللَّهُ ٱلَّذِى لَآ إِلَهَ إِلَّا هُوَ ٱلْمَلِكُ ٱلْقُدُّوسُ ٱلسَّلَمُ ٱلْمُؤْمِنُ ٱلْمُهَيْمِنُ ٱلْعَزِيزُ ٱلْجَبَّارُ ٱلْمُتَكَبِّرُ ۚ سُبْحَنَ ٱللَّهِ عَمَّا يُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,59,' هُوَ ٱللَّهُ ٱلْخَلِقُ ٱلْبَارِئُ ٱلْمُصَوِّرُ ۖ لَهُ ٱلْأَسْمَآءُ ٱلْحُسْنَىٰ ۚ يُسَبِّحُ لَهُۥ مَا فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ ۖ وَهُوَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO chapters (id, number, quran_id) VALUES(60,60,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,60,' يَٓأَيُّهَاء ٱلَّذِينَ ءَامَنُوا۟ لَا تَتَّخِذُوا۟ عَدُوِّى وَعَدُوَّكُمْ أَوْلِيَآءَ تُلْقُونَ إِلَيْهِم بِٱلْمَوَدَّةِ وَقَدْ كَفَرُوا۟ بِمَا جَآءَكُم مِّنَ ٱلْحَقِّ يُخْرِجُونَ ٱلرَّسُولَ وَإِيَّاكُمْ ۙ أَن تُؤْمِنُوا۟ بِٱللَّهِ رَبِّكُمْ إِن كُنتُمْ خَرَجْتُمْ جِهَدًۭا فِى سَبِيلِى وَٱبْتِغَآءَ مَرْضَاتِى ۚ تُسِرُّونَ إِلَيْهِم بِٱلْمَوَدَّةِ وَأَنَا۠ أَعْلَمُ بِمَآ أَخْفَيْتُمْ وَمَآ أَعْلَنتُمْ ۚ وَمَن يَفْعَلْهُ مِنكُمْ فَقَدْ ضَلَّ سَوَآءَ ٱلسَّبِيلِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,60,' إِن يَثْقَفُوكُمْ يَكُونُوا۟ لَكُمْ أَعْدَآءًۭ وَيَبْسُطُوٓا۟ إِلَيْكُمْ أَيْدِيَهُمْ وَأَلْسِنَتَهُم بِٱلسُّوٓءِ وَوَدُّوا۟ لَوْ تَكْفُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,60,' لَن تَنفَعَكُمْ أَرْحَامُكُمْ وَلَآ أَوْلَدُكُمْ ۚ يَوْمَ ٱلْقِيَمَةِ يَفْصِلُ بَيْنَكُمْ ۚ وَٱللَّهُ بِمَا تَعْمَلُونَ بَصِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,60,' قَدْ كَانَتْ لَكُمْ أُسْوَةٌ حَسَنَةٌۭ فِىٓ إِبْرَهِيمَ وَٱلَّذِينَ مَعَهُۥٓ إِذْ قَالُوا۟ لِقَوْمِهِمْ إِنَّا بُرَءَٓؤُا۟ مِنكُمْ وَمِمَّا تَعْبُدُونَ مِن دُونِ ٱللَّهِ كَفَرْنَا بِكُمْ وَبَدَا بَيْنَنَا وَبَيْنَكُمُ ٱلْعَدَوَةُ وَٱلْبَغْضَآءُ أَبَدًا حَتَّىٰ تُؤْمِنُوا۟ بِٱللَّهِ وَحْدَهُۥٓ إِلَّا قَوْلَ إِبْرَهِيمَ لِأَبِيهِ لَأَسْتَغْفِرَنَّ لَكَ وَمَآ أَمْلِكُ لَكَ مِنَ ٱللَّهِ مِن شَىْءٍۢ ۖ رَّبَّنَا عَلَيْكَ تَوَكَّلْنَا وَإِلَيْكَ أَنَبْنَا وَإِلَيْكَ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,60,' رَبَّنَا لَا تَجْعَلْنَا فِتْنَةًۭ لِّلَّذِينَ كَفَرُوا۟ وَٱغْفِرْ لَنَا رَبَّنَآ ۖ إِنَّكَ أَنتَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,60,' لَقَدْ كَانَ لَكُمْ فِيهِمْ أُسْوَةٌ حَسَنَةٌۭ لِّمَن كَانَ يَرْجُوا۟ ٱللَّهَ وَٱلْيَوْمَ ٱلْءَاخِرَ ۚ وَمَن يَتَوَلَّ فَإِنَّ ٱللَّهَ هُوَ ٱلْغَنِىُّ ٱلْحَمِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,60,' عَسَى ٱللَّهُ أَن يَجْعَلَ بَيْنَكُمْ وَبَيْنَ ٱلَّذِينَ عَادَيْتُم مِّنْهُم مَّوَدَّةًۭ ۚ وَٱللَّهُ قَدِيرٌۭ ۚ وَٱللَّهُ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,60,' لَّا يَنْهَىٰكُمُ ٱللَّهُ عَنِ ٱلَّذِينَ لَمْ يُقَتِلُوكُمْ فِى ٱلدِّينِ وَلَمْ يُخْرِجُوكُم مِّن دِيَرِكُمْ أَن تَبَرُّوهُمْ وَتُقْسِطُوٓا۟ إِلَيْهِمْ ۚ إِنَّ ٱللَّهَ يُحِبُّ ٱلْمُقْسِطِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,60,' إِنَّمَا يَنْهَىٰكُمُ ٱللَّهُ عَنِ ٱلَّذِينَ قَتَلُوكُمْ فِى ٱلدِّينِ وَأَخْرَجُوكُم مِّن دِيَرِكُمْ وَظَهَرُوا۟ عَلَىٰٓ إِخْرَاجِكُمْ أَن تَوَلَّوْهُمْ ۚ وَمَن يَتَوَلَّهُمْ فَأُو۟لَٓئِكَ هُمُ ٱلظَّلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,60,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِذَا جَآءَكُمُ ٱلْمُؤْمِنَتُ مُهَجِرَتٍۢ فَٱمْتَحِنُوهُنَّ ۖ ٱللَّهُ أَعْلَمُ بِإِيمَنِهِنَّ ۖ فَإِنْ عَلِمْتُمُوهُنَّ مُؤْمِنَتٍۢ فَلَا تَرْجِعُوهُنَّ إِلَى ٱلْكُفَّارِ ۖ لَا هُنَّ حِلٌّۭ لَّهُمْ وَلَا هُمْ يَحِلُّونَ لَهُنَّ ۖ وَءَاتُوهُم مَّآ أَنفَقُوا۟ ۚ وَلَا جُنَاحَ عَلَيْكُمْ أَن تَنكِحُوهُنَّ إِذَآ ءَاتَيْتُمُوهُنَّ أُجُورَهُنَّ ۚ وَلَا تُمْسِكُوا۟ بِعِصَمِ ٱلْكَوَافِرِ وَسْـَٔلُوا۟ مَآ أَنفَقْتُمْ وَلْيَسْـَٔلُوا۟ مَآ أَنفَقُوا۟ ۚ ذَلِكُمْ حُكْمُ ٱللَّهِ ۖ يَحْكُمُ بَيْنَكُمْ ۚ وَٱللَّهُ عَلِيمٌ حَكِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,60,' وَإِن فَاتَكُمْ شَىْءٌۭ مِّنْ أَزْوَجِكُمْ إِلَى ٱلْكُفَّارِ فَعَاقَبْتُمْ فَـَٔاتُوا۟ ٱلَّذِينَ ذَهَبَتْ أَزْوَجُهُم مِّثْلَ مَآ أَنفَقُوا۟ ۚ وَٱتَّقُوا۟ ٱللَّهَ ٱلَّذِىٓ أَنتُم بِهِۦ مُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,60,' يَٓأَيُّهَا ٱلنَّبِىُّ إِذَا جَآءَكَ ٱلْمُؤْمِنَتُ يُبَايِعْنَكَ عَلَىٰٓ أَن لَّا يُشْرِكْنَ بِٱللَّهِ شَيْـًۭٔا وَلَا يَسْرِقْنَ وَلَا يَزْنِينَ وَلَا يَقْتُلْنَ أَوْلَدَهُنَّ وَلَا يَأْتِينَ بِبُهْتَنٍۢ يَفْتَرِينَهُۥ بَيْنَ أَيْدِيهِنَّ وَأَرْجُلِهِنَّ وَلَا يَعْصِينَكَ فِى مَعْرُوفٍۢ ۙ فَبَايِعْهُنَّ وَٱسْتَغْفِرْ لَهُنَّ ٱللَّهَ ۖ إِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,60,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تَتَوَلَّوْا۟ قَوْمًا غَضِبَ ٱللَّهُ عَلَيْهِمْ قَدْ يَئِسُوا۟ مِنَ ٱلْءَاخِرَةِ كَمَا يَئِسَ ٱلْكُفَّارُ مِنْ أَصْحَبِ ٱلْقُبُورِ');
+INSERT INTO chapters (id, number, quran_id) VALUES(61,61,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,61,' سَبَّحَ لِلَّهِ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۖ وَهُوَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,61,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لِمَ تَقُولُونَ مَا لَا تَفْعَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,61,' كَبُرَ مَقْتًا عِندَ ٱللَّهِ أَن تَقُولُوا۟ مَا لَا تَفْعَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,61,' إِنَّ ٱللَّهَ يُحِبُّ ٱلَّذِينَ يُقَتِلُونَ فِى سَبِيلِهِۦ صَفًّۭا كَأَنَّهُم بُنْيَنٌۭ مَّرْصُوصٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,61,' وَإِذْ قَالَ مُوسَىٰ لِقَوْمِهِۦ يَقَوْمِ لِمَ تُؤْذُونَنِى وَقَد تَّعْلَمُونَ أَنِّى رَسُولُ ٱللَّهِ إِلَيْكُمْ ۖ فَلَمَّا زَاغُوٓا۟ أَزَاغَ ٱللَّهُ قُلُوبَهُمْ ۚ وَٱللَّهُ لَا يَهْدِى ٱلْقَوْمَ ٱلْفَسِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,61,' وَإِذْ قَالَ عِيسَى ٱبْنُ مَرْيَمَ يَبَنِىٓ إِسْرَٓءِيلَ إِنِّى رَسُولُ ٱللَّهِ إِلَيْكُم مُّصَدِّقًۭا لِّمَا بَيْنَ يَدَىَّ مِنَ ٱلتَّوْرَىٰةِ وَمُبَشِّرًۢا بِرَسُولٍۢ يَأْتِى مِنۢ بَعْدِى ٱسْمُهُۥٓ أَحْمَدُ ۖ فَلَمَّا جَآءَهُم بِٱلْبَيِّنَتِ قَالُوا۟ هَذَا سِحْرٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,61,' وَمَنْ أَظْلَمُ مِمَّنِ ٱفْتَرَىٰ عَلَى ٱللَّهِ ٱلْكَذِبَ وَهُوَ يُدْعَىٰٓ إِلَى ٱلْإِسْلَمِ ۚ وَٱللَّهُ لَا يَهْدِى ٱلْقَوْمَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,61,' يُرِيدُونَ لِيُطْفِـُٔوا۟ نُورَ ٱللَّهِ بِأَفْوَهِهِمْ وَٱللَّهُ مُتِمُّ نُورِهِۦ وَلَوْ كَرِهَ ٱلْكَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,61,' هُوَ ٱلَّذِىٓ أَرْسَلَ رَسُولَهُۥ بِٱلْهُدَىٰ وَدِينِ ٱلْحَقِّ لِيُظْهِرَهُۥ عَلَى ٱلدِّينِ كُلِّهِۦ وَلَوْ كَرِهَ ٱلْمُشْرِكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,61,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ هَلْ أَدُلُّكُمْ عَلَىٰ تِجَرَةٍۢ تُنجِيكُم مِّنْ عَذَابٍ أَلِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,61,' تُؤْمِنُونَ بِٱللَّهِ وَرَسُولِهِۦ وَتُجَهِدُونَ فِى سَبِيلِ ٱللَّهِ بِأَمْوَلِكُمْ وَأَنفُسِكُمْ ۚ ذَلِكُمْ خَيْرٌۭ لَّكُمْ إِن كُنتُمْ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,61,' يَغْفِرْ لَكُمْ ذُنُوبَكُمْ وَيُدْخِلْكُمْ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ وَمَسَكِنَ طَيِّبَةًۭ فِى جَنَّتِ عَدْنٍۢ ۚ ذَلِكَ ٱلْفَوْزُ ٱلْعَظِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,61,' وَأُخْرَىٰ تُحِبُّونَهَا ۖ نَصْرٌۭ مِّنَ ٱللَّهِ وَفَتْحٌۭ قَرِيبٌۭ ۗ وَبَشِّرِ ٱلْمُؤْمِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,61,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ كُونُوٓا۟ أَنصَارَ ٱللَّهِ كَمَا قَالَ عِيسَى ٱبْنُ مَرْيَمَ لِلْحَوَارِيِّۦنَ مَنْ أَنصَارِىٓ إِلَى ٱللَّهِ ۖ قَالَ ٱلْحَوَارِيُّونَ نَحْنُ أَنصَارُ ٱللَّهِ ۖ فَـَٔامَنَت طَّآئِفَةٌۭ مِّنۢ بَنِىٓ إِسْرَٓءِيلَ وَكَفَرَت طَّآئِفَةٌۭ ۖ فَأَيَّدْنَا ٱلَّذِينَ ءَامَنُوا۟ عَلَىٰ عَدُوِّهِمْ فَأَصْبَحُوا۟ ظَهِرِينَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(62,62,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,62,' يُسَبِّحُ لِلَّهِ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ٱلْمَلِكِ ٱلْقُدُّوسِ ٱلْعَزِيزِ ٱلْحَكِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,62,' هُوَ ٱلَّذِى بَعَثَ فِى ٱلْأُمِّيِّۦنَ رَسُولًۭا مِّنْهُمْ يَتْلُوا۟ عَلَيْهِمْ ءَايَتِهِۦ وَيُزَكِّيهِمْ وَيُعَلِّمُهُمُ ٱلْكِتَبَ وَٱلْحِكْمَةَ وَإِن كَانُوا۟ مِن قَبْلُ لَفِى ضَلَلٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,62,' وَءَاخَرِينَ مِنْهُمْ لَمَّا يَلْحَقُوا۟ بِهِمْ ۚ وَهُوَ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,62,' ذَلِكَ فَضْلُ ٱللَّهِ يُؤْتِيهِ مَن يَشَآءُ ۚ وَٱللَّهُ ذُو ٱلْفَضْلِ ٱلْعَظِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,62,' مَثَلُ ٱلَّذِينَ حُمِّلُوا۟ ٱلتَّوْرَىٰةَ ثُمَّ لَمْ يَحْمِلُوهَا كَمَثَلِ ٱلْحِمَارِ يَحْمِلُ أَسْفَارًۢا ۚ بِئْسَ مَثَلُ ٱلْقَوْمِ ٱلَّذِينَ كَذَّبُوا۟ بِـَٔايَتِ ٱللَّهِ ۚ وَٱللَّهُ لَا يَهْدِى ٱلْقَوْمَ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,62,' قُلْ يَٓأَيُّهَا ٱلَّذِينَ هَادُوٓا۟ إِن زَعَمْتُمْ أَنَّكُمْ أَوْلِيَآءُ لِلَّهِ مِن دُونِ ٱلنَّاسِ فَتَمَنَّوُا۟ ٱلْمَوْتَ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,62,' وَلَا يَتَمَنَّوْنَهُۥٓ أَبَدًۢا بِمَا قَدَّمَتْ أَيْدِيهِمْ ۚ وَٱللَّهُ عَلِيمٌۢ بِٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,62,' قُلْ إِنَّ ٱلْمَوْتَ ٱلَّذِى تَفِرُّونَ مِنْهُ فَإِنَّهُۥ مُلَقِيكُمْ ۖ ثُمَّ تُرَدُّونَ إِلَىٰ عَلِمِ ٱلْغَيْبِ وَٱلشَّهَدَةِ فَيُنَبِّئُكُم بِمَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,62,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِذَا نُودِىَ لِلصَّلَوٰةِ مِن يَوْمِ ٱلْجُمُعَةِ فَٱسْعَوْا۟ إِلَىٰ ذِكْرِ ٱللَّهِ وَذَرُوا۟ ٱلْبَيْعَ ۚ ذَلِكُمْ خَيْرٌۭ لَّكُمْ إِن كُنتُمْ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,62,' فَإِذَا قُضِيَتِ ٱلصَّلَوٰةُ فَٱنتَشِرُوا۟ فِى ٱلْأَرْضِ وَٱبْتَغُوا۟ مِن فَضْلِ ٱللَّهِ وَٱذْكُرُوا۟ ٱللَّهَ كَثِيرًۭا لَّعَلَّكُمْ تُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,62,' وَإِذَا رَأَوْا۟ تِجَرَةً أَوْ لَهْوًا ٱنفَضُّوٓا۟ إِلَيْهَا وَتَرَكُوكَ قَآئِمًۭا ۚ قُلْ مَا عِندَ ٱللَّهِ خَيْرٌۭ مِّنَ ٱللَّهْوِ وَمِنَ ٱلتِّجَرَةِ ۚ وَٱللَّهُ خَيْرُ ٱلرَّزِقِينَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(63,63,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,63,' إِذَا جَآءَكَ ٱلْمُنَفِقُونَ قَالُوا۟ نَشْهَدُ إِنَّكَ لَرَسُولُ ٱللَّهِ ۗ وَٱللَّهُ يَعْلَمُ إِنَّكَ لَرَسُولُهُۥ وَٱللَّهُ يَشْهَدُ إِنَّ ٱلْمُنَفِقِينَ لَكَذِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,63,' ٱتَّخَذُوٓا۟ أَيْمَنَهُمْ جُنَّةًۭ فَصَدُّوا۟ عَن سَبِيلِ ٱللَّهِ ۚ إِنَّهُمْ سَآءَ مَا كَانُوا۟ يَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,63,' ذَلِكَ بِأَنَّهُمْ ءَامَنُوا۟ ثُمَّ كَفَرُوا۟ فَطُبِعَ عَلَىٰ قُلُوبِهِمْ فَهُمْ لَا يَفْقَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,63,' وَإِذَا رَأَيْتَهُمْ تُعْجِبُكَ أَجْسَامُهُمْ ۖ وَإِن يَقُولُوا۟ تَسْمَعْ لِقَوْلِهِمْ ۖ كَأَنَّهُمْ خُشُبٌۭ مُّسَنَّدَةٌۭ ۖ يَحْسَبُونَ كُلَّ صَيْحَةٍ عَلَيْهِمْ ۚ هُمُ ٱلْعَدُوُّ فَٱحْذَرْهُمْ ۚ قَتَلَهُمُ ٱللَّهُ ۖ أَنَّىٰ يُؤْفَكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,63,' وَإِذَا قِيلَ لَهُمْ تَعَالَوْا۟ يَسْتَغْفِرْ لَكُمْ رَسُولُ ٱللَّهِ لَوَّوْا۟ رُءُوسَهُمْ وَرَأَيْتَهُمْ يَصُدُّونَ وَهُم مُّسْتَكْبِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,63,' سَوَآءٌ عَلَيْهِمْ أَسْتَغْفَرْتَ لَهُمْ أَمْ لَمْ تَسْتَغْفِرْ لَهُمْ لَن يَغْفِرَ ٱللَّهُ لَهُمْ ۚ إِنَّ ٱللَّهَ لَا يَهْدِى ٱلْقَوْمَ ٱلْفَسِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,63,' هُمُ ٱلَّذِينَ يَقُولُونَ لَا تُنفِقُوا۟ عَلَىٰ مَنْ عِندَ رَسُولِ ٱللَّهِ حَتَّىٰ يَنفَضُّوا۟ ۗ وَلِلَّهِ خَزَآىِٕنُ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَلَكِنَّ ٱلْمُنَفِقِينَ لَا يَفْقَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,63,' يَقُولُونَ لَىِٕن رَّجَعْنَآ إِلَى ٱلْمَدِينَةِ لَيُخْرِجَنَّ ٱلْأَعَزُّ مِنْهَا ٱلْأَذَلَّ ۚ وَلِلَّهِ ٱلْعِزَّةُ وَلِرَسُولِهِۦ وَلِلْمُؤْمِنِينَ وَلَكِنَّ ٱلْمُنَفِقِينَ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,63,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ لَا تُلْهِكُمْ أَمْوَلُكُمْ وَلَآ أَوْلَدُكُمْ عَن ذِكْرِ ٱللَّهِ ۚ وَمَن يَفْعَلْ ذَلِكَ فَأُو۟لَٓئِكَ هُمُ ٱلْخَسِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,63,' وَأَنفِقُوا۟ مِن مَّا رَزَقْنَكُم مِّن قَبْلِ أَن يَأْتِىَ أَحَدَكُمُ ٱلْمَوْتُ فَيَقُولَ رَبِّ لَوْلَآ أَخَّرْتَنِىٓ إِلَىٰٓ أَجَلٍۢ قَرِيبٍۢ فَأَصَّدَّقَ وَأَكُن مِّنَ ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,63,' وَلَن يُؤَخِّرَ ٱللَّهُ نَفْسًا إِذَا جَآءَ أَجَلُهَا ۚ وَٱللَّهُ خَبِيرٌۢ بِمَا تَعْمَلُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(64,64,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,64,' يُسَبِّحُ لِلَّهِ مَا فِى ٱلسَّمَوَتِ وَمَا فِى ٱلْأَرْضِ ۖ لَهُ ٱلْمُلْكُ وَلَهُ ٱلْحَمْدُ ۖ وَهُوَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,64,' هُوَ ٱلَّذِى خَلَقَكُمْ فَمِنكُمْ كَافِرٌۭ وَمِنكُم مُّؤْمِنٌۭ ۚ وَٱللَّهُ بِمَا تَعْمَلُونَ بَصِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,64,' خَلَقَ ٱلسَّمَوَتِ وَٱلْأَرْضَ بِٱلْحَقِّ وَصَوَّرَكُمْ فَأَحْسَنَ صُوَرَكُمْ ۖ وَإِلَيْهِ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,64,' يَعْلَمُ مَا فِى ٱلسَّمَوَتِ وَٱلْأَرْضِ وَيَعْلَمُ مَا تُسِرُّونَ وَمَا تُعْلِنُونَ ۚ وَٱللَّهُ عَلِيمٌۢ بِذَاتِ ٱلصُّدُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,64,' أَلَمْ يَأْتِكُمْ نَبَؤُا۟ ٱلَّذِينَ كَفَرُوا۟ مِن قَبْلُ فَذَاقُوا۟ وَبَالَ أَمْرِهِمْ وَلَهُمْ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,64,' ذَلِكَ بِأَنَّهُۥ كَانَت تَّأْتِيهِمْ رُسُلُهُم بِٱلْبَيِّنَتِ فَقَالُوٓا۟ أَبَشَرٌۭ يَهْدُونَنَا فَكَفَرُوا۟ وَتَوَلَّوا۟ ۚ وَّٱسْتَغْنَى ٱللَّهُ ۚ وَٱللَّهُ غَنِىٌّ حَمِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,64,' زَعَمَ ٱلَّذِينَ كَفَرُوٓا۟ أَن لَّن يُبْعَثُوا۟ ۚ قُلْ بَلَىٰ وَرَبِّى لَتُبْعَثُنَّ ثُمَّ لَتُنَبَّؤُنَّ بِمَا عَمِلْتُمْ ۚ وَذَلِكَ عَلَى ٱللَّهِ يَسِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,64,' فَـَٔامِنُوا۟ بِٱللَّهِ وَرَسُولِهِۦ وَٱلنُّورِ ٱلَّذِىٓ أَنزَلْنَا ۚ وَٱللَّهُ بِمَا تَعْمَلُونَ خَبِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,64,' يَوْمَ يَجْمَعُكُمْ لِيَوْمِ ٱلْجَمْعِ ۖ ذَلِكَ يَوْمُ ٱلتَّغَابُنِ ۗ وَمَن يُؤْمِنۢ بِٱللَّهِ وَيَعْمَلْ صَلِحًۭا يُكَفِّرْ عَنْهُ سَيِّـَٔاتِهِۦ وَيُدْخِلْهُ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَآ أَبَدًۭا ۚ ذَلِكَ ٱلْفَوْزُ ٱلْعَظِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,64,' وَٱلَّذِينَ كَفَرُوا۟ وَكَذَّبُوا۟ بِـَٔايَتِنَآ أُو۟لَٓئِكَ أَصْحَبُ ٱلنَّارِ خَلِدِينَ فِيهَا ۖ وَبِئْسَ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,64,' مَآ أَصَابَ مِن مُّصِيبَةٍ إِلَّا بِإِذْنِ ٱللَّهِ ۗ وَمَن يُؤْمِنۢ بِٱللَّهِ يَهْدِ قَلْبَهُۥ ۚ وَٱللَّهُ بِكُلِّ شَىْءٍ عَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,64,' وَأَطِيعُوا۟ ٱللَّهَ وَأَطِيعُوا۟ ٱلرَّسُولَ ۚ فَإِن تَوَلَّيْتُمْ فَإِنَّمَا عَلَىٰ رَسُولِنَا ٱلْبَلَغُ ٱلْمُبِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,64,' ٱللَّهُ لَآ إِلَهَ إِلَّا هُوَ ۚ وَعَلَى ٱللَّهِ فَلْيَتَوَكَّلِ ٱلْمُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,64,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوٓا۟ إِنَّ مِنْ أَزْوَجِكُمْ وَأَوْلَدِكُمْ عَدُوًّۭا لَّكُمْ فَٱحْذَرُوهُمْ ۚ وَإِن تَعْفُوا۟ وَتَصْفَحُوا۟ وَتَغْفِرُوا۟ فَإِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,64,' إِنَّمَآ أَمْوَلُكُمْ وَأَوْلَدُكُمْ فِتْنَةٌۭ ۚ وَٱللَّهُ عِندَهُۥٓ أَجْرٌ عَظِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,64,' فَٱتَّقُوا۟ ٱللَّهَ مَا ٱسْتَطَعْتُمْ وَٱسْمَعُوا۟ وَأَطِيعُوا۟ وَأَنفِقُوا۟ خَيْرًۭا لِأَنفُسِكُمْ ۗ وَمَن يُوقَ شُحَّ نَفْسِهِۦ فَأُو۟لَٓئِكَ هُمُ ٱلْمُفْلِحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,64,' إِن تُقْرِضُوا۟ ٱللَّهَ قَرْضًا حَسَنًۭا يُضَعِفْهُ لَكُمْ وَيَغْفِرْ لَكُمْ ۚ وَٱللَّهُ شَكُورٌ حَلِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,64,' عَلِمُ ٱلْغَيْبِ وَٱلشَّهَدَةِ ٱلْعَزِيزُ ٱلْحَكِيمُ');
+INSERT INTO chapters (id, number, quran_id) VALUES(65,65,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,65,' يَٓأَيُّهَا ٱلنَّبِىُّ إِذَا طَلَّقْتُمُ ٱلنِّسَآءَ فَطَلِّقُوهُنَّ لِعِدَّتِهِنَّ وَأَحْصُوا۟ ٱلْعِدَّةَ ۖ وَٱتَّقُوا۟ ٱللَّهَ رَبَّكُمْ ۖ لَا تُخْرِجُوهُنَّ مِنۢ بُيُوتِهِنَّ وَلَا يَخْرُجْنَ إِلَّآ أَن يَأْتِينَ بِفَحِشَةٍۢ مُّبَيِّنَةٍۢ ۚ وَتِلْكَ حُدُودُ ٱللَّهِ ۚ وَمَن يَتَعَدَّ حُدُودَ ٱللَّهِ فَقَدْ ظَلَمَ نَفْسَهُۥ ۚ لَا تَدْرِى لَعَلَّ ٱللَّهَ يُحْدِثُ بَعْدَ ذَلِكَ أَمْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,65,' فَإِذَا بَلَغْنَ أَجَلَهُنَّ فَأَمْسِكُوهُنَّ بِمَعْرُوفٍ أَوْ فَارِقُوهُنَّ بِمَعْرُوفٍۢ وَأَشْهِدُوا۟ ذَوَىْ عَدْلٍۢ مِّنكُمْ وَأَقِيمُوا۟ ٱلشَّهَدَةَ لِلَّهِ ۚ ذَلِكُمْ يُوعَظُ بِهِۦ مَن كَانَ يُؤْمِنُ بِٱللَّهِ وَٱلْيَوْمِ ٱلْءَاخِرِ ۚ وَمَن يَتَّقِ ٱللَّهَ يَجْعَل لَّهُۥ مَخْرَجًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,65,' وَيَرْزُقْهُ مِنْ حَيْثُ لَا يَحْتَسِبُ ۚ وَمَن يَتَوَكَّلْ عَلَى ٱللَّهِ فَهُوَ حَسْبُهُۥٓ ۚ إِنَّ ٱللَّهَ بَلِغُ أَمْرِهِۦ ۚ قَدْ جَعَلَ ٱللَّهُ لِكُلِّ شَىْءٍۢ قَدْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,65,' وَٱلَّٓـِٔى يَئِسْنَ مِنَ ٱلْمَحِيضِ مِن نِّسَآئِكُمْ إِنِ ٱرْتَبْتُمْ فَعِدَّتُهُنَّ ثَلَثَةُ أَشْهُرٍۢ وَٱلَّٓـِٔى لَمْ يَحِضْنَ ۚ وَأُو۟لَتُ ٱلْأَحْمَالِ أَجَلُهُنَّ أَن يَضَعْنَ حَمْلَهُنَّ ۚ وَمَن يَتَّقِ ٱللَّهَ يَجْعَل لَّهُۥ مِنْ أَمْرِهِۦ يُسْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,65,' ذَلِكَ أَمْرُ ٱللَّهِ أَنزَلَهُۥٓ إِلَيْكُمْ ۚ وَمَن يَتَّقِ ٱللَّهَ يُكَفِّرْ عَنْهُ سَيِّـَٔاتِهِۦ وَيُعْظِمْ لَهُۥٓ أَجْرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,65,' أَسْكِنُوهُنَّ مِنْ حَيْثُ سَكَنتُم مِّن وُجْدِكُمْ وَلَا تُضَآرُّوهُنَّ لِتُضَيِّقُوا۟ عَلَيْهِنَّ ۚ وَإِن كُنَّ أُو۟لَتِ حَمْلٍۢ فَأَنفِقُوا۟ عَلَيْهِنَّ حَتَّىٰ يَضَعْنَ حَمْلَهُنَّ ۚ فَإِنْ أَرْضَعْنَ لَكُمْ فَـَٔاتُوهُنَّ أُجُورَهُنَّ ۖ وَأْتَمِرُوا۟ بَيْنَكُم بِمَعْرُوفٍۢ ۖ وَإِن تَعَاسَرْتُمْ فَسَتُرْضِعُ لَهُۥٓ أُخْرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,65,' لِيُنفِقْ ذُو سَعَةٍۢ مِّن سَعَتِهِۦ ۖ وَمَن قُدِرَ عَلَيْهِ رِزْقُهُۥ فَلْيُنفِقْ مِمَّآ ءَاتَىٰهُ ٱللَّهُ ۚ لَا يُكَلِّفُ ٱللَّهُ نَفْسًا إِلَّا مَآ ءَاتَىٰهَا ۚ سَيَجْعَلُ ٱللَّهُ بَعْدَ عُسْرٍۢ يُسْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,65,' وَكَأَيِّن مِّن قَرْيَةٍ عَتَتْ عَنْ أَمْرِ رَبِّهَا وَرُسُلِهِۦ فَحَاسَبْنَهَا حِسَابًۭا شَدِيدًۭا وَعَذَّبْنَهَا عَذَابًۭا نُّكْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,65,' فَذَاقَتْ وَبَالَ أَمْرِهَا وَكَانَ عَقِبَةُ أَمْرِهَا خُسْرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,65,' أَعَدَّ ٱللَّهُ لَهُمْ عَذَابًۭا شَدِيدًۭا ۖ فَٱتَّقُوا۟ ٱللَّهَ يَٓأُو۟لِى ٱلْأَلْبَبِ ٱلَّذِينَ ءَامَنُوا۟ ۚ قَدْ أَنزَلَ ٱللَّهُ إِلَيْكُمْ ذِكْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,65,' رَّسُولًۭا يَتْلُوا۟ عَلَيْكُمْ ءَايَتِ ٱللَّهِ مُبَيِّنَتٍۢ لِّيُخْرِجَ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ مِنَ ٱلظُّلُمَتِ إِلَى ٱلنُّورِ ۚ وَمَن يُؤْمِنۢ بِٱللَّهِ وَيَعْمَلْ صَلِحًۭا يُدْخِلْهُ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَآ أَبَدًۭا ۖ قَدْ أَحْسَنَ ٱللَّهُ لَهُۥ رِزْقًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,65,' ٱللَّهُ ٱلَّذِى خَلَقَ سَبْعَ سَمَوَتٍۢ وَمِنَ ٱلْأَرْضِ مِثْلَهُنَّ يَتَنَزَّلُ ٱلْأَمْرُ بَيْنَهُنَّ لِتَعْلَمُوٓا۟ أَنَّ ٱللَّهَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ وَأَنَّ ٱللَّهَ قَدْ أَحَاطَ بِكُلِّ شَىْءٍ عِلْمًۢا');
+INSERT INTO chapters (id, number, quran_id) VALUES(66,66,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,66,' يَٓأَيُّهَا ٱلنَّبِىُّ لِمَ تُحَرِّمُ مَآ أَحَلَّ ٱللَّهُ لَكَ ۖ تَبْتَغِى مَرْضَاتَ أَزْوَجِكَ ۚ وَٱللَّهُ غَفُورٌۭ رَّحِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,66,' قَدْ فَرَضَ ٱللَّهُ لَكُمْ تَحِلَّةَ أَيْمَنِكُمْ ۚ وَٱللَّهُ مَوْلَىٰكُمْ ۖ وَهُوَ ٱلْعَلِيمُ ٱلْحَكِيمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,66,' وَإِذْ أَسَرَّ ٱلنَّبِىُّ إِلَىٰ بَعْضِ أَزْوَجِهِۦ حَدِيثًۭا فَلَمَّا نَبَّأَتْ بِهِۦ وَأَظْهَرَهُ ٱللَّهُ عَلَيْهِ عَرَّفَ بَعْضَهُۥ وَأَعْرَضَ عَنۢ بَعْضٍۢ ۖ فَلَمَّا نَبَّأَهَا بِهِۦ قَالَتْ مَنْ أَنۢبَأَكَ هَذَا ۖ قَالَ نَبَّأَنِىَ ٱلْعَلِيمُ ٱلْخَبِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,66,' إِن تَتُوبَآ إِلَى ٱللَّهِ فَقَدْ صَغَتْ قُلُوبُكُمَا ۖ وَإِن تَظَهَرَا عَلَيْهِ فَإِنَّ ٱللَّهَ هُوَ مَوْلَىٰهُ وَجِبْرِيلُ وَصَلِحُ ٱلْمُؤْمِنِينَ ۖ وَٱلْمَلَٓئِكَةُ بَعْدَ ذَلِكَ ظَهِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,66,' عَسَىٰ رَبُّهُۥٓ إِن طَلَّقَكُنَّ أَن يُبْدِلَهُۥٓ أَزْوَجًا خَيْرًۭا مِّنكُنَّ مُسْلِمَتٍۢ مُّؤْمِنَتٍۢ قَنِتَتٍۢ تَٓئِبَتٍ عَبِدَتٍۢ سَٓئِحَتٍۢ ثَيِّبَتٍۢ وَأَبْكَارًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,66,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ قُوٓا۟ أَنفُسَكُمْ وَأَهْلِيكُمْ نَارًۭا وَقُودُهَا ٱلنَّاسُ وَٱلْحِجَارَةُ عَلَيْهَا مَلَٓئِكَةٌ غِلَاظٌۭ شِدَادٌۭ لَّا يَعْصُونَ ٱللَّهَ مَآ أَمَرَهُمْ وَيَفْعَلُونَ مَا يُؤْمَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,66,' يَٓأَيُّهَا ٱلَّذِينَ كَفَرُوا۟ لَا تَعْتَذِرُوا۟ ٱلْيَوْمَ ۖ إِنَّمَا تُجْزَوْنَ مَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,66,' يَٓأَيُّهَا ٱلَّذِينَ ءَامَنُوا۟ تُوبُوٓا۟ إِلَى ٱللَّهِ تَوْبَةًۭ نَّصُوحًا عَسَىٰ رَبُّكُمْ أَن يُكَفِّرَ عَنكُمْ سَيِّـَٔاتِكُمْ وَيُدْخِلَكُمْ جَنَّتٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ يَوْمَ لَا يُخْزِى ٱللَّهُ ٱلنَّبِىَّ وَٱلَّذِينَ ءَامَنُوا۟ مَعَهُۥ ۖ نُورُهُمْ يَسْعَىٰ بَيْنَ أَيْدِيهِمْ وَبِأَيْمَنِهِمْ يَقُولُونَ رَبَّنَآ أَتْمِمْ لَنَا نُورَنَا وَٱغْفِرْ لَنَآ ۖ إِنَّكَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,66,' يَٓأَيُّهَا ٱلنَّبِىُّ جَهِدِ ٱلْكُفَّارَ وَٱلْمُنَفِقِينَ وَٱغْلُظْ عَلَيْهِمْ ۚ وَمَأْوَىٰهُمْ جَهَنَّمُ ۖ وَبِئْسَ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,66,' ضَرَبَ ٱللَّهُ مَثَلًۭا لِّلَّذِينَ كَفَرُوا۟ ٱمْرَأَتَ نُوحٍۢ وَٱمْرَأَتَ لُوطٍۢ ۖ كَانَتَا تَحْتَ عَبْدَيْنِ مِنْ عِبَادِنَا صَلِحَيْنِ فَخَانَتَاهُمَا فَلَمْ يُغْنِيَا عَنْهُمَا مِنَ ٱللَّهِ شَيْـًۭٔا وَقِيلَ ٱدْخُلَا ٱلنَّارَ مَعَ ٱلدَّخِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,66,' وَضَرَبَ ٱللَّهُ مَثَلًۭا لِّلَّذِينَ ءَامَنُوا۟ ٱمْرَأَتَ فِرْعَوْنَ إِذْ قَالَتْ رَبِّ ٱبْنِ لِى عِندَكَ بَيْتًۭا فِى ٱلْجَنَّةِ وَنَجِّنِى مِن فِرْعَوْنَ وَعَمَلِهِۦ وَنَجِّنِى مِنَ ٱلْقَوْمِ ٱلظَّلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,66,' وَمَرْيَمَ ٱبْنَتَ عِمْرَنَ ٱلَّتِىٓ أَحْصَنَتْ فَرْجَهَا فَنَفَخْنَا فِيهِ مِن رُّوحِنَا وَصَدَّقَتْ بِكَلِمَتِ رَبِّهَا وَكُتُبِهِۦ وَكَانَتْ مِنَ ٱلْقَنِتِينَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(67,67,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,67,' تَبَرَكَ ٱلَّذِى بِيَدِهِ ٱلْمُلْكُ وَهُوَ عَلَىٰ كُلِّ شَىْءٍۢ قَدِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,67,' ٱلَّذِى خَلَقَ ٱلْمَوْتَ وَٱلْحَيَوٰةَ لِيَبْلُوَكُمْ أَيُّكُمْ أَحْسَنُ عَمَلًۭا ۚ وَهُوَ ٱلْعَزِيزُ ٱلْغَفُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,67,' ٱلَّذِى خَلَقَ سَبْعَ سَمَوَتٍۢ طِبَاقًۭا ۖ مَّا تَرَىٰ فِى خَلْقِ ٱلرَّحْمَنِ مِن تَفَوُتٍۢ ۖ فَٱرْجِعِ ٱلْبَصَرَ هَلْ تَرَىٰ مِن فُطُورٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,67,' ثُمَّ ٱرْجِعِ ٱلْبَصَرَ كَرَّتَيْنِ يَنقَلِبْ إِلَيْكَ ٱلْبَصَرُ خَاسِئًۭا وَهُوَ حَسِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,67,' وَلَقَدْ زَيَّنَّا ٱلسَّمَآءَ ٱلدُّنْيَا بِمَصَبِيحَ وَجَعَلْنَهَا رُجُومًۭا لِّلشَّيَطِينِ ۖ وَأَعْتَدْنَا لَهُمْ عَذَابَ ٱلسَّعِيرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,67,' وَلِلَّذِينَ كَفَرُوا۟ بِرَبِّهِمْ عَذَابُ جَهَنَّمَ ۖ وَبِئْسَ ٱلْمَصِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,67,' إِذَآ أُلْقُوا۟ فِيهَا سَمِعُوا۟ لَهَا شَهِيقًۭا وَهِىَ تَفُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,67,' تَكَادُ تَمَيَّزُ مِنَ ٱلْغَيْظِ ۖ كُلَّمَآ أُلْقِىَ فِيهَا فَوْجٌۭ سَأَلَهُمْ خَزَنَتُهَآ أَلَمْ يَأْتِكُمْ نَذِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,67,' قَالُوا۟ بَلَىٰ قَدْ جَآءَنَا نَذِيرٌۭ فَكَذَّبْنَا وَقُلْنَا مَا نَزَّلَ ٱللَّهُ مِن شَىْءٍ إِنْ أَنتُمْ إِلَّا فِى ضَلَلٍۢ كَبِيرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,67,' وَقَالُوا۟ لَوْ كُنَّا نَسْمَعُ أَوْ نَعْقِلُ مَا كُنَّا فِىٓ أَصْحَبِ ٱلسَّعِيرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,67,' فَٱعْتَرَفُوا۟ بِذَنۢبِهِمْ فَسُحْقًۭا لِأَصْحَبِ ٱلسَّعِيرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,67,' إِنَّ ٱلَّذِينَ يَخْشَوْنَ رَبَّهُم بِٱلْغَيْبِ لَهُم مَّغْفِرَةٌۭ وَأَجْرٌۭ كَبِيرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,67,' وَأَسِرُّوا۟ قَوْلَكُمْ أَوِ ٱجْهَرُوا۟ بِهِۦٓ ۖ إِنَّهُۥ عَلِيمٌۢ بِذَاتِ ٱلصُّدُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,67,' أَلَا يَعْلَمُ مَنْ خَلَقَ وَهُوَ ٱللَّطِيفُ ٱلْخَبِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,67,' هُوَ ٱلَّذِى جَعَلَ لَكُمُ ٱلْأَرْضَ ذَلُولًۭا فَٱمْشُوا۟ فِى مَنَاكِبِهَا وَكُلُوا۟ مِن رِّزْقِهِۦ ۖ وَإِلَيْهِ ٱلنُّشُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,67,' ءَأَمِنتُم مَّن فِى ٱلسَّمَآءِ أَن يَخْسِفَ بِكُمُ ٱلْأَرْضَ فَإِذَا هِىَ تَمُورُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,67,' أَمْ أَمِنتُم مَّن فِى ٱلسَّمَآءِ أَن يُرْسِلَ عَلَيْكُمْ حَاصِبًۭا ۖ فَسَتَعْلَمُونَ كَيْفَ نَذِيرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,67,' وَلَقَدْ كَذَّبَ ٱلَّذِينَ مِن قَبْلِهِمْ فَكَيْفَ كَانَ نَكِيرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,67,' أَوَلَمْ يَرَوْا۟ إِلَى ٱلطَّيْرِ فَوْقَهُمْ صَٓفَّتٍۢ وَيَقْبِضْنَ ۚ مَا يُمْسِكُهُنَّ إِلَّا ٱلرَّحْمَنُ ۚ إِنَّهُۥ بِكُلِّ شَىْءٍۭ بَصِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,67,' أَمَّنْ هَذَا ٱلَّذِى هُوَ جُندٌۭ لَّكُمْ يَنصُرُكُم مِّن دُونِ ٱلرَّحْمَنِ ۚ إِنِ ٱلْكَفِرُونَ إِلَّا فِى غُرُورٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,67,' أَمَّنْ هَذَا ٱلَّذِى يَرْزُقُكُمْ إِنْ أَمْسَكَ رِزْقَهُۥ ۚ بَل لَّجُّوا۟ فِى عُتُوٍّۢ وَنُفُورٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,67,' أَفَمَن يَمْشِى مُكِبًّا عَلَىٰ وَجْهِهِۦٓ أَهْدَىٰٓ أَمَّن يَمْشِى سَوِيًّا عَلَىٰ صِرَطٍۢ مُّسْتَقِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,67,' قُلْ هُوَ ٱلَّذِىٓ أَنشَأَكُمْ وَجَعَلَ لَكُمُ ٱلسَّمْعَ وَٱلْأَبْصَرَ وَٱلْأَفْـِٔدَةَ ۖ قَلِيلًۭا مَّا تَشْكُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,67,' قُلْ هُوَ ٱلَّذِى ذَرَأَكُمْ فِى ٱلْأَرْضِ وَإِلَيْهِ تُحْشَرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,67,' وَيَقُولُونَ مَتَىٰ هَذَا ٱلْوَعْدُ إِن كُنتُمْ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,67,' قُلْ إِنَّمَا ٱلْعِلْمُ عِندَ ٱللَّهِ وَإِنَّمَآ أَنَا۠ نَذِيرٌۭ مُّبِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,67,' فَلَمَّا رَأَوْهُ زُلْفَةًۭ سِيٓـَٔتْ وُجُوهُ ٱلَّذِينَ كَفَرُوا۟ وَقِيلَ هَذَا ٱلَّذِى كُنتُم بِهِۦ تَدَّعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,67,' قُلْ أَرَءَيْتُمْ إِنْ أَهْلَكَنِىَ ٱللَّهُ وَمَن مَّعِىَ أَوْ رَحِمَنَا فَمَن يُجِيرُ ٱلْكَفِرِينَ مِنْ عَذَابٍ أَلِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,67,' قُلْ هُوَ ٱلرَّحْمَنُ ءَامَنَّا بِهِۦ وَعَلَيْهِ تَوَكَّلْنَا ۖ فَسَتَعْلَمُونَ مَنْ هُوَ فِى ضَلَلٍۢ مُّبِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,67,' قُلْ أَرَءَيْتُمْ إِنْ أَصْبَحَ مَآؤُكُمْ غَوْرًۭا فَمَن يَأْتِيكُم بِمَآءٍۢ مَّعِينٍۭ');
+INSERT INTO chapters (id, number, quran_id) VALUES(68,68,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,68,' نٓ ۚ وَٱلْقَلَمِ وَمَا يَسْطُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,68,' مَآ أَنتَ بِنِعْمَةِ رَبِّكَ بِمَجْنُونٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,68,' وَإِنَّ لَكَ لَأَجْرًا غَيْرَ مَمْنُونٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,68,' وَإِنَّكَ لَعَلَىٰ خُلُقٍ عَظِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,68,' فَسَتُبْصِرُ وَيُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,68,' بِأَييِّكُمُ ٱلْمَفْتُونُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,68,' إِنَّ رَبَّكَ هُوَ أَعْلَمُ بِمَن ضَلَّ عَن سَبِيلِهِۦ وَهُوَ أَعْلَمُ بِٱلْمُهْتَدِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,68,' فَلَا تُطِعِ ٱلْمُكَذِّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,68,' وَدُّوا۟ لَوْ تُدْهِنُ فَيُدْهِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,68,' وَلَا تُطِعْ كُلَّ حَلَّافٍۢ مَّهِينٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,68,' هَمَّازٍۢ مَّشَّآءٍۭ بِنَمِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,68,' مَّنَّاعٍۢ لِّلْخَيْرِ مُعْتَدٍ أَثِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,68,' عُتُلٍّۭ بَعْدَ ذَلِكَ زَنِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,68,' أَن كَانَ ذَا مَالٍۢ وَبَنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,68,' إِذَا تُتْلَىٰ عَلَيْهِ ءَايَتُنَا قَالَ أَسَطِيرُ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,68,' سَنَسِمُهُۥ عَلَى ٱلْخُرْطُومِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,68,' إِنَّا بَلَوْنَهُمْ كَمَا بَلَوْنَآ أَصْحَبَ ٱلْجَنَّةِ إِذْ أَقْسَمُوا۟ لَيَصْرِمُنَّهَا مُصْبِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,68,' وَلَا يَسْتَثْنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,68,' فَطَافَ عَلَيْهَا طَآئِفٌۭ مِّن رَّبِّكَ وَهُمْ نَآئِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,68,' فَأَصْبَحَتْ كَٱلصَّرِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,68,' فَتَنَادَوْا۟ مُصْبِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,68,' أَنِ ٱغْدُوا۟ عَلَىٰ حَرْثِكُمْ إِن كُنتُمْ صَرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,68,' فَٱنطَلَقُوا۟ وَهُمْ يَتَخَفَتُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,68,' أَن لَّا يَدْخُلَنَّهَا ٱلْيَوْمَ عَلَيْكُم مِّسْكِينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,68,' وَغَدَوْا۟ عَلَىٰ حَرْدٍۢ قَدِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,68,' فَلَمَّا رَأَوْهَا قَالُوٓا۟ إِنَّا لَضَآلُّونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,68,' بَلْ نَحْنُ مَحْرُومُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,68,' قَالَ أَوْسَطُهُمْ أَلَمْ أَقُل لَّكُمْ لَوْلَا تُسَبِّحُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,68,' قَالُوا۟ سُبْحَنَ رَبِّنَآ إِنَّا كُنَّا ظَلِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,68,' فَأَقْبَلَ بَعْضُهُمْ عَلَىٰ بَعْضٍۢ يَتَلَوَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,68,' قَالُوا۟ يَوَيْلَنَآ إِنَّا كُنَّا طَغِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,68,' عَسَىٰ رَبُّنَآ أَن يُبْدِلَنَا خَيْرًۭا مِّنْهَآ إِنَّآ إِلَىٰ رَبِّنَا رَغِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,68,' كَذَلِكَ ٱلْعَذَابُ ۖ وَلَعَذَابُ ٱلْءَاخِرَةِ أَكْبَرُ ۚ لَوْ كَانُوا۟ يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,68,' إِنَّ لِلْمُتَّقِينَ عِندَ رَبِّهِمْ جَنَّتِ ٱلنَّعِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,68,' أَفَنَجْعَلُ ٱلْمُسْلِمِينَ كَٱلْمُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,68,' مَا لَكُمْ كَيْفَ تَحْكُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,68,' أَمْ لَكُمْ كِتَبٌۭ فِيهِ تَدْرُسُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,68,' إِنَّ لَكُمْ فِيهِ لَمَا تَخَيَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,68,' أَمْ لَكُمْ أَيْمَنٌ عَلَيْنَا بَلِغَةٌ إِلَىٰ يَوْمِ ٱلْقِيَمَةِ ۙ إِنَّ لَكُمْ لَمَا تَحْكُمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,68,' سَلْهُمْ أَيُّهُم بِذَلِكَ زَعِيمٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,68,' أَمْ لَهُمْ شُرَكَآءُ فَلْيَأْتُوا۟ بِشُرَكَآئِهِمْ إِن كَانُوا۟ صَدِقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,68,' يَوْمَ يُكْشَفُ عَن سَاقٍۢ وَيُدْعَوْنَ إِلَى ٱلسُّجُودِ فَلَا يَسْتَطِيعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,68,' خَشِعَةً أَبْصَرُهُمْ تَرْهَقُهُمْ ذِلَّةٌۭ ۖ وَقَدْ كَانُوا۟ يُدْعَوْنَ إِلَى ٱلسُّجُودِ وَهُمْ سَلِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,68,' فَذَرْنِى وَمَن يُكَذِّبُ بِهَذَا ٱلْحَدِيثِ ۖ سَنَسْتَدْرِجُهُم مِّنْ حَيْثُ لَا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,68,' وَأُمْلِى لَهُمْ ۚ إِنَّ كَيْدِى مَتِينٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,68,' أَمْ تَسْـَٔلُهُمْ أَجْرًۭا فَهُم مِّن مَّغْرَمٍۢ مُّثْقَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,68,' أَمْ عِندَهُمُ ٱلْغَيْبُ فَهُمْ يَكْتُبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,68,' فَٱصْبِرْ لِحُكْمِ رَبِّكَ وَلَا تَكُن كَصَاحِبِ ٱلْحُوتِ إِذْ نَادَىٰ وَهُوَ مَكْظُومٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,68,' لَّوْلَآ أَن تَدَرَكَهُۥ نِعْمَةٌۭ مِّن رَّبِّهِۦ لَنُبِذَ بِٱلْعَرَآءِ وَهُوَ مَذْمُومٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,68,' فَٱجْتَبَهُ رَبُّهُۥ فَجَعَلَهُۥ مِنَ ٱلصَّلِحِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,68,' وَإِن يَكَادُ ٱلَّذِينَ كَفَرُوا۟ لَيُزْلِقُونَكَ بِأَبْصَرِهِمْ لَمَّا سَمِعُوا۟ ٱلذِّكْرَ وَيَقُولُونَ إِنَّهُۥ لَمَجْنُونٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,68,' وَمَا هُوَ إِلَّا ذِكْرٌۭ لِّلْعَلَمِينَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(69,69,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,69,' ٱلْحَآقَّةُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,69,' مَا ٱلْحَآقَّةُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,69,' وَمَآ أَدْرَىٰكَ مَا ٱلْحَآقَّةُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,69,' كَذَّبَتْ ثَمُودُ وَعَادٌۢ بِٱلْقَارِعَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,69,' فَأَمَّا ثَمُودُ فَأُهْلِكُوا۟ بِٱلطَّاغِيَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,69,' وَأَمَّا عَادٌۭ فَأُهْلِكُوا۟ بِرِيحٍۢ صَرْصَرٍ عَاتِيَةٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,69,' سَخَّرَهَا عَلَيْهِمْ سَبْعَ لَيَالٍۢ وَثَمَنِيَةَ أَيَّامٍ حُسُومًۭا فَتَرَى ٱلْقَوْمَ فِيهَا صَرْعَىٰ كَأَنَّهُمْ أَعْجَازُ نَخْلٍ خَاوِيَةٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,69,' فَهَلْ تَرَىٰ لَهُم مِّنۢ بَاقِيَةٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,69,' وَجَآءَ فِرْعَوْنُ وَمَن قَبْلَهُۥ وَٱلْمُؤْتَفِكَتُ بِٱلْخَاطِئَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,69,' فَعَصَوْا۟ رَسُولَ رَبِّهِمْ فَأَخَذَهُمْ أَخْذَةًۭ رَّابِيَةً');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,69,' إِنَّا لَمَّا طَغَا ٱلْمَآءُ حَمَلْنَكُمْ فِى ٱلْجَارِيَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,69,' لِنَجْعَلَهَا لَكُمْ تَذْكِرَةًۭ وَتَعِيَهَآ أُذُنٌۭ وَعِيَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,69,' فَإِذَا نُفِخَ فِى ٱلصُّورِ نَفْخَةٌۭ وَحِدَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,69,' وَحُمِلَتِ ٱلْأَرْضُ وَٱلْجِبَالُ فَدُكَّتَا دَكَّةًۭ وَحِدَةًۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,69,' فَيَوْمَئِذٍۢ وَقَعَتِ ٱلْوَاقِعَةُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,69,' وَٱنشَقَّتِ ٱلسَّمَآءُ فَهِىَ يَوْمَئِذٍۢ وَاهِيَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,69,' وَٱلْمَلَكُ عَلَىٰٓ أَرْجَآئِهَا ۚ وَيَحْمِلُ عَرْشَ رَبِّكَ فَوْقَهُمْ يَوْمَئِذٍۢ ثَمَنِيَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,69,' يَوْمَئِذٍۢ تُعْرَضُونَ لَا تَخْفَىٰ مِنكُمْ خَافِيَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,69,' فَأَمَّا مَنْ أُوتِىَ كِتَبَهُۥ بِيَمِينِهِۦ فَيَقُولُ هَآؤُمُ ٱقْرَءُوا۟ كِتَبِيَهْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,69,' إِنِّى ظَنَنتُ أَنِّى مُلَقٍ حِسَابِيَهْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,69,' فَهُوَ فِى عِيشَةٍۢ رَّاضِيَةٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,69,' فِى جَنَّةٍ عَالِيَةٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,69,' قُطُوفُهَا دَانِيَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,69,' كُلُوا۟ وَٱشْرَبُوا۟ هَنِيٓـًٔۢا بِمَآ أَسْلَفْتُمْ فِى ٱلْأَيَّامِ ٱلْخَالِيَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,69,' وَأَمَّا مَنْ أُوتِىَ كِتَبَهُۥ بِشِمَالِهِۦ فَيَقُولُ يَلَيْتَنِى لَمْ أُوتَ كِتَبِيَهْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,69,' وَلَمْ أَدْرِ مَا حِسَابِيَهْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,69,' يَلَيْتَهَا كَانَتِ ٱلْقَاضِيَةَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,69,' مَآ أَغْنَىٰ عَنِّى مَالِيَهْۜ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,69,' هَلَكَ عَنِّى سُلْطَنِيَهْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,69,' خُذُوهُ فَغُلُّوهُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,69,' ثُمَّ ٱلْجَحِيمَ صَلُّوهُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,69,' ثُمَّ فِى سِلْسِلَةٍۢ ذَرْعُهَا سَبْعُونَ ذِرَاعًۭا فَٱسْلُكُوهُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,69,' إِنَّهُۥ كَانَ لَا يُؤْمِنُ بِٱللَّهِ ٱلْعَظِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,69,' وَلَا يَحُضُّ عَلَىٰ طَعَامِ ٱلْمِسْكِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,69,' فَلَيْسَ لَهُ ٱلْيَوْمَ هَهُنَا حَمِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,69,' وَلَا طَعَامٌ إِلَّا مِنْ غِسْلِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,69,' لَّا يَأْكُلُهُۥٓ إِلَّا ٱلْخَطِـُٔونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,69,' فَلَآ أُقْسِمُ بِمَا تُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,69,' وَمَا لَا تُبْصِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,69,' إِنَّهُۥ لَقَوْلُ رَسُولٍۢ كَرِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,69,' وَمَا هُوَ بِقَوْلِ شَاعِرٍۢ ۚ قَلِيلًۭا مَّا تُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,69,' وَلَا بِقَوْلِ كَاهِنٍۢ ۚ قَلِيلًۭا مَّا تَذَكَّرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,69,' تَنزِيلٌۭ مِّن رَّبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,69,' وَلَوْ تَقَوَّلَ عَلَيْنَا بَعْضَ ٱلْأَقَاوِيلِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,69,' لَأَخَذْنَا مِنْهُ بِٱلْيَمِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,69,' ثُمَّ لَقَطَعْنَا مِنْهُ ٱلْوَتِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,69,' فَمَا مِنكُم مِّنْ أَحَدٍ عَنْهُ حَجِزِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,69,' وَإِنَّهُۥ لَتَذْكِرَةٌۭ لِّلْمُتَّقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,69,' وَإِنَّا لَنَعْلَمُ أَنَّ مِنكُم مُّكَذِّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,69,' وَإِنَّهُۥ لَحَسْرَةٌ عَلَى ٱلْكَفِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,69,' وَإِنَّهُۥ لَحَقُّ ٱلْيَقِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,69,' فَسَبِّحْ بِٱسْمِ رَبِّكَ ٱلْعَظِيمِ');
+INSERT INTO chapters (id, number, quran_id) VALUES(70,70,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,70,' سَأَلَ سَآئِلٌۢ بِعَذَابٍۢ وَاقِعٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,70,' لِّلْكَفِرِينَ لَيْسَ لَهُۥ دَافِعٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,70,' مِّنَ ٱللَّهِ ذِى ٱلْمَعَارِجِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,70,' تَعْرُجُ ٱلْمَلَٓئِكَةُ وَٱلرُّوحُ إِلَيْهِ فِى يَوْمٍۢ كَانَ مِقْدَارُهُۥ خَمْسِينَ أَلْفَ سَنَةٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,70,' فَٱصْبِرْ صَبْرًۭا جَمِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,70,' إِنَّهُمْ يَرَوْنَهُۥ بَعِيدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,70,' وَنَرَىٰهُ قَرِيبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,70,' يَوْمَ تَكُونُ ٱلسَّمَآءُ كَٱلْمُهْلِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,70,' وَتَكُونُ ٱلْجِبَالُ كَٱلْعِهْنِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,70,' وَلَا يَسْـَٔلُ حَمِيمٌ حَمِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,70,' يُبَصَّرُونَهُمْ ۚ يَوَدُّ ٱلْمُجْرِمُ لَوْ يَفْتَدِى مِنْ عَذَابِ يَوْمِئِذٍۭ بِبَنِيهِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,70,' وَصَحِبَتِهِۦ وَأَخِيهِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,70,' وَفَصِيلَتِهِ ٱلَّتِى تُـْٔوِيهِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,70,' وَمَن فِى ٱلْأَرْضِ جَمِيعًۭا ثُمَّ يُنجِيهِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,70,' كَلَّآ ۖ إِنَّهَا لَظَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,70,' نَزَّاعَةًۭ لِّلشَّوَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,70,' تَدْعُوا۟ مَنْ أَدْبَرَ وَتَوَلَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,70,' وَجَمَعَ فَأَوْعَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,70,' إِنَّ ٱلْإِنسَنَ خُلِقَ هَلُوعًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,70,' إِذَا مَسَّهُ ٱلشَّرُّ جَزُوعًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,70,' وَإِذَا مَسَّهُ ٱلْخَيْرُ مَنُوعًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,70,' إِلَّا ٱلْمُصَلِّينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,70,' ٱلَّذِينَ هُمْ عَلَىٰ صَلَاتِهِمْ دَآئِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,70,' وَٱلَّذِينَ فِىٓ أَمْوَلِهِمْ حَقٌّۭ مَّعْلُومٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,70,' لِّلسَّآئِلِ وَٱلْمَحْرُومِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,70,' وَٱلَّذِينَ يُصَدِّقُونَ بِيَوْمِ ٱلدِّينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,70,' وَٱلَّذِينَ هُم مِّنْ عَذَابِ رَبِّهِم مُّشْفِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,70,' إِنَّ عَذَابَ رَبِّهِمْ غَيْرُ مَأْمُونٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,70,' وَٱلَّذِينَ هُمْ لِفُرُوجِهِمْ حَفِظُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,70,' إِلَّا عَلَىٰٓ أَزْوَجِهِمْ أَوْ مَا مَلَكَتْ أَيْمَنُهُمْ فَإِنَّهُمْ غَيْرُ مَلُومِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,70,' فَمَنِ ٱبْتَغَىٰ وَرَآءَ ذَلِكَ فَأُو۟لَٓئِكَ هُمُ ٱلْعَادُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,70,' وَٱلَّذِينَ هُمْ لِأَمَنَتِهِمْ وَعَهْدِهِمْ رَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,70,' وَٱلَّذِينَ هُم بِشَهَدَتِهِمْ قَآئِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,70,' وَٱلَّذِينَ هُمْ عَلَىٰ صَلَاتِهِمْ يُحَافِظُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,70,' أُو۟لَٓئِكَ فِى جَنَّتٍۢ مُّكْرَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,70,' فَمَالِ ٱلَّذِينَ كَفَرُوا۟ قِبَلَكَ مُهْطِعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,70,' عَنِ ٱلْيَمِينِ وَعَنِ ٱلشِّمَالِ عِزِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,70,' أَيَطْمَعُ كُلُّ ٱمْرِئٍۢ مِّنْهُمْ أَن يُدْخَلَ جَنَّةَ نَعِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,70,' كَلَّآ ۖ إِنَّا خَلَقْنَهُم مِّمَّا يَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,70,' فَلَآ أُقْسِمُ بِرَبِّ ٱلْمَشَرِقِ وَٱلْمَغَرِبِ إِنَّا لَقَدِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,70,' عَلَىٰٓ أَن نُّبَدِّلَ خَيْرًۭا مِّنْهُمْ وَمَا نَحْنُ بِمَسْبُوقِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,70,' فَذَرْهُمْ يَخُوضُوا۟ وَيَلْعَبُوا۟ حَتَّىٰ يُلَقُوا۟ يَوْمَهُمُ ٱلَّذِى يُوعَدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,70,' يَوْمَ يَخْرُجُونَ مِنَ ٱلْأَجْدَاثِ سِرَاعًۭا كَأَنَّهُمْ إِلَىٰ نُصُبٍۢ يُوفِضُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,70,' خَشِعَةً أَبْصَرُهُمْ تَرْهَقُهُمْ ذِلَّةٌۭ ۚ ذَلِكَ ٱلْيَوْمُ ٱلَّذِى كَانُوا۟ يُوعَدُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(71,71,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,71,' إِنَّآ أَرْسَلْنَا نُوحًا إِلَىٰ قَوْمِهِۦٓ أَنْ أَنذِرْ قَوْمَكَ مِن قَبْلِ أَن يَأْتِيَهُمْ عَذَابٌ أَلِيمٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,71,' قَالَ يَقَوْمِ إِنِّى لَكُمْ نَذِيرٌۭ مُّبِينٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,71,' أَنِ ٱعْبُدُوا۟ ٱللَّهَ وَٱتَّقُوهُ وَأَطِيعُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,71,' يَغْفِرْ لَكُم مِّن ذُنُوبِكُمْ وَيُؤَخِّرْكُمْ إِلَىٰٓ أَجَلٍۢ مُّسَمًّى ۚ إِنَّ أَجَلَ ٱللَّهِ إِذَا جَآءَ لَا يُؤَخَّرُ ۖ لَوْ كُنتُمْ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,71,' قَالَ رَبِّ إِنِّى دَعَوْتُ قَوْمِى لَيْلًۭا وَنَهَارًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,71,' فَلَمْ يَزِدْهُمْ دُعَآءِىٓ إِلَّا فِرَارًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,71,' وَإِنِّى كُلَّمَا دَعَوْتُهُمْ لِتَغْفِرَ لَهُمْ جَعَلُوٓا۟ أَصَبِعَهُمْ فِىٓ ءَاذَانِهِمْ وَٱسْتَغْشَوْا۟ ثِيَابَهُمْ وَأَصَرُّوا۟ وَٱسْتَكْبَرُوا۟ ٱسْتِكْبَارًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,71,' ثُمَّ إِنِّى دَعَوْتُهُمْ جِهَارًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,71,' ثُمَّ إِنِّىٓ أَعْلَنتُ لَهُمْ وَأَسْرَرْتُ لَهُمْ إِسْرَارًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,71,' فَقُلْتُ ٱسْتَغْفِرُوا۟ رَبَّكُمْ إِنَّهُۥ كَانَ غَفَّارًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,71,' يُرْسِلِ ٱلسَّمَآءَ عَلَيْكُم مِّدْرَارًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,71,' وَيُمْدِدْكُم بِأَمْوَلٍۢ وَبَنِينَ وَيَجْعَل لَّكُمْ جَنَّتٍۢ وَيَجْعَل لَّكُمْ أَنْهَرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,71,' مَّا لَكُمْ لَا تَرْجُونَ لِلَّهِ وَقَارًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,71,' وَقَدْ خَلَقَكُمْ أَطْوَارًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,71,' أَلَمْ تَرَوْا۟ كَيْفَ خَلَقَ ٱللَّهُ سَبْعَ سَمَوَتٍۢ طِبَاقًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,71,' وَجَعَلَ ٱلْقَمَرَ فِيهِنَّ نُورًۭا وَجَعَلَ ٱلشَّمْسَ سِرَاجًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,71,' وَٱللَّهُ أَنۢبَتَكُم مِّنَ ٱلْأَرْضِ نَبَاتًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,71,' ثُمَّ يُعِيدُكُمْ فِيهَا وَيُخْرِجُكُمْ إِخْرَاجًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,71,' وَٱللَّهُ جَعَلَ لَكُمُ ٱلْأَرْضَ بِسَاطًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,71,' لِّتَسْلُكُوا۟ مِنْهَا سُبُلًۭا فِجَاجًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,71,' قَالَ نُوحٌۭ رَّبِّ إِنَّهُمْ عَصَوْنِى وَٱتَّبَعُوا۟ مَن لَّمْ يَزِدْهُ مَالُهُۥ وَوَلَدُهُۥٓ إِلَّا خَسَارًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,71,' وَمَكَرُوا۟ مَكْرًۭا كُبَّارًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,71,' وَقَالُوا۟ لَا تَذَرُنَّ ءَالِهَتَكُمْ وَلَا تَذَرُنَّ وَدًّۭا وَلَا سُوَاعًۭا وَلَا يَغُوثَ وَيَعُوقَ وَنَسْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,71,' وَقَدْ أَضَلُّوا۟ كَثِيرًۭا ۖ وَلَا تَزِدِ ٱلظَّلِمِينَ إِلَّا ضَلَلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,71,' مِّمَّا خَطِيٓـَٔتِهِمْ أُغْرِقُوا۟ فَأُدْخِلُوا۟ نَارًۭا فَلَمْ يَجِدُوا۟ لَهُم مِّن دُونِ ٱللَّهِ أَنصَارًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,71,' وَقَالَ نُوحٌۭ رَّبِّ لَا تَذَرْ عَلَى ٱلْأَرْضِ مِنَ ٱلْكَفِرِينَ دَيَّارًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,71,' إِنَّكَ إِن تَذَرْهُمْ يُضِلُّوا۟ عِبَادَكَ وَلَا يَلِدُوٓا۟ إِلَّا فَاجِرًۭا كَفَّارًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,71,' رَّبِّ ٱغْفِرْ لِى وَلِوَلِدَىَّ وَلِمَن دَخَلَ بَيْتِىَ مُؤْمِنًۭا وَلِلْمُؤْمِنِينَ وَٱلْمُؤْمِنَتِ وَلَا تَزِدِ ٱلظَّلِمِينَ إِلَّا تَبَارًۢا');
+INSERT INTO chapters (id, number, quran_id) VALUES(72,72,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,72,' قُلْ أُوحِىَ إِلَىَّ أَنَّهُ ٱسْتَمَعَ نَفَرٌۭ مِّنَ ٱلْجِنِّ فَقَالُوٓا۟ إِنَّا سَمِعْنَا قُرْءَانًا عَجَبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,72,' يَهْدِىٓ إِلَى ٱلرُّشْدِ فَـَٔامَنَّا بِهِۦ ۖ وَلَن نُّشْرِكَ بِرَبِّنَآ أَحَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,72,' وَأَنَّهُۥ تَعَلَىٰ جَدُّ رَبِّنَا مَا ٱتَّخَذَ صَحِبَةًۭ وَلَا وَلَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,72,' وَأَنَّهُۥ كَانَ يَقُولُ سَفِيهُنَا عَلَى ٱللَّهِ شَطَطًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,72,' وَأَنَّا ظَنَنَّآ أَن لَّن تَقُولَ ٱلْإِنسُ وَٱلْجِنُّ عَلَى ٱللَّهِ كَذِبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,72,' وَأَنَّهُۥ كَانَ رِجَالٌۭ مِّنَ ٱلْإِنسِ يَعُوذُونَ بِرِجَالٍۢ مِّنَ ٱلْجِنِّ فَزَادُوهُمْ رَهَقًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,72,' وَأَنَّهُمْ ظَنُّوا۟ كَمَا ظَنَنتُمْ أَن لَّن يَبْعَثَ ٱللَّهُ أَحَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,72,' وَأَنَّا لَمَسْنَا ٱلسَّمَآءَ فَوَجَدْنَهَا مُلِئَتْ حَرَسًۭا شَدِيدًۭا وَشُهُبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,72,' وَأَنَّا كُنَّا نَقْعُدُ مِنْهَا مَقَعِدَ لِلسَّمْعِ ۖ فَمَن يَسْتَمِعِ ٱلْءَانَ يَجِدْ لَهُۥ شِهَابًۭا رَّصَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,72,' وَأَنَّا لَا نَدْرِىٓ أَشَرٌّ أُرِيدَ بِمَن فِى ٱلْأَرْضِ أَمْ أَرَادَ بِهِمْ رَبُّهُمْ رَشَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,72,' وَأَنَّا مِنَّا ٱلصَّلِحُونَ وَمِنَّا دُونَ ذَلِكَ ۖ كُنَّا طَرَآئِقَ قِدَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,72,' وَأَنَّا ظَنَنَّآ أَن لَّن نُّعْجِزَ ٱللَّهَ فِى ٱلْأَرْضِ وَلَن نُّعْجِزَهُۥ هَرَبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,72,' وَأَنَّا لَمَّا سَمِعْنَا ٱلْهُدَىٰٓ ءَامَنَّا بِهِۦ ۖ فَمَن يُؤْمِنۢ بِرَبِّهِۦ فَلَا يَخَافُ بَخْسًۭا وَلَا رَهَقًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,72,' وَأَنَّا مِنَّا ٱلْمُسْلِمُونَ وَمِنَّا ٱلْقَسِطُونَ ۖ فَمَنْ أَسْلَمَ فَأُو۟لَٓئِكَ تَحَرَّوْا۟ رَشَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,72,' وَأَمَّا ٱلْقَسِطُونَ فَكَانُوا۟ لِجَهَنَّمَ حَطَبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,72,' وَأَلَّوِ ٱسْتَقَمُوا۟ عَلَى ٱلطَّرِيقَةِ لَأَسْقَيْنَهُم مَّآءً غَدَقًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,72,' لِّنَفْتِنَهُمْ فِيهِ ۚ وَمَن يُعْرِضْ عَن ذِكْرِ رَبِّهِۦ يَسْلُكْهُ عَذَابًۭا صَعَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,72,' وَأَنَّ ٱلْمَسَجِدَ لِلَّهِ فَلَا تَدْعُوا۟ مَعَ ٱللَّهِ أَحَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,72,' وَأَنَّهُۥ لَمَّا قَامَ عَبْدُ ٱللَّهِ يَدْعُوهُ كَادُوا۟ يَكُونُونَ عَلَيْهِ لِبَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,72,' قُلْ إِنَّمَآ أَدْعُوا۟ رَبِّى وَلَآ أُشْرِكُ بِهِۦٓ أَحَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,72,' قُلْ إِنِّى لَآ أَمْلِكُ لَكُمْ ضَرًّۭا وَلَا رَشَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,72,' قُلْ إِنِّى لَن يُجِيرَنِى مِنَ ٱللَّهِ أَحَدٌۭ وَلَنْ أَجِدَ مِن دُونِهِۦ مُلْتَحَدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,72,' إِلَّا بَلَغًۭا مِّنَ ٱللَّهِ وَرِسَلَتِهِۦ ۚ وَمَن يَعْصِ ٱللَّهَ وَرَسُولَهُۥ فَإِنَّ لَهُۥ نَارَ جَهَنَّمَ خَلِدِينَ فِيهَآ أَبَدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,72,' حَتَّىٰٓ إِذَا رَأَوْا۟ مَا يُوعَدُونَ فَسَيَعْلَمُونَ مَنْ أَضْعَفُ نَاصِرًۭا وَأَقَلُّ عَدَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,72,' قُلْ إِنْ أَدْرِىٓ أَقَرِيبٌۭ مَّا تُوعَدُونَ أَمْ يَجْعَلُ لَهُۥ رَبِّىٓ أَمَدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,72,' عَلِمُ ٱلْغَيْبِ فَلَا يُظْهِرُ عَلَىٰ غَيْبِهِۦٓ أَحَدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,72,' إِلَّا مَنِ ٱرْتَضَىٰ مِن رَّسُولٍۢ فَإِنَّهُۥ يَسْلُكُ مِنۢ بَيْنِ يَدَيْهِ وَمِنْ خَلْفِهِۦ رَصَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,72,' لِّيَعْلَمَ أَن قَدْ أَبْلَغُوا۟ رِسَلَتِ رَبِّهِمْ وَأَحَاطَ بِمَا لَدَيْهِمْ وَأَحْصَىٰ كُلَّ شَىْءٍ عَدَدًۢا');
+INSERT INTO chapters (id, number, quran_id) VALUES(73,73,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,73,' يَٓأَيُّهَا ٱلْمُزَّمِّلُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,73,' قُمِ ٱلَّيْلَ إِلَّا قَلِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,73,' نِّصْفَهُۥٓ أَوِ ٱنقُصْ مِنْهُ قَلِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,73,' أَوْ زِدْ عَلَيْهِ وَرَتِّلِ ٱلْقُرْءَانَ تَرْتِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,73,' إِنَّا سَنُلْقِى عَلَيْكَ قَوْلًۭا ثَقِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,73,' إِنَّ نَاشِئَةَ ٱلَّيْلِ هِىَ أَشَدُّ وَطْـًۭٔا وَأَقْوَمُ قِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,73,' إِنَّ لَكَ فِى ٱلنَّهَارِ سَبْحًۭا طَوِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,73,' وَٱذْكُرِ ٱسْمَ رَبِّكَ وَتَبَتَّلْ إِلَيْهِ تَبْتِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,73,' رَّبُّ ٱلْمَشْرِقِ وَٱلْمَغْرِبِ لَآ إِلَهَ إِلَّا هُوَ فَٱتَّخِذْهُ وَكِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,73,' وَٱصْبِرْ عَلَىٰ مَا يَقُولُونَ وَٱهْجُرْهُمْ هَجْرًۭا جَمِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,73,' وَذَرْنِى وَٱلْمُكَذِّبِينَ أُو۟لِى ٱلنَّعْمَةِ وَمَهِّلْهُمْ قَلِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,73,' إِنَّ لَدَيْنَآ أَنكَالًۭا وَجَحِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,73,' وَطَعَامًۭا ذَا غُصَّةٍۢ وَعَذَابًا أَلِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,73,' يَوْمَ تَرْجُفُ ٱلْأَرْضُ وَٱلْجِبَالُ وَكَانَتِ ٱلْجِبَالُ كَثِيبًۭا مَّهِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,73,' إِنَّآ أَرْسَلْنَآ إِلَيْكُمْ رَسُولًۭا شَهِدًا عَلَيْكُمْ كَمَآ أَرْسَلْنَآ إِلَىٰ فِرْعَوْنَ رَسُولًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,73,' فَعَصَىٰ فِرْعَوْنُ ٱلرَّسُولَ فَأَخَذْنَهُ أَخْذًۭا وَبِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,73,' فَكَيْفَ تَتَّقُونَ إِن كَفَرْتُمْ يَوْمًۭا يَجْعَلُ ٱلْوِلْدَنَ شِيبًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,73,' ٱلسَّمَآءُ مُنفَطِرٌۢ بِهِۦ ۚ كَانَ وَعْدُهُۥ مَفْعُولًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,73,' إِنَّ هَذِهِۦ تَذْكِرَةٌۭ ۖ فَمَن شَآءَ ٱتَّخَذَ إِلَىٰ رَبِّهِۦ سَبِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,73,' إِنَّ رَبَّكَ يَعْلَمُ أَنَّكَ تَقُومُ أَدْنَىٰ مِن ثُلُثَىِ ٱلَّيْلِ وَنِصْفَهُۥ وَثُلُثَهُۥ وَطَآئِفَةٌۭ مِّنَ ٱلَّذِينَ مَعَكَ ۚ وَٱللَّهُ يُقَدِّرُ ٱلَّيْلَ وَٱلنَّهَارَ ۚ عَلِمَ أَن لَّن تُحْصُوهُ فَتَابَ عَلَيْكُمْ ۖ فَٱقْرَءُوا۟ مَا تَيَسَّرَ مِنَ ٱلْقُرْءَانِ ۚ عَلِمَ أَن سَيَكُونُ مِنكُم مَّرْضَىٰ ۙ وَءَاخَرُونَ يَضْرِبُونَ فِى ٱلْأَرْضِ يَبْتَغُونَ مِن فَضْلِ ٱللَّهِ ۙ وَءَاخَرُونَ يُقَتِلُونَ فِى سَبِيلِ ٱللَّهِ ۖ فَٱقْرَءُوا۟ مَا تَيَسَّرَ مِنْهُ ۚ وَأَقِيمُوا۟ ٱلصَّلَوٰةَ وَءَاتُوا۟ ٱلزَّكَوٰةَ وَأَقْرِضُوا۟ ٱللَّهَ قَرْضًا حَسَنًۭا ۚ وَمَا تُقَدِّمُوا۟ لِأَنفُسِكُم مِّنْ خَيْرٍۢ تَجِدُوهُ عِندَ ٱللَّهِ هُوَ خَيْرًۭا وَأَعْظَمَ أَجْرًۭا ۚ وَٱسْتَغْفِرُوا۟ ٱللَّهَ ۖ إِنَّ ٱللَّهَ غَفُورٌۭ رَّحِيمٌۢ');
+INSERT INTO chapters (id, number, quran_id) VALUES(74,74,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,74,' يَٓأَيُّهَا ٱلْمُدَّثِّرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,74,' قُمْ فَأَنذِرْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,74,' وَرَبَّكَ فَكَبِّرْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,74,' وَثِيَابَكَ فَطَهِّرْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,74,' وَٱلرُّجْزَ فَٱهْجُرْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,74,' وَلَا تَمْنُن تَسْتَكْثِرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,74,' وَلِرَبِّكَ فَٱصْبِرْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,74,' فَإِذَا نُقِرَ فِى ٱلنَّاقُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,74,' فَذَلِكَ يَوْمَئِذٍۢ يَوْمٌ عَسِيرٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,74,' عَلَى ٱلْكَفِرِينَ غَيْرُ يَسِيرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,74,' ذَرْنِى وَمَنْ خَلَقْتُ وَحِيدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,74,' وَجَعَلْتُ لَهُۥ مَالًۭا مَّمْدُودًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,74,' وَبَنِينَ شُهُودًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,74,' وَمَهَّدتُّ لَهُۥ تَمْهِيدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,74,' ثُمَّ يَطْمَعُ أَنْ أَزِيدَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,74,' كَلَّآ ۖ إِنَّهُۥ كَانَ لِءَايَتِنَا عَنِيدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,74,' سَأُرْهِقُهُۥ صَعُودًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,74,' إِنَّهُۥ فَكَّرَ وَقَدَّرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,74,' فَقُتِلَ كَيْفَ قَدَّرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,74,' ثُمَّ قُتِلَ كَيْفَ قَدَّرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,74,' ثُمَّ نَظَرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,74,' ثُمَّ عَبَسَ وَبَسَرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,74,' ثُمَّ أَدْبَرَ وَٱسْتَكْبَرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,74,' فَقَالَ إِنْ هَذَآ إِلَّا سِحْرٌۭ يُؤْثَرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,74,' إِنْ هَذَآ إِلَّا قَوْلُ ٱلْبَشَرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,74,' سَأُصْلِيهِ سَقَرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,74,' وَمَآ أَدْرَىٰكَ مَا سَقَرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,74,' لَا تُبْقِى وَلَا تَذَرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,74,' لَوَّاحَةٌۭ لِّلْبَشَرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,74,' عَلَيْهَا تِسْعَةَ عَشَرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,74,' وَمَا جَعَلْنَآ أَصْحَبَ ٱلنَّارِ إِلَّا مَلَٓئِكَةًۭ ۙ وَمَا جَعَلْنَا عِدَّتَهُمْ إِلَّا فِتْنَةًۭ لِّلَّذِينَ كَفَرُوا۟ لِيَسْتَيْقِنَ ٱلَّذِينَ أُوتُوا۟ ٱلْكِتَبَ وَيَزْدَادَ ٱلَّذِينَ ءَامَنُوٓا۟ إِيمَنًۭا ۙ وَلَا يَرْتَابَ ٱلَّذِينَ أُوتُوا۟ ٱلْكِتَبَ وَٱلْمُؤْمِنُونَ ۙ وَلِيَقُولَ ٱلَّذِينَ فِى قُلُوبِهِم مَّرَضٌۭ وَٱلْكَفِرُونَ مَاذَآ أَرَادَ ٱللَّهُ بِهَذَا مَثَلًۭا ۚ كَذَلِكَ يُضِلُّ ٱللَّهُ مَن يَشَآءُ وَيَهْدِى مَن يَشَآءُ ۚ وَمَا يَعْلَمُ جُنُودَ رَبِّكَ إِلَّا هُوَ ۚ وَمَا هِىَ إِلَّا ذِكْرَىٰ لِلْبَشَرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,74,' كَلَّا وَٱلْقَمَرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,74,' وَٱلَّيْلِ إِذْ أَدْبَرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,74,' وَٱلصُّبْحِ إِذَآ أَسْفَرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,74,' إِنَّهَا لَإِحْدَى ٱلْكُبَرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,74,' نَذِيرًۭا لِّلْبَشَرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,74,' لِمَن شَآءَ مِنكُمْ أَن يَتَقَدَّمَ أَوْ يَتَأَخَّرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,74,' كُلُّ نَفْسٍۭ بِمَا كَسَبَتْ رَهِينَةٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,74,' إِلَّآ أَصْحَبَ ٱلْيَمِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,74,' فِى جَنَّتٍۢ يَتَسَآءَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,74,' عَنِ ٱلْمُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,74,' مَا سَلَكَكُمْ فِى سَقَرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,74,' قَالُوا۟ لَمْ نَكُ مِنَ ٱلْمُصَلِّينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,74,' وَلَمْ نَكُ نُطْعِمُ ٱلْمِسْكِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,74,' وَكُنَّا نَخُوضُ مَعَ ٱلْخَآئِضِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,74,' وَكُنَّا نُكَذِّبُ بِيَوْمِ ٱلدِّينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,74,' حَتَّىٰٓ أَتَىٰنَا ٱلْيَقِينُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,74,' فَمَا تَنفَعُهُمْ شَفَعَةُ ٱلشَّفِعِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,74,' فَمَا لَهُمْ عَنِ ٱلتَّذْكِرَةِ مُعْرِضِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,74,' كَأَنَّهُمْ حُمُرٌۭ مُّسْتَنفِرَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,1,74,' فَرَّتْ مِن قَسْوَرَةٍۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,1,74,' بَلْ يُرِيدُ كُلُّ ٱمْرِئٍۢ مِّنْهُمْ أَن يُؤْتَىٰ صُحُفًۭا مُّنَشَّرَةًۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,1,74,' كَلَّا ۖ بَل لَّا يَخَافُونَ ٱلْءَاخِرَةَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,1,74,' كَلَّآ إِنَّهُۥ تَذْكِرَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,1,74,' فَمَن شَآءَ ذَكَرَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,1,74,' وَمَا يَذْكُرُونَ إِلَّآ أَن يَشَآءَ ٱللَّهُ ۚ هُوَ أَهْلُ ٱلتَّقْوَىٰ وَأَهْلُ ٱلْمَغْفِرَةِ');
+INSERT INTO chapters (id, number, quran_id) VALUES(75,75,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,75,' لَآ أُقْسِمُ بِيَوْمِ ٱلْقِيَمَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,75,' وَلَآ أُقْسِمُ بِٱلنَّفْسِ ٱللَّوَّامَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,75,' أَيَحْسَبُ ٱلْإِنسَنُ أَلَّن نَّجْمَعَ عِظَامَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,75,' بَلَىٰ قَدِرِينَ عَلَىٰٓ أَن نُّسَوِّىَ بَنَانَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,75,' بَلْ يُرِيدُ ٱلْإِنسَنُ لِيَفْجُرَ أَمَامَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,75,' يَسْـَٔلُ أَيَّانَ يَوْمُ ٱلْقِيَمَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,75,' فَإِذَا بَرِقَ ٱلْبَصَرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,75,' وَخَسَفَ ٱلْقَمَرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,75,' وَجُمِعَ ٱلشَّمْسُ وَٱلْقَمَرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,75,' يَقُولُ ٱلْإِنسَنُ يَوْمَئِذٍ أَيْنَ ٱلْمَفَرُّ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,75,' كَلَّا لَا وَزَرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,75,' إِلَىٰ رَبِّكَ يَوْمَئِذٍ ٱلْمُسْتَقَرُّ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,75,' يُنَبَّؤُا۟ ٱلْإِنسَنُ يَوْمَئِذٍۭ بِمَا قَدَّمَ وَأَخَّرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,75,' بَلِ ٱلْإِنسَنُ عَلَىٰ نَفْسِهِۦ بَصِيرَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,75,' وَلَوْ أَلْقَىٰ مَعَاذِيرَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,75,' لَا تُحَرِّكْ بِهِۦ لِسَانَكَ لِتَعْجَلَ بِهِۦٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,75,' إِنَّ عَلَيْنَا جَمْعَهُۥ وَقُرْءَانَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,75,' فَإِذَا قَرَأْنَهُ فَٱتَّبِعْ قُرْءَانَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,75,' ثُمَّ إِنَّ عَلَيْنَا بَيَانَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,75,' كَلَّا بَلْ تُحِبُّونَ ٱلْعَاجِلَةَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,75,' وَتَذَرُونَ ٱلْءَاخِرَةَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,75,' وُجُوهٌۭ يَوْمَئِذٍۢ نَّاضِرَةٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,75,' إِلَىٰ رَبِّهَا نَاظِرَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,75,' وَوُجُوهٌۭ يَوْمَئِذٍۭ بَاسِرَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,75,' تَظُنُّ أَن يُفْعَلَ بِهَا فَاقِرَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,75,' كَلَّآ إِذَا بَلَغَتِ ٱلتَّرَاقِىَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,75,' وَقِيلَ مَنْۜ رَاقٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,75,' وَظَنَّ أَنَّهُ ٱلْفِرَاقُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,75,' وَٱلْتَفَّتِ ٱلسَّاقُ بِٱلسَّاقِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,75,' إِلَىٰ رَبِّكَ يَوْمَئِذٍ ٱلْمَسَاقُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,75,' فَلَا صَدَّقَ وَلَا صَلَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,75,' وَلَكِن كَذَّبَ وَتَوَلَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,75,' ثُمَّ ذَهَبَ إِلَىٰٓ أَهْلِهِۦ يَتَمَطَّىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,75,' أَوْلَىٰ لَكَ فَأَوْلَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,75,' ثُمَّ أَوْلَىٰ لَكَ فَأَوْلَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,75,' أَيَحْسَبُ ٱلْإِنسَنُ أَن يُتْرَكَ سُدًى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,75,' أَلَمْ يَكُ نُطْفَةًۭ مِّن مَّنِىٍّۢ يُمْنَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,75,' ثُمَّ كَانَ عَلَقَةًۭ فَخَلَقَ فَسَوَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,75,' فَجَعَلَ مِنْهُ ٱلزَّوْجَيْنِ ٱلذَّكَرَ وَٱلْأُنثَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,75,' أَلَيْسَ ذَلِكَ بِقَدِرٍ عَلَىٰٓ أَن يُحْۦِىَ ٱلْمَوْتَىٰ');
+INSERT INTO chapters (id, number, quran_id) VALUES(76,76,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,76,' هَلْ أَتَىٰ عَلَى ٱلْإِنسَنِ حِينٌۭ مِّنَ ٱلدَّهْرِ لَمْ يَكُن شَيْـًۭٔا مَّذْكُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,76,' إِنَّا خَلَقْنَا ٱلْإِنسَنَ مِن نُّطْفَةٍ أَمْشَاجٍۢ نَّبْتَلِيهِ فَجَعَلْنَهُ سَمِيعًۢا بَصِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,76,' إِنَّا هَدَيْنَهُ ٱلسَّبِيلَ إِمَّا شَاكِرًۭا وَإِمَّا كَفُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,76,' إِنَّآ أَعْتَدْنَا لِلْكَفِرِينَ سَلَسِلَا۟ وَأَغْلَلًۭا وَسَعِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,76,' إِنَّ ٱلْأَبْرَارَ يَشْرَبُونَ مِن كَأْسٍۢ كَانَ مِزَاجُهَا كَافُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,76,' عَيْنًۭا يَشْرَبُ بِهَا عِبَادُ ٱللَّهِ يُفَجِّرُونَهَا تَفْجِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,76,' يُوفُونَ بِٱلنَّذْرِ وَيَخَافُونَ يَوْمًۭا كَانَ شَرُّهُۥ مُسْتَطِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,76,' وَيُطْعِمُونَ ٱلطَّعَامَ عَلَىٰ حُبِّهِۦ مِسْكِينًۭا وَيَتِيمًۭا وَأَسِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,76,' إِنَّمَا نُطْعِمُكُمْ لِوَجْهِ ٱللَّهِ لَا نُرِيدُ مِنكُمْ جَزَآءًۭ وَلَا شُكُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,76,' إِنَّا نَخَافُ مِن رَّبِّنَا يَوْمًا عَبُوسًۭا قَمْطَرِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,76,' فَوَقَىٰهُمُ ٱللَّهُ شَرَّ ذَلِكَ ٱلْيَوْمِ وَلَقَّىٰهُمْ نَضْرَةًۭ وَسُرُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,76,' وَجَزَىٰهُم بِمَا صَبَرُوا۟ جَنَّةًۭ وَحَرِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,76,' مُّتَّكِـِٔينَ فِيهَا عَلَى ٱلْأَرَآئِكِ ۖ لَا يَرَوْنَ فِيهَا شَمْسًۭا وَلَا زَمْهَرِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,76,' وَدَانِيَةً عَلَيْهِمْ ظِلَلُهَا وَذُلِّلَتْ قُطُوفُهَا تَذْلِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,76,' وَيُطَافُ عَلَيْهِم بِـَٔانِيَةٍۢ مِّن فِضَّةٍۢ وَأَكْوَابٍۢ كَانَتْ قَوَارِيرَا۠');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,76,' قَوَارِيرَا۟ مِن فِضَّةٍۢ قَدَّرُوهَا تَقْدِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,76,' وَيُسْقَوْنَ فِيهَا كَأْسًۭا كَانَ مِزَاجُهَا زَنجَبِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,76,' عَيْنًۭا فِيهَا تُسَمَّىٰ سَلْسَبِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,76,' وَيَطُوفُ عَلَيْهِمْ وِلْدَنٌۭ مُّخَلَّدُونَ إِذَا رَأَيْتَهُمْ حَسِبْتَهُمْ لُؤْلُؤًۭا مَّنثُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,76,' وَإِذَا رَأَيْتَ ثَمَّ رَأَيْتَ نَعِيمًۭا وَمُلْكًۭا كَبِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,76,' عَلِيَهُمْ ثِيَابُ سُندُسٍ خُضْرٌۭ وَإِسْتَبْرَقٌۭ ۖ وَحُلُّوٓا۟ أَسَاوِرَ مِن فِضَّةٍۢ وَسَقَىٰهُمْ رَبُّهُمْ شَرَابًۭا طَهُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,76,' إِنَّ هَذَا كَانَ لَكُمْ جَزَآءًۭ وَكَانَ سَعْيُكُم مَّشْكُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,76,' إِنَّا نَحْنُ نَزَّلْنَا عَلَيْكَ ٱلْقُرْءَانَ تَنزِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,76,' فَٱصْبِرْ لِحُكْمِ رَبِّكَ وَلَا تُطِعْ مِنْهُمْ ءَاثِمًا أَوْ كَفُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,76,' وَٱذْكُرِ ٱسْمَ رَبِّكَ بُكْرَةًۭ وَأَصِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,76,' وَمِنَ ٱلَّيْلِ فَٱسْجُدْ لَهُۥ وَسَبِّحْهُ لَيْلًۭا طَوِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,76,' إِنَّ هَٓؤُلَآءِ يُحِبُّونَ ٱلْعَاجِلَةَ وَيَذَرُونَ وَرَآءَهُمْ يَوْمًۭا ثَقِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,76,' نَّحْنُ خَلَقْنَهُمْ وَشَدَدْنَآ أَسْرَهُمْ ۖ وَإِذَا شِئْنَا بَدَّلْنَآ أَمْثَلَهُمْ تَبْدِيلًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,76,' إِنَّ هَذِهِۦ تَذْكِرَةٌۭ ۖ فَمَن شَآءَ ٱتَّخَذَ إِلَىٰ رَبِّهِۦ سَبِيلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,76,' وَمَا تَشَآءُونَ إِلَّآ أَن يَشَآءَ ٱللَّهُ ۚ إِنَّ ٱللَّهَ كَانَ عَلِيمًا حَكِيمًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,76,' يُدْخِلُ مَن يَشَآءُ فِى رَحْمَتِهِۦ ۚ وَٱلظَّلِمِينَ أَعَدَّ لَهُمْ عَذَابًا أَلِيمًۢا');
+INSERT INTO chapters (id, number, quran_id) VALUES(77,77,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,77,' وَٱلْمُرْسَلَتِ عُرْفًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,77,' فَٱلْعَصِفَتِ عَصْفًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,77,' وَٱلنَّشِرَتِ نَشْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,77,' فَٱلْفَرِقَتِ فَرْقًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,77,' فَٱلْمُلْقِيَتِ ذِكْرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,77,' عُذْرًا أَوْ نُذْرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,77,' إِنَّمَا تُوعَدُونَ لَوَقِعٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,77,' فَإِذَا ٱلنُّجُومُ طُمِسَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,77,' وَإِذَا ٱلسَّمَآءُ فُرِجَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,77,' وَإِذَا ٱلْجِبَالُ نُسِفَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,77,' وَإِذَا ٱلرُّسُلُ أُقِّتَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,77,' لِأَىِّ يَوْمٍ أُجِّلَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,77,' لِيَوْمِ ٱلْفَصْلِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,77,' وَمَآ أَدْرَىٰكَ مَا يَوْمُ ٱلْفَصْلِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,77,' وَيْلٌۭ يَوْمَئِذٍۢ لِّلْمُكَذِّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,77,' أَلَمْ نُهْلِكِ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,77,' ثُمَّ نُتْبِعُهُمُ ٱلْءَاخِرِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,77,' كَذَلِكَ نَفْعَلُ بِٱلْمُجْرِمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,77,' وَيْلٌۭ يَوْمَئِذٍۢ لِّلْمُكَذِّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,77,' أَلَمْ نَخْلُقكُّم مِّن مَّآءٍۢ مَّهِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,77,' فَجَعَلْنَهُ فِى قَرَارٍۢ مَّكِينٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,77,' إِلَىٰ قَدَرٍۢ مَّعْلُومٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,77,' فَقَدَرْنَا فَنِعْمَ ٱلْقَدِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,77,' وَيْلٌۭ يَوْمَئِذٍۢ لِّلْمُكَذِّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,77,' أَلَمْ نَجْعَلِ ٱلْأَرْضَ كِفَاتًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,77,' أَحْيَآءًۭ وَأَمْوَتًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,77,' وَجَعَلْنَا فِيهَا رَوَسِىَ شَمِخَتٍۢ وَأَسْقَيْنَكُم مَّآءًۭ فُرَاتًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,77,' وَيْلٌۭ يَوْمَئِذٍۢ لِّلْمُكَذِّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,77,' ٱنطَلِقُوٓا۟ إِلَىٰ مَا كُنتُم بِهِۦ تُكَذِّبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,77,' ٱنطَلِقُوٓا۟ إِلَىٰ ظِلٍّۢ ذِى ثَلَثِ شُعَبٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,77,' لَّا ظَلِيلٍۢ وَلَا يُغْنِى مِنَ ٱللَّهَبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,77,' إِنَّهَا تَرْمِى بِشَرَرٍۢ كَٱلْقَصْرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,77,' كَأَنَّهُۥ جِمَلَتٌۭ صُفْرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,77,' وَيْلٌۭ يَوْمَئِذٍۢ لِّلْمُكَذِّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,77,' هَذَا يَوْمُ لَا يَنطِقُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,77,' وَلَا يُؤْذَنُ لَهُمْ فَيَعْتَذِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,77,' وَيْلٌۭ يَوْمَئِذٍۢ لِّلْمُكَذِّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,77,' هَذَا يَوْمُ ٱلْفَصْلِ ۖ جَمَعْنَكُمْ وَٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,77,' فَإِن كَانَ لَكُمْ كَيْدٌۭ فَكِيدُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,77,' وَيْلٌۭ يَوْمَئِذٍۢ لِّلْمُكَذِّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,77,' إِنَّ ٱلْمُتَّقِينَ فِى ظِلَلٍۢ وَعُيُونٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,77,' وَفَوَكِهَ مِمَّا يَشْتَهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,77,' كُلُوا۟ وَٱشْرَبُوا۟ هَنِيٓـًٔۢا بِمَا كُنتُمْ تَعْمَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,77,' إِنَّا كَذَلِكَ نَجْزِى ٱلْمُحْسِنِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,77,' وَيْلٌۭ يَوْمَئِذٍۢ لِّلْمُكَذِّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,77,' كُلُوا۟ وَتَمَتَّعُوا۟ قَلِيلًا إِنَّكُم مُّجْرِمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,1,77,' وَيْلٌۭ يَوْمَئِذٍۢ لِّلْمُكَذِّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,1,77,' وَإِذَا قِيلَ لَهُمُ ٱرْكَعُوا۟ لَا يَرْكَعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,1,77,' وَيْلٌۭ يَوْمَئِذٍۢ لِّلْمُكَذِّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,1,77,' فَبِأَىِّ حَدِيثٍۭ بَعْدَهُۥ يُؤْمِنُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(78,78,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,78,' عَم يَتَسَآءَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,78,' عَنِ ٱلنَّبَإِ ٱلْعَظِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,78,' ٱلَّذِى هُمْ فِيهِ مُخْتَلِفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,78,' كَلَّا سَيَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,78,' ثُمَّ كَلَّا سَيَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,78,' أَلَمْ نَجْعَلِ ٱلْأَرْضَ مِهَدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,78,' وَٱلْجِبَالَ أَوْتَادًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,78,' وَخَلَقْنَكُمْ أَزْوَجًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,78,' وَجَعَلْنَا نَوْمَكُمْ سُبَاتًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,78,' وَجَعَلْنَا ٱلَّيْلَ لِبَاسًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,78,' وَجَعَلْنَا ٱلنَّهَارَ مَعَاشًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,78,' وَبَنَيْنَا فَوْقَكُمْ سَبْعًۭا شِدَادًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,78,' وَجَعَلْنَا سِرَاجًۭا وَهَّاجًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,78,' وَأَنزَلْنَا مِنَ ٱلْمُعْصِرَتِ مَآءًۭ ثَجَّاجًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,78,' لِّنُخْرِجَ بِهِۦ حَبًّۭا وَنَبَاتًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,78,' وَجَنَّتٍ أَلْفَافًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,78,' إِنَّ يَوْمَ ٱلْفَصْلِ كَانَ مِيقَتًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,78,' يَوْمَ يُنفَخُ فِى ٱلصُّورِ فَتَأْتُونَ أَفْوَاجًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,78,' وَفُتِحَتِ ٱلسَّمَآءُ فَكَانَتْ أَبْوَبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,78,' وَسُيِّرَتِ ٱلْجِبَالُ فَكَانَتْ سَرَابًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,78,' إِنَّ جَهَنَّمَ كَانَتْ مِرْصَادًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,78,' لِّلطَّغِينَ مَـَٔابًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,78,' لَّبِثِينَ فِيهَآ أَحْقَابًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,78,' لَّا يَذُوقُونَ فِيهَا بَرْدًۭا وَلَا شَرَابًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,78,' إِلَّا حَمِيمًۭا وَغَسَّاقًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,78,' جَزَآءًۭ وِفَاقًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,78,' إِنَّهُمْ كَانُوا۟ لَا يَرْجُونَ حِسَابًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,78,' وَكَذَّبُوا۟ بِـَٔايَتِنَا كِذَّابًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,78,' وَكُلَّ شَىْءٍ أَحْصَيْنَهُ كِتَبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,78,' فَذُوقُوا۟ فَلَن نَّزِيدَكُمْ إِلَّا عَذَابًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,78,' إِنَّ لِلْمُتَّقِينَ مَفَازًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,78,' حَدَآئِقَ وَأَعْنَبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,78,' وَكَوَاعِبَ أَتْرَابًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,78,' وَكَأْسًۭا دِهَاقًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,78,' لَّا يَسْمَعُونَ فِيهَا لَغْوًۭا وَلَا كِذَّبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,78,' جَزَآءًۭ مِّن رَّبِّكَ عَطَآءً حِسَابًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,78,' رَّبِّ ٱلسَّمَوَتِ وَٱلْأَرْضِ وَمَا بَيْنَهُمَا ٱلرَّحْمَنِ ۖ لَا يَمْلِكُونَ مِنْهُ خِطَابًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,78,' يَوْمَ يَقُومُ ٱلرُّوحُ وَٱلْمَلَٓئِكَةُ صَفًّۭا ۖ لَّا يَتَكَلَّمُونَ إِلَّا مَنْ أَذِنَ لَهُ ٱلرَّحْمَنُ وَقَالَ صَوَابًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,78,' ذَلِكَ ٱلْيَوْمُ ٱلْحَقُّ ۖ فَمَن شَآءَ ٱتَّخَذَ إِلَىٰ رَبِّهِۦ مَـَٔابًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,78,' إِنَّآ أَنذَرْنَكُمْ عَذَابًۭا قَرِيبًۭا يَوْمَ يَنظُرُ ٱلْمَرْءُ مَا قَدَّمَتْ يَدَاهُ وَيَقُولُ ٱلْكَافِرُ يَلَيْتَنِى كُنتُ تُرَبًۢا');
+INSERT INTO chapters (id, number, quran_id) VALUES(79,79,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,79,' وَٱلنَّزِعَت غَرْقًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,79,' وَٱلنَّشِطَتِ نَشْطًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,79,' وَٱلسَّبِحَتِ سَبْحًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,79,' فَٱلسَّبِقَتِ سَبْقًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,79,' فَٱلْمُدَبِّرَتِ أَمْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,79,' يَوْمَ تَرْجُفُ ٱلرَّاجِفَةُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,79,' تَتْبَعُهَا ٱلرَّادِفَةُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,79,' قُلُوبٌۭ يَوْمَئِذٍۢ وَاجِفَةٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,79,' أَبْصَرُهَا خَشِعَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,79,' يَقُولُونَ أَءِنَّا لَمَرْدُودُونَ فِى ٱلْحَافِرَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,79,' أَءِذَا كُنَّا عِظَمًۭا نَّخِرَةًۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,79,' قَالُوا۟ تِلْكَ إِذًۭا كَرَّةٌ خَاسِرَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,79,' فَإِنَّمَا هِىَ زَجْرَةٌۭ وَحِدَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,79,' فَإِذَا هُم بِٱلسَّاهِرَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,79,' هَلْ أَتَىٰكَ حَدِيثُ مُوسَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,79,' إِذْ نَادَىٰهُ رَبُّهُۥ بِٱلْوَادِ ٱلْمُقَدَّسِ طُوًى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,79,' ٱذْهَبْ إِلَىٰ فِرْعَوْنَ إِنَّهُۥ طَغَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,79,' فَقُلْ هَل لَّكَ إِلَىٰٓ أَن تَزَكَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,79,' وَأَهْدِيَكَ إِلَىٰ رَبِّكَ فَتَخْشَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,79,' فَأَرَىٰهُ ٱلْءَايَةَ ٱلْكُبْرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,79,' فَكَذَّبَ وَعَصَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,79,' ثُمَّ أَدْبَرَ يَسْعَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,79,' فَحَشَرَ فَنَادَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,79,' فَقَالَ أَنَا۠ رَبُّكُمُ ٱلْأَعْلَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,79,' فَأَخَذَهُ ٱللَّهُ نَكَالَ ٱلْءَاخِرَةِ وَٱلْأُولَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,79,' إِنَّ فِى ذَلِكَ لَعِبْرَةًۭ لِّمَن يَخْشَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,79,' ءَأَنتُمْ أَشَدُّ خَلْقًا أَمِ ٱلسَّمَآءُ ۚ بَنَىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,79,' رَفَعَ سَمْكَهَا فَسَوَّىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,79,' وَأَغْطَشَ لَيْلَهَا وَأَخْرَجَ ضُحَىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,79,' وَٱلْأَرْضَ بَعْدَ ذَلِكَ دَحَىٰهَآ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,79,' أَخْرَجَ مِنْهَا مَآءَهَا وَمَرْعَىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,79,' وَٱلْجِبَالَ أَرْسَىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,79,' مَتَعًۭا لَّكُمْ وَلِأَنْعَمِكُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,79,' فَإِذَا جَآءَتِ ٱلطَّآمَّةُ ٱلْكُبْرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,79,' يَوْمَ يَتَذَكَّرُ ٱلْإِنسَنُ مَا سَعَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,79,' وَبُرِّزَتِ ٱلْجَحِيمُ لِمَن يَرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,79,' فَأَمَّا مَن طَغَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,79,' وَءَاثَرَ ٱلْحَيَوٰةَ ٱلدُّنْيَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,79,' فَإِنَّ ٱلْجَحِيمَ هِىَ ٱلْمَأْوَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,79,' وَأَمَّا مَنْ خَافَ مَقَامَ رَبِّهِۦ وَنَهَى ٱلنَّفْسَ عَنِ ٱلْهَوَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,79,' فَإِنَّ ٱلْجَنَّةَ هِىَ ٱلْمَأْوَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,79,' يَسْـَٔلُونَكَ عَنِ ٱلسَّاعَةِ أَيَّانَ مُرْسَىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,1,79,' فِيمَ أَنتَ مِن ذِكْرَىٰهَآ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,1,79,' إِلَىٰ رَبِّكَ مُنتَهَىٰهَآ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,1,79,' إِنَّمَآ أَنتَ مُنذِرُ مَن يَخْشَىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,1,79,' كَأَنَّهُمْ يَوْمَ يَرَوْنَهَا لَمْ يَلْبَثُوٓا۟ إِلَّا عَشِيَّةً أَوْ ضُحَىٰهَا');
+INSERT INTO chapters (id, number, quran_id) VALUES(80,80,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,80,' عَبَس وَتَوَلَّىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,80,' أَن جَآءَهُ ٱلْأَعْمَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,80,' وَمَا يُدْرِيكَ لَعَلَّهُۥ يَزَّكَّىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,80,' أَوْ يَذَّكَّرُ فَتَنفَعَهُ ٱلذِّكْرَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,80,' أَمَّا مَنِ ٱسْتَغْنَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,80,' فَأَنتَ لَهُۥ تَصَدَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,80,' وَمَا عَلَيْكَ أَلَّا يَزَّكَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,80,' وَأَمَّا مَن جَآءَكَ يَسْعَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,80,' وَهُوَ يَخْشَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,80,' فَأَنتَ عَنْهُ تَلَهَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,80,' كَلَّآ إِنَّهَا تَذْكِرَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,80,' فَمَن شَآءَ ذَكَرَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,80,' فِى صُحُفٍۢ مُّكَرَّمَةٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,80,' مَّرْفُوعَةٍۢ مُّطَهَّرَةٍۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,80,' بِأَيْدِى سَفَرَةٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,80,' كِرَامٍۭ بَرَرَةٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,80,' قُتِلَ ٱلْإِنسَنُ مَآ أَكْفَرَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,80,' مِنْ أَىِّ شَىْءٍ خَلَقَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,80,' مِن نُّطْفَةٍ خَلَقَهُۥ فَقَدَّرَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,80,' ثُمَّ ٱلسَّبِيلَ يَسَّرَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,80,' ثُمَّ أَمَاتَهُۥ فَأَقْبَرَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,80,' ثُمَّ إِذَا شَآءَ أَنشَرَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,80,' كَلَّا لَمَّا يَقْضِ مَآ أَمَرَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,80,' فَلْيَنظُرِ ٱلْإِنسَنُ إِلَىٰ طَعَامِهِۦٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,80,' أَنَّا صَبَبْنَا ٱلْمَآءَ صَبًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,80,' ثُمَّ شَقَقْنَا ٱلْأَرْضَ شَقًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,80,' فَأَنۢبَتْنَا فِيهَا حَبًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,80,' وَعِنَبًۭا وَقَضْبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,80,' وَزَيْتُونًۭا وَنَخْلًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,80,' وَحَدَآئِقَ غُلْبًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,80,' وَفَكِهَةًۭ وَأَبًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,80,' مَّتَعًۭا لَّكُمْ وَلِأَنْعَمِكُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,80,' فَإِذَا جَآءَتِ ٱلصَّآخَّةُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,80,' يَوْمَ يَفِرُّ ٱلْمَرْءُ مِنْ أَخِيهِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,80,' وَأُمِّهِۦ وَأَبِيهِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,80,' وَصَحِبَتِهِۦ وَبَنِيهِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,1,80,' لِكُلِّ ٱمْرِئٍۢ مِّنْهُمْ يَوْمَئِذٍۢ شَأْنٌۭ يُغْنِيهِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,1,80,' وُجُوهٌۭ يَوْمَئِذٍۢ مُّسْفِرَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,1,80,' ضَاحِكَةٌۭ مُّسْتَبْشِرَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,1,80,' وَوُجُوهٌۭ يَوْمَئِذٍ عَلَيْهَا غَبَرَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,1,80,' تَرْهَقُهَا قَتَرَةٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,1,80,' أُو۟لَٓئِكَ هُمُ ٱلْكَفَرَةُ ٱلْفَجَرَةُ');
+INSERT INTO chapters (id, number, quran_id) VALUES(81,81,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,81,' إِذَا ٱلشَّمْسُ كُوِّرَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,81,' وَإِذَا ٱلنُّجُومُ ٱنكَدَرَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,81,' وَإِذَا ٱلْجِبَالُ سُيِّرَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,81,' وَإِذَا ٱلْعِشَارُ عُطِّلَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,81,' وَإِذَا ٱلْوُحُوشُ حُشِرَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,81,' وَإِذَا ٱلْبِحَارُ سُجِّرَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,81,' وَإِذَا ٱلنُّفُوسُ زُوِّجَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,81,' وَإِذَا ٱلْمَوْءُۥدَةُ سُئِلَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,81,' بِأَىِّ ذَنۢبٍۢ قُتِلَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,81,' وَإِذَا ٱلصُّحُفُ نُشِرَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,81,' وَإِذَا ٱلسَّمَآءُ كُشِطَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,81,' وَإِذَا ٱلْجَحِيمُ سُعِّرَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,81,' وَإِذَا ٱلْجَنَّةُ أُزْلِفَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,81,' عَلِمَتْ نَفْسٌۭ مَّآ أَحْضَرَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,81,' فَلَآ أُقْسِمُ بِٱلْخُنَّسِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,81,' ٱلْجَوَارِ ٱلْكُنَّسِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,81,' وَٱلَّيْلِ إِذَا عَسْعَسَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,81,' وَٱلصُّبْحِ إِذَا تَنَفَّسَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,81,' إِنَّهُۥ لَقَوْلُ رَسُولٍۢ كَرِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,81,' ذِى قُوَّةٍ عِندَ ذِى ٱلْعَرْشِ مَكِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,81,' مُّطَاعٍۢ ثَمَّ أَمِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,81,' وَمَا صَاحِبُكُم بِمَجْنُونٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,81,' وَلَقَدْ رَءَاهُ بِٱلْأُفُقِ ٱلْمُبِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,81,' وَمَا هُوَ عَلَى ٱلْغَيْبِ بِضَنِينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,81,' وَمَا هُوَ بِقَوْلِ شَيْطَنٍۢ رَّجِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,81,' فَأَيْنَ تَذْهَبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,81,' إِنْ هُوَ إِلَّا ذِكْرٌۭ لِّلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,81,' لِمَن شَآءَ مِنكُمْ أَن يَسْتَقِيمَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,81,' وَمَا تَشَآءُونَ إِلَّآ أَن يَشَآءَ ٱللَّهُ رَبُّ ٱلْعَلَمِينَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(82,82,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,82,' إِذَا ٱلسَّمَآءُ ٱنفَطَرَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,82,' وَإِذَا ٱلْكَوَاكِبُ ٱنتَثَرَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,82,' وَإِذَا ٱلْبِحَارُ فُجِّرَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,82,' وَإِذَا ٱلْقُبُورُ بُعْثِرَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,82,' عَلِمَتْ نَفْسٌۭ مَّا قَدَّمَتْ وَأَخَّرَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,82,' يَٓأَيُّهَا ٱلْإِنسَنُ مَا غَرَّكَ بِرَبِّكَ ٱلْكَرِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,82,' ٱلَّذِى خَلَقَكَ فَسَوَّىٰكَ فَعَدَلَكَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,82,' فِىٓ أَىِّ صُورَةٍۢ مَّا شَآءَ رَكَّبَكَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,82,' كَلَّا بَلْ تُكَذِّبُونَ بِٱلدِّينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,82,' وَإِنَّ عَلَيْكُمْ لَحَفِظِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,82,' كِرَامًۭا كَتِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,82,' يَعْلَمُونَ مَا تَفْعَلُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,82,' إِنَّ ٱلْأَبْرَارَ لَفِى نَعِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,82,' وَإِنَّ ٱلْفُجَّارَ لَفِى جَحِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,82,' يَصْلَوْنَهَا يَوْمَ ٱلدِّينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,82,' وَمَا هُمْ عَنْهَا بِغَآئِبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,82,' وَمَآ أَدْرَىٰكَ مَا يَوْمُ ٱلدِّينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,82,' ثُمَّ مَآ أَدْرَىٰكَ مَا يَوْمُ ٱلدِّينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,82,' يَوْمَ لَا تَمْلِكُ نَفْسٌۭ لِّنَفْسٍۢ شَيْـًۭٔا ۖ وَٱلْأَمْرُ يَوْمَئِذٍۢ لِّلَّهِ');
+INSERT INTO chapters (id, number, quran_id) VALUES(83,83,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,83,' وَيْلٌۭ لِّلْمُطَفِّفِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,83,' ٱلَّذِينَ إِذَا ٱكْتَالُوا۟ عَلَى ٱلنَّاسِ يَسْتَوْفُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,83,' وَإِذَا كَالُوهُمْ أَو وَّزَنُوهُمْ يُخْسِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,83,' أَلَا يَظُنُّ أُو۟لَٓئِكَ أَنَّهُم مَّبْعُوثُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,83,' لِيَوْمٍ عَظِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,83,' يَوْمَ يَقُومُ ٱلنَّاسُ لِرَبِّ ٱلْعَلَمِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,83,' كَلَّآ إِنَّ كِتَبَ ٱلْفُجَّارِ لَفِى سِجِّينٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,83,' وَمَآ أَدْرَىٰكَ مَا سِجِّينٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,83,' كِتَبٌۭ مَّرْقُومٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,83,' وَيْلٌۭ يَوْمَئِذٍۢ لِّلْمُكَذِّبِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,83,' ٱلَّذِينَ يُكَذِّبُونَ بِيَوْمِ ٱلدِّينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,83,' وَمَا يُكَذِّبُ بِهِۦٓ إِلَّا كُلُّ مُعْتَدٍ أَثِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,83,' إِذَا تُتْلَىٰ عَلَيْهِ ءَايَتُنَا قَالَ أَسَطِيرُ ٱلْأَوَّلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,83,' كَلَّا ۖ بَلْۜ رَانَ عَلَىٰ قُلُوبِهِم مَّا كَانُوا۟ يَكْسِبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,83,' كَلَّآ إِنَّهُمْ عَن رَّبِّهِمْ يَوْمَئِذٍۢ لَّمَحْجُوبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,83,' ثُمَّ إِنَّهُمْ لَصَالُوا۟ ٱلْجَحِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,83,' ثُمَّ يُقَالُ هَذَا ٱلَّذِى كُنتُم بِهِۦ تُكَذِّبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,83,' كَلَّآ إِنَّ كِتَبَ ٱلْأَبْرَارِ لَفِى عِلِّيِّينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,83,' وَمَآ أَدْرَىٰكَ مَا عِلِّيُّونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,83,' كِتَبٌۭ مَّرْقُومٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,83,' يَشْهَدُهُ ٱلْمُقَرَّبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,83,' إِنَّ ٱلْأَبْرَارَ لَفِى نَعِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,83,' عَلَى ٱلْأَرَآئِكِ يَنظُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,83,' تَعْرِفُ فِى وُجُوهِهِمْ نَضْرَةَ ٱلنَّعِيمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,83,' يُسْقَوْنَ مِن رَّحِيقٍۢ مَّخْتُومٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,83,' خِتَمُهُۥ مِسْكٌۭ ۚ وَفِى ذَلِكَ فَلْيَتَنَافَسِ ٱلْمُتَنَفِسُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,83,' وَمِزَاجُهُۥ مِن تَسْنِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,83,' عَيْنًۭا يَشْرَبُ بِهَا ٱلْمُقَرَّبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,83,' إِنَّ ٱلَّذِينَ أَجْرَمُوا۟ كَانُوا۟ مِنَ ٱلَّذِينَ ءَامَنُوا۟ يَضْحَكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,83,' وَإِذَا مَرُّوا۟ بِهِمْ يَتَغَامَزُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,1,83,' وَإِذَا ٱنقَلَبُوٓا۟ إِلَىٰٓ أَهْلِهِمُ ٱنقَلَبُوا۟ فَكِهِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,1,83,' وَإِذَا رَأَوْهُمْ قَالُوٓا۟ إِنَّ هَٓؤُلَآءِ لَضَآلُّونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,1,83,' وَمَآ أُرْسِلُوا۟ عَلَيْهِمْ حَفِظِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,1,83,' فَٱلْيَوْمَ ٱلَّذِينَ ءَامَنُوا۟ مِنَ ٱلْكُفَّارِ يَضْحَكُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,1,83,' عَلَى ٱلْأَرَآئِكِ يَنظُرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,1,83,' هَلْ ثُوِّبَ ٱلْكُفَّارُ مَا كَانُوا۟ يَفْعَلُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(84,84,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,84,' إِذَا ٱلسَّمَآءُ ٱنشَقَّتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,84,' وَأَذِنَتْ لِرَبِّهَا وَحُقَّتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,84,' وَإِذَا ٱلْأَرْضُ مُدَّتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,84,' وَأَلْقَتْ مَا فِيهَا وَتَخَلَّتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,84,' وَأَذِنَتْ لِرَبِّهَا وَحُقَّتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,84,' يَٓأَيُّهَا ٱلْإِنسَنُ إِنَّكَ كَادِحٌ إِلَىٰ رَبِّكَ كَدْحًۭا فَمُلَقِيهِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,84,' فَأَمَّا مَنْ أُوتِىَ كِتَبَهُۥ بِيَمِينِهِۦ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,84,' فَسَوْفَ يُحَاسَبُ حِسَابًۭا يَسِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,84,' وَيَنقَلِبُ إِلَىٰٓ أَهْلِهِۦ مَسْرُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,84,' وَأَمَّا مَنْ أُوتِىَ كِتَبَهُۥ وَرَآءَ ظَهْرِهِۦ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,84,' فَسَوْفَ يَدْعُوا۟ ثُبُورًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,84,' وَيَصْلَىٰ سَعِيرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,84,' إِنَّهُۥ كَانَ فِىٓ أَهْلِهِۦ مَسْرُورًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,84,' إِنَّهُۥ ظَنَّ أَن لَّن يَحُورَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,84,' بَلَىٰٓ إِنَّ رَبَّهُۥ كَانَ بِهِۦ بَصِيرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,84,' فَلَآ أُقْسِمُ بِٱلشَّفَقِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,84,' وَٱلَّيْلِ وَمَا وَسَقَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,84,' وَٱلْقَمَرِ إِذَا ٱتَّسَقَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,84,' لَتَرْكَبُنَّ طَبَقًا عَن طَبَقٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,84,' فَمَا لَهُمْ لَا يُؤْمِنُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,84,' وَإِذَا قُرِئَ عَلَيْهِمُ ٱلْقُرْءَانُ لَا يَسْجُدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,84,' بَلِ ٱلَّذِينَ كَفَرُوا۟ يُكَذِّبُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,84,' وَٱللَّهُ أَعْلَمُ بِمَا يُوعُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,84,' فَبَشِّرْهُم بِعَذَابٍ أَلِيمٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,84,' إِلَّا ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ لَهُمْ أَجْرٌ غَيْرُ مَمْنُونٍۭ');
+INSERT INTO chapters (id, number, quran_id) VALUES(85,85,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,85,' وَٱلسَّمَآءِ ذَاتِ ٱلْبُرُوجِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,85,' وَٱلْيَوْمِ ٱلْمَوْعُودِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,85,' وَشَاهِدٍۢ وَمَشْهُودٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,85,' قُتِلَ أَصْحَبُ ٱلْأُخْدُودِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,85,' ٱلنَّارِ ذَاتِ ٱلْوَقُودِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,85,' إِذْ هُمْ عَلَيْهَا قُعُودٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,85,' وَهُمْ عَلَىٰ مَا يَفْعَلُونَ بِٱلْمُؤْمِنِينَ شُهُودٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,85,' وَمَا نَقَمُوا۟ مِنْهُمْ إِلَّآ أَن يُؤْمِنُوا۟ بِٱللَّهِ ٱلْعَزِيزِ ٱلْحَمِيدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,85,' ٱلَّذِى لَهُۥ مُلْكُ ٱلسَّمَوَتِ وَٱلْأَرْضِ ۚ وَٱللَّهُ عَلَىٰ كُلِّ شَىْءٍۢ شَهِيدٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,85,' إِنَّ ٱلَّذِينَ فَتَنُوا۟ ٱلْمُؤْمِنِينَ وَٱلْمُؤْمِنَتِ ثُمَّ لَمْ يَتُوبُوا۟ فَلَهُمْ عَذَابُ جَهَنَّمَ وَلَهُمْ عَذَابُ ٱلْحَرِيقِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,85,' إِنَّ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ لَهُمْ جَنَّتٌۭ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ ۚ ذَلِكَ ٱلْفَوْزُ ٱلْكَبِيرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,85,' إِنَّ بَطْشَ رَبِّكَ لَشَدِيدٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,85,' إِنَّهُۥ هُوَ يُبْدِئُ وَيُعِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,85,' وَهُوَ ٱلْغَفُورُ ٱلْوَدُودُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,85,' ذُو ٱلْعَرْشِ ٱلْمَجِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,85,' فَعَّالٌۭ لِّمَا يُرِيدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,85,' هَلْ أَتَىٰكَ حَدِيثُ ٱلْجُنُودِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,85,' فِرْعَوْنَ وَثَمُودَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,85,' بَلِ ٱلَّذِينَ كَفَرُوا۟ فِى تَكْذِيبٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,85,' وَٱللَّهُ مِن وَرَآئِهِم مُّحِيطٌۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,85,' بَلْ هُوَ قُرْءَانٌۭ مَّجِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,85,' فِى لَوْحٍۢ مَّحْفُوظٍۭ');
+INSERT INTO chapters (id, number, quran_id) VALUES(86,86,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,86,' وَٱلسَّمَآءِ وَٱلطَّارِقِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,86,' وَمَآ أَدْرَىٰكَ مَا ٱلطَّارِقُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,86,' ٱلنَّجْمُ ٱلثَّاقِبُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,86,' إِن كُلُّ نَفْسٍۢ لَّمَّا عَلَيْهَا حَافِظٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,86,' فَلْيَنظُرِ ٱلْإِنسَنُ مِمَّ خُلِقَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,86,' خُلِقَ مِن مَّآءٍۢ دَافِقٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,86,' يَخْرُجُ مِنۢ بَيْنِ ٱلصُّلْبِ وَٱلتَّرَآئِبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,86,' إِنَّهُۥ عَلَىٰ رَجْعِهِۦ لَقَادِرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,86,' يَوْمَ تُبْلَى ٱلسَّرَآئِرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,86,' فَمَا لَهُۥ مِن قُوَّةٍۢ وَلَا نَاصِرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,86,' وَٱلسَّمَآءِ ذَاتِ ٱلرَّجْعِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,86,' وَٱلْأَرْضِ ذَاتِ ٱلصَّدْعِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,86,' إِنَّهُۥ لَقَوْلٌۭ فَصْلٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,86,' وَمَا هُوَ بِٱلْهَزْلِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,86,' إِنَّهُمْ يَكِيدُونَ كَيْدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,86,' وَأَكِيدُ كَيْدًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,86,' فَمَهِّلِ ٱلْكَفِرِينَ أَمْهِلْهُمْ رُوَيْدًۢا');
+INSERT INTO chapters (id, number, quran_id) VALUES(87,87,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,87,' سَبِّحِ ٱسْمَ رَبِّكَ ٱلْأَعْلَى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,87,' ٱلَّذِى خَلَقَ فَسَوَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,87,' وَٱلَّذِى قَدَّرَ فَهَدَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,87,' وَٱلَّذِىٓ أَخْرَجَ ٱلْمَرْعَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,87,' فَجَعَلَهُۥ غُثَآءً أَحْوَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,87,' سَنُقْرِئُكَ فَلَا تَنسَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,87,' إِلَّا مَا شَآءَ ٱللَّهُ ۚ إِنَّهُۥ يَعْلَمُ ٱلْجَهْرَ وَمَا يَخْفَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,87,' وَنُيَسِّرُكَ لِلْيُسْرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,87,' فَذَكِّرْ إِن نَّفَعَتِ ٱلذِّكْرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,87,' سَيَذَّكَّرُ مَن يَخْشَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,87,' وَيَتَجَنَّبُهَا ٱلْأَشْقَى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,87,' ٱلَّذِى يَصْلَى ٱلنَّارَ ٱلْكُبْرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,87,' ثُمَّ لَا يَمُوتُ فِيهَا وَلَا يَحْيَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,87,' قَدْ أَفْلَحَ مَن تَزَكَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,87,' وَذَكَرَ ٱسْمَ رَبِّهِۦ فَصَلَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,87,' بَلْ تُؤْثِرُونَ ٱلْحَيَوٰةَ ٱلدُّنْيَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,87,' وَٱلْءَاخِرَةُ خَيْرٌۭ وَأَبْقَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,87,' إِنَّ هَذَا لَفِى ٱلصُّحُفِ ٱلْأُولَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,87,' صُحُفِ إِبْرَهِيمَ وَمُوسَىٰ');
+INSERT INTO chapters (id, number, quran_id) VALUES(88,88,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,88,' هَلْ أَتَىٰكَ حَدِيثُ ٱلْغَشِيَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,88,' وُجُوهٌۭ يَوْمَئِذٍ خَشِعَةٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,88,' عَامِلَةٌۭ نَّاصِبَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,88,' تَصْلَىٰ نَارًا حَامِيَةًۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,88,' تُسْقَىٰ مِنْ عَيْنٍ ءَانِيَةٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,88,' لَّيْسَ لَهُمْ طَعَامٌ إِلَّا مِن ضَرِيعٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,88,' لَّا يُسْمِنُ وَلَا يُغْنِى مِن جُوعٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,88,' وُجُوهٌۭ يَوْمَئِذٍۢ نَّاعِمَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,88,' لِّسَعْيِهَا رَاضِيَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,88,' فِى جَنَّةٍ عَالِيَةٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,88,' لَّا تَسْمَعُ فِيهَا لَغِيَةًۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,88,' فِيهَا عَيْنٌۭ جَارِيَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,88,' فِيهَا سُرُرٌۭ مَّرْفُوعَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,88,' وَأَكْوَابٌۭ مَّوْضُوعَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,88,' وَنَمَارِقُ مَصْفُوفَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,88,' وَزَرَابِىُّ مَبْثُوثَةٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,88,' أَفَلَا يَنظُرُونَ إِلَى ٱلْإِبِلِ كَيْفَ خُلِقَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,88,' وَإِلَى ٱلسَّمَآءِ كَيْفَ رُفِعَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,88,' وَإِلَى ٱلْجِبَالِ كَيْفَ نُصِبَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,88,' وَإِلَى ٱلْأَرْضِ كَيْفَ سُطِحَتْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,88,' فَذَكِّرْ إِنَّمَآ أَنتَ مُذَكِّرٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,88,' لَّسْتَ عَلَيْهِم بِمُصَيْطِرٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,88,' إِلَّا مَن تَوَلَّىٰ وَكَفَرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,88,' فَيُعَذِّبُهُ ٱللَّهُ ٱلْعَذَابَ ٱلْأَكْبَرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,88,' إِنَّ إِلَيْنَآ إِيَابَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,88,' ثُمَّ إِنَّ عَلَيْنَا حِسَابَهُم');
+INSERT INTO chapters (id, number, quran_id) VALUES(89,89,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,89,' وَٱلْفَجْرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,89,' وَلَيَالٍ عَشْرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,89,' وَٱلشَّفْعِ وَٱلْوَتْرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,89,' وَٱلَّيْلِ إِذَا يَسْرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,89,' هَلْ فِى ذَلِكَ قَسَمٌۭ لِّذِى حِجْرٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,89,' أَلَمْ تَرَ كَيْفَ فَعَلَ رَبُّكَ بِعَادٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,89,' إِرَمَ ذَاتِ ٱلْعِمَادِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,89,' ٱلَّتِى لَمْ يُخْلَقْ مِثْلُهَا فِى ٱلْبِلَدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,89,' وَثَمُودَ ٱلَّذِينَ جَابُوا۟ ٱلصَّخْرَ بِٱلْوَادِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,89,' وَفِرْعَوْنَ ذِى ٱلْأَوْتَادِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,89,' ٱلَّذِينَ طَغَوْا۟ فِى ٱلْبِلَدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,89,' فَأَكْثَرُوا۟ فِيهَا ٱلْفَسَادَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,89,' فَصَبَّ عَلَيْهِمْ رَبُّكَ سَوْطَ عَذَابٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,89,' إِنَّ رَبَّكَ لَبِٱلْمِرْصَادِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,89,' فَأَمَّا ٱلْإِنسَنُ إِذَا مَا ٱبْتَلَىٰهُ رَبُّهُۥ فَأَكْرَمَهُۥ وَنَعَّمَهُۥ فَيَقُولُ رَبِّىٓ أَكْرَمَنِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,89,' وَأَمَّآ إِذَا مَا ٱبْتَلَىٰهُ فَقَدَرَ عَلَيْهِ رِزْقَهُۥ فَيَقُولُ رَبِّىٓ أَهَنَنِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,89,' كَلَّا ۖ بَل لَّا تُكْرِمُونَ ٱلْيَتِيمَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,89,' وَلَا تَحَٓضُّونَ عَلَىٰ طَعَامِ ٱلْمِسْكِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,89,' وَتَأْكُلُونَ ٱلتُّرَاثَ أَكْلًۭا لَّمًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,89,' وَتُحِبُّونَ ٱلْمَالَ حُبًّۭا جَمًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,89,' كَلَّآ إِذَا دُكَّتِ ٱلْأَرْضُ دَكًّۭا دَكًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,1,89,' وَجَآءَ رَبُّكَ وَٱلْمَلَكُ صَفًّۭا صَفًّۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,1,89,' وَجِا۟ىٓءَ يَوْمَئِذٍۭ بِجَهَنَّمَ ۚ يَوْمَئِذٍۢ يَتَذَكَّرُ ٱلْإِنسَنُ وَأَنَّىٰ لَهُ ٱلذِّكْرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,1,89,' يَقُولُ يَلَيْتَنِى قَدَّمْتُ لِحَيَاتِى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,1,89,' فَيَوْمَئِذٍۢ لَّا يُعَذِّبُ عَذَابَهُۥٓ أَحَدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,1,89,' وَلَا يُوثِقُ وَثَاقَهُۥٓ أَحَدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,1,89,' يَٓأَيَّتُهَا ٱلنَّفْسُ ٱلْمُطْمَئِنَّةُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,1,89,' ٱرْجِعِىٓ إِلَىٰ رَبِّكِ رَاضِيَةًۭ مَّرْضِيَّةًۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,1,89,' فَٱدْخُلِى فِى عِبَدِى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,1,89,' وَٱدْخُلِى جَنَّتِى');
+INSERT INTO chapters (id, number, quran_id) VALUES(90,90,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,90,' لَآ أُقْسِمُ بِهَذَا ٱلْبَلَدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,90,' وَأَنتَ حِلٌّۢ بِهَذَا ٱلْبَلَدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,90,' وَوَالِدٍۢ وَمَا وَلَدَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,90,' لَقَدْ خَلَقْنَا ٱلْإِنسَنَ فِى كَبَدٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,90,' أَيَحْسَبُ أَن لَّن يَقْدِرَ عَلَيْهِ أَحَدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,90,' يَقُولُ أَهْلَكْتُ مَالًۭا لُّبَدًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,90,' أَيَحْسَبُ أَن لَّمْ يَرَهُۥٓ أَحَدٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,90,' أَلَمْ نَجْعَل لَّهُۥ عَيْنَيْنِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,90,' وَلِسَانًۭا وَشَفَتَيْنِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,90,' وَهَدَيْنَهُ ٱلنَّجْدَيْنِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,90,' فَلَا ٱقْتَحَمَ ٱلْعَقَبَةَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,90,' وَمَآ أَدْرَىٰكَ مَا ٱلْعَقَبَةُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,90,' فَكُّ رَقَبَةٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,90,' أَوْ إِطْعَمٌۭ فِى يَوْمٍۢ ذِى مَسْغَبَةٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,90,' يَتِيمًۭا ذَا مَقْرَبَةٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,90,' أَوْ مِسْكِينًۭا ذَا مَتْرَبَةٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,90,' ثُمَّ كَانَ مِنَ ٱلَّذِينَ ءَامَنُوا۟ وَتَوَاصَوْا۟ بِٱلصَّبْرِ وَتَوَاصَوْا۟ بِٱلْمَرْحَمَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,90,' أُو۟لَٓئِكَ أَصْحَبُ ٱلْمَيْمَنَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,90,' وَٱلَّذِينَ كَفَرُوا۟ بِـَٔايَتِنَا هُمْ أَصْحَبُ ٱلْمَشْـَٔمَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,90,' عَلَيْهِمْ نَارٌۭ مُّؤْصَدَةٌۢ');
+INSERT INTO chapters (id, number, quran_id) VALUES(91,91,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,91,' وَٱلشَّمْسِ وَضُحَىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,91,' وَٱلْقَمَرِ إِذَا تَلَىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,91,' وَٱلنَّهَارِ إِذَا جَلَّىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,91,' وَٱلَّيْلِ إِذَا يَغْشَىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,91,' وَٱلسَّمَآءِ وَمَا بَنَىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,91,' وَٱلْأَرْضِ وَمَا طَحَىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,91,' وَنَفْسٍۢ وَمَا سَوَّىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,91,' فَأَلْهَمَهَا فُجُورَهَا وَتَقْوَىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,91,' قَدْ أَفْلَحَ مَن زَكَّىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,91,' وَقَدْ خَابَ مَن دَسَّىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,91,' كَذَّبَتْ ثَمُودُ بِطَغْوَىٰهَآ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,91,' إِذِ ٱنۢبَعَثَ أَشْقَىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,91,' فَقَالَ لَهُمْ رَسُولُ ٱللَّهِ نَاقَةَ ٱللَّهِ وَسُقْيَهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,91,' فَكَذَّبُوهُ فَعَقَرُوهَا فَدَمْدَمَ عَلَيْهِمْ رَبُّهُم بِذَنۢبِهِمْ فَسَوَّىٰهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,91,' وَلَا يَخَافُ عُقْبَهَا');
+INSERT INTO chapters (id, number, quran_id) VALUES(92,92,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,92,' وَٱلَّيْلِ إِذَا يَغْشَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,92,' وَٱلنَّهَارِ إِذَا تَجَلَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,92,' وَمَا خَلَقَ ٱلذَّكَرَ وَٱلْأُنثَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,92,' إِنَّ سَعْيَكُمْ لَشَتَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,92,' فَأَمَّا مَنْ أَعْطَىٰ وَٱتَّقَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,92,' وَصَدَّقَ بِٱلْحُسْنَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,92,' فَسَنُيَسِّرُهُۥ لِلْيُسْرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,92,' وَأَمَّا مَنۢ بَخِلَ وَٱسْتَغْنَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,92,' وَكَذَّبَ بِٱلْحُسْنَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,92,' فَسَنُيَسِّرُهُۥ لِلْعُسْرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,92,' وَمَا يُغْنِى عَنْهُ مَالُهُۥٓ إِذَا تَرَدَّىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,92,' إِنَّ عَلَيْنَا لَلْهُدَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,92,' وَإِنَّ لَنَا لَلْءَاخِرَةَ وَٱلْأُولَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,92,' فَأَنذَرْتُكُمْ نَارًۭا تَلَظَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,92,' لَا يَصْلَىٰهَآ إِلَّا ٱلْأَشْقَى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,92,' ٱلَّذِى كَذَّبَ وَتَوَلَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,92,' وَسَيُجَنَّبُهَا ٱلْأَتْقَى');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,92,' ٱلَّذِى يُؤْتِى مَالَهُۥ يَتَزَكَّىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,92,' وَمَا لِأَحَدٍ عِندَهُۥ مِن نِّعْمَةٍۢ تُجْزَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,1,92,' إِلَّا ٱبْتِغَآءَ وَجْهِ رَبِّهِ ٱلْأَعْلَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,1,92,' وَلَسَوْفَ يَرْضَىٰ');
+INSERT INTO chapters (id, number, quran_id) VALUES(93,93,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,93,' وَٱلضُّحَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,93,' وَٱلَّيْلِ إِذَا سَجَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,93,' مَا وَدَّعَكَ رَبُّكَ وَمَا قَلَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,93,' وَلَلْءَاخِرَةُ خَيْرٌۭ لَّكَ مِنَ ٱلْأُولَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,93,' وَلَسَوْفَ يُعْطِيكَ رَبُّكَ فَتَرْضَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,93,' أَلَمْ يَجِدْكَ يَتِيمًۭا فَـَٔاوَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,93,' وَوَجَدَكَ ضَآلًّۭا فَهَدَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,93,' وَوَجَدَكَ عَآئِلًۭا فَأَغْنَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,93,' فَأَمَّا ٱلْيَتِيمَ فَلَا تَقْهَرْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,93,' وَأَمَّا ٱلسَّآئِلَ فَلَا تَنْهَرْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,93,' وَأَمَّا بِنِعْمَةِ رَبِّكَ فَحَدِّثْ');
+INSERT INTO chapters (id, number, quran_id) VALUES(94,94,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,94,' أَلَمْ نَشْرَحْ لَكَ صَدْرَكَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,94,' وَوَضَعْنَا عَنكَ وِزْرَكَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,94,' ٱلَّذِىٓ أَنقَضَ ظَهْرَكَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,94,' وَرَفَعْنَا لَكَ ذِكْرَكَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,94,' فَإِنَّ مَعَ ٱلْعُسْرِ يُسْرًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,94,' إِنَّ مَعَ ٱلْعُسْرِ يُسْرًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,94,' فَإِذَا فَرَغْتَ فَٱنصَبْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,94,' وَإِلَىٰ رَبِّكَ فَٱرْغَب');
+INSERT INTO chapters (id, number, quran_id) VALUES(95,95,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,95,' وَٱلتِّينِ وَٱلزَّيْتُونِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,95,' وَطُورِ سِينِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,95,' وَهَذَا ٱلْبَلَدِ ٱلْأَمِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,95,' لَقَدْ خَلَقْنَا ٱلْإِنسَنَ فِىٓ أَحْسَنِ تَقْوِيمٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,95,' ثُمَّ رَدَدْنَهُ أَسْفَلَ سَفِلِينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,95,' إِلَّا ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ فَلَهُمْ أَجْرٌ غَيْرُ مَمْنُونٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,95,' فَمَا يُكَذِّبُكَ بَعْدُ بِٱلدِّينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,95,' أَلَيْسَ ٱللَّهُ بِأَحْكَمِ ٱلْحَكِمِينَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(96,96,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,96,' ٱقْرَأْ بِٱسْمِ رَبِّكَ ٱلَّذِى خَلَقَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,96,' خَلَقَ ٱلْإِنسَنَ مِنْ عَلَقٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,96,' ٱقْرَأْ وَرَبُّكَ ٱلْأَكْرَمُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,96,' ٱلَّذِى عَلَّمَ بِٱلْقَلَمِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,96,' عَلَّمَ ٱلْإِنسَنَ مَا لَمْ يَعْلَمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,96,' كَلَّآ إِنَّ ٱلْإِنسَنَ لَيَطْغَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,96,' أَن رَّءَاهُ ٱسْتَغْنَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,96,' إِنَّ إِلَىٰ رَبِّكَ ٱلرُّجْعَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,96,' أَرَءَيْتَ ٱلَّذِى يَنْهَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,96,' عَبْدًا إِذَا صَلَّىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,96,' أَرَءَيْتَ إِن كَانَ عَلَى ٱلْهُدَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,1,96,' أَوْ أَمَرَ بِٱلتَّقْوَىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,1,96,' أَرَءَيْتَ إِن كَذَّبَ وَتَوَلَّىٰٓ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,1,96,' أَلَمْ يَعْلَم بِأَنَّ ٱللَّهَ يَرَىٰ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,1,96,' كَلَّا لَىِٕن لَّمْ يَنتَهِ لَنَسْفَعًۢا بِٱلنَّاصِيَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,1,96,' نَاصِيَةٍۢ كَذِبَةٍ خَاطِئَةٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,1,96,' فَلْيَدْعُ نَادِيَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,1,96,' سَنَدْعُ ٱلزَّبَانِيَةَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,1,96,' كَلَّا لَا تُطِعْهُ وَٱسْجُدْ وَٱقْتَرِب');
+INSERT INTO chapters (id, number, quran_id) VALUES(97,97,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,97,' إِنَّآ أَنزَلْنَهُ فِى لَيْلَةِ ٱلْقَدْرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,97,' وَمَآ أَدْرَىٰكَ مَا لَيْلَةُ ٱلْقَدْرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,97,' لَيْلَةُ ٱلْقَدْرِ خَيْرٌۭ مِّنْ أَلْفِ شَهْرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,97,' تَنَزَّلُ ٱلْمَلَٓئِكَةُ وَٱلرُّوحُ فِيهَا بِإِذْنِ رَبِّهِم مِّن كُلِّ أَمْرٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,97,' سَلَمٌ هِىَ حَتَّىٰ مَطْلَعِ ٱلْفَجْرِ');
+INSERT INTO chapters (id, number, quran_id) VALUES(98,98,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,98,' لَمْ يَكُنِ ٱلَّذِينَ كَفَرُوا۟ مِنْ أَهْلِ ٱلْكِتَبِ وَٱلْمُشْرِكِينَ مُنفَكِّينَ حَتَّىٰ تَأْتِيَهُمُ ٱلْبَيِّنَةُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,98,' رَسُولٌۭ مِّنَ ٱللَّهِ يَتْلُوا۟ صُحُفًۭا مُّطَهَّرَةًۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,98,' فِيهَا كُتُبٌۭ قَيِّمَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,98,' وَمَا تَفَرَّقَ ٱلَّذِينَ أُوتُوا۟ ٱلْكِتَبَ إِلَّا مِنۢ بَعْدِ مَا جَآءَتْهُمُ ٱلْبَيِّنَةُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,98,' وَمَآ أُمِرُوٓا۟ إِلَّا لِيَعْبُدُوا۟ ٱللَّهَ مُخْلِصِينَ لَهُ ٱلدِّينَ حُنَفَآءَ وَيُقِيمُوا۟ ٱلصَّلَوٰةَ وَيُؤْتُوا۟ ٱلزَّكَوٰةَ ۚ وَذَلِكَ دِينُ ٱلْقَيِّمَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,98,' إِنَّ ٱلَّذِينَ كَفَرُوا۟ مِنْ أَهْلِ ٱلْكِتَبِ وَٱلْمُشْرِكِينَ فِى نَارِ جَهَنَّمَ خَلِدِينَ فِيهَآ ۚ أُو۟لَٓئِكَ هُمْ شَرُّ ٱلْبَرِيَّةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,98,' إِنَّ ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ أُو۟لَٓئِكَ هُمْ خَيْرُ ٱلْبَرِيَّةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,98,' جَزَآؤُهُمْ عِندَ رَبِّهِمْ جَنَّتُ عَدْنٍۢ تَجْرِى مِن تَحْتِهَا ٱلْأَنْهَرُ خَلِدِينَ فِيهَآ أَبَدًۭا ۖ رَّضِىَ ٱللَّهُ عَنْهُمْ وَرَضُوا۟ عَنْهُ ۚ ذَلِكَ لِمَنْ خَشِىَ رَبَّهُۥ');
+INSERT INTO chapters (id, number, quran_id) VALUES(99,99,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,99,' إِذَا زُلْزِلَتِ ٱلْأَرْضُ زِلْزَالَهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,99,' وَأَخْرَجَتِ ٱلْأَرْضُ أَثْقَالَهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,99,' وَقَالَ ٱلْإِنسَنُ مَا لَهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,99,' يَوْمَئِذٍۢ تُحَدِّثُ أَخْبَارَهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,99,' بِأَنَّ رَبَّكَ أَوْحَىٰ لَهَا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,99,' يَوْمَئِذٍۢ يَصْدُرُ ٱلنَّاسُ أَشْتَاتًۭا لِّيُرَوْا۟ أَعْمَلَهُمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,99,' فَمَن يَعْمَلْ مِثْقَالَ ذَرَّةٍ خَيْرًۭا يَرَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,99,' وَمَن يَعْمَلْ مِثْقَالَ ذَرَّةٍۢ شَرًّۭا يَرَهُۥ');
+INSERT INTO chapters (id, number, quran_id) VALUES(100,100,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,100,' وَٱلْعَدِيَتِ ضَبْحًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,100,' فَٱلْمُورِيَتِ قَدْحًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,100,' فَٱلْمُغِيرَتِ صُبْحًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,100,' فَأَثَرْنَ بِهِۦ نَقْعًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,100,' فَوَسَطْنَ بِهِۦ جَمْعًا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,100,' إِنَّ ٱلْإِنسَنَ لِرَبِّهِۦ لَكَنُودٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,100,' وَإِنَّهُۥ عَلَىٰ ذَلِكَ لَشَهِيدٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,100,' وَإِنَّهُۥ لِحُبِّ ٱلْخَيْرِ لَشَدِيدٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,100,' أَفَلَا يَعْلَمُ إِذَا بُعْثِرَ مَا فِى ٱلْقُبُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,100,' وَحُصِّلَ مَا فِى ٱلصُّدُورِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,100,' إِنَّ رَبَّهُم بِهِمْ يَوْمَئِذٍۢ لَّخَبِيرٌۢ');
+INSERT INTO chapters (id, number, quran_id) VALUES(101,101,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,101,' ٱلْقَارِعَةُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,101,' مَا ٱلْقَارِعَةُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,101,' وَمَآ أَدْرَىٰكَ مَا ٱلْقَارِعَةُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,101,' يَوْمَ يَكُونُ ٱلنَّاسُ كَٱلْفَرَاشِ ٱلْمَبْثُوثِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,101,' وَتَكُونُ ٱلْجِبَالُ كَٱلْعِهْنِ ٱلْمَنفُوشِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,101,' فَأَمَّا مَن ثَقُلَتْ مَوَزِينُهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,101,' فَهُوَ فِى عِيشَةٍۢ رَّاضِيَةٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,101,' وَأَمَّا مَنْ خَفَّتْ مَوَزِينُهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,101,' فَأُمُّهُۥ هَاوِيَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,1,101,' وَمَآ أَدْرَىٰكَ مَا هِيَهْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,1,101,' نَارٌ حَامِيَةٌۢ');
+INSERT INTO chapters (id, number, quran_id) VALUES(102,102,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,102,' أَلْهَىٰكُمُ ٱلتَّكَاثُرُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,102,' حَتَّىٰ زُرْتُمُ ٱلْمَقَابِرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,102,' كَلَّا سَوْفَ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,102,' ثُمَّ كَلَّا سَوْفَ تَعْلَمُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,102,' كَلَّا لَوْ تَعْلَمُونَ عِلْمَ ٱلْيَقِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,102,' لَتَرَوُنَّ ٱلْجَحِيمَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,102,' ثُمَّ لَتَرَوُنَّهَا عَيْنَ ٱلْيَقِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,102,' ثُمَّ لَتُسْـَٔلُنَّ يَوْمَئِذٍ عَنِ ٱلنَّعِيمِ');
+INSERT INTO chapters (id, number, quran_id) VALUES(103,103,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,103,' وَٱلْعَصْرِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,103,' إِنَّ ٱلْإِنسَنَ لَفِى خُسْرٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,103,' إِلَّا ٱلَّذِينَ ءَامَنُوا۟ وَعَمِلُوا۟ ٱلصَّلِحَتِ وَتَوَاصَوْا۟ بِٱلْحَقِّ وَتَوَاصَوْا۟ بِٱلصَّبْرِ');
+INSERT INTO chapters (id, number, quran_id) VALUES(104,104,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,104,' وَيْلٌۭ لِّكُلِّ هُمَزَةٍۢ لُّمَزَةٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,104,' ٱلَّذِى جَمَعَ مَالًۭا وَعَدَّدَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,104,' يَحْسَبُ أَنَّ مَالَهُۥٓ أَخْلَدَهُۥ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,104,' كَلَّا ۖ لَيُنۢبَذَنَّ فِى ٱلْحُطَمَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,104,' وَمَآ أَدْرَىٰكَ مَا ٱلْحُطَمَةُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,104,' نَارُ ٱللَّهِ ٱلْمُوقَدَةُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,104,' ٱلَّتِى تَطَّلِعُ عَلَى ٱلْأَفْـِٔدَةِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,1,104,' إِنَّهَا عَلَيْهِم مُّؤْصَدَةٌۭ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,1,104,' فِى عَمَدٍۢ مُّمَدَّدَةٍۭ');
+INSERT INTO chapters (id, number, quran_id) VALUES(105,105,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,105,' أَلَمْ تَرَ كَيْفَ فَعَلَ رَبُّكَ بِأَصْحَبِ ٱلْفِيلِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,105,' أَلَمْ يَجْعَلْ كَيْدَهُمْ فِى تَضْلِيلٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,105,' وَأَرْسَلَ عَلَيْهِمْ طَيْرًا أَبَابِيلَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,105,' تَرْمِيهِم بِحِجَارَةٍۢ مِّن سِجِّيلٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,105,' فَجَعَلَهُمْ كَعَصْفٍۢ مَّأْكُولٍۭ');
+INSERT INTO chapters (id, number, quran_id) VALUES(106,106,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,106,' لِإِيلَفِ قُرَيْشٍ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,106,' إِۦلَفِهِمْ رِحْلَةَ ٱلشِّتَآءِ وَٱلصَّيْفِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,106,' فَلْيَعْبُدُوا۟ رَبَّ هَذَا ٱلْبَيْتِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,106,' ٱلَّذِىٓ أَطْعَمَهُم مِّن جُوعٍۢ وَءَامَنَهُم مِّنْ خَوْفٍۭ');
+INSERT INTO chapters (id, number, quran_id) VALUES(107,107,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,107,' أَرَءَيْتَ ٱلَّذِى يُكَذِّبُ بِٱلدِّينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,107,' فَذَلِكَ ٱلَّذِى يَدُعُّ ٱلْيَتِيمَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,107,' وَلَا يَحُضُّ عَلَىٰ طَعَامِ ٱلْمِسْكِينِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,107,' فَوَيْلٌۭ لِّلْمُصَلِّينَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,107,' ٱلَّذِينَ هُمْ عَن صَلَاتِهِمْ سَاهُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,107,' ٱلَّذِينَ هُمْ يُرَآءُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,1,107,' وَيَمْنَعُونَ ٱلْمَاعُونَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(108,108,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,108,' إِنَّآ أَعْطَيْنَكَ ٱلْكَوْثَرَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,108,' فَصَلِّ لِرَبِّكَ وَٱنْحَرْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,108,' إِنَّ شَانِئَكَ هُوَ ٱلْأَبْتَرُ');
+INSERT INTO chapters (id, number, quran_id) VALUES(109,109,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,109,' قُلْ يَٓأَيُّهَا ٱلْكَفِرُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,109,' لَآ أَعْبُدُ مَا تَعْبُدُونَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,109,' وَلَآ أَنتُمْ عَبِدُونَ مَآ أَعْبُدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,109,' وَلَآ أَنَا۠ عَابِدٌۭ مَّا عَبَدتُّمْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,109,' وَلَآ أَنتُمْ عَبِدُونَ مَآ أَعْبُدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,109,' لَكُمْ دِينُكُمْ وَلِىَ دِينِ');
+INSERT INTO chapters (id, number, quran_id) VALUES(110,110,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,110,' إِذَا جَآءَ نَصْرُ ٱللَّهِ وَٱلْفَتْحُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,110,' وَرَأَيْتَ ٱلنَّاسَ يَدْخُلُونَ فِى دِينِ ٱللَّهِ أَفْوَاجًۭا');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,110,' فَسَبِّحْ بِحَمْدِ رَبِّكَ وَٱسْتَغْفِرْهُ ۚ إِنَّهُۥ كَانَ تَوَّابًۢا');
+INSERT INTO chapters (id, number, quran_id) VALUES(111,111,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,111,' تَبَّتْ يَدَآ أَبِى لَهَبٍۢ وَتَبَّ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,111,' مَآ أَغْنَىٰ عَنْهُ مَالُهُۥ وَمَا كَسَبَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,111,' سَيَصْلَىٰ نَارًۭا ذَاتَ لَهَبٍۢ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,111,' وَٱمْرَأَتُهُۥ حَمَّالَةَ ٱلْحَطَبِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,111,' فِى جِيدِهَا حَبْلٌۭ مِّن مَّسَدٍۭ');
+INSERT INTO chapters (id, number, quran_id) VALUES(112,112,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,112,' قُلْ هُوَ ٱللَّهُ أَحَدٌ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,112,' ٱللَّهُ ٱلصَّمَدُ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,112,' لَمْ يَلِدْ وَلَمْ يُولَدْ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,112,' وَلَمْ يَكُن لَّهُۥ كُفُوًا أَحَدٌۢ');
+INSERT INTO chapters (id, number, quran_id) VALUES(113,113,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,113,' قُلْ أَعُوذُ بِرَبِّ ٱلْفَلَقِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,113,' مِن شَرِّ مَا خَلَقَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,113,' وَمِن شَرِّ غَاسِقٍ إِذَا وَقَبَ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,113,' وَمِن شَرِّ ٱلنَّفَّثَتِ فِى ٱلْعُقَدِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,113,' وَمِن شَرِّ حَاسِدٍ إِذَا حَسَدَ');
+INSERT INTO chapters (id, number, quran_id) VALUES(114,114,1);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,1,114,' قُلْ أَعُوذُ بِرَبِّ ٱلنَّاسِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,1,114,' مَلِكِ ٱلنَّاسِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,1,114,' إِلَهِ ٱلنَّاسِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,1,114,' مِن شَرِّ ٱلْوَسْوَاسِ ٱلْخَنَّاسِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,1,114,' ٱلَّذِى يُوَسْوِسُ فِى صُدُورِ ٱلنَّاسِ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,1,114,' مِنَ ٱلْجِنَّةِ وَٱلنَّاسِ');
+INSERT INTO qurans (locale) VALUES('en');
+INSERT INTO chapters (id, number, quran_id) VALUES(115,1,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,115,'In the Name of Allah—the Most Compassionate, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,115,'All praise is for Allah—Lord of all worlds,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,115,'the Most Compassionate, Most Merciful,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,115,'Master of the Day of Judgment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,115,'You ˹alone˺ we worship and You ˹alone˺ we ask for help.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,115,'Guide us along the Straight Path,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,115,'the Path of those You have blessed—not those You are displeased with, or those who are astray. ');
+INSERT INTO chapters (id, number, quran_id) VALUES(116,2,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,116,'Alif-Lãm-Mĩm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,116,'This is the Book! There is no doubt about it—a guide for those mindful ˹of Allah˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,116,'who believe in the unseen, establish prayer, and donate from what We have provided for them,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,116,'and who believe in what has been revealed to you ˹O Prophet˺ and what was revealed before you, and have sure faith in the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,116,'It is they who are ˹truly˺ guided by their Lord, and it is they who will be successful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,116,'As for those who persist in disbelief, it is the same whether you warn them or not—they will never believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,116,'Allah has sealed their hearts and their hearing, and their sight is covered. They will suffer a tremendous punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,116,'And there are some who say, “We believe in Allah and the Last Day,” yet they are not ˹true˺ believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,116,'They seek to deceive Allah and the believers, yet they only deceive themselves, but they fail to perceive it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,116,'There is sickness in their hearts, and Allah ˹only˺ lets their sickness increase. They will suffer a painful punishment for their lies.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,116,'When they are told, “Do not spread corruption in the land,” they reply, “We are only peace-makers!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,116,'Indeed, it is they who are the corruptors, but they fail to perceive it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,116,'And when they are told, “Believe as others believe,” they reply, “Will we believe as the fools believe?” Indeed, it is they who are fools, but they do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,116,'When they meet the believers they say, “We believe.” But when alone with their evil associates they say, “We are definitely with you; we were only mocking.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,116,'Allah will throw their mockery back at them, leaving them to continue wandering blindly in their defiance.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,116,'They are the ones who trade guidance for misguidance. But this trade is profitless, and they are not ˹rightly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,116,'Their example is that of someone who kindles a fire, but when it lights up all around them, Allah takes away their light, leaving them in complete darkness—unable to see.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,116,'They are ˹wilfully˺ deaf, dumb, and blind, so they will never return ˹to the Right Path˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,116,'Or ˹those caught in˺ a rainstorm from the sky with darkness, thunder, and lightning. They press their fingers into their ears at the sound of every thunder-clap for fear of death. And Allah encompasses the disbelievers ˹by His might˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,116,'It is as if the lightning were about to snatch away their sight. Whenever lightning strikes, they walk in its light, but when darkness covers them, they stand still. Had Allah willed, He could have taken away their hearing and sight. Surely Allah is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,116,'O humanity! Worship your Lord, Who created you and those before you, so that you may become mindful ˹of Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,116,'˹He is the One˺ Who has made the earth a place of settlement for you and the sky a canopy; and sends down rain from the sky, causing fruits to grow as a provision for you. So do not knowingly set up equals to Allah ˹in worship˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,116,'And if you are in doubt about what We have revealed to Our servant, then produce a sûrah like it and call your helpers other than Allah, if what you say is true.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,116,'But if you are unable to do so—and you will never be able to do so—then fear the Fire fuelled with people and stones, which is prepared for the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,116,'Give good news ˹O Prophet˺ to those who believe and do good that they will have Gardens under which rivers flow. Whenever provided with fruit, they will say, “This is what we were given before,” for they will be served fruit that looks similar ˹but tastes different˺. They will have pure spouses, and they will be there forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,116,'Surely Allah does not shy away from using the parable of a mosquito or what is even smaller. As for the believers, they know that it is the truth from their Lord. And as for the disbelievers, they argue, “What does Allah mean by such a parable?” Through this ˹test˺, He leaves many to stray, and guides many. And He leaves none to stray except the rebellious—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,116,'those who violate Allah’s covenant after it has been affirmed, break whatever ˹ties˺ Allah has ordered to be maintained, and spread corruption in the land. It is they who are the ˹true˺ losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,116,'How can you deny Allah? You were lifeless and He gave you life, then He will cause you to die and again bring you to life, and then to Him you will ˹all˺ be returned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,116,'He is the One Who created everything in the earth for you. Then He turned towards the heaven, forming it into seven heavens. And He has ˹perfect˺ knowledge of all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,116,'˹Remember˺ when your Lord said to the angels, “I am going to place a successive ˹human˺ authority on earth.” They asked ˹Allah˺, “Will You place in it someone who will spread corruption there and shed blood while we glorify Your praises and proclaim Your holiness?” Allah responded, “I know what you do not know.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,116,'He taught Adam the names of all things, then He presented them to the angels and said, “Tell Me the names of these, if what you say is true?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,116,'They replied, “Glory be to You! We have no knowledge except what You have taught us. You are truly the All-Knowing, All-Wise.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,116,'Allah said, “O Adam! Inform them of their names.” Then when Adam did, Allah said, “Did I not tell you that I know the secrets of the heavens and the earth, and I know what you reveal and what you conceal?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,116,'And ˹remember˺ when We said to the angels, “Prostrate before Adam,” so they all did—but not Iblîs, who refused and acted arrogantly, becoming unfaithful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,116,'We cautioned, “O Adam! Live with your wife in Paradise and eat as freely as you please, but do not approach this tree, or else you will be wrongdoers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,116,'But Satan deceived them—leading to their fall from the ˹blissful˺ state they were in, and We said, “Descend from the heavens ˹to the earth˺ as enemies to each other. You will find in the earth a residence and provision for your appointed stay.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,116,'Then Adam was inspired with words ˹of prayer˺ by his Lord, so He accepted his repentance. Surely He is the Accepter of Repentance, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,116,'We said, “Descend all of you! Then when guidance comes to you from Me, whoever follows it, there will be no fear for them, nor will they grieve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,116,'But those who disbelieve and deny Our signs will be the residents of the Fire. They will be there forever.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,116,'O children of Israel! Remember My favours upon you. Fulfil your covenant and I will fulfil Mine, and stand in awe of Me ˹alone˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,116,'Believe in My revelations which confirm your Scriptures. Do not be the first to deny them or trade them for a fleeting gain. And be mindful of Me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,116,'Do not mix truth with falsehood or hide the truth knowingly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,116,'Establish prayer, pay alms-tax, and bow down with those who bow down.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,116,'Do you preach righteousness and fail to practice it yourselves, although you read the Scripture? Do you not understand?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,116,'And seek help through patience and prayer. Indeed, it is a burden except for the humble—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,116,'those who are certain that they will meet their Lord and to Him they will return.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,116,'O Children of Israel! Remember ˹all˺ the favours I granted you and how I honoured you above the others.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,116,'Guard yourselves against the Day on which no soul will be of help to another. No intercession will be accepted, no ransom taken, and no help will be given.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,116,'˹Remember˺ how We delivered you from the people of Pharaoh, who afflicted you with dreadful torment, slaughtering your sons and keeping your women. That was a severe test from your Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,116,'And ˹remember˺ when We parted the sea, rescued you, and drowned Pharaoh’s people before your very eyes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,116,'And ˹remember˺ when We appointed forty nights for Moses, then you worshipped the calf in his absence, acting wrongfully.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,116,'Even then We ˹still˺ forgave you so perhaps you would be grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,116,'And ˹remember˺ when We gave Moses the Scripture—the standard ˹to distinguish between right and wrong˺ that perhaps you would be ˹rightly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,116,'And ˹remember˺ when Moses said to his people, “O my people! Surely you have wronged yourselves by worshipping the calf, so turn in repentance to your Creator and execute ˹the calf-worshippers among˺ yourselves. That is best for you in the sight of your Creator.” Then He accepted your repentance. Surely He is the Accepter of Repentance, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,116,'And ˹remember˺ when you said, “O Moses! We will never believe you until we see Allah with our own eyes,” so a thunderbolt struck you while you were looking on.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,116,'Then We brought you back to life after your death, so that perhaps you would be grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,116,'And ˹remember when˺ We shaded you with clouds and sent down to you manna and quails, ˹saying˺, “Eat from the good things We have provided for you.” The evildoers ˹certainly˺ did not wrong Us, but wronged themselves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,116,'And ˹remember˺ when We said, “Enter this city and eat freely from wherever you please; enter the gate with humility, saying, ‘Absolve us.’ We will forgive your sins and multiply the reward for the good-doers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,116,'But the wrongdoers changed the words they were commanded to say. So We sent down a punishment from the heavens upon them for their rebelliousness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,116,'And ˹remember˺ when Moses prayed for water for his people, We said, “Strike the rock with your staff.” Then twelve springs gushed out, ˹and˺ each tribe knew its drinking place. ˹We then said,˺ “Eat and drink of Allah’s provisions, and do not go about spreading corruption in the land.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,116,'And ˹remember˺ when you said, “O Moses! We cannot endure the same meal ˹every day˺. So ˹just˺ call upon your Lord on our behalf, He will bring forth for us some of what the earth produces of herbs, cucumbers, garlic, lentils, and onions.” Moses scolded ˹them˺, “Do you exchange what is better for what is worse? ˹You can˺ go down to any village and you will find what you have asked for.” They were stricken with disgrace and misery, and they invited the displeasure of Allah for rejecting Allah’s signs and unjustly killing the prophets. This is ˹a fair reward˺ for their disobedience and violations.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,116,'Indeed, the believers, Jews, Christians, and Sabians—whoever ˹truly˺ believes in Allah and the Last Day and does good will have their reward with their Lord. And there will be no fear for them, nor will they grieve. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,116,'And ˹remember˺ when We took a covenant from you and raised the mountain above you ˹saying˺, “Hold firmly to that ˹Scripture˺ which We have given you and observe its teachings so perhaps you will become mindful ˹of Allah˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,116,'Yet you turned away afterwards. Had it not been for Allah’s grace and mercy upon you, you would have certainly been of the losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,116,'You are already aware of those of you who broke the Sabbath. We said to them, “Be disgraced apes!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,116,'So We made their fate an example to present and future generations, and a lesson to the God-fearing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,116,'And ˹remember˺ when Moses said to his people, “Allah commands you to sacrifice a cow.” They replied, “Are you mocking us?” Moses responded, “I seek refuge in Allah from acting foolishly!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,116,'They said, “Call upon your Lord to clarify for us what type ˹of cow˺ it should be!” He replied, “Allah says, ‘The cow should neither be old nor young but in between. So do as you are commanded!’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,116,'They said, “Call upon your Lord to specify for us its colour.” He replied, “Allah says, ‘It should be a bright yellow cow—pleasant to see.’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,116,'Again they said, “Call upon your Lord so that He may make clear to us which cow, for all cows look the same to us. Then, Allah willing, we will be guided ˹to the right one˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,116,'He replied, “Allah says, ‘It should have been used neither to till the soil nor water the fields; wholesome and without blemish.’” They said, “Now you have come with the truth.” Yet they still slaughtered it hesitantly!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,116,'˹This is˺ when a man was killed and you disputed who the killer was, but Allah revealed what you concealed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,116,'So We instructed, “Strike the dead body with a piece of the cow.” This is how ˹easily˺ Allah brings the dead to life, showing you His signs so that you may understand.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,116,'Even then your hearts became hardened like a rock or even harder, for some rocks gush rivers; others split, spilling water; while others are humbled in awe of Allah. And Allah is never unaware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,116,'Do you ˹believers still˺ expect them to be true to you, though a group of them would hear the word of Allah then knowingly corrupt it after understanding it?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,116,'When they meet the believers they say, “We believe.” But in private they say ˹to each other˺, “Will you disclose to the believers the knowledge Allah has revealed to you, so that they may use it against you before your Lord? Do you not understand?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,116,'Do they not know that Allah is aware of what they conceal and what they reveal?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,116,'And among them are the illiterate who know nothing about the Scripture except lies, and ˹so˺ they ˹wishfully˺ speculate.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,116,'So woe to those who distort the Scripture with their own hands then say, “This is from Allah”—seeking a fleeting gain! So woe to them for what their hands have written, and woe to them for what they have earned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,116,'˹Some of˺ the Jews claim, “The Fire will not touch us except for a number of days.” Say, ˹O Prophet,˺ “Have you taken a pledge from Allah—for Allah never breaks His word—or are you ˹just˺ saying about Allah what you do not know?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,116,'But no! Those who commit evil and are engrossed in sin will be the residents of the Fire. They will be there forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,116,'And those who believe and do good will be the residents of Paradise. They will be there forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,116,'And ˹remember˺ when We took a covenant from the children of Israel ˹stating˺, “Worship none but Allah; be kind to parents, relatives, orphans and the needy; speak kindly to people; establish prayer; and pay alms-tax.” But you ˹Israelites˺ turned away—except for a few of you—and were indifferent.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,116,'And ˹remember˺ when We took your covenant that you would neither shed each other’s blood nor expel each other from their homes, you gave your pledge and bore witness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,116,'But here you are, killing each other and expelling some of your people from their homes, aiding one another in sin and aggression; and when those ˹expelled˺ come to you as captives, you still ransom them—though expelling them was unlawful for you. Do you believe in some of the Scripture and reject the rest? Is there any reward for those who do so among you other than disgrace in this worldly life and being subjected to the harshest punishment on the Day of Judgment? For Allah is never unaware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,116,'These are the ones who trade the Hereafter for the life of this world. So their punishment will not be reduced, nor will they be helped.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,116,'Indeed, We gave Moses the Book and sent after him successive messengers. And We gave Jesus, son of Mary, clear proofs and supported him with the holy spirit. Why is it that every time a messenger comes to you ˹Israelites˺ with something you do not like, you become arrogant, rejecting some and killing others?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,116,'They say, “Our hearts are unreceptive!” In fact, Allah has condemned them for their disbelief. They have but little faith.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,116,'Although they used to pray for victory ˹by means of the Prophet˺ over the polytheists, when there came to them a Book from Allah which they recognized, confirming the Scripture they had ˹in their hands˺, they rejected it. So may Allah’s condemnation be upon the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,116,'Miserable is the price they have sold their souls for—denying Allah’s revelation and resenting Allah for granting His grace to whoever He wills of His servants! They have earned wrath upon wrath. And such disbelievers will suffer a humiliating punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,116,'When it is said to them: “Believe in what Allah has revealed,” they reply, “We only believe in what was sent down to us,” and they deny what came afterwards, though it is the truth confirming their own Scriptures! Ask ˹them, O Prophet˺, “Why then did you kill Allah’s prophets before, if you are ˹truly˺ believers?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,116,'Indeed, Moses came to you with clear proofs, then you worshipped the calf in his absence, acting wrongfully.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,116,'And when We took your covenant and raised the mountain above you ˹saying˺, “Hold firmly to that ˹Scripture˺ which We have given you and obey,” they answered, “We hear and disobey.” The love of the calf was rooted in their hearts because of their disbelief. Say, ˹O Prophet,˺ “How evil is what your ˹so-called˺ belief prompts you to do, if you ˹actually˺ believe ˹in the Torah˺!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,116,'Say, ˹O Prophet,˺ “If the ˹eternal˺ Home of the Hereafter with Allah is exclusively for you ˹Israelites˺ out of all humanity, then wish for death if what you say is true!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,116,'But they will never wish for that because of what their hands have done. And Allah has ˹perfect˺ knowledge of the wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,116,'You will surely find them clinging to life more eagerly than any other people, even more than polytheists. Each one of them wishes to live a thousand years. But even if they were to live that long, it would not save them from the punishment. And Allah is All-Seeing of what they do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,116,'Say, ˹O Prophet,˺ “Whoever is an enemy of Gabriel should know that he revealed this ˹Quran˺ to your heart by Allah’s Will, confirming what came before it—a guide and good news for the believers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,116,'Whoever is an enemy of Allah, His angels, His messengers, Gabriel, and Michael, then ˹let them know that˺ Allah is certainly the enemy of the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,116,'Indeed, We have sent down to you ˹O Prophet˺ clear revelations. ˹But˺ none will deny them except the rebellious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,2,116,'Why is it that every time they make a covenant, a group of them casts it aside? In fact, most of them do not believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,2,116,'Now, when a messenger from Allah has come to them—confirming their own Scriptures—some of the People of the Book cast the Book of Allah behind their backs as if they did not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,2,116,'They ˹instead˺ followed the magic promoted by the devils during the reign of Solomon. Never did Solomon disbelieve, rather the devils disbelieved. They taught magic to the people, along with what had been revealed to the two angels, Hârût and Mârût, in Babylon. The two angels never taught anyone without saying, “We are only a test ˹for you˺, so do not abandon ˹your˺ faith.” Yet people learned ˹magic˺ that caused a rift ˹even˺ between husband and wife; although their magic could not harm anyone except by Allah’s Will. They learned what harmed them and did not benefit them—although they already knew that whoever buys into magic would have no share in the Hereafter. Miserable indeed was the price for which they sold their souls, if only they knew!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,2,116,'If only they were faithful and mindful ˹of Allah˺, there would have been a better reward from Allah, if only they knew!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,2,116,'O believers! Do not say, “Râ’ina.” [Herd us!] But say, “Unẓurna,” [Tend to us!] and listen ˹attentively˺. And the disbelievers will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,2,116,'The disbelievers from the People of the Book and the polytheists would not want you to receive any blessing from your Lord, but Allah selects whoever He wills for His mercy. And Allah is the Lord of infinite bounty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,2,116,'If We ever abrogate a verse or cause it to be forgotten, We replace it with a better or similar one. Do you not know that Allah is Most Capable of everything?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,2,116,'Do you not know that the kingdom of the heavens and the earth belongs ˹only˺ to Allah, and you have no guardian or helper besides Allah?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,2,116,'Or do you ˹believers˺ intend to ask of your Messenger as Moses was asked before? But whoever trades belief for disbelief has truly strayed from the Right Way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,2,116,'Many among the People of the Book wish they could turn you ˹believers˺ back to disbelief because of their envy, after the truth has been made clear to them. Pardon and bear with them until Allah delivers His decision. Surely Allah is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,2,116,'Establish prayer, and pay alms-tax. Whatever good you send forth for yourselves, you will ˹certainly˺ find ˹its reward˺ with Allah. Surely Allah is All-Seeing of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,2,116,'The Jews and Christians each claim that none will enter Paradise except those of their own faith. These are their desires. Reply, ˹O Prophet,˺ “Show ˹me˺ your proof if what you say is true.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,2,116,'But no! Whoever submits themselves to Allah and does good will have their reward with their Lord. And there will be no fear for them, nor will they grieve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,2,116,'The Jews say, “The Christians have nothing to stand on” and the Christians say, “The Jews have nothing to stand on,” although both recite the Scriptures. And those ˹pagans˺ who have no knowledge say the same ˹about people of faith˺. Surely Allah will judge between them on the Day of Judgment regarding their dispute.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,2,116,'Who does more wrong than those who prevent Allah’s Name from being mentioned in His places of worship and strive to destroy them? Such people have no right to enter these places except with fear. For them is disgrace in this world, and they will suffer a tremendous punishment in the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,2,116,'To Allah belong the east and the west, so wherever you turn you are facing ˹towards˺ Allah. Surely Allah is All-Encompassing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,2,116,'They say, “Allah has offspring.” Glory be to Him! In fact, to Him belongs whatever is in the heavens and the earth—all are subject to His Will.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,2,116,'˹He is˺ the Originator of the heavens and the earth! When He decrees a matter, He simply tells it, “Be!” And it is!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,2,116,'Those who have no knowledge say, “If only Allah would speak to us or a sign would come to us!” The same was said by those who came before. Their hearts are all alike. Indeed, We have made the signs clear for people of sure faith.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,2,116,'We have surely sent you with the truth ˹O Prophet˺ as a deliverer of good news and a warner. And you will not be accountable for the residents of the Hellfire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,2,116,'Never will the Jews or Christians be pleased with you, until you follow their faith. Say, “Allah’s guidance is the only ˹true˺ guidance.” And if you were to follow their desires after ˹all˺ the knowledge that has come to you, there would be none to protect or help you against Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,2,116,'Those We have given the Book follow it as it should be followed. It is they who ˹truly˺ believe in it. As for those who reject it, it is they who are the losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,2,116,'O Children of Israel! Remember My favours upon you and how I honoured you above the others.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,2,116,'And guard yourselves against the Day when no soul will be of any help to another. No ransom will be taken, no intercession accepted, and no help will be given.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,2,116,'˹Remember˺ when Abraham was tested by his Lord with ˹certain˺ commandments, which he fulfilled. Allah said, “I will certainly make you into a role model for the people.” Abraham asked, “What about my offspring?” Allah replied, “My covenant is not extended to the wrongdoers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,2,116,'And ˹remember˺ when We made the Sacred House a centre and a sanctuary for the people ˹saying˺, “˹You may˺ take the standing-place of Abraham as a site of prayer.” And We entrusted Abraham and Ishmael to purify My House for those who circle it, who meditate in it, and who bow and prostrate themselves ˹in prayer˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,2,116,'And ˹remember˺ when Abraham said, “My Lord, make this city ˹of Mecca˺ secure and provide fruits to its people—those among them who believe in Allah and the Last Day.” He answered, “As for those who disbelieve, I will let them enjoy themselves for a little while, then I will condemn them to the torment of the Fire. What an evil destination!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,2,116,'And ˹remember˺ when Abraham raised the foundation of the House with Ishmael, ˹both praying,˺ “Our Lord! Accept ˹this˺ from us. You are indeed the All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,2,116,'Our Lord! Make us both ˹fully˺ submit to You and from our descendants a nation that will submit to you. Show us our rituals, and turn to us in grace. You are truly the Accepter of Repentance, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,2,116,'Our Lord! Raise from among them a messenger who will recite to them Your revelations, teach them the Book and wisdom, and purify them. Indeed, You ˹alone˺ are the Almighty, All-Wise.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,2,116,'And who would reject the faith of Abraham except a fool! We certainly chose him in this life, and in the Hereafter he will surely be among the righteous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,2,116,'When his Lord ordered him, “Submit ˹to My Will˺,” he responded, “I submit to the Lord of all worlds.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,2,116,'This was the advice of Abraham—as well as Jacob—to his children, ˹saying˺, “Indeed, Allah has chosen for you this faith; so do not die except in ˹a state of full˺ submission.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,2,116,'Or did you witness when death came to Jacob? He asked his children, “Who will you worship after my passing?” They replied, “We will ˹continue to˺ worship your God, the God of your forefathers—Abraham, Ishmael, and Isaac—the One God. And to Him we ˹all˺ submit.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,2,116,'That was a community that had already gone before. For them is what they earned and for you is what you have earned. And you will not be accountable for what they have done.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,2,116,'The Jews and Christians each say, “Follow our faith to be ˹rightly˺ guided.” Say, ˹O Prophet,˺ “No! We follow the faith of Abraham, the upright—who was not a polytheist.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,2,116,'Say, ˹O believers,˺ “We believe in Allah and what has been revealed to us; and what was revealed to Abraham, Ishmael, Isaac, Jacob, and his descendants; and what was given to Moses, Jesus, and other prophets from their Lord. We make no distinction between any of them. And to Allah we all submit.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,2,116,'So if they believe in what you believe, then they will indeed be ˹rightly˺ guided. But if they turn away, they are simply opposed ˹to the truth˺. But Allah will spare you their evil. For He is the All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,2,116,'This is the ˹natural˺ Way of Allah. And who is better than Allah in ordaining a way? And we worship ˹none but˺ Him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,2,116,'Say, “Would you dispute with us about Allah, while He is our Lord and your Lord? We are accountable for our deeds and you for yours. And we are devoted to Him ˹alone˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,2,116,'Do you claim that Abraham, Ishmael, Isaac, Jacob, and his descendants were all Jews or Christians?” Say, “Who is more knowledgeable: you or Allah?” Who does more wrong than those who hide the testimony they received from Allah? And Allah is never unaware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,2,116,'That was a community that had already gone before. For them is what they earned and for you is what you have earned. And you will not be accountable for what they have done.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,2,116,'The foolish among the people will ask, “Why did they turn away from the direction of prayer they used to face?” Say, ˹O Prophet,˺ “The east and west belong ˹only˺ to Allah. He guides whoever He wills to the Straight Path.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,2,116,'And so We have made you ˹believers˺ an upright community so that you may be witnesses over humanity and that the Messenger may be a witness over you. We assigned your former direction of prayer only to distinguish those who would remain faithful to the Messenger from those who would lose faith. It was certainly a difficult test except for those ˹rightly˺ guided by Allah. And Allah would never discount your ˹previous acts of˺ faith. Surely Allah is Ever Gracious and Most Merciful to humanity.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,2,116,'Indeed, We see you ˹O Prophet˺ turning your face towards heaven. Now We will make you turn towards a direction ˹of prayer˺ that will please you. So turn your face towards the Sacred Mosque ˹in Mecca˺—wherever you are, turn your faces towards it. Those who were given the Scripture certainly know this to be the truth from their Lord. And Allah is never unaware of what they do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,2,116,'Even if you were to bring every proof to the People of the Book, they would not accept your direction ˹of prayer˺, nor would you accept theirs; nor would any of them accept the direction ˹of prayer˺ of another. And if you were to follow their desires after ˹all˺ the knowledge that has come to you, then you would certainly be one of the wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,2,116,'Those We have given the Scripture recognize this ˹Prophet˺ as they recognize their own children. Yet a group of them hides the truth knowingly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,2,116,'˹This is˺ the truth from your Lord, so do not ever be one of those who doubt.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,2,116,'Everyone turns to their own direction ˹of prayer˺. So compete with one another in doing good. Wherever you are, Allah will bring you all together ˹for judgment˺. Surely Allah is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,2,116,'Wherever you are ˹O Prophet˺, turn your face towards the Sacred Mosque. This is certainly the truth from your Lord. And Allah is never unaware of what you ˹all˺ do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,2,116,'Wherever you are ˹O Prophet˺, turn your face towards the Sacred Mosque. And wherever you ˹believers˺ are, face towards it, so that people will have no argument against you, except the wrongdoers among them. Do not fear them; fear Me, so that I may ˹continue to˺ perfect My favour upon you and so you may be ˹rightly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,2,116,'Since We have sent you a messenger from among yourselves—reciting to you Our revelations, purifying you, teaching you the Book and wisdom, and teaching you what you never knew—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,2,116,'remember Me; I will remember you. And thank Me, and never be ungrateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,2,116,'O believers! Seek comfort in patience and prayer. Allah is truly with those who are patient.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,2,116,'Never say that those martyred in the cause of Allah are dead—in fact, they are alive! But you do not perceive it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,2,116,'We will certainly test you with a touch of fear and famine and loss of property, life, and crops. Give good news to those who patiently endure—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,2,116,'who, when faced with a disaster, say, “Surely to Allah we belong and to Him we will ˹all˺ return.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,2,116,'They are the ones who will receive Allah’s blessings and mercy. And it is they who are ˹rightly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,2,116,'Indeed, ˹the hills of˺ Ṣafa and Marwah are among the symbols of Allah. So whoever performs the pilgrimage or minor pilgrimage, let them walk between ˹the two hills˺. And whoever does good willingly, Allah is truly Appreciative, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,2,116,'Those who hide the clear proofs and guidance that We have revealed—after We made it clear for humanity in the Book—will be condemned by Allah and ˹all˺ those who condemn.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,2,116,'As for those who repent, mend their ways, and let the truth be known, they are the ones to whom I will turn ˹in forgiveness˺, for I am the Accepter of Repentance, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,2,116,'Surely those who disbelieve and die as disbelievers are condemned by Allah, the angels, and all of humanity.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,2,116,'They will be in Hell forever. Their punishment will not be lightened, nor will they be delayed ˹from it˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,2,116,'Your God is ˹only˺ One God. There is no god ˹worthy of worship˺ except Him—the Most Compassionate, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,2,116,'Indeed, in the creation of the heavens and the earth; the alternation of the day and the night; the ships that sail the sea for the benefit of humanity; the rain sent down by Allah from the skies, reviving the earth after its death; the scattering of all kinds of creatures throughout; the shifting of the winds; and the clouds drifting between the heavens and the earth—˹in all of this˺ are surely signs for people of understanding.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,2,116,'Still there are some who take others as Allah’s equal—they love them as they should love Allah—but the ˹true˺ believers love Allah even more. If only the wrongdoers could see the ˹horrible˺ punishment ˹awaiting them˺, they would certainly realize that all power belongs to Allah and that Allah is indeed severe in punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,2,116,'˹Consider the Day˺ when those who misled others will disown their followers—when they face the torment—and the bonds that united them will be cut off.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,2,116,'The ˹misled˺ followers will cry, “If only we could have a second chance, we would disown them as they disowned us.” And so Allah will make them remorseful of their misdeeds. And they will never ˹be able to˺ leave the Fire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,2,116,'O humanity! Eat from what is lawful and good on the earth and do not follow Satan’s footsteps. He is truly your sworn enemy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,2,116,'He only incites you to commit evil and indecency, and to claim against Allah what you do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,2,116,'When it is said to them, “Follow what Allah has revealed,” they reply, “No! We ˹only˺ follow what we found our forefathers practicing.” ˹Would they still do so,˺ even if their forefathers had ˹absolutely˺ no understanding or guidance?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,2,116,'The example of the disbelievers ˹not responding to the Messenger’s warning˺ is like a flock not comprehending the calls and cries of the shepherd. ˹They are wilfully˺ deaf, dumb and blind so they have no understanding.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,2,116,'O believers! Eat from the good things We have provided for you. And give thanks to Allah if you ˹truly˺ worship Him ˹alone˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,2,116,'He has only forbidden you ˹to eat˺ carrion, blood, swine, and what is slaughtered in the name of any other than Allah. But if someone is compelled by necessity—neither driven by desire nor exceeding immediate need—they will not be sinful. Surely Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,2,116,'Indeed, those who hide Allah’s revelations, trading them for a fleeting gain consume nothing but fire into their bellies. Allah will neither speak to them on the Day of Judgment, nor will He purify them. And they will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,2,116,'They are the ones who trade guidance for misguidance and forgiveness for punishment. How persistent are they in pursuit of the Fire!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,2,116,'That is because Allah has revealed the Book in truth. And surely those who differ regarding it are totally engrossed in opposition.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,2,116,'Righteousness is not in turning your faces towards the east or the west. Rather, the righteous are those who believe in Allah, the Last Day, the angels, the Books, and the prophets; who give charity out of their cherished wealth to relatives, orphans, the poor, ˹needy˺ travellers, beggars, and for freeing captives; who establish prayer, pay alms-tax, and keep the pledges they make; and who are patient in times of suffering, adversity, and in ˹the heat of˺ battle. It is they who are true ˹in faith˺, and it is they who are mindful ˹of Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,2,116,'O believers! ˹The law of˺ retaliation is set for you in cases of murder—a free man for a free man, a slave for a slave, and a female for a female. But if the offender is pardoned by the victim’s guardian, then blood-money should be decided fairly and payment should be made courteously. This is a concession and a mercy from your Lord. But whoever transgresses after that will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,2,116,'There is ˹security of˺ life for you in ˹the law of˺ retaliation, O people of reason, so that you may become mindful ˹of Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,2,116,'It is prescribed that when death approaches any of you—if they leave something of value—a will should be made in favour of parents and immediate family with fairness. ˹This is˺ an obligation on those who are mindful ˹of Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,2,116,'But whoever changes the will after hearing it, the blame will only be on those who made the change. Indeed, Allah is All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,2,116,'Whoever suspects an error or an injustice in the will and brings about a ˹fair˺ settlement among the parties will not be sinful. Surely Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(183,2,116,'O believers! Fasting is prescribed for you—as it was for those before you—so perhaps you will become mindful ˹of Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(184,2,116,'˹Fast a˺ prescribed number of days. But whoever of you is ill or on a journey, then ˹let them fast˺ an equal number of days ˹after Ramaḍân˺. For those who can only fast with extreme difficulty, compensation can be made by feeding a needy person ˹for every day not fasted˺. But whoever volunteers to give more, it is better for them. And to fast is better for you, if only you knew.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(185,2,116,'Ramaḍân is the month in which the Quran was revealed as a guide for humanity with clear proofs of guidance and the standard ˹to distinguish between right and wrong˺. So whoever is present this month, let them fast. But whoever is ill or on a journey, then ˹let them fast˺ an equal number of days ˹after Ramaḍân˺. Allah intends ease for you, not hardship, so that you may complete the prescribed period and proclaim the greatness of Allah for guiding you, and perhaps you will be grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(186,2,116,'When My servants ask you ˹O Prophet˺ about Me: I am truly near. I respond to one’s prayer when they call upon Me. So let them respond ˹with obedience˺ to Me and believe in Me, perhaps they will be guided ˹to the Right Way˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(187,2,116,'It has been made permissible for you to be intimate with your wives during the nights preceding the fast. Your spouses are a garment for you as you are for them. Allah knows that you were deceiving yourselves. So He has accepted your repentance and pardoned you. So now you may be intimate with them and seek what Allah has prescribed for you. ˹You may˺ eat and drink until you see the light of dawn breaking the darkness of night, then complete the fast until nightfall. Do not be intimate with your spouses while you are meditating in the mosques. These are the limits set by Allah, so do not exceed them. This is how Allah makes His revelations clear to people, so they may become mindful ˹of Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(188,2,116,'Do not consume one another’s wealth unjustly, nor deliberately bribe authorities in order to devour a portion of others’ property, knowing that it is a sin.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(189,2,116,'They ask you ˹O Prophet˺ about the phases of the moon. Say, “They are a means for people to determine time and pilgrimage.” Righteousness is not in entering your houses from the back doors. Rather, righteousness is to be mindful ˹of Allah˺. So enter your homes through their ˹proper˺ doors, and be mindful of Allah so you may be successful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(190,2,116,'Fight in the cause of Allah ˹only˺ against those who wage war against you, but do not exceed the limits. Allah does not like transgressors.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(191,2,116,'Kill them wherever you come upon them and drive them out of the places from which they have driven you out. For persecution is far worse than killing. And do not fight them at the Sacred Mosque unless they attack you there. If they do so, then fight them—that is the reward of the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(192,2,116,'But if they cease, then surely Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(193,2,116,'Fight against them ˹if they persecute you˺ until there is no more persecution, and ˹your˺ devotion will be to Allah ˹alone˺. If they stop ˹persecuting you˺, let there be no hostility except against the aggressors.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(194,2,116,'˹There will be retaliation in˺ a sacred month for ˹an offence in˺ a sacred month, and all violations will bring about retaliation. So, if anyone attacks you, retaliate in the same manner. ˹But˺ be mindful of Allah, and know that Allah is with those mindful ˹of Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(195,2,116,'Spend in the cause of Allah and do not let your own hands throw you into destruction ˹by withholding˺. And do good, for Allah certainly loves the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(196,2,116,'Complete the pilgrimage and minor pilgrimage for Allah. But if prevented ˹from proceeding˺, then ˹offer˺ whatever sacrificial animals you can afford. And do not shave your heads until the sacrificial animal reaches its destination. But if any of you is ill or has a scalp ailment ˹requiring shaving˺, then compensate either by fasting, charity, or a sacrificial offering. In times of peace, you may combine the pilgrimage and minor pilgrimage then make the sacrificial offering you can afford. Whoever cannot afford that ˹offering˺, let them fast three days during pilgrimage and seven after returning ˹home˺—completing ten. These offerings are for those who do not live near the Sacred House. And be mindful of Allah, and know that Allah is severe in punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(197,2,116,'˹Commitment to˺ pilgrimage is made in appointed months. Whoever commits to ˹performing˺ pilgrimage, let them stay away from intimate relations, foul language, and arguments during pilgrimage. Whatever good you do, Allah ˹fully˺ knows of it. Take ˹necessary˺ provisions ˹for the journey˺—surely the best provision is righteousness. And be mindful of Me, O people of reason!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(198,2,116,'There is no blame on you for seeking the bounty of your Lord ˹during this journey˺. When you return from ’Arafât, praise Allah near the sacred place and praise Him for having guided you, for surely before this ˹guidance˺ you were astray.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(199,2,116,'Then go forth with the rest of the pilgrims. And seek Allah’s forgiveness. Surely Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(200,2,116,'When you have fulfilled your sacred rites, praise Allah as you used to praise your forefathers ˹before Islam˺, or even more passionately. There are some who say, “Our Lord! Grant us ˹Your bounties˺ in this world,” but they will have no share in the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(201,2,116,'Yet there are others who say, “Our Lord! Grant us the good of this world and the Hereafter, and protect us from the torment of the Fire.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(202,2,116,'It is they who will receive a ˹heavenly˺ reward for the good they have done. Surely Allah is swift in reckoning. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(203,2,116,'And remember Allah during ˹these˺ appointed days. Whoever departs swiftly on the second day is not sinful, neither are those who stay behind ˹till the third—seeking additional reward˺, so long as they are mindful ˹of their Lord˺. And be mindful of Allah, and know that to Him you will ˹all˺ be gathered.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(204,2,116,'There are some ˹hypocrites˺ who impress you with their views regarding worldly affairs and openly call upon Allah to witness what is in their hearts, yet they are your worst adversaries.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(205,2,116,'And when they leave ˹you˺, they strive throughout the land to spread mischief in it and destroy crops and cattle. Allah does not like mischief.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(206,2,116,'When it is said to them, “Fear Allah,” pride carries them off to sin. Hell will be their proper place. What an evil place to rest!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(207,2,116,'And there are those who would dedicate their lives to Allah’s pleasure. And Allah is Ever Gracious to ˹His˺ servants.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(208,2,116,'O believers! Enter into Islam wholeheartedly and do not follow Satan’s footsteps. Surely he is your sworn enemy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(209,2,116,'If you falter after receiving the clear proofs, then know that Allah is indeed Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(210,2,116,'Are they waiting for Allah ˹Himself˺ to come to them in the shade of clouds, along with the angels? ˹If He did˺, then the matter would be settled ˹at once˺. And to Allah ˹all˺ matters will be returned ˹for judgment˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(211,2,116,'Ask the Children of Israel how many clear signs We have given them. And whoever trades Allah’s favour—after receiving it—˹for disbelief˺ should know that Allah is indeed severe in punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(212,2,116,'The life of this world has been made appealing to the disbelievers, and they mock the believers. Those who are mindful ˹of Allah˺ will rank above them on the Day of Judgment. And Allah provides for whoever He wills without limit.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(213,2,116,'Humanity had once been one community ˹of believers before they lost faith˺. Then Allah raised prophets as deliverers of good news and as warners, and revealed to them the Scriptures in truth to judge among people regarding their disputes. And no one disputed the Scriptures except the very people who received them after clear proofs had come to them—out of jealousy. Then Allah, by His grace, has guided the believers to the truth regarding those disputes. And Allah guides whoever He wills to the Straight Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(214,2,116,'Do you think you will be admitted into Paradise without being tested like those before you? They were afflicted with suffering and adversity and were so ˹violently˺ shaken that ˹even˺ the Messenger and the believers with him cried out, “When will Allah’s help come?” Indeed, Allah’s help is ˹always˺ near.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(215,2,116,'They ask you ˹O Prophet in˺ what ˹way˺ they should donate. Say, “Whatever donations you give are for parents, relatives, orphans, the poor, and ˹needy˺ travellers. Whatever good you do is certainly well known to Allah.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(216,2,116,'Fighting has been made obligatory upon you ˹believers˺, though you dislike it. Perhaps you dislike something which is good for you and like something which is bad for you. Allah knows and you do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(217,2,116,'They ask you ˹O Prophet˺ about fighting in the sacred months. Say, “Fighting during these months is a great sin. But hindering ˹others˺ from the Path of Allah, rejecting Him, and expelling the worshippers from the Sacred Mosque is ˹a˺ greater ˹sin˺ in the sight of Allah. For persecution is far worse than killing. And they will not stop fighting you until they turn you away from your faith—if they can. And whoever among you renounces their own faith and dies a disbeliever, their deeds will become void in this life and in the Hereafter. It is they who will be the residents of the Fire. They will be there forever.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(218,2,116,'Surely those who have believed, emigrated, and struggled in the Way of Allah—they can hope for Allah’s mercy. And Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(219,2,116,'They ask you ˹O Prophet˺ about intoxicants and gambling. Say, “There is great evil in both, as well as some benefit for people—but the evil outweighs the benefit.” They ˹also˺ ask you ˹O Prophet˺ what they should donate. Say, “Whatever you can spare.” This is how Allah makes His revelations clear to you ˹believers˺, so perhaps you may reflect');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(220,2,116,'upon this world and the Hereafter. And they ask you ˹O Prophet˺ concerning orphans. Say, “Improving their condition is best. And if you partner with them, they are bonded with you ˹in faith˺. And Allah knows who intends harm and who intends good. Had Allah willed, He could have made it difficult for you. Surely Allah is Almighty, All-Wise.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(221,2,116,'Do not marry polytheistic women until they believe; for a believing slave-woman is better than a free polytheist, even though she may look pleasant to you. And do not marry your women to polytheistic men until they believe, for a believing slave-man is better than a free polytheist, even though he may look pleasant to you. They invite ˹you˺ to the Fire while Allah invites ˹you˺ to Paradise and forgiveness by His grace. He makes His revelations clear to the people so perhaps they will be mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(222,2,116,'They ask you ˹O Prophet˺ about menstruation. Say, “Beware of its harm! So keep away, and do not have intercourse with your wives during their monthly cycles until they are purified. When they purify themselves, then you may approach them in the manner specified by Allah. Surely Allah loves those who always turn to Him in repentance and those who purify themselves.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(223,2,116,'Your wives are like farmland for you, so approach them ˹consensually˺ as you please. And send forth something good for yourselves. Be mindful of Allah, and know that you will meet Him. And give good news to the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(224,2,116,'Do not use Allah’s Name in your oaths as an excuse for not doing good, not guarding against evil, or not making peace between people. And Allah is All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(225,2,116,'Allah will not hold you accountable for unintentional oaths, but for what you intended in your hearts. And Allah is All-Forgiving, Most Forbearing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(226,2,116,'Those who swear not to have intercourse with their wives must wait for four months. If they change their mind, then Allah is certainly All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(227,2,116,'But if they settle on divorce, then Allah is indeed All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(228,2,116,'Divorced women must wait three monthly cycles ˹before they can re-marry˺. It is not lawful for them to conceal what Allah has created in their wombs, if they ˹truly˺ believe in Allah and the Last Day. And their husbands reserve the right to take them back within that period if they desire reconciliation. Women have rights similar to those of men equitably, although men have a degree ˹of responsibility˺ above them. And Allah is Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(229,2,116,'Divorce may be retracted twice, then the husband must retain ˹his wife˺ with honour or separate ˹from her˺ with grace. It is not lawful for husbands to take back anything of the dowry given to their wives, unless the couple fears not being able to keep within the limits of Allah. So if you fear they will not be able to keep within the limits of Allah, there is no blame if the wife compensates the husband to obtain divorce. These are the limits set by Allah, so do not transgress them. And whoever transgresses the limits of Allah, they are the ˹true˺ wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(230,2,116,'So if a husband divorces his wife ˹three times˺, then it is not lawful for him to remarry her until after she has married another man and then is divorced. Then it is permissible for them to reunite, as long as they feel they are able to maintain the limits of Allah. These are the limits set by Allah, which He makes clear for people of knowledge.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(231,2,116,'When you divorce women and they have ˹almost˺ reached the end of their waiting period, either retain them honourably or let them go honourably. But do not retain them ˹only˺ to harm them ˹or˺ to take advantage ˹of them˺. Whoever does that surely wrongs his own soul. Do not take Allah’s revelations lightly. Remember Allah’s favours upon you as well as the Book and wisdom He has sent down for your guidance. Be mindful of Allah, and know that Allah has ˹perfect˺ knowledge of all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(232,2,116,'When you have divorced women and they have reached the end of their waiting period, do not prevent them from re-marrying their ex-husbands if they come to an honourable agreement. This is enjoined on whoever has faith in Allah and the Last Day. This is purer and more dignifying for you. Allah knows and you do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(233,2,116,'˹Divorced˺ mothers will breastfeed their offspring for two whole years, for those who wish to complete the nursing ˹of their child˺. The child’s father will provide reasonable maintenance and clothing for the mother ˹during that period˺. No one will be charged with more than they can bear. No mother or father should be made to suffer for their child. The ˹father’s˺ heirs are under the same obligation. But if both sides decide—after mutual consultation and consent—to wean a child, then there is no blame on them. If you decide to have your children nursed by a wet-nurse, it is permissible as long as you pay fairly. Be mindful of Allah, and know that Allah is All-Seeing of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(234,2,116,'As for those of you who die and leave widows behind, let them observe a waiting period of four months and ten days. When they have reached the end of this period, then you are not accountable for what they decide for themselves in a reasonable manner. And Allah is All-Aware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(235,2,116,'There is no blame on you for subtly showing interest in ˹divorced or widowed˺ women or for hiding ˹the intention˺ in your hearts. Allah knows that you are considering them ˹for marriage˺. But do not make a secret commitment with them—you can only show interest in them appropriately. Do not commit to the bond of marriage until the waiting period expires. Know that Allah is aware of what is in your hearts, so beware of Him. And know that Allah is All-Forgiving, Most Forbearing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(236,2,116,'There is no blame if you divorce women before the marriage is consummated or the dowry is settled. But give them a ˹suitable˺ compensation—the rich according to his means and the poor according to his. A reasonable compensation is an obligation on the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(237,2,116,'And if you divorce them before consummating the marriage but after deciding on a dowry, pay half of the dowry, unless the wife graciously waives it or the husband graciously pays in full. Graciousness is closer to righteousness. And do not forget kindness among yourselves. Surely Allah is All-Seeing of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(238,2,116,'Observe the ˹five obligatory˺ prayers—especially the middle prayer—and stand in true devotion to Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(239,2,116,'If you are in danger, pray on foot or while riding. But when you are safe, ˹take time to˺ remember Allah for teaching you what you did not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(240,2,116,'Those of you who die leaving widows should bequeath for them a year’s maintenance without forcing them out. But if they choose to leave, you are not accountable for what they reasonably decide for themselves. And Allah is Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(241,2,116,'Reasonable provisions must be made for divorced women—a duty on those mindful ˹of Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(242,2,116,'This is how Allah makes His revelations clear to you, so perhaps you will understand.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(243,2,116,'Have you ˹O Prophet˺ not seen those who fled their homes in the thousands for fear of death? Allah said to them, “Die!” then He gave them life. Surely Allah is ever Bountiful to humanity, but most people are ungrateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(244,2,116,'Fight in the cause of Allah, and know that Allah is All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(245,2,116,'Who will lend to Allah a good loan which Allah will multiply many times over? It is Allah ˹alone˺ who decreases and increases ˹wealth˺. And to Him you will ˹all˺ be returned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(246,2,116,'Have you not seen those chiefs of the Children of Israel after Moses? They said to one of their prophets, “Appoint for us a king, ˹and˺ we will fight in the cause of Allah.” He said, “Are you not going to cower if ordered to fight?” They replied, “How could we refuse to fight in the cause of Allah, while we were driven out of our homes and ˹separated from˺ our children?” But when they were ordered to fight, they fled, except for a few of them. And Allah has ˹perfect˺ knowledge of the wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(247,2,116,'Their prophet told them, “Allah has appointed Saul to be your king.” They protested, “How can he be our king when some of us are more deserving of kingship than he, and he has not been blessed with vast riches?” He replied, “Allah has chosen him over you and blessed him with knowledge and stature. Allah grants kingship to whoever He wills. And Allah is All-Bountiful, All-Knowing.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(248,2,116,'Their prophet further told them, “The sign of Saul’s kingship is that the Ark will come to you—containing reassurance from your Lord and relics of the family of Moses and the family of Aaron, which will be carried by the angels. Surely in this is a sign for you, if you ˹truly˺ believe.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(249,2,116,'When Saul marched forth with his army, he cautioned: “Allah will test you with a river. So whoever drinks ˹his fill˺ from it is not with me, and whoever does not taste it—except a sip from the hollow of his hands—is definitely with me.” They all drank ˹their fill˺ except for a few! When he and the ˹remaining˺ faithful with him crossed the river, they said, “Now we are no match for Goliath and his warriors.” But those ˹believers˺ who were certain they would meet Allah reasoned, “How many times has a small force vanquished a mighty army by the Will of Allah! And Allah is ˹always˺ with the steadfast.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(250,2,116,'When they advanced to face Goliath and his warriors, they prayed, “Our Lord! Shower us with perseverance, make our steps firm, and give us victory over the disbelieving people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(251,2,116,'So they defeated them by Allah’s Will, and David killed Goliath. And Allah blessed David with kingship and wisdom and taught him what He willed. Had Allah not repelled a group of people by ˹the might of˺ another, corruption would have dominated the earth, but Allah is Gracious to all.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(252,2,116,'These are Allah’s revelations which We recite to you ˹O Prophet˺ in truth. And you are truly one of the messengers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(253,2,116,'We have chosen some of those messengers above others. Allah spoke directly to some, and raised some high in rank. To Jesus, son of Mary, We gave clear proofs and supported him with the holy spirit. If Allah had willed, succeeding generations would not have fought ˹among themselves˺ after receiving the clear proofs. But they differed—some believed while others disbelieved. Yet if Allah had willed, they would not have fought one another. But Allah does what He wills.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(254,2,116,'O believers! Donate from what We have provided for you before the arrival of a Day when there will be no bargaining, friendship, or intercession. Those who disbelieve are ˹truly˺ the wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(255,2,116,'Allah! There is no god ˹worthy of worship˺ except Him, the Ever-Living, All-Sustaining. Neither drowsiness nor sleep overtakes Him. To Him belongs whatever is in the heavens and whatever is on the earth. Who could possibly intercede with Him without His permission? He ˹fully˺ knows what is ahead of them and what is behind them, but no one can grasp any of His knowledge—except what He wills ˹to reveal˺. His Seat encompasses the heavens and the earth, and the preservation of both does not tire Him. For He is the Most High, the Greatest. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(256,2,116,'Let there be no compulsion in religion, for the truth stands out clearly from falsehood. So whoever renounces false gods and believes in Allah has certainly grasped the firmest, unfailing hand-hold. And Allah is All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(257,2,116,'Allah is the Guardian of the believers—He brings them out of darkness and into light. As for the disbelievers, their guardians are false gods who lead them out of light and into darkness. It is they who will be the residents of the Fire. They will be there forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(258,2,116,'Are you ˹O Prophet˺ not aware of the one who argued with Abraham about his Lord because Allah had granted him kingship? ˹Remember˺ when Abraham said, “My Lord is the One Who has power to give life and cause death.” He argued, “I too have the power to give life and cause death.” Abraham challenged ˹him˺, “Allah causes the sun to rise from the east. So make it rise from the west.” And so the disbeliever was dumbstruck. And Allah does not guide the wrongdoing people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(259,2,116,'Or ˹are you not aware of˺ the one who passed by a city which was in ruins. He wondered, “How could Allah bring this back to life after its destruction?” So Allah caused him to die for a hundred years then brought him back to life. Allah asked, “How long have you remained ˹in this state˺?” He replied, “Perhaps a day or part of a day.” Allah said, “No! You have remained here for a hundred years! Just look at your food and drink—they have not spoiled. ˹But now˺ look at ˹the remains of˺ your donkey! And ˹so˺ We have made you into a sign for humanity. And look at the bones ˹of the donkey˺, how We bring them together then clothe them with flesh!” When this was made clear to him, he declared, “˹Now˺ I know that Allah is Most Capable of everything.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(260,2,116,'And ˹remember˺ when Abraham said, “My Lord! Show me how you give life to the dead.” Allah responded, “Do you not believe?” Abraham replied, “Yes I do, but just so my heart can be reassured.” Allah said, “Then bring four birds, train them to come to you, ˹then cut them into pieces,˺ and scatter them on different hilltops. Then call them back, they will fly to you in haste. And ˹so you will˺ know that Allah is Almighty, All-Wise.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(261,2,116,'The example of those who spend their wealth in the cause of Allah is that of a grain that sprouts into seven ears, each bearing one hundred grains. And Allah multiplies ˹the reward even more˺ to whoever He wills. For Allah is All-Bountiful, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(262,2,116,'Those who spend their wealth in the cause of Allah and do not follow their charity with reminders of their generosity or hurtful words—they will get their reward from their Lord, and there will be no fear for them, nor will they grieve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(263,2,116,'Kind words and forgiveness are better than charity followed by injury. And Allah is Self-Sufficient, Most Forbearing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(264,2,116,'O believers! Do not waste your charity with reminders ˹of your generosity˺ or hurtful words, like those who donate their wealth just to show off and do not believe in Allah or the Last Day. Their example is that of a hard barren rock covered with a thin layer of soil hit by a strong rain—leaving it just a bare stone. Such people are unable to preserve the reward of their charity. Allah does not guide ˹such˺ disbelieving people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(265,2,116,'And the example of those who donate their wealth, seeking Allah’s pleasure and believing the reward is certain, is that of a garden on a fertile hill: when heavy rain falls, it yields up twice its normal produce. If no heavy rain falls, a drizzle is sufficient. And Allah is All-Seeing of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(266,2,116,'Would any of you wish to have a garden with palm trees, grapevines, and all kinds of fruits with rivers flowing underneath and as they grow very old with dependent children, a fiery whirlwind hits the garden, burning it all up? This is how Allah makes His revelations clear to you, so perhaps you will reflect.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(267,2,116,'O believers! Donate from the best of what you have earned and of what We have produced for you from the earth. Do not pick out worthless things for donation, which you yourselves would only accept with closed eyes. And know that Allah is Self-Sufficient, Praiseworthy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(268,2,116,'The Devil threatens you with ˹the prospect of˺ poverty and bids you to the shameful deed ˹of stinginess˺, while Allah promises you forgiveness and ˹great˺ bounties from Him. And Allah is All-Bountiful, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(269,2,116,'Allah grants wisdom to whoever He wills. And whoever is granted wisdom is certainly blessed with a great privilege. But none will be mindful ˹of this˺ except people of reason.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(270,2,116,'Whatever charities you give or vows you make are surely known to Allah. And the wrongdoers will have no helpers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(271,2,116,'To give charity publicly is good, but to give to the poor privately is better for you, and will absolve you of your sins. And Allah is All-Aware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(272,2,116,'You are not responsible for people’s guidance ˹O Prophet˺—it is Allah Who guides whoever He wills. Whatever you ˹believers˺ spend in charity, it is for your own good—as long as you do so seeking the pleasure of Allah. Whatever you donate will be paid back to you in full, and you will not be wronged.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(273,2,116,'˹Charity is˺ for the needy who are too engaged in the cause of Allah to move about in the land ˹for work˺. Those unfamiliar with their situation will think they are not in need ˹of charity˺ because they do not beg. You can recognize them by their appearance. They do not beg people persistently. Whatever you give in charity is certainly well known to Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(274,2,116,'Those who spend their wealth in charity day and night, secretly and openly—their reward is with their Lord, and there will be no fear for them, nor will they grieve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(275,2,116,'Those who consume interest will stand ˹on Judgment Day˺ like those driven to madness by Satan’s touch. That is because they say, “Trade is no different than interest.” But Allah has permitted trading and forbidden interest. Whoever refrains—after having received warning from their Lord—may keep their previous gains, and their case is left to Allah. As for those who persist, it is they who will be the residents of the Fire. They will be there forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(276,2,116,'Allah has made interest fruitless and charity fruitful. And Allah does not like any ungrateful evildoer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(277,2,116,'Indeed, those who believe, do good, establish prayer, and pay alms-tax will receive their reward from their Lord, and there will be no fear for them, nor will they grieve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(278,2,116,'O believers! Fear Allah, and give up outstanding interest if you are ˹true˺ believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(279,2,116,'If you do not, then beware of a war with Allah and His Messenger! But if you repent, you may retain your principal—neither inflicting nor suffering harm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(280,2,116,'If it is difficult for someone to repay a debt, postpone it until a time of ease. And if you waive it as an act of charity, it will be better for you, if only you knew.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(281,2,116,'Be mindful of the Day when you will ˹all˺ be returned to Allah, then every soul will be paid in full for what it has done, and none will be wronged.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(282,2,116,'O believers! When you contract a loan for a fixed period of time, commit it to writing. Let the scribe maintain justice between the parties. The scribe should not refuse to write as Allah has taught them to write. They will write what the debtor dictates, bearing Allah in mind and not defrauding the debt. If the debtor is incompetent, weak, or unable to dictate, let their guardian dictate for them with justice. Call upon two of your men to witness. If two men cannot be found, then one man and two women of your choice will witness—so if one of the women forgets the other may remind her. The witnesses must not refuse when they are summoned. You must not be against writing ˹contracts˺ for a fixed period—whether the sum is small or great. This is more just ˹for you˺ in the sight of Allah, and more convenient to establish evidence and remove doubts. However, if you conduct an immediate transaction among yourselves, then there is no need for you to record it, but call upon witnesses when a deal is finalized. Let no harm come to the scribe or witnesses. If you do, then you have gravely exceeded ˹your limits˺. Be mindful of Allah, for Allah ˹is the One Who˺ teaches you. And Allah has ˹perfect˺ knowledge of all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(283,2,116,'If you are on a journey and a scribe cannot be found, then a security can be taken. If you trust one another, then ˹there is no need for a security, but˺ the debtor should honour this trust ˹by repaying the debt˺—and let them fear Allah, their Lord. And do not conceal the testimony, for whoever conceals it, their hearts are indeed sinful. And Allah ˹fully˺ knows what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(284,2,116,'To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. Whether you reveal what is in your hearts or conceal it, Allah will call you to account for it. He forgives whoever He wills, and punishes whoever He wills. And Allah is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(285,2,116,'The Messenger ˹firmly˺ believes in what has been revealed to him from his Lord, and so do the believers. They ˹all˺ believe in Allah, His angels, His Books, and His messengers. ˹They proclaim,˺ “We make no distinction between any of His messengers.” And they say, “We hear and obey. ˹We seek˺ Your forgiveness, our Lord! And to You ˹alone˺ is the final return.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(286,2,116,'Allah does not require of any soul more than what it can afford. All good will be for its own benefit, and all evil will be to its own loss. ˹The believers pray,˺ “Our Lord! Do not punish us if we forget or make a mistake. Our Lord! Do not place a burden on us like the one you placed on those before us. Our Lord! Do not burden us with what we cannot bear. Pardon us, forgive us, and have mercy on us. You are our ˹only˺ Guardian. So grant us victory over the disbelieving people.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(117,3,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,117,'Alif-Lãm-Mĩm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,117,'Allah! There is no god ˹worthy of worship˺ except Him—the Ever-Living, All-Sustaining.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,117,'He has revealed to you ˹O Prophet˺ the Book in truth, confirming what came before it, as He revealed the Torah and the Gospel');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,117,'previously, as a guide for people, and ˹also˺ revealed the Standard ˹to distinguish between right and wrong˺. Surely those who reject Allah’s revelations will suffer a severe torment. For Allah is Almighty, capable of punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,117,'Surely nothing on earth or in the heavens is hidden from Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,117,'He is the One Who shapes you in the wombs of your mothers as He wills. There is no god ˹worthy of worship˺ except Him—the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,117,'He is the One Who has revealed to you ˹O Prophet˺ the Book, of which some verses are precise—they are the foundation of the Book—while others are elusive. Those with deviant hearts follow the elusive verses seeking ˹to spread˺ doubt through their ˹false˺ interpretations—but none grasps their ˹full˺ meaning except Allah. As for those well-grounded in knowledge, they say, “We believe in this ˹Quran˺—it is all from our Lord.” But none will be mindful ˹of this˺ except people of reason.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,117,'˹They say,˺ “Our Lord! Do not let our hearts deviate after you have guided us. Grant us Your mercy. You are indeed the Giver ˹of all bounties˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,117,'Our Lord! You will certainly gather all humanity for the ˹promised˺ Day—about which there is no doubt. Surely Allah does not break His promise.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,117,'Indeed, neither the wealth nor children of the disbelievers will be of any benefit to them against Allah—and they will be the fuel for the Fire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,117,'Their fate will be like that of the people of Pharaoh and those before them—they all rejected Our signs, so Allah seized them for their sins. And Allah is severe in punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,117,'˹O Prophet!˺ Tell the disbelievers, “Soon you will be overpowered and driven to Hell—what an evil place to rest!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,117,'Indeed, there was a sign for you in the two armies that met in battle—one fighting for the cause of Allah and the other in denial. The believers saw their enemy twice their number. But Allah supports with His victory whoever He wills. Surely in this is a lesson for people of insight.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,117,'The enjoyment of ˹worldly˺ desires—women, children, treasures of gold and silver, fine horses, cattle, and fertile land—has been made appealing to people. These are the pleasures of this worldly life, but with Allah is the finest destination.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,117,'Say, ˹O Prophet,˺ “Shall I inform you of what is better than ˹all of˺ this? Those mindful ˹of Allah˺ will have Gardens with their Lord under which rivers flow, to stay there forever, and pure spouses, along with Allah’s pleasure.” And Allah is All-Seeing of ˹His˺ servants,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,117,'who pray, “Our Lord! We have believed, so forgive our sins and protect us from the torment of the Fire.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,117,'˹It is they˺ who are patient, sincere, obedient, and charitable, and who pray for forgiveness before dawn. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,117,'Allah ˹Himself˺ is a Witness that there is no god ˹worthy of worship˺ except Him—and so are the angels and people of knowledge. He is the Maintainer of justice. There is no god ˹worthy of worship˺ except Him—the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,117,'Certainly, Allah’s only Way is Islam. Those who were given the Scripture did not dispute ˹among themselves˺ out of mutual envy until knowledge came to them. Whoever denies Allah’s signs, then surely Allah is swift in reckoning.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,117,'So if they argue with you ˹O Prophet˺, say, “I have submitted myself to Allah, and so have my followers.” And ask those who were given the Scripture and the illiterate ˹people˺, “Have you submitted yourselves ˹to Allah˺?” If they submit, they will be ˹rightly˺ guided. But if they turn away, then your duty is only to deliver ˹the message˺. And Allah is All-Seeing of ˹His˺ servants.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,117,'Indeed, those who deny Allah’s signs, kill the prophets unjustly, and kill people who stand up for justice—give them good news of a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,117,'They are the ones whose deeds are wasted in this world and the Hereafter. And they will have no helpers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,117,'Have you not seen those who were given a portion of the Scriptures? Yet when they are invited to the Book of Allah to settle their disputes, some of them turn away heedlessly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,117,'This is because they say, “The Fire will not touch us except for a few days.” They have been deceived in their faith by their wishful lying.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,117,'But how ˹horrible˺ will it be when We gather them together on the Day about which there is no doubt—when every soul will be paid in full for what it has done, and none will be wronged!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,117,'Say, ˹O Prophet,˺ “O Allah! Lord over all authorities! You give authority to whoever You please and remove it from who You please; You honour whoever You please and disgrace who You please—all good is in Your Hands. Surely You ˹alone˺ are Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,117,'You cause the night to pass into the day and the day into the night. You bring forth the living from the dead and the dead from the living. And You provide for whoever You will without limit.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,117,'Believers should not take disbelievers as guardians instead of the believers—and whoever does so will have nothing to hope for from Allah—unless it is a precaution against their tyranny. And Allah warns you about Himself. And to Allah is the final return.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,117,'Say, ˹O Prophet,˺ “Whether you conceal what is in your hearts or reveal it, it is known to Allah. For He knows whatever is in the heavens and whatever is on the earth. And Allah is Most Capable of everything.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,117,'˹Watch for˺ the Day when every soul will be presented with whatever good it has done. And it will wish that its misdeeds were far off. And Allah warns you about Himself. And Allah is Ever Gracious to ˹His˺ servants.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,117,'Say, ˹O Prophet,˺ “If you ˹sincerely˺ love Allah, then follow me; Allah will love you and forgive your sins. For Allah is All-Forgiving, Most Merciful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,117,'Say, ˹O Prophet,˺ “Obey Allah and His Messenger.” If they still turn away, then truly Allah does not like the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,117,'Indeed, Allah chose Adam, Noah, the family of Abraham, and the family of ’Imrân above all people ˹of their time˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,117,'They are descendants of one another. And Allah is All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,117,'˹Remember˺ when the wife of ’Imrân said, “My Lord! I dedicate what is in my womb entirely to Your service, so accept it from me. You ˹alone˺ are truly the All-Hearing, All-Knowing.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,117,'When she delivered, she said, “My Lord! I have given birth to a girl,”—and Allah fully knew what she had delivered—“and the male is not like the female. I have named her Mary, and I seek Your protection for her and her offspring from Satan, the accursed.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,117,'So her Lord accepted her graciously and blessed her with a pleasant upbringing—entrusting her to the care of Zachariah. Whenever Zachariah visited her in the sanctuary, he found her supplied with provisions. He exclaimed, “O Mary! Where did this come from?” She replied, “It is from Allah. Surely Allah provides for whoever He wills without limit.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,117,'Then and there Zachariah prayed to his Lord, saying, “My Lord! Grant me—by your grace—righteous offspring. You are certainly the Hearer of ˹all˺ prayers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,117,'So the angels called out to him while he stood praying in the sanctuary, “Allah gives you good news of ˹the birth of˺ John who will confirm the Word of Allah and will be a great leader, chaste, and a prophet among the righteous.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,117,'Zachariah exclaimed, “My Lord! How can I have a son when I am very old and my wife is barren?” He replied, “So will it be. Allah does what He wills.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,117,'Zachariah said, “My Lord! Grant me a sign.” He said, “Your sign is that you will not ˹be able to˺ speak to people for three days except through gestures. Remember your Lord often and glorify ˹Him˺ morning and evening.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,117,'And ˹remember˺ when the angels said, “O Mary! Surely Allah has selected you, purified you, and chosen you over all women of the world.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,117,'O Mary! Be devout to your Lord, prostrate yourself ˹in prayer˺ and bow along with those who bow down.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,117,'This is news of the unseen that We reveal to you ˹O Prophet˺. You were not with them when they cast lots to decide who would be Mary’s guardian, nor were you there when they argued ˹about it˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,117,'˹Remember˺ when the angels proclaimed, “O Mary! Allah gives you good news of a Word from Him, his name will be the Messiah, Jesus, son of Mary; honoured in this world and the Hereafter, and he will be one of those nearest ˹to Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,117,'And he will speak to people in ˹his˺ infancy and adulthood and will be one of the righteous.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,117,'Mary wondered, “My Lord! How can I have a child when no man has ever touched me?” An angel replied, “So will it be. Allah creates what He wills. When He decrees a matter, He simply tells it, ‘Be!’ And it is!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,117,'And Allah will teach him writing and wisdom, the Torah and the Gospel,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,117,'and ˹make him˺ a messenger to the Children of Israel ˹to proclaim,˺ ‘I have come to you with a sign from your Lord: I will make for you a bird from clay, breathe into it, and it will become a ˹real˺ bird—by Allah’s Will. I will heal the blind and the leper and raise the dead to life—by Allah’s Will. And I will prophesize what you eat and store in your houses. Surely in this is a sign for you if you ˹truly˺ believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,117,'And I will confirm the Torah revealed before me and legalize some of what had been forbidden to you. I have come to you with a sign from your Lord, so be mindful of Allah and obey me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,117,'Surely Allah is my Lord and your Lord. So worship Him ˹alone˺. This is the Straight Path.’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,117,'When Jesus sensed disbelief from his people, he asked, “Who will stand up with me for Allah?” The disciples replied, “We will stand up for Allah. We believe in Allah, so bear witness that we have submitted.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,117,'˹They prayed to Allah,˺ “Our Lord! We believe in Your revelations and follow the messenger, so count us among those who bear witness.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,117,'And the disbelievers made a plan ˹against Jesus˺, but Allah also planned—and Allah is the best of planners.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,117,'˹Remember˺ when Allah said, “O Jesus! I will take you and raise you up to Myself. I will deliver you from those who disbelieve, and elevate your followers above the disbelievers until the Day of Judgment. Then to Me you will ˹all˺ return, and I will settle all your disputes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,117,'As for those who disbelieve, I will subject them to a severe punishment in this life and the Hereafter, and they will have no helpers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,117,'And as for those who believe and do good, they will be rewarded in full. And Allah does not like the wrongdoers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,117,'We recite ˹all˺ this to you ˹O Prophet˺ as one of the signs and ˹as˺ a wise reminder.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,117,'Indeed, the example of Jesus in the sight of Allah is like that of Adam. He created him from dust, then said to him, “Be!” And he was!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,117,'This is the truth from your Lord, so do not be one of those who doubt.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,117,'Now, whoever disputes with you ˹O Prophet˺ concerning Jesus after full knowledge has come to you, say, “Come! Let us gather our children and your children, our women and your women, ourselves and yourselves—then let us sincerely invoke Allah’s curse upon the liars.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,117,'Certainly, this is the true narrative, and there is no god ˹worthy of worship˺ except Allah. And indeed, Allah ˹alone˺ is the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,117,'If they turn away, then surely Allah has ˹perfect˺ knowledge of the corruptors.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,117,'Say, ˹O Prophet,˺ “O People of the Book! Let us come to common terms: that we will worship none but Allah, associate none with Him, nor take one another as lords instead of Allah.” But if they turn away, then say, “Bear witness that we have submitted ˹to Allah alone˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,117,'O People of the Book! Why do you argue about Abraham, while the Torah and the Gospel were not revealed until long after him? Do you not understand?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,117,'Here you are! You disputed about what you have ˹little˺ knowledge of, but why do you now argue about what you have no knowledge of? Allah knows and you do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,117,'Abraham was neither a Jew nor a Christian; he submitted in all uprightness and was not a polytheist.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,117,'Indeed, those who have the best claim to Abraham are his followers, this Prophet, and the believers. And Allah is the Guardian of those who believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,117,'Some of the People of the Book wish to mislead you ˹believers˺. They mislead none but themselves, yet they fail to perceive it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,117,'O People of the Book! Why do you reject the signs of Allah while you bear witness ˹to their truth˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,117,'O People of the Book! Why do you mix the truth with falsehood and hide the truth knowingly?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,117,'A group among the People of the Book said ˹to one another˺, “Believe in what has been revealed to the believers in the morning and reject it in the evening, so they may abandon their faith.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,117,'And only believe those who follow your religion.” Say, ˹O Prophet,˺ “Surely, ˹the only˺ true guidance is Allah’s guidance.” ˹They also said,˺ “Do not believe that someone will receive ˹revealed˺ knowledge similar to yours or argue against you before your Lord.” Say, ˹O Prophet,˺ “Indeed, all bounty is in the Hands of Allah—He grants it to whoever He wills. And Allah is All-Bountiful, All-Knowing.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,117,'He chooses whoever He wills to receive His mercy. And Allah is the Lord of infinite bounty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,117,'There are some among the People of the Book who, if entrusted with a stack of gold, will readily return it. Yet there are others who, if entrusted with a single coin, will not repay it unless you constantly demand it. This is because they say, “We are not accountable for ˹exploiting˺ the Gentiles.” And ˹so˺ they attribute lies to Allah knowingly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,117,'Absolutely! Those who honour their trusts and shun evil—surely Allah loves those who are mindful ˹of Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,117,'Indeed, those who trade Allah’s covenant and their oaths for a fleeting gain will have no share in the Hereafter. Allah will neither speak to them, nor look at them, nor purify them on the Day of Judgment. And they will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,117,'There are some among them who distort the Book with their tongues to make you think this ˹distortion˺ is from the Book—but it is not what the Book says. They say, “It is from Allah”—but it is not from Allah. And ˹so˺ they attribute lies to Allah knowingly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,117,'It is not appropriate for someone who Allah has blessed with the Scripture, wisdom, and prophethood to say to people, “Worship me instead of Allah.” Rather, he would say, “Be devoted to the worship of your Lord ˹alone˺”—in accordance with what these prophets read in the Scripture and what they taught.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,117,'And he would never ask you to take angels and prophets as lords. Would he ask you to disbelieve after you have submitted?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,117,'˹Remember˺ when Allah made a covenant with the prophets, ˹saying,˺ “Now that I have given you the Book and wisdom, if there comes to you a messenger confirming what you have, you must believe in him and support him.” He added, “Do you affirm this covenant and accept this commitment?” They said, “Yes, we do.” Allah said, “Then bear witness, and I too am a Witness.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,117,'Whoever turns back after this, they will be the rebellious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,117,'Do they desire a way other than Allah’s—knowing that all those in the heavens and the earth submit to His Will, willingly or unwillingly, and to Him they will ˹all˺ be returned?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,117,'Say, ˹O Prophet,˺ “We believe in Allah and what has been revealed to us and what was revealed to Abraham, Ishmael, Isaac, Jacob, and his descendants; and what was given to Moses, Jesus, and other prophets from their Lord—we make no distinction between any of them, and to Him we ˹fully˺ submit.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,117,'Whoever seeks a way other than Islam, it will never be accepted from them, and in the Hereafter they will be among the losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,117,'How will Allah guide a people who chose to disbelieve after they had believed, acknowledged the Messenger to be true, and received clear proofs? For Allah does not guide the wrongdoing people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,117,'Their reward is that they will be condemned by Allah, the angels, and all of humanity.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,117,'They will be in Hell forever. Their punishment will not be lightened, nor will they be delayed ˹from it˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,117,'As for those who repent afterwards and mend their ways, then surely Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,117,'Indeed, those who disbelieve after having believed then increase in disbelief, their repentance will never be accepted. It is they who are astray.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,117,'Indeed, if each of those who disbelieve then die as disbelievers were to offer a ransom of enough gold to fill the whole world, it would never be accepted from them. It is they who will suffer a painful punishment, and they will have no helpers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,117,'You will never achieve righteousness until you donate some of what you cherish. And whatever you give is certainly well known to Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,117,'All food was lawful for the children of Israel, except what Israel made unlawful for himself before the Torah was revealed. Say, ˹O Prophet,˺ “Bring the Torah and read it, if your claims are true.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,117,'Then whoever still fabricates lies about Allah, they will be the ˹true˺ wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,117,'Say, ˹O Prophet,˺ “Allah has declared the truth. So follow the Way of Abraham, the upright—who was not a polytheist.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,117,'Surely the first House ˹of worship˺ established for humanity is the one at Bakkah—a blessed sanctuary and a guide for ˹all˺ people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,117,'In it are clear signs and the standing-place of Abraham. Whoever enters it should be safe. Pilgrimage to this House is an obligation by Allah upon whoever is able among the people. And whoever disbelieves, then surely Allah is not in need of ˹any of His˺ creation.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,117,'Say, ˹O Prophet,˺ “O People of the Book! Why do you deny the revelations of Allah, when Allah is a Witness to what you do?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,117,'Say, “O People of the Book! Why do you turn the believers away from the Way of Allah—striving to make it ˹appear˺ crooked, while you are witnesses ˹to its truth˺? And Allah is never unaware of what you do.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,2,117,'O believers! If you were to yield to a group of those who were given the Scripture, they would turn you back from belief to disbelief.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,2,117,'How can you disbelieve when Allah’s revelations are recited to you and His Messenger is in your midst? Whoever holds firmly to Allah is surely guided to the Straight Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,2,117,'O believers! Be mindful of Allah in the way He deserves, and do not die except in ˹a state of full˺ submission ˹to Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,2,117,'And hold firmly to the rope of Allah and do not be divided. Remember Allah’s favour upon you when you were enemies, then He united your hearts, so you—by His grace—became brothers. And you were at the brink of a fiery pit and He saved you from it. This is how Allah makes His revelations clear to you, so that you may be ˹rightly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,2,117,'Let there be a group among you who call ˹others˺ to goodness, encourage what is good, and forbid what is evil—it is they who will be successful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,2,117,'And do not be like those who split ˹into sects˺ and differed after clear proofs had come to them. It is they who will suffer a tremendous punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,2,117,'On that Day some faces will be bright while others gloomy. To the gloomy-faced it will be said, “Did you disbelieve after having believed? So taste the punishment for your disbelief.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,2,117,'As for the bright-faced, they will be in Allah’s mercy, where they will remain forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,2,117,'These are Allah’s revelations We recite to you ˹O Prophet˺ in truth. And Allah desires no injustice to ˹His˺ creation.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,2,117,'To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. And to Allah ˹all˺ matters will be returned ˹for judgment˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,2,117,'You are the best community ever raised for humanity—you encourage good, forbid evil, and believe in Allah. Had the People of the Book believed, it would have been better for them. Some of them are faithful, but most are rebellious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,2,117,'They can never inflict harm on you, except a little annoyance. But if they meet you in battle, they will flee and they will have no helpers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,2,117,'They will be stricken with disgrace wherever they go, unless they are protected by a covenant with Allah or a treaty with the people. They have invited the displeasure of Allah and have been branded with misery for rejecting Allah’s revelations and murdering ˹His˺ prophets unjustly. This is ˹a fair reward˺ for their disobedience and violations.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,2,117,'Yet they are not all alike: there are some among the People of the Book who are upright, who recite Allah’s revelations throughout the night, prostrating ˹in prayer˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,2,117,'They believe in Allah and the Last Day, encourage good and forbid evil, and race with one another in doing good. They are ˹truly˺ among the righteous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,2,117,'They will never be denied the reward for any good they have done. And Allah has ˹perfect˺ knowledge of those mindful ˹of Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,2,117,'Indeed, neither the wealth nor children of the disbelievers will be of any benefit to them against Allah. It is they who will be the residents of the Fire. They will be there forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,2,117,'The good they do in this worldly life is like the harvest of an evil people struck by a bitter wind, destroying it ˹completely˺. Allah never wronged them, but they wronged themselves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,2,117,'O believers! Do not associate closely with others who would not miss a chance to harm you. Their only desire is to see you suffer. Their prejudice has become evident from what they say—and what their hearts hide is far worse. We have made Our revelations clear to you, if only you understood.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,2,117,'Here you are! You love them but they do not love you, and you believe in all Scriptures. When they meet you they say, “We believe.” But when alone, they bite their fingertips in rage. Say, ˹O Prophet,˺ “˹May you˺ die of your rage!” Surely Allah knows best what is ˹hidden˺ in the heart.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,2,117,'When you ˹believers˺ are touched with good, they grieve; but when you are afflicted with evil, they rejoice. ˹Yet,˺ if you are patient and mindful ˹of Allah˺, their schemes will not harm you in the least. Surely Allah is Fully Aware of what they do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,2,117,'˹Remember, O Prophet,˺ when you left your home in the early morning to position the believers in the battlefield. And Allah is All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,2,117,'˹Remember˺ when two groups among you ˹believers˺ were about to cower, then Allah reassured them. So in Allah let the believers put their trust.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,2,117,'Indeed, Allah made you victorious at Badr when you were ˹vastly˺ outnumbered. So be mindful of Allah, perhaps you will be grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,2,117,'˹Remember, O Prophet,˺ when you said to the believers, “Is it not enough that your Lord will send down a reinforcement of three thousand angels for your aid?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,2,117,'Most certainly, if you ˹believers˺ are firm and mindful ˹of Allah˺ and the enemy launches a sudden attack on you, Allah will reinforce you with five thousand angels designated ˹for battle˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,2,117,'Allah ordained this ˹reinforcement˺ only as good news for you and reassurance for your hearts. And victory comes only from Allah—the Almighty, All-Wise—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,2,117,'to destroy a group of the disbelievers and humble the rest, causing them to withdraw in disappointment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,2,117,'You ˹O Prophet˺ have no say in the matter. It is up to Allah to turn to them in mercy or punish them, for indeed they are wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,2,117,'To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. He forgives whoever He wills, and punishes whoever He wills. And Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,2,117,'O believers! Do not consume interest, multiplying it many times over. And be mindful of Allah, so you may prosper.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,2,117,'Guard yourselves against the Fire prepared for the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,2,117,'Obey Allah and the Messenger, so you may be shown mercy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,2,117,'And hasten towards forgiveness from your Lord and a Paradise as vast as the heavens and the earth, prepared for those mindful ˹of Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,2,117,'˹They are˺ those who donate in prosperity and adversity, control their anger, and pardon others. And Allah loves the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,2,117,'˹They are˺ those who, upon committing an evil deed or wronging themselves, remember Allah and seek forgiveness and do not knowingly persist in sin—and who forgives sins except Allah?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,2,117,'Their reward is forgiveness from their Lord and Gardens under which rivers flow, staying there forever. How excellent is the reward for those who work ˹righteousness˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,2,117,'Similar situations came to pass before you, so travel throughout the land and see the fate of the deniers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,2,117,'This is an insight to humanity—a guide and a lesson to the God-fearing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,2,117,'Do not falter or grieve, for you will have the upper hand, if you are ˹true˺ believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,2,117,'If you have suffered injuries ˹at Uḥud˺, they suffered similarly ˹at Badr˺. We alternate these days ˹of victory and defeat˺ among people so that Allah may reveal the ˹true˺ believers, choose martyrs from among you—and Allah does not like the wrongdoers—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,2,117,'and distinguish the ˹true˺ believers and destroy the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,2,117,'Do you think you will enter Paradise without Allah proving which of you ˹truly˺ struggled ˹for His cause˺ and patiently endured?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,2,117,'You certainly wished ˹for the opportunity˺ for martyrdom before encountering it, now you have seen it with your own eyes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,2,117,'Muḥammad is no more than a messenger; other messengers have gone before him. If he were to die or to be killed, would you regress into disbelief? Those who do so will not harm Allah whatsoever. And Allah will reward those who are grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,2,117,'No soul can ever die without Allah’s Will at the destined time. Those who desire worldly gain, We will let them have it, and those who desire heavenly reward, We will grant it to them. And We will reward those who are grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,2,117,'˹Imagine˺ how many devotees fought along with their prophets and never faltered despite whatever ˹losses˺ they suffered in the cause of Allah, nor did they weaken or give in! Allah loves those who persevere.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,2,117,'And all they said was, “Our Lord! Forgive our sins and excesses, make our steps firm, and grant us victory over the disbelieving people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,2,117,'So Allah gave them the reward of this world and the excellent reward of the Hereafter. For Allah loves the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,2,117,'O believers! If you yield to the disbelievers, they will drag you back to disbelief—and you will become losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,2,117,'But no! Allah is your Guardian, and He is the best Helper.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,2,117,'We will cast horror into the hearts of the disbelievers for associating ˹false gods˺ with Allah—a practice He has never authorized. The Fire will be their home—what an evil place for the wrongdoers to stay!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,2,117,'Indeed, Allah fulfilled His promise to you when you ˹initially˺ swept them away by His Will, then your courage weakened and you disputed about the command and disobeyed, after Allah had brought victory within your reach. Some of you were after worldly gain while others desired a heavenly reward. He denied you victory over them as a test, yet He has pardoned you. And Allah is Gracious to the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,2,117,'˹Remember˺ when you were running far away ˹in panic˺—not looking at anyone—while the Messenger was calling to you from behind! So Allah rewarded your disobedience with distress upon distress. Now, do not grieve over the victory you were denied or the injury you suffered. And Allah is All-Aware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,2,117,'Then after distress, He sent down serenity in the form of drowsiness overcoming some of you, while others were disturbed by evil thoughts about Allah—the thoughts of ˹pre-Islamic˺ ignorance. They ask, “Do we have a say in the matter?” Say, ˹O Prophet,˺ “All matters are destined by Allah.” They conceal in their hearts what they do not reveal to you. They say ˹to themselves˺, “If we had any say in the matter, none of us would have come to die here.” Say, ˹O Prophet,˺ “Even if you were to remain in your homes, those among you who were destined to be killed would have met the same fate.” Through this, Allah tests what is within you and purifies what is in your hearts. And Allah knows best what is ˹hidden˺ in the heart.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,2,117,'Indeed, those ˹believers˺ who fled on the day when the two armies met were made to slip by Satan because of their misdeeds. But Allah has pardoned them. Surely Allah is All-Forgiving, Most Forbearing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,2,117,'O believers! Do not be like the unfaithful who say about their brothers who travel throughout the land or engage in battle, “If they had stayed with us, they would not have died or been killed.” Allah makes such thinking a cause of agony in their hearts. It is Allah who gives life and causes death. And Allah is All-Seeing of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,2,117,'Should you be martyred or die in the cause of Allah, then His forgiveness and mercy are far better than whatever ˹wealth˺ those ˹who stay behind˺ accumulate.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,2,117,'Whether you die or are martyred—all of you will be gathered before Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,2,117,'It is out of Allah’s mercy that you ˹O Prophet˺ have been lenient with them. Had you been cruel or hard-hearted, they would have certainly abandoned you. So pardon them, ask Allah’s forgiveness for them, and consult with them in ˹conducting˺ matters. Once you make a decision, put your trust in Allah. Surely Allah loves those who trust in Him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,2,117,'If Allah helps you, none can defeat you. But if He denies you help, then who else can help you? So in Allah let the believers put their trust.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,2,117,'It is not appropriate for a prophet to illegally withhold spoils of war. And whoever does so, it will be held against them on the Day of Judgment. Then every soul will be paid in full for what it has done, and none will be wronged.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,2,117,'Are those who seek Allah’s pleasure like those who deserve Allah’s wrath? Hell is their home. What an evil destination!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,2,117,'They ˹each˺ have varying degrees in the sight of Allah. And Allah is All-Seeing of what they do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,2,117,'Indeed, Allah has done the believers a ˹great˺ favour by raising a messenger from among them—reciting to them His revelations, purifying them, and teaching them the Book and wisdom. For indeed they had previously been clearly astray.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,2,117,'Why is it when you suffered casualties ˹at Uḥud˺—although you had made your enemy suffer twice as much ˹at Badr˺—you protested, “How could this be?”? Say, ˹O Prophet,˺ “It is because of your disobedience.” Surely Allah is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,2,117,'So what you suffered on the day the two armies met was by Allah’s Will, so that He might distinguish the ˹true˺ believers');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,2,117,'and expose the hypocrites. When it was said to them, “Come fight in the cause of Allah or ˹at least˺ defend yourselves,” they replied, “If we had known there was fighting, we would have definitely gone with you.” They were closer to disbelief than to belief on that day—for saying with their mouths what was not in their hearts. Allah is All-Knowing of what they hide.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,2,117,'Those who sat at home, saying about their brothers, “Had they listened to us, they would not have been killed.” Say, ˹O Prophet,˺ “Try not to die if what you say is true!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,2,117,'Never think of those martyred in the cause of Allah as dead. In fact, they are alive with their Lord, well provided for—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,2,117,'rejoicing in Allah’s bounties and being delighted for those yet to join them. There will be no fear for them, nor will they grieve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,2,117,'They are joyful for receiving Allah’s grace and bounty, and that Allah does not deny the reward of the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,2,117,'˹As for˺ those who responded to the call of Allah and His Messenger after their injury, those of them who did good and were mindful ˹of Allah˺ will have a great reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,2,117,'Those who were warned, “Your enemies have mobilized their forces against you, so fear them,” the warning only made them grow stronger in faith and they replied, “Allah ˹alone˺ is sufficient ˹as an aid˺ for us and ˹He˺ is the best Protector.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,2,117,'So they returned with Allah’s favours and grace, suffering no harm. For they sought to please Allah. And surely Allah is ˹the˺ Lord of infinite bounty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,2,117,'That ˹warning˺ was only ˹from˺ Satan, trying to prompt you to fear his followers. So do not fear them; fear Me if you are ˹true˺ believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,2,117,'˹O Prophet!˺ Do not grieve for those who race to disbelieve—surely they will not harm Allah in the least. It is Allah’s Will to disallow them a share in the Hereafter, and they will suffer a tremendous punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,2,117,'Those who trade belief for disbelief will never harm Allah in the least, and they will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,2,117,'Those who disbelieve should not think that living longer is good for them. They are only given more time to increase in sin, and they will suffer a humiliating punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,2,117,'Allah would not leave the believers in the condition you were in, until He distinguished the good from the evil ˹among you˺. Nor would Allah ˹directly˺ reveal to you the unseen, but He chooses whoever He wills as a messenger. So believe in Allah and His messengers. And if you are faithful and mindful ˹of Allah˺, you will receive a great reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,2,117,'And do not let those who ˹greedily˺ withhold Allah’s bounties think it is good for them—in fact, it is bad for them! They will be leashed ˹by their necks˺ on the Day of Judgment with whatever ˹wealth˺ they used to withhold. And Allah is the ˹sole˺ inheritor of the heavens and the earth. And Allah is All-Aware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,2,117,'Indeed, Allah has heard those ˹among the Jews˺ who said, “Allah is poor; we are rich!” We have certainly recorded their slurs and their killing of prophets unjustly. Then We will say, “Taste the torment of burning!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,2,117,'This is ˹the reward˺ for what your hands have done. And Allah is never unjust to ˹His˺ creation.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(183,2,117,'Those ˹are the same people˺ who say, “Allah has commanded us not to believe in any messenger unless he brings us an offering to be consumed by fire ˹from the sky˺.” Say, ˹O Prophet,˺ “Other prophets did in fact come to you before me with clear proofs and ˹even˺ what you demanded—why then did you kill them, if what you say is true?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(184,2,117,'If you are rejected by them, so too were messengers before you who came with clear proofs, divine Books, and enlightening Scriptures. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(185,2,117,'Every soul will taste death. And you will only receive your full reward on the Day of Judgment. Whoever is spared from the Fire and is admitted into Paradise will ˹indeed˺ triumph, whereas the life of this world is no more than the delusion of enjoyment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(186,2,117,'You ˹believers˺ will surely be tested in your wealth and yourselves, and you will certainly hear many hurtful words from those who were given the Scripture before you and ˹from˺ the polytheists. But if you are patient and mindful ˹of Allah˺—surely this is a resolve to aspire to.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(187,2,117,'˹Remember, O Prophet,˺ when Allah took the covenant of those who were given the Scripture to make it known to people and not hide it, yet they cast it behind their backs and traded it for a fleeting gain. What a miserable profit!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(188,2,117,'Do not let those who rejoice in their misdeeds and love to take credit for what they have not done think they will escape torment. They will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(189,2,117,'To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. And Allah is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(190,2,117,'Indeed, in the creation of the heavens and the earth and the alternation of the day and night there are signs for people of reason.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(191,2,117,'˹They are˺ those who remember Allah while standing, sitting, and lying on their sides, and reflect on the creation of the heavens and the earth ˹and pray˺, “Our Lord! You have not created ˹all of˺ this without purpose. Glory be to You! Protect us from the torment of the Fire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(192,2,117,'Our Lord! Indeed, those You commit to the Fire will be ˹completely˺ disgraced! And the wrongdoers will have no helpers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(193,2,117,'Our Lord! We have heard the caller to ˹true˺ belief, ˹proclaiming,˺ ‘Believe in your Lord ˹alone˺,’ so we believed. Our Lord! Forgive our sins, absolve us of our misdeeds, and allow us ˹each˺ to die as one of the virtuous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(194,2,117,'Our Lord! Grant us what You have promised us through Your messengers and do not put us to shame on Judgment Day—for certainly You never fail in Your promise.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(195,2,117,'So their Lord responded to them: “I will never deny any of you—male or female—the reward of your deeds. Both are equal in reward. Those who migrated or were expelled from their homes, and were persecuted for My sake and fought and ˹some˺ were martyred—I will certainly forgive their sins and admit them into Gardens under which rivers flow, as a reward from Allah. And with Allah is the finest reward!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(196,2,117,'Do not be deceived by the prosperity of the disbelievers throughout the land.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(197,2,117,'It is only a brief enjoyment. Then Hell will be their home—what an evil place to rest!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(198,2,117,'But those who are mindful of their Lord will be in Gardens under which rivers flow, to stay there forever—as an accommodation from Allah. And what is with Allah is best for the virtuous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(199,2,117,'Indeed, there are some among the People of the Book who truly believe in Allah and what has been revealed to you ˹believers˺ and what was revealed to them. They humble themselves before Allah—never trading Allah’s revelations for a fleeting gain. Their reward is with their Lord. Surely Allah is swift in reckoning.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(200,2,117,'O believers! Patiently endure, persevere, stand on guard, and be mindful of Allah, so you may be successful.');
+INSERT INTO chapters (id, number, quran_id) VALUES(118,4,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,118,'O humanity! Be mindful of your Lord Who created you from a single soul, and from it He created its mate, and through both He spread countless men and women. And be mindful of Allah—in Whose Name you appeal to one another—and ˹honour˺ family ties. Surely Allah is ever Watchful over you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,118,'Give orphans their wealth ˹when they reach maturity˺, and do not exchange your worthless possessions for their valuables, nor cheat them by mixing their wealth with your own. For this would indeed be a great sin.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,118,'If you fear you might fail to give orphan women their ˹due˺ rights ˹if you were to marry them˺, then marry other women of your choice—two, three, or four. But if you are afraid you will fail to maintain justice, then ˹content yourselves with˺ one or those ˹bondwomen˺ in your possession. This way you are less likely to commit injustice.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,118,'Give women ˹you wed˺ their due dowries graciously. But if they waive some of it willingly, then you may enjoy it freely with a clear conscience.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,118,'Do not entrust the incapable ˹among your dependants˺ with your wealth which Allah has made a means of support for you—but feed and clothe them from it, and speak to them kindly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,118,'Test ˹the competence of˺ the orphans until they reach a marriageable age. Then if you feel they are capable of sound judgment, return their wealth to them. And do not consume it wastefully and hastily before they grow up ˹to demand it˺. If the guardian is well-off, they should not take compensation; but if the guardian is poor, let them take a reasonable provision. When you give orphans back their property, call in witnesses. And sufficient is Allah as a ˹vigilant˺ Reckoner.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,118,'For men there is a share in what their parents and close relatives leave, and for women there is a share in what their parents and close relatives leave—whether it is little or much. ˹These are˺ obligatory shares.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,118,'If ˹non-inheriting˺ relatives, orphans, or the needy are present at the time of distribution, offer them a ˹small˺ provision from it and speak to them kindly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,118,'Let the guardians be as concerned ˹for the orphans˺ as they would if they were to ˹die and˺ leave ˹their own˺ helpless children behind. So let them be mindful of Allah and speak equitably.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,118,'Indeed, those who unjustly consume orphans’ wealth ˹in fact˺ consume nothing but fire into their bellies. And they will be burned in a blazing Hell!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,118,'Allah commands you regarding your children: the share of the male will be twice that of the female. If you leave only two ˹or more˺ females, their share is two-thirds of the estate. But if there is only one female, her share will be one-half. Each parent is entitled to one-sixth if you leave offspring. But if you are childless and your parents are the only heirs, then your mother will receive one-third. But if you leave siblings, then your mother will receive one-sixth—after the fulfilment of bequests and debts. ˹Be fair to˺ your parents and children, as you do not ˹fully˺ know who is more beneficial to you. ˹This is˺ an obligation from Allah. Surely Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,118,'You will inherit half of what your wives leave if they are childless. But if they have children, then ˹your share is˺ one-fourth of the estate—after the fulfilment of bequests and debts. And your wives will inherit one-fourth of what you leave if you are childless. But if you have children, then your wives will receive one-eighth of your estate—after the fulfilment of bequests and debts. And if a man or a woman leaves neither parents nor children but only a brother or a sister ˹from their mother’s side˺, they will each inherit one-sixth, but if they are more than one, they ˹all˺ will share one-third of the estate—after the fulfilment of bequests and debts without harm ˹to the heirs˺. ˹This is˺ a commandment from Allah. And Allah is All-Knowing, Most Forbearing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,118,'These ˹entitlements˺ are the limits set by Allah. Whoever obeys Allah and His Messenger will be admitted into Gardens under which rivers flow, to stay there forever. That is the ultimate triumph!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,118,'But whoever disobeys Allah and His Messenger and exceeds their limits will be cast into Hell, to stay there forever. And they will suffer a humiliating punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,118,'˹As for˺ those of your women who commit illegal intercourse—call four witnesses from among yourselves. If they testify, confine the offenders to their homes until they die or Allah ordains a ˹different˺ way for them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,118,'And the two among you who commit this sin—discipline them. If they repent and mend their ways, relieve them. Surely Allah is ever Accepting of Repentance, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,118,'Allah only accepts the repentance of those who commit evil ignorantly ˹or recklessly˺ then repent soon after—Allah will pardon them. And Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,118,'However, repentance is not accepted from those who knowingly persist in sin until they start dying, and then cry, “Now I repent!” nor those who die as disbelievers. For them We have prepared a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,118,'O believers! It is not permissible for you to inherit women against their will or mistreat them to make them return some of the dowry ˹as a ransom for divorce˺—unless they are found guilty of adultery. Treat them fairly. If you happen to dislike them, you may hate something which Allah turns into a great blessing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,118,'If you desire to replace a wife with another and you have given the former ˹even˺ a stack of gold ˹as a dowry˺, do not take any of it back. Would you ˹still˺ take it unjustly and very sinfully?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,118,'And how could you take it back after having enjoyed each other intimately and she has taken from you a firm commitment? ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,118,'Do not marry former wives of your fathers—except what was done previously. It was indeed a shameful, despicable, and evil practice.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,118,'˹Also˺ forbidden to you for marriage are your mothers, your daughters, your sisters, your paternal and maternal aunts, your brother’s daughters, your sister’s daughters, your foster-mothers, your foster-sisters, your mothers-in-law, your stepdaughters under your guardianship if you have consummated marriage with their mothers—but if you have not, then you can marry them—nor the wives of your own sons, nor two sisters together at the same time—except what was done previously. Surely Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,118,'Also ˹forbidden are˺ married women—except ˹female˺ captives in your possession. This is Allah’s commandment to you. Lawful to you are all beyond these—as long as you seek them with your wealth in a legal marriage, not in fornication. Give those you have consummated marriage with their due dowries. It is permissible to be mutually gracious regarding the set dowry. Surely Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,118,'But if any of you cannot afford to marry a free believing woman, then ˹let him marry˺ a believing bondwoman possessed by one of you. Allah knows best ˹the state of˺ your faith ˹and theirs˺. You are from one another. So marry them with the permission of their owners, giving them their dowry in fairness, if they are chaste, neither promiscuous nor having secret affairs. If they commit indecency after marriage, they receive half the punishment of free women. This is for those of you who fear falling into sin. But if you are patient, it is better for you. And Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,118,'It is Allah’s Will to make things clear to you, guide you to the ˹noble˺ ways of those before you, and turn to you in mercy. For Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,118,'And it is Allah’s Will to turn to you in grace, but those who follow their desires wish to see you deviate entirely ˹from Allah’s Way˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,118,'And it is Allah’s Will to lighten your burdens, for humankind was created weak.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,118,'O believers! Do not devour one another’s wealth illegally, but rather trade by mutual consent. And do not kill ˹each other or˺ yourselves. Surely Allah is ever Merciful to you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,118,'And whoever does this sinfully and unjustly, We will burn them in the Fire. That is easy for Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,118,'If you avoid the major sins forbidden to you, We will absolve you of your ˹lesser˺ misdeeds and admit you into a place of honour. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,118,'And do not crave what Allah has given some of you over others. Men will be rewarded according to their deeds and women ˹equally˺ according to theirs. Rather, ask Allah for His bounties. Surely Allah has ˹perfect˺ knowledge of all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,118,'And We have appointed heirs to what has been left by parents and next of kin. As for those you have made a pledge to, give them their share. Surely Allah is a Witness over all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,118,'Men are the caretakers of women, as men have been provisioned by Allah over women and tasked with supporting them financially. And righteous women are devoutly obedient and, when alone, protective of what Allah has entrusted them with. And if you sense ill-conduct from your women, advise them ˹first˺, ˹if they persist,˺ do not share their beds, ˹but if they still persist,˺ then discipline them ˹gently˺. But if they change their ways, do not be unjust to them. Surely Allah is Most High, All-Great.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,118,'If you anticipate a split between them, appoint a mediator from his family and another from hers. If they desire reconciliation, Allah will restore harmony between them. Surely Allah is All-Knowing, All-Aware.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,118,'Worship Allah ˹alone˺ and associate none with Him. And be kind to parents, relatives, orphans, the poor, near and distant neighbours, close friends, ˹needy˺ travellers, and those ˹bondspeople˺ in your possession. Surely Allah does not like whoever is arrogant, boastful—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,118,'those who are stingy, promote stinginess among people, and withhold Allah’s bounties. We have prepared for the disbelievers a humiliating punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,118,'Likewise for those who spend their wealth to show off and do not believe in Allah or the Last Day. And whoever takes Satan as an associate—what an evil associate they have!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,118,'What harm could have come to them if they had believed in Allah and the Last Day and donated from what Allah has provided for them? And Allah has ˹perfect˺ knowledge of them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,118,'Indeed, Allah never wrongs ˹anyone˺—even by an atom’s weight. And if it is a good deed, He will multiply it many times over and will give a great reward out of His grace.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,118,'So how will it be when We bring a witness from every faith-community and bring you ˹O Prophet˺ as a witness against yours?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,118,'On that Day, those who denied ˹Allah˺ and disobeyed the Messenger will wish they were reduced to dust. And they will never be able to hide anything from Allah. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,118,'O believers! Do not approach prayer while intoxicated until you are aware of what you say, nor in a state of ˹full˺ impurity—unless you merely pass through ˹the mosque˺—until you have bathed. But if you are ill, on a journey, or have relieved yourselves, or been intimate with your wives and cannot find water, then purify yourselves with clean earth, wiping your faces and hands. And Allah is Ever-Pardoning, All-Forgiving.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,118,'Have you ˹O Prophet˺ not seen those who were given a portion of the Scriptures yet trade it for misguidance and wish to see you deviate from the ˹Right˺ Path?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,118,'Allah knows best who your enemies are! And Allah is sufficient as a Guardian, and He is sufficient as a Helper.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,118,'Some Jews take words out of context and say, “We listen and we disobey,” “Hear! May you never hear,” and “Râ’ina!” [Herd us!]—playing with words and discrediting the faith. Had they said ˹courteously˺, “We hear and obey,” “Listen to us,” and “Unẓurna,” [Tend to us!] it would have been better for them and more proper. Allah has condemned them for their disbelief, so they do not believe except for a few.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,118,'O you who were given the Book! Believe in what We have revealed—confirming your own Scriptures—before We wipe out ˹your˺ faces, turning them backwards, or We condemn the defiant as We did to the Sabbath-breakers. And Allah’s command is always executed!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,118,'Indeed, Allah does not forgive associating others with Him ˹in worship˺, but forgives anything else of whoever He wills. And whoever associates others with Allah has indeed committed a grave sin.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,118,'Have you ˹O Prophet˺ not seen those who ˹falsely˺ elevate themselves? It is Allah who elevates whoever He wills. And none will be wronged ˹even by the width of˺ the thread of a date stone.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,118,'See how they fabricate lies against Allah—this alone is a blatant sin.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,118,'Have you ˹O Prophet˺ not seen those who were given a portion of the Scriptures yet believe in idols and false gods and reassure the disbelievers that they are better guided than the believers?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,118,'It is they who have been condemned by Allah. And whoever is condemned by Allah will have no helper.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,118,'Do they have control over shares of the kingdom? If so, they would not have given anyone so much as the speck on a date stone.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,118,'Or do they envy the people for Allah’s bounties? Indeed, We have given the descendants of Abraham the Book and wisdom, along with great authority.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,118,'Yet some believed in him while others turned away from him. Hell is sufficient as a torment!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,118,'Surely those who reject Our signs, We will cast them into the Fire. Whenever their skin is burnt completely, We will replace it so they will ˹constantly˺ taste the punishment. Indeed, Allah is Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,118,'As for those who believe and do good, We will admit them into Gardens under which rivers flow, to stay there for ever and ever. There they will have pure spouses, and We will place them under a vast shade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,118,'Indeed, Allah commands you to return trusts to their rightful owners; and when you judge between people, judge with fairness. What a noble commandment from Allah to you! Surely Allah is All-Hearing, All-Seeing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,118,'O believers! Obey Allah and obey the Messenger and those in authority among you. Should you disagree on anything, then refer it to Allah and His Messenger, if you ˹truly˺ believe in Allah and the Last Day. This is the best and fairest resolution.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,118,'Have you ˹O Prophet˺ not seen those who claim they believe in what has been revealed to you and what was revealed before you? They seek the judgment of false judges, which they were commanded to reject. And Satan ˹only˺ desires to lead them farther away.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,118,'When it is said to them, “Come to Allah’s revelations and to the Messenger,” you see the hypocrites turn away from you stubbornly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,118,'How ˹horrible˺ will it be if a disaster strikes them because of what their hands have done, then they come to you swearing by Allah, “We intended nothing but goodwill and reconciliation.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,118,'˹Only˺ Allah knows what is in their hearts. So turn away from them, caution them, and give them advice that will shake their very souls.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,118,'We only sent messengers to be obeyed by Allah’s Will. If only those ˹hypocrites˺ came to you ˹O Prophet˺—after wronging themselves—seeking Allah’s forgiveness and the Messenger prayed for their forgiveness, they would have certainly found Allah ever Accepting of Repentance, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,118,'But no! By your Lord, they will never be ˹true˺ believers until they accept you ˹O Prophet˺ as the judge in their disputes, and find no resistance within themselves against your decision and submit wholeheartedly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,118,'If We had commanded them to sacrifice themselves or abandon their homes, none would have obeyed except for a few. Had they done what they were advised to do, it would have certainly been far better for them and more reassuring,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,118,'and We would have granted them a great reward by Our grace');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,118,'and guided them to the Straight Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,118,'And whoever obeys Allah and the Messenger will be in the company of those blessed by Allah: the prophets, the people of truth, the martyrs, and the righteous—what honourable company!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,118,'This is Allah’s favour, and Allah fully knows ˹who deserves it˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,118,'O believers! Take your precautions and go forth either in groups or together.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,118,'There will be some among you who will lag behind so that if you face a disaster, they will say, “Allah has blessed us for not being there among them.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,118,'But if you return with Allah’s bounties, they will say—as if there had been no bond between you—“We wish we had been there with them to share the great gain!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,118,'Let those who would sacrifice this life for the Hereafter fight in the cause of Allah. And whoever fights in Allah’s cause—whether they achieve martyrdom or victory—We will honour them with a great reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,118,'And what is it with you? You do not fight in the cause of Allah and for oppressed men, women, and children who cry out, “Our Lord! Deliver us from this land of oppressors! Appoint for us a saviour; appoint for us a helper—all by Your grace.” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,118,'Believers fight for the cause of Allah, whereas disbelievers fight for the cause of the Devil. So fight against Satan’s ˹evil˺ forces. Indeed, Satan’s schemes are ever weak.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,118,'Have you ˹O Prophet˺ not seen those who had been told, “Do not fight! Rather, establish prayer and pay alms-tax.”? Then once the order came to fight, a group of them feared those ˹hostile˺ people as Allah should be feared—or even more. They said, “Our Lord! Why have You ordered us to fight? If only You had delayed ˹the order for˺ us for a little while!” Say, ˹O Prophet,˺ “The enjoyment of this world is so little, whereas the Hereafter is far better for those mindful ˹of Allah˺. And none of you will be wronged ˹even by the width of˺ the thread of a date stone.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,118,'Wherever you may be, death will overcome you—even if you were in fortified towers.” When something good befalls them, they say, “This is from Allah,” but when something evil befalls them, they say, “This is from you.” Say, ˹O Prophet,˺ “Both have been destined by Allah.” So what is the matter with these people? They can hardly comprehend anything!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,118,'Whatever good befalls you is from Allah and whatever evil befalls you is from yourself. We have sent you ˹O Prophet˺ as a messenger to ˹all˺ people. And Allah is sufficient as a Witness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,118,'Whoever obeys the Messenger has truly obeyed Allah. But whoever turns away, then ˹know that˺ We have not sent you ˹O Prophet˺ as a keeper over them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,118,'And they say, “We obey,” but when they leave you, a group of them would spend the night contradicting what they said. Allah records all their schemes. So turn away from them, and put your trust in Allah. And Allah is sufficient as a Trustee of Affairs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,118,'Do they not then reflect on the Quran? Had it been from anyone other than Allah, they would have certainly found in it many inconsistencies.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,118,'And when they hear news of security or fear, they publicize it. Had they referred it to the Messenger or their authorities, those with sound judgment among them would have validated it. Had it not been for Allah’s grace and mercy, you would have followed Satan—except for a few.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,118,'So fight in the cause of Allah ˹O Prophet˺. You are accountable for none but yourself. And motivate the believers ˹to fight˺, so perhaps Allah will curb the disbelievers’ might. And Allah is far superior in might and in punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,118,'Whoever intercedes for a good cause will have a share in the reward, and whoever intercedes for an evil cause will have a share in the burden. And Allah is Watchful over all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,118,'And when you are greeted, respond with a better greeting or at least similarly. Surely Allah is a ˹vigilant˺ Reckoner of all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,118,'Allah, there is no god ˹worthy of worship˺ except Him. He will certainly gather ˹all of˺ you together on the Day of Judgment—about which there is no doubt. And whose word is more truthful than Allah’s?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,118,'Why are you ˹believers˺ divided into two groups regarding the hypocrites while Allah allowed them to regress ˹to disbelief˺ because of their misdeeds? Do you wish to guide those left by Allah to stray? And whoever Allah leaves to stray, you will never find for them a way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,118,'They wish you would disbelieve as they have disbelieved, so you may all be alike. So do not take them as allies unless they emigrate in the cause of Allah. But if they turn away, then seize them and kill them wherever you find them, and do not take any of them as allies or helpers,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,118,'except those who are allies of a people you are bound with in a treaty or those wholeheartedly opposed to fighting either you or their own people. If Allah had willed, He would have empowered them to fight you. So if they refrain from fighting you and offer you peace, then Allah does not permit you to harm them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,118,'You will find others who wish to be safe from you and their own people. Yet they cannot resist the temptation ˹of disbelief or hostility˺. If they do not keep away, offer you peace, or refrain from attacking you, then seize them and kill them wherever you find them. We have given you full permission over such people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,118,'It is not lawful for a believer to kill another except by mistake. And whoever kills a believer unintentionally must free a believing slave and pay blood-money to the victim’s family—unless they waive it charitably. But if the victim is a believer from a hostile people, then a believing slave must be freed. And if the victim is from a people bound with you in a treaty, then blood-money must be paid to the family along with freeing a believing slave. Those who are unable, let them fast two consecutive months—as a means of repentance to Allah. And Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,118,'And whoever kills a believer intentionally, their reward will be Hell—where they will stay indefinitely. Allah will be displeased with them, condemn them, and will prepare for them a tremendous punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,118,'O believers! When you struggle in the cause of Allah, be sure of who you fight. And do not say to those who offer you ˹greetings of˺ peace, “You are no believer!”—seeking a fleeting worldly gain. Instead, Allah has infinite bounties ˹in store˺. You were initially like them then Allah blessed you ˹with Islam˺. So be sure! Indeed, Allah is All-Aware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,118,'Those who stay at home—except those with valid excuses—are not equal to those who strive in the cause of Allah with their wealth and their lives. Allah has elevated in rank those who strive with their wealth and their lives above those who stay behind ˹with valid excuses˺. Allah has promised each a fine reward, but those who strive will receive a far better reward than others—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,118,'far superior ranks, forgiveness, and mercy from Him. And Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,118,'When the angels seize the souls of those who have wronged themselves—scolding them, “What do you think you were doing?” they will reply, “We were oppressed in the land.” The angels will respond, “Was Allah’s earth not spacious enough for you to emigrate?” It is they who will have Hell as their home—what an evil destination!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,118,'Except helpless men, women, and children who cannot afford a way out—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,118,'it is right to hope that Allah will pardon them. For Allah is Ever-Pardoning, All-Forgiving.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,2,118,'Whoever emigrates in the cause of Allah will find many safe havens and bountiful resources throughout the earth. Those who leave their homes and die while emigrating to Allah and His Messenger—their reward has already been secured with Allah. And Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,2,118,'When you travel through the land, it is permissible for you to shorten the prayer—˹especially˺ if you fear an attack by the disbelievers. Indeed, the disbelievers are your sworn enemies.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,2,118,'When you ˹O Prophet˺ are ˹campaigning˺ with them and you lead them in prayer, let one group of them pray with you—while armed. When they prostrate themselves, let the other group stand guard behind them. Then the group that has not yet prayed will then join you in prayer—and let them be vigilant and armed. The disbelievers would wish to see you neglect your weapons and belongings, so they could launch a sweeping assault on you. But there is no blame if you lay aside your weapons when overcome by heavy rain or illness—but take precaution. Indeed, Allah has prepared a humiliating punishment for the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,2,118,'When the prayers are over, remember Allah—whether you are standing, sitting, or lying down. But when you are secure, establish regular prayers. Indeed, performing prayers is a duty on the believers at the appointed times.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,2,118,'Do not falter in pursuit of the enemy—if you are suffering, they too are suffering. But you can hope to receive from Allah what they can never hope for. And Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,2,118,'Indeed, We have sent down the Book to you ˹O Prophet˺ in truth to judge between people by means of what Allah has shown you. So do not be an advocate for the deceitful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,2,118,'And seek Allah’s forgiveness—indeed, Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,2,118,'Do not advocate for those who wrong themselves. Surely Allah does not like those who are deceitful, sinful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,2,118,'They try to hide ˹their deception˺ from people, but they can never hide it from Allah—in Whose presence they plot by night what is displeasing to Him. And Allah is Fully Aware of what they do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,2,118,'Here you are! You ˹believers˺ are advocating for them in this life, but who will ˹dare to˺ advocate for them before Allah on the Day of Judgment? Or who will come to their defence?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,2,118,'Whoever commits evil or wrongs themselves then seeks Allah’s forgiveness will certainly find Allah All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,2,118,'And whoever commits a sin—it is only to their own loss. Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,2,118,'And whoever commits an evil or sinful deed then blames it on an innocent person, they will definitely bear the guilt of slander and blatant sin.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,2,118,'Had it not been for Allah’s grace and mercy, a group of them would have sought to deceive you ˹O Prophet˺. Yet they would deceive none but themselves, nor can they harm you in the least. Allah has revealed to you the Book and wisdom and taught you what you never knew. Great ˹indeed˺ is Allah’s favour upon you!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,2,118,'There is no good in most of their secret talks—except those encouraging charity, kindness, or reconciliation between people. And whoever does this seeking Allah’s pleasure, We will grant them a great reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,2,118,'And whoever defies the Messenger after guidance has become clear to them and follows a path other than that of the believers, We will let them pursue what they have chosen, then burn them in Hell—what an evil end!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,2,118,'Surely Allah does not forgive associating ˹others˺ with Him ˹in worship˺, but forgives anything else of whoever He wills. Indeed, whoever associates ˹others˺ with Allah has clearly gone far astray.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,2,118,'Instead of Allah, they only invoke female gods and they ˹actually˺ invoke none but a rebellious Satan—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,2,118,'cursed by Allah—who said, “I will surely take hold of a certain number of Your servants.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,2,118,'I will certainly mislead them and delude them with empty hopes. Also, I will order them and they will slit the ears of cattle and alter Allah’s creation.” And whoever takes Satan as a guardian instead of Allah has certainly suffered a tremendous loss.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,2,118,'Satan only makes them ˹false˺ promises and deludes them with ˹empty˺ hopes. Truly Satan promises them nothing but delusion.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,2,118,'It is they who will have Hell as their home, and they will find no escape from it!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,2,118,'And those who believe and do good, We will soon admit them into Gardens under which rivers flow, to stay there for ever and ever. Allah’s promise is ˹always˺ true. And whose word is more truthful than Allah’s?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,2,118,'˹Divine grace is˺ neither by your wishes nor those of the People of the Book! Whoever commits evil will be rewarded accordingly, and they will find no protector or helper besides Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,2,118,'But those who do good—whether male or female—and have faith will enter Paradise and will never be wronged ˹even as much as˺ the speck on a date stone.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,2,118,'And who is better in faith than those who ˹fully˺ submit themselves to Allah, do good, and follow the Way of Abraham, the upright? Allah chose Abraham as a close friend.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,2,118,'To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. And Allah is Fully Aware of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,2,118,'They ask you ˹O Prophet˺ regarding women. Say, “It is Allah Who instructs you regarding them. Instruction has ˹already˺ been revealed in the Book concerning the orphan women you deprive of their due rights but still wish to marry, also helpless children, as well as standing up for orphans’ rights. And whatever good you do is certainly well known to Allah.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,2,118,'If a woman fears indifference or neglect from her husband, there is no blame on either of them if they seek ˹fair˺ settlement, which is best. Humans are ever inclined to selfishness. But if you are gracious and mindful ˹of Allah˺, surely Allah is All-Aware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,2,118,'You will never be able to maintain ˹emotional˺ justice between your wives—no matter how keen you are. So do not totally incline towards one leaving the other in suspense. And if you do what is right and are mindful ˹of Allah˺, surely Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,2,118,'But if they choose to separate, Allah will enrich both of them from His bounties. And Allah is Ever-Bountiful, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,2,118,'To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. Indeed, We have commanded those given the Scripture before you, as well as you, to be mindful of Allah. But if you disobey, then ˹know that˺ to Allah belongs whatever is in the heavens and the earth. And Allah is Self-Sufficient, Praiseworthy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,2,118,'To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. And Allah is sufficient as a Trustee of Affairs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,2,118,'If it is His Will, He can remove you altogether, O humanity, and replace you with others. And Allah is Most Capable to do so.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,2,118,'Whoever desires the reward of this world, then ˹let them know that˺ with Allah are the rewards of this world and the Hereafter. And Allah is All-Hearing, All-Seeing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,2,118,'O believers! Stand firm for justice as witnesses for Allah even if it is against yourselves, your parents, or close relatives. Be they rich or poor, Allah is best to ensure their interests. So do not let your desires cause you to deviate ˹from justice˺. If you distort the testimony or refuse to give it, then ˹know that˺ Allah is certainly All-Aware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,2,118,'O believers! Have faith in Allah, His Messenger, the Book He has revealed to His Messenger, and the Scriptures He revealed before. Indeed, whoever denies Allah, His angels, His Books, His messengers, and the Last Day has clearly gone far astray.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,2,118,'Indeed, those who believed then disbelieved, then believed and again disbelieved—˹only˺ increasing in disbelief—Allah will neither forgive them nor guide them to the ˹Right˺ Way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,2,118,'Give good news of a painful punishment to hypocrites,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,2,118,'who choose disbelievers as allies instead of the believers. Do they seek honour and power through that company? Surely all honour and power belongs to Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,2,118,'He has already revealed to you in the Book that when you hear Allah’s revelations being denied or ridiculed, then do not sit in that company unless they engage in a different topic, or else you will be like them. Surely Allah will gather the hypocrites and disbelievers all together in Hell.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,2,118,'˹The hypocrites are˺ those who wait to see what happens to you. So if Allah grants you victory, they say ˹to you˺, “Were we not on your side?” But if the disbelievers have a share ˹of victory˺, they say ˹to them˺, “Did we not have the advantage over you, yet we protected you from the believers?” Allah will judge between ˹all of˺ you on the Day of Judgment. And Allah will never grant the disbelievers a way over the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,2,118,'Surely the hypocrites seek to deceive Allah, but He outwits them. When they stand up for prayer, they do it half-heartedly only to be seen by people—hardly remembering Allah at all.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,2,118,'Torn between belief and disbelief—belonging neither to these ˹believers˺ nor those ˹disbelievers˺. And whoever Allah leaves to stray, you will never find for them a way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,2,118,'O believers! Do not take disbelievers as allies instead of the believers. Would you like to give Allah solid proof against yourselves?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,2,118,'Surely the hypocrites will be in the lowest depths of the Fire—and you will never find for them any helper—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,2,118,'except those who repent, mend their ways, hold fast to Allah, and are sincere in their devotion to Allah; they will be with the believers. And Allah will grant the believers a great reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,2,118,'Why should Allah punish you if you are grateful and faithful? Allah is ever Appreciative, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,2,118,'Allah does not like negative thoughts to be voiced—except by those who have been wronged. Allah is All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,2,118,'Whether you reveal or conceal a good or pardon an evil—surely Allah is Ever-Pardoning, Most Capable.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,2,118,'Surely those who deny Allah and His messengers and wish to make a distinction between Allah and His messengers, saying, “We believe in some and disbelieve in others,” desiring to forge a compromise,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,2,118,'they are indeed the true disbelievers. And We have prepared for the disbelievers a humiliating punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,2,118,'As for those who believe in Allah and His messengers—accepting all; rejecting none—He will surely give them their rewards. And Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,2,118,'The People of the Book demand that you ˹O Prophet˺ bring down for them a revelation in writing from heaven. They demanded what is even greater than this from Moses, saying, “Make Allah visible to us!” So a thunderbolt struck them for their wrongdoing. Then they took the calf for worship after receiving clear signs. Still We forgave them for that ˹after their repentance˺ and gave Moses compelling proof.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,2,118,'We raised the Mount over them ˹as a warning˺ for ˹breaking˺ their covenant and said, “Enter the gate ˹of Jerusalem˺ with humility.” We also warned them, “Do not break the Sabbath,” and took from them a firm covenant.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,2,118,'˹They were condemned˺ for breaking their covenant, rejecting Allah’s signs, killing the prophets unjustly, and for saying, “Our hearts are unreceptive!”—it is Allah Who has sealed their hearts for their disbelief, so they do not believe except for a few—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,2,118,'and for their denial and outrageous accusation against Mary,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,2,118,'and for boasting, “We killed the Messiah, Jesus, son of Mary, the messenger of Allah.” But they neither killed nor crucified him—it was only made to appear so. Even those who argue for this ˹crucifixion˺ are in doubt. They have no knowledge whatsoever—only making assumptions. They certainly did not kill him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,2,118,'Rather, Allah raised him up to Himself. And Allah is Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,2,118,'Every one of the People of the Book will definitely believe in him before his death. And on the Day of Judgment Jesus will be a witness against them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,2,118,'We forbade the Jews certain foods that had been lawful to them for their wrongdoing, and for hindering many from the Way of Allah,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,2,118,'taking interest despite its prohibition, and consuming people’s wealth unjustly. We have prepared for the disbelievers among them a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,2,118,'But those of them well-grounded in knowledge, the faithful ˹who˺ believe in what has been revealed to you ˹O Prophet˺ and what was revealed before you—˹especially˺ those who establish prayer—and those who pay alms-tax and believe in Allah and the Last Day, to these ˹people˺ We will grant a great reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,2,118,'Indeed, We have sent revelation to you ˹O Prophet˺ as We sent revelation to Noah and the prophets after him. We also sent revelation to Abraham, Ishmael, Isaac, Jacob, and his descendants, ˹as well as˺ Jesus, Job, Jonah, Aaron, and Solomon. And to David We gave the Psalms.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,2,118,'There are messengers whose stories We have told you already and others We have not. And to Moses Allah spoke directly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,2,118,'˹All were˺ messengers delivering good news and warnings so humanity should have no excuse before Allah after ˹the coming of˺ the messengers. And Allah is Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,2,118,'Yet ˹if you are denied, O Prophet,˺ Allah bears witness to what He has sent down to you—He has sent it with His knowledge. The angels too bear witness. And Allah ˹alone˺ is sufficient as a Witness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,2,118,'Those who disbelieve and hinder ˹others˺ from the Way of Allah have certainly strayed far away.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,2,118,'Those who disbelieve and wrong themselves—surely Allah will neither forgive them nor guide them to any path');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,2,118,'except that of Hell, to stay there for ever and ever. And that is easy for Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,2,118,'O humanity! The Messenger has certainly come to you with the truth from your Lord, so believe for your own good. But if you disbelieve, then ˹know that˺ to Allah belongs whatever is in the heavens and the earth. And Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,2,118,'O People of the Book! Do not go to extremes regarding your faith; say nothing about Allah except the truth. The Messiah, Jesus, son of Mary, was no more than a messenger of Allah and the fulfilment of His Word through Mary and a spirit ˹created by a command˺ from Him. So believe in Allah and His messengers and do not say, “Trinity.” Stop!—for your own good. Allah is only One God. Glory be to Him! He is far above having a son! To Him belongs whatever is in the heavens and whatever is on the earth. And Allah is sufficient as a Trustee of Affairs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,2,118,'The Messiah would never be too proud to be a servant of Allah, nor would the angels nearest to Allah. Those who are too proud and arrogant to worship Him will be brought before Him all together.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,2,118,'As for those who believe and do good, He will reward them in full and increase them out of His grace. But those who are too proud and arrogant, He will subject them to a painful punishment. And besides Allah they will find no protector or helper.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,2,118,'O humanity! There has come to you conclusive evidence from your Lord. And We have sent down to you a brilliant light.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,2,118,'As for those who believe in Allah and hold fast to Him, He will admit them into His mercy and grace and guide them to Himself through the Straight Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,2,118,'They ask you ˹for a ruling, O Prophet˺. Say, “Allah gives you a ruling regarding those who die without children or parents.” If a man dies childless and leaves behind a sister, she will inherit one-half of his estate, whereas her brother will inherit all of her estate if she dies childless. If this person leaves behind two sisters, they together will inherit two-thirds of the estate. But if the deceased leaves male and female siblings, a male’s share will be equal to that of two females. Allah makes ˹this˺ clear to you so you do not go astray. And Allah has ˹perfect˺ knowledge of all things.');
+INSERT INTO chapters (id, number, quran_id) VALUES(119,5,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,119,'O believers! Honour your obligations. All grazing livestock has been made lawful to you—except what is hereby announced to you and hunting while on pilgrimage. Indeed, Allah commands what He wills.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,119,'O believers! Do not violate Allah’s rituals ˹of pilgrimage˺, the sacred months, the sacrificial animals, the ˹offerings decorated with˺ garlands, nor those ˹pilgrims˺ on their way to the Sacred House seeking their Lord’s bounty and pleasure. When pilgrimage has ended, you are allowed to hunt. Do not let the hatred of a people who once barred you from the Sacred Mosque provoke you to transgress. Cooperate with one another in goodness and righteousness, and do not cooperate in sin and transgression. And be mindful of Allah. Surely Allah is severe in punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,119,'Forbidden to you are carrion, blood, and swine; what is slaughtered in the name of any other than Allah; what is killed by strangling, beating, a fall, or by being gored to death; what is partly eaten by a predator unless you slaughter it; and what is sacrificed on altars. You are also forbidden to draw lots for decisions. This is all evil. Today the disbelievers have given up all hope of ˹undermining˺ your faith. So do not fear them; fear Me! Today I have perfected your faith for you, completed My favour upon you, and chosen Islam as your way. But whoever is compelled by extreme hunger—not intending to sin—then surely Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,119,'They ask you, ˹O Prophet,˺ what is permissible for them ˹to eat˺. Say, “What is good and lawful. Also what is caught by your hunting animals and birds of prey which you have trained as instructed by Allah. So eat what they catch for you, but mention the Name of Allah over it ˹first˺.” And be mindful of Allah. Surely Allah is swift in reckoning.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,119,'Today all good, pure foods have been made lawful for you. Similarly, the food of the People of the Book is permissible for you and yours is permissible for them. And ˹permissible for you in marriage˺ are chaste believing women as well as chaste women of those given the Scripture before you—as long as you pay them their dowries in wedlock, neither fornicating nor taking them as mistresses. And whoever rejects the faith, all their good deeds will be void ˹in this life˺ and in the Hereafter they will be among the losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,119,'O believers! When you rise up for prayer, wash your faces and your hands up to the elbows, wipe your heads, and wash your feet to the ankles. And if you are in a state of ˹full˺ impurity, then take a full bath. But if you are ill, on a journey, or have relieved yourselves, or have been intimate with your wives and cannot find water, then purify yourselves with clean earth by wiping your faces and hands. It is not Allah’s Will to burden you, but to purify you and complete His favour upon you, so perhaps you will be grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,119,'Remember Allah’s favour upon you and the covenant He made with you when you said, “We hear and obey.” And be mindful of Allah. Surely Allah knows best what is ˹hidden˺ in the heart.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,119,'O believers! Stand firm for Allah and bear true testimony. Do not let the hatred of a people lead you to injustice. Be just! That is closer to righteousness. And be mindful of Allah. Surely Allah is All-Aware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,119,'Allah has promised those who believe and do good ˹His˺ forgiveness and a great reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,119,'As for those who disbelieve and deny Our signs, they are the residents of the Hellfire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,119,'O believers! Remember Allah’s favour upon you: when a people sought to harm you, but He held their hands back from you. Be mindful of Allah. And in Allah let the believers put their trust.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,119,'Allah made a covenant with the Children of Israel and appointed twelve leaders from among them and ˹then˺ said, “I am truly with you. If you establish prayer, pay alms-tax, believe in My messengers, support them, and lend to Allah a good loan, I will certainly forgive your sins and admit you into Gardens under which rivers flow. And whoever among you disbelieves afterwards has truly strayed from the Right Way.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,119,'But for breaking their covenant We condemned them and hardened their hearts. They distorted the words of the Scripture and neglected a portion of what they had been commanded to uphold. You ˹O Prophet˺ will always find deceit on their part, except for a few. But pardon them and bear with them. Indeed, Allah loves the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,119,'And from those who say, “We are Christians,” We took their covenant, but they neglected a portion of what they had been commanded to uphold. So We let hostility and enmity arise between them until the Day of Judgment, and soon Allah will inform them of all they have done.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,119,'O People of the Book! Now Our Messenger has come to you, revealing much of what you have hidden of the Scriptures and disregarding much. There certainly has come to you from Allah a light and a clear Book');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,119,'through which Allah guides those who seek His pleasure to the ways of peace, brings them out of darkness and into light by His Will, and guides them to the Straight Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,119,'Indeed, those who say, “Allah is the Messiah, son of Mary,” have fallen into disbelief. Say, ˹O Prophet,˺ “Who has the power to prevent Allah if He chose to destroy the Messiah, son of Mary, his mother, and everyone in the world all together?” To Allah ˹alone˺ belongs the kingdom of the heavens and the earth and everything in between. He creates whatever He wills. And Allah is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,119,'The Jews and the Christians each say, “We are the children of Allah and His most beloved!” Say, ˹O Prophet,˺ “Why then does He punish you for your sins? No! You are only humans like others of His Own making. He forgives whoever He wills and punishes whoever He wills. To Allah ˹alone˺ belongs the kingdom of the heavens and the earth and everything in between. And to Him is the final return.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,119,'O People of the Book! Our Messenger has indeed come to you, making things clear to you after an interval between the messengers so you do not say, “There has never come to us a deliverer of good news or a warner.” Now there has come to you a deliverer of good news and a warner. And Allah is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,119,'And ˹remember˺ when Moses said to his people, “O my people! Remember Allah’s favours upon you when He raised prophets from among you, made you sovereign, and gave you what He had never given anyone in the world.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,119,'O my people! Enter the Holy Land which Allah has destined for you ˹to enter˺. And do not turn back or else you will become losers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,119,'They replied, “O Moses! There is an enormously powerful people there, so we will never ˹be able to˺ enter it until they leave. If they do, then we will enter!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,119,'Two God-fearing men—who had been blessed by Allah—said, “Surprise them through the gate. If you do, you will certainly prevail. Put your trust in Allah if you are ˹truly˺ believers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,119,'˹Yet˺ they said, “O Moses! ˹Still˺ we will never enter as long as they remain there. So go—both you and your Lord—and fight; we are staying right here!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,119,'Moses pleaded, “My Lord! I have no control over anyone except myself and my brother. So set us apart from the rebellious people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,119,'Allah replied, “Then this land is forbidden to them for forty years, during which they will wander through the land. So do not grieve for the rebellious people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,119,'Relate to them in truth ˹O Prophet˺ the story of Adam’s two sons—how each offered a sacrifice: Abel’s offering was accepted while Cain’s was not. So Cain threatened, “I will kill you!” His brother replied, “Allah only accepts ˹the offering˺ of the sincerely devout.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,119,'If you raise your hand to kill me, I will not raise mine to kill you, because I fear Allah—the Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,119,'I want to let you bear your sin against me along with your other sins, then you will be one of those destined to the Fire. And that is the reward of the wrongdoers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,119,'Yet Cain convinced himself to kill his brother, so he killed him—becoming a loser.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,119,'Then Allah sent a crow digging ˹a grave˺ in the ground ˹for a dead crow˺, in order to show him how to bury the corpse of his brother. He cried, “Alas! Have I ˹even˺ failed to be like this crow and bury the corpse of my brother?” So he became regretful. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,119,'That is why We ordained for the Children of Israel that whoever takes a life—unless as a punishment for murder or mischief in the land—it will be as if they killed all of humanity; and whoever saves a life, it will be as if they saved all of humanity. ˹Although˺ Our messengers already came to them with clear proofs, many of them still transgressed afterwards through the land.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,119,'Indeed, the penalty for those who wage war against Allah and His Messenger and spread mischief in the land is death, crucifixion, cutting off their hands and feet on opposite sides, or exile from the land. This ˹penalty˺ is a disgrace for them in this world, and they will suffer a tremendous punishment in the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,119,'As for those who repent before you seize them, then know that Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,119,'O believers! Be mindful of Allah and seek what brings you closer to Him and struggle in His Way, so you may be successful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,119,'As for the disbelievers, even if they were to possess everything in the world twice over ˹and offer it all˺ to ransom themselves from the punishment of the Day of Judgment, it would never be accepted from them. And they will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,119,'They will be desperate to get out of the Fire but they will never be able to. And they will suffer an everlasting punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,119,'As for male and female thieves, cut off their hands for what they have done—a deterrent from Allah. And Allah is Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,119,'But whoever repents after their wrongdoing and mends their ways, Allah will surely turn to them in forgiveness. Indeed, Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,119,'Do you not know that the kingdom of the heavens and the earth belongs to Allah ˹alone˺? He punishes whoever He wills and forgives whoever He wills. And Allah is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,119,'O Messenger! Do not grieve for those who race to disbelieve—those who say, “We believe” with their tongues, but their hearts are in disbelief. Nor those among the Jews who eagerly listen to lies, attentive to those who are too arrogant to come to you. They distort the Scripture, taking rulings out of context, then say, “If this is the ruling you get ˹from Muḥammad˺, accept it. If not, beware!” Whoever Allah allows to be deluded, you can never be of any help to them against Allah. It is not Allah’s Will to purify their hearts. For them is disgrace in this world, and they will suffer a tremendous punishment in the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,119,'They eagerly listen to falsehood and consume forbidden gain. So if they come to you ˹O Prophet˺, either judge between them or turn away from them. If you turn away from them, they cannot harm you whatsoever. But if you judge between them, then do so with justice. Surely Allah loves those who are just.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,119,'But why do they come to you for judgment when they ˹already˺ have the Torah containing Allah’s judgment, then they turn away after all? They are not ˹true˺ believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,119,'Indeed, We revealed the Torah, containing guidance and light, by which the prophets, who submitted themselves to Allah, made judgments for Jews. So too did the rabbis and scholars judge according to Allah’s Book, with which they were entrusted and of which they were made keepers. So do not fear the people; fear Me! Nor trade my revelations for a fleeting gain. And those who do not judge by what Allah has revealed are ˹truly˺ the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,119,'We ordained for them in the Torah, “A life for a life, an eye for an eye, a nose for a nose, an ear for an ear, a tooth for a tooth—and for wounds equal retaliation.” But whoever waives it charitably, it will be atonement for them. And those who do not judge by what Allah has revealed are ˹truly˺ the wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,119,'Then in the footsteps of the prophets, We sent Jesus, son of Mary, confirming the Torah revealed before him. And We gave him the Gospel containing guidance and light and confirming what was revealed in the Torah—a guide and a lesson to the God-fearing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,119,'So let the people of the Gospel judge by what Allah has revealed in it. And those who do not judge by what Allah has revealed are ˹truly˺ the rebellious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,119,'We have revealed to you ˹O Prophet˺ this Book with the truth, as a confirmation of previous Scriptures and a supreme authority on them. So judge between them by what Allah has revealed, and do not follow their desires over the truth that has come to you. To each of you We have ordained a code of law and a way of life. If Allah had willed, He would have made you one community, but His Will is to test you with what He has given ˹each of˺ you. So compete with one another in doing good. To Allah you will all return, then He will inform you ˹of the truth˺ regarding your differences.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,119,'And judge between them ˹O Prophet˺ by what Allah has revealed, and do not follow their desires. And beware, so they do not lure you away from some of what Allah has revealed to you. If they turn away ˹from Allah’s judgment˺, then know that it is Allah’s Will to repay them for some of their sins, and that many people are indeed rebellious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,119,'Is it the judgment of ˹pre-Islamic˺ ignorance they seek? Who could be a better judge than Allah for people of sure faith?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,119,'O believers! Take neither Jews nor Christians as guardians—they are guardians of each other. Whoever does so will be counted as one of them. Surely Allah does not guide the wrongdoing people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,119,'You see those with sickness in their hearts racing for their guardianship, saying ˹in justification˺, “We fear a turn of fortune will strike us.” But perhaps Allah will bring about ˹your˺ victory or another favour by His command, and they will regret what they have hidden in their hearts.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,119,'˹Only then,˺ the believers will ask ˹one another˺, “Are these the ones who swore solemn oaths by Allah that they were with you?” Their deeds have been in vain, so they have become losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,119,'O believers! Whoever among you abandons their faith, Allah will replace them with others who love Him and are loved by Him. They will be humble with the believers but firm towards the disbelievers, struggling in the Way of Allah; fearing no blame from anyone. This is the favour of Allah. He grants it to whoever He wills. And Allah is All-Bountiful, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,119,'Your only guardians are Allah, His Messenger, and fellow believers—who establish prayer and pay alms-tax with humility.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,119,'Whoever allies themselves with Allah, His Messenger, and fellow believers, then it is certainly Allah’s party that will prevail.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,119,'O believers! Do not seek the guardianship of those given the Scripture before you and the disbelievers who have made your faith a mockery and amusement. And be mindful of Allah if you are ˹truly˺ believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,119,'When you call to prayer, they mock it in amusement. This is because they are a people without understanding.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,119,'Say, ˹O Prophet,˺ “O People of the Book! Do you resent us only because we believe in Allah and what has been revealed to us and what was revealed before—while most of you are rebellious?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,119,'Say, ˹O Prophet,˺ “Shall I inform you of those who deserve a worse punishment from Allah ˹than the rebellious˺? It is those who earned Allah’s condemnation and displeasure—some being reduced to apes and pigs and worshippers of false gods. These are far worse in rank and farther astray from the Right Way.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,119,'When they come to you ˹believers˺ they say, “We believe.” But they are committed to disbelief when they enter and when they leave. And Allah knows what they hide.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,119,'You see many of them racing towards sin, transgression, and consumption of forbidden gain. Evil indeed are their actions!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,119,'Why do their rabbis and scholars not forbid them from saying what is sinful and consuming what is unlawful? Evil indeed is their inaction!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,119,'˹Some among˺ the Jews said, “Allah is tight-fisted.” May their fists be tied and they be condemned for what they said. Rather, He is open-handed, giving freely as He pleases. That which has been revealed to you ˹O Prophet˺ from your Lord will only cause many of them to increase in wickedness and disbelief. We have stirred among them hostility and hatred until the Day of Judgment. Whenever they kindle the fire of war, Allah puts it out. And they strive to spread corruption in the land. And Allah does not like corruptors.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,119,'Had the People of the Book only been faithful and mindful ˹of Allah˺, We would have certainly absolved them of their sins and admitted them into the Gardens of Bliss.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,119,'And had they observed the Torah, the Gospel, and what has been revealed to them from their Lord, they would have been overwhelmed with provisions from above and below. Some among them are upright, yet many do nothing but evil.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,119,'O Messenger! Convey everything revealed to you from your Lord. If you do not, then you have not delivered His message. Allah will ˹certainly˺ protect you from the people. Indeed, Allah does not guide the people who disbelieve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,119,'Say, ˹O Prophet,˺ “O People of the Book! You have nothing to stand on unless you observe the Torah, the Gospel, and what has been revealed to you from your Lord.” And your Lord’s revelation to you ˹O Prophet˺ will only cause many of them to increase in wickedness and disbelief. So do not grieve for the people who disbelieve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,119,'Indeed, the believers, Jews, Sabians and Christians—whoever ˹truly˺ believes in Allah and the Last Day and does good, there will be no fear for them, nor will they grieve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,119,'Indeed, We took a covenant from the Children of Israel and sent them messengers. Whenever a messenger came to them with what they did not desire, they denied some and killed others.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,119,'They thought there would be no consequences, so they turned a blind eye and a deaf ear. Yet Allah turned to them in forgiveness ˹after their repentance˺, but again many became blind and deaf. And Allah is All-Seeing of what they do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,119,'Those who say, “Allah is the Messiah, son of Mary,” have certainly fallen into disbelief. The Messiah ˹himself˺ said, “O Children of Israel! Worship Allah—my Lord and your Lord.” Whoever associates others with Allah ˹in worship˺ will surely be forbidden Paradise by Allah. Their home will be the Fire. And the wrongdoers will have no helpers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,119,'Those who say, “Allah is one in a Trinity,” have certainly fallen into disbelief. There is only One God. If they do not stop saying this, those who disbelieve among them will be afflicted with a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,119,'Will they not turn to Allah in repentance and seek His forgiveness? And Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,119,'The Messiah, son of Mary, was no more than a messenger. ˹Many˺ messengers had ˹come and˺ gone before him. His mother was a woman of truth. They both ate food. See how We make the signs clear to them, yet see how they are deluded ˹from the truth˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,119,'Say, ˹O Prophet,˺ “How can you worship besides Allah those who can neither harm nor benefit you? And Allah ˹alone˺ is the All-Hearing, All-Knowing.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,119,'Say, “O People of the Book! Do not go to extremes in your faith beyond the truth, nor follow the vain desires of those who went astray before ˹you˺. They misled many and strayed from the Right Way.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,119,'The disbelievers among the Children of Israel were condemned in the revelations of David and Jesus, son of Mary. That was for their disobedience and violations.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,119,'They did not forbid one another from doing evil. Evil indeed was what they did!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,119,'You see many of them taking the disbelievers as allies. Truly wicked are their misdeeds, which have earned them Allah’s wrath. And they will be in everlasting torment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,119,'Had they believed in Allah, the Prophet, and what has been revealed to him, they would have never taken those ˹pagans˺ as allies. But most of them are rebellious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,119,'You will surely find the most bitter towards the believers to be the Jews and polytheists and the most gracious to be those who call themselves Christian. That is because there are priests and monks among them and because they are not arrogant.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,119,'When they listen to what has been revealed to the Messenger, you see their eyes overflowing with tears for recognizing the truth. They say, “Our Lord! We believe, so count us among the witnesses.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,119,'Why should we not believe in Allah and the truth that has come to us? And we long for our Lord to include us in the company of the righteous.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,119,'So Allah will reward them for what they said with Gardens under which rivers flow, to stay there forever. And that is the reward of the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,119,'As for those who disbelieve and reject Our signs, they will be the residents of the Hellfire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,119,'O believers! Do not forbid the good things which Allah has made lawful for you, and do not transgress. Indeed, Allah does not like transgressors.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,119,'Eat of the good, lawful things provided to you by Allah. And be mindful of Allah in Whom you believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,119,'Allah will not call you to account for your thoughtless oaths, but He will hold you accountable for deliberate oaths. The penalty for a broken oath is to feed ten poor people from what you normally feed your own family, or to clothe them, or to free a bondsperson. But if none of this is affordable, then you must fast three days. This is the penalty for breaking your oaths. So be mindful of your oaths. This is how Allah makes things clear to you, so perhaps you will be grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,119,'O believers! Intoxicants, gambling, idols, and drawing lots for decisions are all evil of Satan’s handiwork. So shun them so you may be successful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,119,'Satan’s plan is to stir up hostility and hatred between you with intoxicants and gambling and to prevent you from remembering Allah and praying. Will you not then abstain?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,119,'Obey Allah and obey the Messenger and beware! But if you turn away, then know that Our Messenger’s duty is only to deliver ˹the message˺ clearly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,119,'There is no blame on those who believe and do good for what they had consumed before ˹the prohibition˺, as long as they fear Allah, have faith, and do what is good; then they believe and act virtuously, then become fully mindful ˹of Allah˺ and do righteous deeds. For Allah loves the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,119,'O believers! Allah will surely test you with game within the reach of your hands and spears to distinguish those who fear Him in secret. Whoever transgresses from now on will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,119,'O believers! Do not kill game while on pilgrimage. Whoever kills game intentionally must compensate by offering its equivalence—as judged by two just men among you—to be offered at the Sacred House, or by feeding the needy, or by fasting so that they may taste the consequences of their violations. Allah has forgiven what has been done. But those who persist will be punished by Allah. And Allah is Almighty, capable of punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,119,'It is lawful for you to hunt and eat seafood, as a provision for you and for travellers. But hunting on land is forbidden to you while on pilgrimage. Be mindful of Allah to Whom you all will be gathered.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,119,'Allah has made the Ka’bah—the Sacred House—a sanctuary of well-being for all people, along with the sacred months, the sacrificial animals, and the ˹offerings decorated with˺ garlands. All this so you may know that Allah knows whatever is in the heavens and whatever is on the earth, and that He has ˹perfect˺ knowledge of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,119,'Know that Allah is severe in punishment and that He is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,119,'The Messenger’s duty is only to deliver ˹the message˺. And Allah ˹fully˺ knows what you reveal and what you conceal.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,2,119,'Say, ˹O Prophet,˺ “Good and evil are not equal, though you may be dazzled by the abundance of evil. So be mindful of Allah, O people of reason, so you may be successful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,2,119,'O believers! Do not ask about any matter which, if made clear to you, may disturb you. But if you inquire about what is being revealed in the Quran, it will be made clear to you. Allah has forgiven what was done ˹in the past˺. And Allah is All-Forgiving, Most Forbearing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,2,119,'Some people before you asked such questions then denied their answers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,2,119,'Allah has never ordained the ˹so-called˺ baḥîrah, sâ''ibah, waṣîlah, and ḥâm camels. But the disbelievers just fabricate lies about Allah, and most of them lack understanding.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,2,119,'When it is said to them, “Come to Allah’s revelations and to the Messenger,” they reply, “What we found our forefathers practicing is good enough for us.” ˹Would they still do so,˺ even if their forefathers had absolutely no knowledge or guidance?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,2,119,'O believers! You are accountable only for yourselves. It will not harm you if someone chooses to deviate—as long as you are ˹rightly˺ guided. To Allah you will all return, and He will inform you of what you used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,2,119,'O believers! When death approaches any of you, call upon two just Muslim men to witness as you make a bequest; otherwise, two non-Muslims if you are afflicted with death while on a journey. If you doubt ˹their testimony˺, keep them after prayer and let them testify under oath ˹saying˺, “By Allah! We would never sell our testimony for any price, even in favour of a close relative, nor withhold the testimony of Allah. Otherwise, we would surely be sinful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,2,119,'If they are found guilty ˹of false testimony˺, let the deceased’s two closest heirs affected by the bequest replace the witnesses and testify under oath ˹saying˺, “By Allah! Our testimony is truer than theirs. We have not transgressed. Otherwise, we would surely be wrongdoers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,2,119,'In this way it is more likely that witnesses will give true testimony or else fear that their oaths could be refuted by those of the heirs. Be mindful of Allah and obey. For Allah does not guide the rebellious people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,2,119,'˹Consider˺ the Day Allah will gather the messengers and say, “What response did you receive?” They will reply, “We have no knowledge ˹compared to You˺! You ˹alone˺ are indeed the Knower of all unseen.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,2,119,'And ˹on Judgment Day˺ Allah will say, “O Jesus, son of Mary! Remember My favour upon you and your mother: how I supported you with the holy spirit so you spoke to people in ˹your˺ infancy and adulthood. How I taught you writing, wisdom, the Torah, and the Gospel. How you moulded a bird from clay—by My Will—and breathed into it and it became a ˹real˺ bird—by My Will. How you healed the blind and the lepers—by My Will. How you brought the dead to life—by My Will. How I prevented the Children of Israel from harming you when you came to them with clear proofs and the disbelievers among them said, “This is nothing but pure magic.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,2,119,'And how I inspired the disciples, “Believe in Me and My messenger!” They declared, “We believe and bear witness that we fully submit ˹to Allah˺.” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,2,119,'˹Remember˺ when the disciples asked, “O Jesus, son of Mary! Would your Lord be willing to send down to us a table spread with food from heaven?” Jesus answered, “Fear Allah if you are ˹truly˺ believers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,2,119,'They said, “We ˹only˺ wish to eat from it to reassure our hearts, to verify you are indeed truthful to us, and to become its witnesses.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,2,119,'Jesus, son of Mary, prayed, “O Allah, our Lord! Send us from heaven a table spread with food as a feast for us—the first and last of us—and as a sign from You. Provide for us! You are indeed the Best Provider.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,2,119,'Allah answered, “I am sending it down to you. But whoever among you denies afterwards will be subjected to a torment I have never inflicted on anyone of My creation.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,2,119,'And ˹on Judgment Day˺ Allah will say, “O Jesus, son of Mary! Did you ever ask the people to worship you and your mother as gods besides Allah?” He will answer, “Glory be to You! How could I ever say what I had no right to say? If I had said such a thing, you would have certainly known it. You know what is ˹hidden˺ within me, but I do not know what is within You. Indeed, You ˹alone˺ are the Knower of all unseen.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,2,119,'I never told them anything except what You ordered me to say: “Worship Allah—my Lord and your Lord!” And I was witness over them as long as I remained among them. But when You took me, You were the Witness over them—and You are a Witness over all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,2,119,'If You punish them, they belong to You after all. But if You forgive them, You are surely the Almighty, All-Wise.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,2,119,'Allah will declare, “This is the Day when ˹only˺ the faithful will benefit from their faithfulness. Theirs are Gardens under which rivers flow, to stay there for ever and ever. Allah is pleased with them and they are pleased with Him. That is the ultimate triumph.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,2,119,'To Allah ˹alone˺ belongs the kingdom of the heavens and the earth and everything within. And He is Most Capable of everything.');
+INSERT INTO chapters (id, number, quran_id) VALUES(120,6,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,120,'All praise is for Allah Who created the heavens and the earth and made darkness and light. Yet the disbelievers set up equals to their Lord ˹in worship˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,120,'He is the One Who created you from clay, then appointed a term ˹for your death˺ and another known only to Him ˹for your resurrection˺—yet you continue to doubt!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,120,'He is the Only True God in the heavens and the earth. He knows whatever you conceal and whatever you reveal, and knows whatever you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,120,'Whenever a sign comes to them from their Lord, they turn away from it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,120,'They have indeed rejected the truth when it came to them, so they will soon face the consequences of their ridicule.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,120,'Have they not seen how many ˹disbelieving˺ peoples We destroyed before them? We had made them more established in the land than you. We sent down abundant rain for them and made rivers flow at their feet. Then We destroyed them for their sins and replaced them with other peoples.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,120,'Had We sent down to you ˹O Prophet˺ a revelation in writing and they were to touch it with their own hands, the disbelievers would still have said, “This is nothing but pure magic!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,120,'They say, “Why has no ˹visible˺ angel come with him?” Had We sent down an angel, the matter would have certainly been settled ˹at once˺, and they would have never been given more time ˹to repent˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,120,'And if We had sent an angel, We would have certainly made it ˹assume the form of˺ a man—leaving them more confused than they already are.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,120,'˹Other˺ messengers had already been ridiculed before you ˹O Prophet˺, but those who mocked them were overtaken by what they used to ridicule.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,120,'Say, “Travel throughout the land and see the fate of the deniers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,120,'Ask ˹them, O Prophet˺, “To whom belongs everything in the heavens and the earth?” Say, “To Allah!” He has taken upon Himself to be Merciful. He will certainly gather ˹all of˺ you together for the Day of Judgment—about which there is no doubt. But those who have ruined themselves will never believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,120,'To Him belongs whatever exists in the day and night. And He is the All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,120,'Say, ˹O Prophet,˺ “Will I take any guardian other than Allah, the Originator of the heavens and the earth, Who provides for all and is not in need of provision?” Say, “I have been commanded to be the first to submit and not be one of the polytheists.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,120,'Say, “I truly fear—if I were to disobey my Lord—the torment of a tremendous Day.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,120,'Whoever is spared the torment of that Day will have certainly been shown Allah’s mercy. And that is the absolute triumph.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,120,'If Allah touches you with harm, none can undo it except Him. And if He touches you with a blessing, He is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,120,'He reigns supreme over His creation. And He is the All-Wise, All-Aware.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,120,'Ask ˹them, O Prophet˺, “Who is the best witness?” Say, “Allah is! He is a Witness between me and you. And this Quran has been revealed to me so that, with it, I may warn you and whoever it reaches. Do you ˹pagans˺ testify that there are other gods besides Allah?” ˹Then˺ say, “I will never testify ˹to this˺!” ˹And˺ say, “There is only One God. And I totally reject whatever ˹idols˺ you associate with Him.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,120,'Those to whom We gave the Scripture recognize him ˹to be a true prophet˺ as they recognize their own children. Those who have ruined themselves will never believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,120,'Who does more wrong than those who fabricate lies against Allah or deny His signs? Indeed, the wrongdoers will never succeed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,120,'˹Consider˺ the Day We will gather them all together then ask those who associated others ˹with Allah in worship˺, “Where are those gods you used to claim?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,120,'Their only argument will be: “By Allah, our Lord! We were never polytheists.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,120,'See how they will lie about themselves and how those ˹gods˺ they fabricated will fail them!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,120,'There are some of them who ˹pretend to˺ listen to your recitation ˹of the Quran˺, but We have cast veils over their hearts—leaving them unable to comprehend it—and deafness in their ears. Even if they were to see every sign, they still would not believe in them. The disbelievers would ˹even˺ come to argue with you, saying, “This ˹Quran˺ is nothing but ancient fables!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,120,'They turn others away from the Prophet and distance themselves as well. They ruin none but themselves, yet they fail to perceive it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,120,'If only you could see when they will be detained before the Fire! They will cry, “Oh! If only we could be sent back, we would never deny the signs of our Lord and we would ˹surely˺ be of the believers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,120,'But no! ˹They only say this˺ because the truth they used to hide will become all too clear to them. Even if they were to be sent back, they would certainly revert to what they were forbidden. Indeed they are liars!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,120,'They insisted, “There is nothing beyond this worldly life and we will never be resurrected.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,120,'But if only you could see when they will be detained before their Lord! He will ask ˹them˺, “Is this ˹Hereafter˺ not the truth?” They will cry, “Absolutely, by our Lord!” He will say, “Then taste the punishment for your disbelief.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,120,'Losers indeed are those who deny the meeting with Allah until the Hour takes them by surprise, then they will cry, “Woe to us for having ignored this!” They will bear ˹the burden of˺ their sins on their backs. Evil indeed is their burden!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,120,'This worldly life is no more than play and amusement, but far better is the ˹eternal˺ Home of the Hereafter for those mindful ˹of Allah˺. Will you not then understand?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,120,'We certainly know that what they say grieves you ˹O Prophet˺. It is not your honesty they question—it is Allah’s signs that the wrongdoers deny.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,120,'Indeed, messengers before you were rejected but patiently endured rejection and persecution until Our help came to them. And Allah’s promise ˹to help˺ is never broken. And you have already received some of the narratives of these messengers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,120,'If you find their denial unbearable, then build—if you can—a tunnel through the earth or stairs to the sky to bring them a ˹more compelling˺ sign. Had Allah so willed, He could have guided them all. So do not be one of those ignorant ˹of this fact˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,120,'Only the attentive will respond ˹to your call˺. As for the dead, Allah will raise them up, then to Him they will ˹all˺ be returned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,120,'They ask, “Why has no ˹other˺ sign been sent down to him from his Lord?” Say, ˹O Prophet,˺ “Allah certainly has the power to send down a sign”—though most of them do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,120,'All living beings roaming the earth and winged birds soaring in the sky are communities like yourselves. We have left nothing out of the Record. Then to their Lord they will be gathered all together.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,120,'Those who deny Our signs are ˹wilfully˺ deaf and dumb—lost in darkness. Allah leaves whoever He wills to stray and guides whoever He wills to the Straight Way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,120,'Ask ˹them, O Prophet˺, “Imagine if you were overwhelmed by Allah’s torment or the Hour—would you call upon any other than Allah ˹for help˺? ˹Answer me˺ if your claims are true!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,120,'No! He is the only One you would call. And if He willed, He could remove the affliction that made you invoke Him. Only then will you forget whatever you associate with Him ˹in worship˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,120,'Indeed, We have sent messengers before you ˹O Prophet˺ to other people who We put through suffering and adversity ˹for their denial˺, so perhaps they would be humbled.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,120,'Why did they not humble themselves when We made them suffer? Instead, their hearts were hardened, and Satan made their misdeeds appealing to them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,120,'When they became oblivious to warnings, We showered them with everything they desired. But just as they became prideful of what they were given, We seized them by surprise, then they instantly fell into despair!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,120,'So the wrongdoers were utterly uprooted. And all praise is for Allah—Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,120,'Ask ˹them, O Prophet˺, “Imagine if Allah were to take away your hearing or sight, or seal your hearts—who else other than Allah could restore it?” See ˹O Prophet˺ how We vary the signs, yet they still turn away.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,120,'Ask, “Imagine if Allah’s punishment were to overwhelm you with or without warning—who would be destroyed other than the wrongdoers?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,120,'We have sent messengers only as deliverers of good news and as warners. Whoever believes and does good, there will be no fear for them, nor will they grieve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,120,'But those who deny Our signs will be afflicted with punishment for their rebelliousness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,120,'Say, ˹O Prophet,˺ “I do not say to you that I possess Allah’s treasuries or know the unseen, nor do I claim to be an angel. I only follow what is revealed to me.” Say, “Are those blind ˹to the truth˺ equal to those who can see? Will you not then reflect?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,120,'Warn with this ˹Quran˺ those who are awed by the prospect of being gathered before their Lord—when they will have no protector or intercessor besides Him—so perhaps they will be mindful ˹of Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,120,'˹O Prophet!˺ Do not dismiss those ˹poor believers˺ who invoke their Lord morning and evening, seeking His pleasure. You are not accountable for them whatsoever, nor are they accountable for you. So do not dismiss them, or you will be one of the wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,120,'In this way We have tested some by means of others, so those ˹disbelievers˺ may say, “Has Allah favoured these ˹poor believers˺ out of all of us?” Does Allah not best recognize the grateful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,120,'When the believers in Our revelations come to you, say, “Peace be upon you! Your Lord has taken upon Himself to be Merciful. Whoever among you commits evil ignorantly ˹or recklessly˺ then repents afterwards and mends their ways, then Allah is truly All-Forgiving, Most Merciful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,120,'This is how We make Our signs clear, so the way of the wicked may become distinct.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,120,'Say, ˹O Prophet,˺ “I have been forbidden to worship those you invoke besides Allah.” Say, “I will not follow your desires, for I then would certainly be astray and not one of those ˹rightly˺ guided.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,120,'Say, ˹O Prophet,˺ “Indeed, I stand on a clear proof from my Lord—yet you have denied it. That ˹torment˺ you seek to hasten is not within my power. It is only Allah Who decides ˹its time˺. He declares the truth. And He is the Best of Judges.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,120,'Say ˹also˺, “If what you seek to hasten were within my power, the matter between us would have already been settled. But Allah knows the wrongdoers best.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,120,'With Him are the keys of the unseen—no one knows them except Him. And He knows what is in the land and sea. Not even a leaf falls without His knowledge, nor a grain in the darkness of the earth or anything—green or dry—but is ˹written˺ in a perfect Record. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,120,'He is the One Who calls back your souls by night and knows what you do by day, then revives you daily to complete your appointed term. To Him is your ˹ultimate˺ return, then He will inform you of what you used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,120,'He reigns supreme over all of His creation, and sends recording-angels, watching over you. When death comes to any of you, Our angels take their soul, never neglecting this duty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,120,'Then they are ˹all˺ returned to Allah—their True Master. Judgment is His ˹alone˺. And He is the Swiftest Reckoner.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,120,'Say, ˹O Prophet,˺ “Who rescues you from the darkest times on land and at sea? He ˹alone˺ you call upon with humility, openly and secretly: “If You rescue us from this, we will be ever grateful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,120,'Say, “˹Only˺ Allah rescues you from this and any other distress, yet you associate others with Him ˹in worship˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,120,'Say, “He ˹alone˺ has the power to unleash upon you a torment from above or below you or split you into ˹conflicting˺ factions and make you taste the violence of one another.” See how We vary the signs, so perhaps they will comprehend.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,120,'Still your people ˹O Prophet˺ have rejected this ˹Quran˺, although it is the truth. Say, “I am not a keeper over you.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,120,'Every ˹destined˺ matter has a ˹set˺ time to transpire. And you will soon come to know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,120,'And when you come across those who ridicule Our revelations, do not sit with them unless they engage in a different topic. Should Satan make you forget, then once you remember, do not ˹continue to˺ sit with the wrongdoing people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,120,'Those mindful ˹of Allah˺ will not be accountable for those ˹who ridicule it˺ whatsoever—their duty is to advise, so perhaps the ridiculers will abstain.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,120,'And leave those who take this faith ˹of Islam˺ as mere play and amusement and are deluded by ˹their˺ worldly life. Yet remind them by this ˹Quran˺, so no one should be ruined for their misdeeds. They will have no protector or intercessor other than Allah. Even if they were to offer every ˹possible˺ ransom, none will be accepted from them. Those are the ones who will be ruined for their misdeeds. They will have a boiling drink and painful punishment for their disbelief.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,120,'Ask ˹them, O Prophet˺, “Should we invoke, other than Allah, those ˹idols˺ which cannot benefit or harm us, and turn back to disbelief after Allah has guided us? ˹If we do so, we will be˺ like those disoriented by devils in the wilderness, while their companions call them to guidance, ˹saying˺, ‘Come to us!’ Say, ˹O Prophet,˺ “Allah’s guidance is the ˹only˺ true guidance. And we are commanded to submit to the Lord of all worlds,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,120,'establish prayer, and be mindful of Him. To Him you will all be gathered together.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,120,'He is the One Who created the heavens and the earth in truth. On the Day ˹of Judgment˺ He will say, ‘Be!’ And there will be! His command is truth. All authority is His ˹alone˺ on the Day the Trumpet will be blown. He is the Knower of all—seen or unseen. And He is the All-Wise, All-Aware.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,120,'And ˹remember˺ when Abraham said to his father, Ȃzar, “Do you take idols as gods? It is clear to me that you and your people are entirely misguided.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,120,'We also showed Abraham the wonders of the heavens and the earth, so he would be sure in faith.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,120,'When the night grew dark upon him, he saw a star and said, “This is my Lord!” But when it set, he said, “I do not love things that set.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,120,'Then when he saw the moon rising, he said, “This one is my Lord!” But when it disappeared, he said, “If my Lord does not guide me, I will certainly be one of the misguided people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,120,'Then when he saw the sun shining, he said, “This must be my Lord—it is the greatest!” But again when it set, he declared, “O my people! I totally reject whatever you associate ˹with Allah in worship˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,120,'I have turned my face towards the One Who has originated the heavens and the earth—being upright—and I am not one of the polytheists.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,120,'And his people argued with him. He responded, “Are you arguing with me about Allah, while He has guided me? I am not afraid of whatever ˹idols˺ you associate with Him—˹none can harm me,˺ unless my Lord so wills. My Lord encompasses everything in ˹His˺ knowledge. Will you not be mindful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,120,'And how should I fear your associate-gods, while you have no fear in associating ˹others˺ with Allah—a practice He has never authorized? Which side has more right to security? ˹Tell me˺ if you really know!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,120,'It is ˹only˺ those who are faithful and do not tarnish their faith with falsehood who are guaranteed security and are ˹rightly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,120,'This was the argument We gave Abraham against his people. We elevate in rank whoever We please. Surely your Lord is All-Wise, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,120,'And We blessed him with Isaac and Jacob. We guided them all as We previously guided Noah and those among his descendants: David, Solomon, Job, Joseph, Moses, and Aaron. This is how We reward the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,120,'Likewise, ˹We guided˺ Zachariah, John, Jesus, and Elias, who were all of the righteous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,120,'˹We also guided˺ Ishmael, Elisha, Jonah, and Lot, favouring each over other people ˹of their time˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,120,'And ˹We favoured˺ some of their forefathers, their descendants, and their brothers. We chose them and guided them to the Straight Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,120,'This is Allah’s guidance with which He guides whoever He wills of His servants. Had they associated others with Him ˹in worship˺, their ˹good˺ deeds would have been wasted.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,120,'Those were the ones to whom We gave the Scripture, wisdom, and prophethood. But if these ˹pagans˺ disbelieve in this ˹message˺, then We have already entrusted it to a people who will never disbelieve in it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,120,'These ˹prophets˺ were ˹rightly˺ guided by Allah, so follow their guidance. Say, “I ask no reward of you for this ˹Quran˺—it is a reminder to the whole world.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,120,'And they have not shown Allah His proper reverence when they said, “Allah has revealed nothing to any human being.” Say, ˹O Prophet,˺ “Who then revealed the Book brought forth by Moses as a light and guidance for people, which you split into separate sheets—revealing some and hiding much? You have been taught ˹through this Quran˺ what neither you nor your forefathers knew.” Say, ˹O Prophet,˺ “Allah ˹revealed it˺!” Then leave them to amuse themselves with falsehood.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,120,'This is a blessed Book which We have revealed—confirming what came before it—so you may warn the Mother of Cities and everyone around it. Those who believe in the Hereafter ˹truly˺ believe in it and guard their prayers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,120,'Who does more wrong than the one who fabricates lies against Allah or claims, “I have received revelations!”—although nothing was revealed to them—or the one who says, “I can reveal the like of Allah’s revelations!”? If you ˹O Prophet˺ could only see the wrongdoers in the throes of death while the angels are stretching out their hands ˹saying˺, “Give up your souls! Today you will be rewarded with the torment of disgrace for telling lies about Allah and for being arrogant towards His revelations!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,120,'˹Today˺ you have come back to Us all alone as We created you the first time—leaving behind everything We have provided you with. We do not see your intercessors with you—those you claimed were Allah’s partners ˹in worship˺. All your ties have been broken and all your claims have let you down.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,120,'Indeed, Allah is the One Who causes seeds and fruit stones to sprout. He brings forth the living from the dead and the dead from the living. That is Allah! How can you then be deluded ˹from the truth˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,120,'He causes the dawn to break, and has made the night for rest and ˹made˺ the sun and the moon ˹to travel˺ with precision. That is the design of the Almighty, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,120,'And He is the One Who has made the stars as your guide through the darkness of land and sea. We have already made the signs clear for people who know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,120,'And He is the One Who originated you all from a single soul, then assigned you a place to live and another to ˹be laid to˺ rest. We have already made the signs clear for people who comprehend.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,120,'And He is the One Who sends down rain from the sky—causing all kinds of plants to grow—producing green stalks from which We bring forth clustered grain. And from palm trees come clusters of dates hanging within reach. ˹There are˺ also gardens of grapevines, olives, and pomegranates, similar ˹in shape˺ but dissimilar ˹in taste˺. Look at their fruit as it yields and ripens! Indeed, in these are signs for people who believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,2,120,'Yet they associate the jinn with Allah ˹in worship˺, even though He created them, and they falsely attribute to Him sons and daughters out of ignorance. Glorified and Exalted is He above what they claim!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,2,120,'˹He is˺ the Originator of the heavens and earth. How could He have children when He has no mate? He created all things and has ˹perfect˺ knowledge of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,2,120,'That is Allah—your Lord! There is no god ˹worthy of worship˺ except Him. ˹He is˺ the Creator of all things, so worship Him ˹alone˺. And He is the Maintainer of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,2,120,'No vision can encompass Him, but He encompasses all vision. For He is the Most Subtle, All-Aware. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,2,120,'Indeed, there have come to you insights from your Lord. So whoever chooses to see, it is for their own good. But whoever chooses to be blind, it is to their own loss. And I am not a keeper over you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,2,120,'And so We vary our signs to the extent that they will say, “You have studied ˹previous scriptures˺,” and We make this ˹Quran˺ clear for people who know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,2,120,'˹O Prophet!˺ Follow what is revealed to you from your Lord—there is no god ˹worthy of worship˺ except Him—and turn away from the polytheists.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,2,120,'Had Allah willed, they would not have been polytheists. We have not appointed you as their keeper, nor are you their maintainer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,2,120,'˹O believers!˺ Do not insult what they invoke besides Allah or they will insult Allah spitefully out of ignorance. This is how We have made each people’s deeds appealing to them. Then to their Lord is their return, and He will inform them of what they used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,2,120,'They swear by Allah their most solemn oaths that if a sign were to come to them, they would certainly believe in it. Say, ˹O Prophet,˺ “Signs are only with Allah.” What will make you ˹believers˺ realize that even if a sign were to come to them, they still would not believe?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,2,120,'We turn their hearts and eyes away ˹from the truth˺ as they refused to believe at first, leaving them to wander blindly in their defiance.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,2,120,'Even if We had sent them the angels, made the dead speak to them, and assembled before their own eyes every sign ˹they demanded˺, they still would not have believed—unless Allah so willed. But most of them are ignorant ˹of this˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,2,120,'And so We have made for every prophet enemies—devilish humans and jinn—whispering to one another with elegant words of deception. Had it been your Lord’s Will, they would not have done such a thing. So leave them and their deceit,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,2,120,'so that the hearts of those who disbelieve in the Hereafter may be receptive to it, be pleased with it, and be persistent in their evil pursuits.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,2,120,'˹Say, O Prophet,˺ “Should I seek a judge other than Allah while He is the One Who has revealed for you the Book ˹with the truth˺ perfectly explained?” Those who were given the Scripture know that it has been revealed ˹to you˺ from your Lord in truth. So do not be one of those who doubt.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,2,120,'The Word of your Lord has been perfected in truth and justice. None can change His Words. And He is the All-Hearing, All- Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,2,120,'˹O Prophet!˺ If you were to obey most of those on earth, they would lead you away from Allah’s Way. They follow nothing but assumptions and do nothing but lie.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,2,120,'Indeed, your Lord knows best who has strayed from His Way and who is ˹rightly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,2,120,'So eat only of what is slaughtered in Allah’s Name if you truly believe in His revelations.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,2,120,'Why should you not eat of what is slaughtered in Allah’s Name when He has already explained to you what He has forbidden to you—except when compelled by necessity? Many ˹deviants˺ certainly mislead others by their whims out of ignorance. Surely your Lord knows the transgressors best.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,2,120,'Shun all sin—open and secret. Indeed, those who commit sin will be punished for what they earn.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,2,120,'Do not eat of what is not slaughtered in Allah’s Name. For that would certainly be ˹an act of˺ disobedience. Surely the devils whisper to their ˹human˺ associates to argue with you. If you were to obey them, then you ˹too˺ would be polytheists.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,2,120,'Can those who had been dead, to whom We gave life and a light with which they can walk among people, be compared to those in complete darkness from which they can never emerge? That is how the misdeeds of the disbelievers have been made appealing to them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,2,120,'And so We have placed in every society the most wicked to conspire in it. Yet they plot only against themselves, but they fail to perceive it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,2,120,'Whenever a sign comes to them, they say, “We will never believe until we receive what Allah’s messengers received.” Allah knows best where to place His message. The wicked will soon be overwhelmed by humiliation from Allah and a severe punishment for their evil plots.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,2,120,'Whoever Allah wills to guide, He opens their heart to Islam. But whoever He wills to leave astray, He makes their chest tight and constricted as if they were climbing up into the sky. This is how Allah dooms those who disbelieve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,2,120,'That is your Lord’s Path—perfectly straight. We have already made the signs clear to those who are mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,2,120,'They will have the Home of Peace with their Lord, Who will be their Guardian because of what they used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,2,120,'˹Consider˺ the Day He will gather them ˹all˺ together and say, “O assembly of jinn! You misled humans in great numbers.” And their human associates will say, “Our Lord! We benefited from each other’s company, but now we have reached the term which You appointed for us.” ˹Then˺ He will say, “The Fire is your home, yours to stay in forever, except whoever Allah wills to spare.” Surely your Lord is All-Wise, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,2,120,'This is how We make the wrongdoers ˹destructive˺ allies of one another because of their misdeeds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,2,120,'˹Allah will ask,˺ “O assembly of jinn and humans! Did messengers not come from among you, proclaiming My revelations and warning you of the coming of this Day of yours?” They will say, “We confess against ourselves!” For they have been deluded by ˹their˺ worldly life. And they will testify against themselves that they were disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,2,120,'This ˹sending of the messengers˺ is because your Lord would never destroy a society for their wrongdoing while its people are unaware ˹of the truth˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,2,120,'They will each be assigned ranks according to their deeds. And your Lord is not unaware of what they do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,2,120,'Your Lord is the Self-Sufficient, Full of Mercy. If He wills, He can do away with you and replace you with whoever He wills, just as He produced you from the offspring of other people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,2,120,'Indeed, what you have been promised will certainly come to pass. And you will have no escape.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,2,120,'Say, ˹O Prophet,˺ “O my people! Persist in your ways, for I ˹too˺ will persist in mine. You will soon know who will fare best in the end. Indeed, the wrongdoers will never succeed.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,2,120,'The pagans set aside for Allah a share of the crops and cattle He created, saying, “This ˹portion˺ is for Allah,” so they claim, “and this ˹one˺ for our associate-gods.” Yet the portion of their associate-gods is not shared with Allah while Allah’s portion is shared with their associate-gods. What unfair judgment!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,2,120,'Likewise, the pagans’ evil associates have made it appealing to them to kill their own children—only leading to their destruction as well as confusion in their faith. Had it been Allah’s Will, they would not have done such a thing. So leave them and their falsehood.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,2,120,'They say, “These cattle and crops are reserved—none may eat them except those we permit,” so they claim. Some other cattle are exempted from labour and others are not slaughtered in Allah’s Name—falsely attributing lies to Him. He will repay them for their lies.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,2,120,'They ˹also˺ say, “The offspring of this cattle is reserved for our males and forbidden to our females; but if it is stillborn, they may all share it.” He will repay them for their falsehood. Surely He is All-Wise, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,2,120,'Lost indeed are those who have murdered their own children foolishly out of ignorance and have forbidden what Allah has provided for them—falsely attributing lies to Allah. They have certainly strayed and are not ˹rightly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,2,120,'He is the One Who produces gardens—both cultivated and wild—and palm trees, crops of different flavours, olives, and pomegranates—similar ˹in shape˺, but dissimilar ˹in taste˺. Eat of the fruit they bear and pay the dues at harvest, but do not waste. Surely He does not like the wasteful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,2,120,'Some cattle are fit for labour, others are too small. Eat of what Allah has provided for you and do not follow Satan’s footsteps. Certainly, he is your sworn enemy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,2,120,'˹Allah has created˺ four pairs: a pair of sheep and a pair of goats—ask ˹them, O Prophet˺, “Has He forbidden ˹to you˺ the two males or the two females or what is in the wombs of the two females? Tell me with knowledge, if what you say is true.”—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,2,120,'and a pair of camels and a pair of oxen. Ask ˹them˺, “Has He forbidden ˹to you˺ the two males or the two females or what is in the wombs of the two females? Or were you present when Allah gave you this commandment?” Who does more wrong than those who fabricate lies against Allah to mislead others without ˹any˺ knowledge? Surely Allah does not guide the wrongdoing people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,2,120,'Say, ˹O Prophet,˺ “I do not find in what has been revealed to me anything forbidden to eat except carrion, running blood, swine—which is impure—or a sinful offering in the name of any other than Allah. But if someone is compelled by necessity—neither driven by desire nor exceeding immediate need—then surely your Lord is All-Forgiving, Most Merciful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,2,120,'For those who are Jewish, We forbade every animal with undivided hoofs and the fat of oxen and sheep except what is joined to their backs or intestines or mixed with bone. In this way We rewarded them for their violations. And We are certainly truthful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,2,120,'But if they deny you ˹O Prophet˺, say, “Your Lord is infinite in mercy, yet His punishment will not be averted from the wicked people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,2,120,'The polytheists will argue, “Had it been Allah’s Will, neither we nor our forefathers would have associated others with Him ˹in worship˺ or made anything unlawful.” Likewise, those before them rejected the truth until they tasted Our punishment. Ask ˹them, O Prophet˺, “Do you have any knowledge that you can produce for us? Surely you follow nothing but ˹false˺ assumptions and you do nothing but lie.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,2,120,'Say, “Allah has the most conclusive argument. Had it been His Will, He would have easily imposed guidance upon all of you.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,2,120,'Say, ˹O Prophet,˺ “Bring your witnesses who can testify that Allah has forbidden this.” If they ˹falsely˺ testify, do not testify with them. And do not follow the desires of those who deny Our proofs, disbelieve in the Hereafter, and set up equals with their Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,2,120,'Say, ˹O Prophet,˺ “Come! Let me recite to you what your Lord has forbidden to you: do not associate others with Him ˹in worship˺. ˹Do not fail to˺ honour your parents. Do not kill your children for fear of poverty. We provide for you and for them. Do not come near indecencies, openly or secretly. Do not take a ˹human˺ life—made sacred by Allah—except with ˹legal˺ right. This is what He has commanded you, so perhaps you will understand.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,2,120,'And do not come near the wealth of the orphan—unless intending to enhance it—until they attain maturity. Give full measure and weigh with justice. We never require of any soul more than what it can afford. Whenever you speak, maintain justice—even regarding a close relative. And fulfil your covenant with Allah. This is what He has commanded you, so perhaps you will be mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,2,120,'Indeed, that is My Path—perfectly straight. So follow it and do not follow other ways, for they will lead you away from His Way. This is what He has commanded you, so perhaps you will be conscious ˹of Allah˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,2,120,'Additionally, We gave Moses the Scripture, completing the favour upon those who do good, detailing everything, and as a guide and a mercy, so perhaps they would be certain of the meeting with their Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,2,120,'This is a blessed Book We have revealed. So follow it and be mindful ˹of Allah˺, so you may be shown mercy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,2,120,'You ˹pagans˺ can no longer say, “Scriptures were only revealed to two groups before us and we were unaware of their teachings.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,2,120,'Nor can you say, “If only the Scriptures had been revealed to us, we would have been better guided than they.” Now there has come to you from your Lord a clear proof—a guide and mercy. Who then does more wrong than those who deny Allah’s revelations and turn away from them? We will reward those who turn away from Our revelations with a dreadful punishment for turning away.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,2,120,'Are they awaiting the coming of the angels, or your Lord ˹Himself˺, or some of your Lord’s ˹major˺ signs? On the Day your Lord’s signs arrive, belief will not benefit those who did not believe earlier or those who did no good through their faith. Say, “Keep waiting! We too are waiting.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,2,120,'Indeed, you ˹O Prophet˺ are not responsible whatsoever for those who have divided their faith and split into sects. Their judgment rests only with Allah. And He will inform them of what they used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,2,120,'Whoever comes with a good deed will be rewarded tenfold. But whoever comes with a bad deed will be punished for only one. None will be wronged.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,2,120,'Say, ˹O Prophet,˺ “Surely my Lord has guided me to the Straight Path, a perfect way, the faith of Abraham, the upright, who was not one of the polytheists.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,2,120,'Say, “Surely my prayer, my worship, my life, and my death are all for Allah—Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,2,120,'He has no partner. So I am commanded, and so I am the first to submit.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,2,120,'Say, ˹O Prophet,˺ “Should I seek a lord other than Allah while He is the Lord of everything?” No one will reap except what they sow. No soul burdened with sin will bear the burden of another. Then to your Lord is your return, and He will inform you of your differences.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,2,120,'He is the One Who has placed you as successors on earth and elevated some of you in rank over others, so He may test you with what He has given you. Surely your Lord is swift in punishment, but He is certainly All-Forgiving, Most Merciful.');
+INSERT INTO chapters (id, number, quran_id) VALUES(121,7,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,121,'Alif-Lãm-Mĩm-Ṣãd.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,121,'˹This is˺ a Book sent down to you ˹O Prophet˺—do not let anxiety into your heart regarding it—so with it you may warn ˹the disbelievers˺, and as a reminder to the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,121,'Follow what has been sent down to you from your Lord, and do not take others as guardians besides Him. How seldom are you mindful!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,121,'˹Imagine˺ how many societies We have destroyed! Our torment took them by surprise ˹while sleeping˺ at night or midday.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,121,'Their only cry—when overwhelmed by Our torment—was, “We have indeed been wrongdoers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,121,'We will surely question those who received messengers and We will question the messengers ˹themselves˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,121,'Then We will give them a full account with sure knowledge—for We were never absent.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,121,'The weighing on that Day will be just. As for those whose scale will be heavy ˹with good deeds˺, ˹only˺ they will be successful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,121,'But those whose scale is light, they have doomed themselves for wrongfully denying Our signs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,121,'We have indeed established you on earth and provided you with a means of livelihood. ˹Yet˺ you seldom give any thanks.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,121,'Surely We created you, then shaped you, then said to the angels, “Prostrate before Adam,” so they all did—but not Iblîs, who refused to prostrate with the others.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,121,'Allah asked, “What prevented you from prostrating when I commanded you?” He replied, “I am better than he is: You created me from fire and him from clay.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,121,'Allah said, “Then get down from Paradise! It is not for you to be arrogant here. So get out! You are truly one of the disgraced.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,121,'He appealed, “Then delay my end until the Day of their resurrection.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,121,'Allah said, “You are delayed ˹until the appointed Day˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,121,'He said, “For leaving me to stray I will lie in ambush for them on Your Straight Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,121,'I will approach them from their front, their back, their right, their left, and then You will find most of them ungrateful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,121,'Allah said, “Get out of Paradise! You are disgraced and rejected! I will certainly fill up Hell with you and your followers all together.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,121,'˹Allah said,˺ “O Adam! Live with your wife in Paradise and eat from wherever you please, but do not approach this tree, or else you will be wrongdoers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,121,'Then Satan tempted them in order to expose what was hidden of their nakedness. He said, “Your Lord has forbidden this tree to you only to prevent you from becoming angels or immortals.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,121,'And he swore to them, “I am truly your sincere advisor.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,121,'So he brought about their fall through deception. And when they tasted of the tree, their nakedness was exposed to them, prompting them to cover themselves with leaves from Paradise. Then their Lord called out to them, “Did I not forbid you from that tree and ˹did I not˺ tell you that Satan is your sworn enemy?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,121,'They replied, “Our Lord! We have wronged ourselves. If You do not forgive us and have mercy on us, we will certainly be losers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,121,'Allah said, “Descend as enemies to each other. You will find in the earth a residence and provision for your appointed stay.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,121,'He added, “There you will live, there you will die, and from there you will be resurrected.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,121,'O children of Adam! We have provided for you clothing to cover your nakedness and as an adornment. However, the best clothing is righteousness. This is one of Allah’s bounties, so perhaps you will be mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,121,'O children of Adam! Do not let Satan deceive you as he tempted your parents out of Paradise and caused their cover to be removed in order to expose their nakedness. Surely he and his soldiers watch you from where you cannot see them. We have made the devils allies of those who disbelieve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,121,'Whenever they commit a shameful deed, they say, “We found our forefathers doing it and Allah has commanded us to do it.” Say, “No! Allah never commands what is shameful. How can you attribute to Allah what you do not know?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,121,'Say, ˹O Prophet,˺ “My Lord has commanded uprightness and dedication ˹to Him alone˺ in worship, calling upon Him with sincere devotion. Just as He first brought you into being, you will be brought to life again.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,121,'He has guided some, while others are destined to stray. They have taken devils as their masters instead of Allah—thinking they are ˹rightly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,121,'O Children of Adam! Dress properly whenever you are at worship. Eat and drink, but do not waste. Surely He does not like the wasteful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,121,'Ask, ˹O Prophet,˺ “Who has forbidden the adornments and lawful provisions Allah has brought forth for His servants?” Say, “They are for the enjoyment of the believers in this worldly life, but they will be exclusively theirs on the Day of Judgment. This is how We make Our revelations clear for people of knowledge.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,121,'Say, “My Lord has only forbidden open and secret indecencies, sinfulness, unjust aggression, associating ˹others˺ with Allah ˹in worship˺—a practice He has never authorized—and attributing to Allah what you do not know.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,121,'For each community there is an appointed term. When their time arrives, they can neither delay it for a moment, nor could they advance it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,121,'O children of Adam! When messengers from among yourselves come to you reciting My revelations—whoever shuns evil and mends their ways, there will be no fear for them, nor will they grieve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,121,'But those who receive Our revelations with denial and arrogance will be the residents of the Fire. They will be there forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,121,'Who does more wrong than those who fabricate lies against Allah or deny His revelations? They will receive what is destined for them, until Our messenger-angels arrive to take their souls, asking them, “Where are those ˹false gods˺ you used to invoke besides Allah?” They will cry, “They have failed us,” and they will confess against themselves that they were indeed disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,121,'Allah will say, “Enter the Fire along with the ˹evil˺ groups of jinn and humans that preceded you.” Whenever a group enters Hell, it will curse the preceding one until they are all gathered inside, the followers will say about their leaders, “Our Lord! They have misled us, so multiply their torment in the Fire.” He will answer, “It has already been multiplied for all, but you do not know.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,121,'Then the leaders will say to their followers, “You were no better than us! So taste the torment for what you used to commit.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,121,'Surely those who receive our revelations with denial and arrogance, the gates of heaven will not be opened for them, nor will they enter Paradise until a camel passes through the eye of a needle. This is how We reward the wicked.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,121,'Hell will be their bed; flames will be their cover. This is how We reward the wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,121,'As for those who believe and do good—We never require of any soul more than what it can afford—it is they who will be the residents of Paradise. They will be there forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,121,'We will remove whatever bitterness they had in their hearts. Rivers will flow under their feet. And they will say, “Praise be to Allah for guiding us to this. We would have never been guided if Allah had not guided us. The messengers of our Lord had certainly come with the truth.” It will be announced to them, “This is Paradise awarded to you for what you used to do.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,121,'The residents of Paradise will call out to the residents of the Fire, “We have certainly found our Lord’s promise to be true. Have you too found your Lord’s promise to be true?” They will reply, “Yes, we have!” Then a caller will announce to both, “May Allah’s condemnation be upon the wrongdoers,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,121,'those who hindered ˹others˺ from Allah’s Way, strived to make it ˹appear˺ crooked, and disbelieved in the Hereafter.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,121,'There will be a barrier between Paradise and Hell. And on the heights ˹of that barrier˺ will be people who will recognize ˹the residents of˺ both by their appearance. They will call out to the residents of Paradise, “Peace be upon you!” They will have not yet entered Paradise, but eagerly hope to.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,121,'When their eyes will turn towards the residents of Hell, they will pray, “Our Lord! Do not join us with the wrongdoing people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,121,'Those on the heights will call out to some ˹tyrants in the Fire˺, who they will recognize by their appearance, saying, “Your large numbers and arrogance are of no use ˹today˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,121,'Are these ˹humble believers˺ the ones you swore would never be shown Allah’s mercy?” ˹Finally, those on the heights will be told:˺ “Enter Paradise! There will be no fear for you, nor will you grieve.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,121,'The residents of the Fire will then cry out to the residents of Paradise, “Aid us with some water or any provision Allah has granted you.” They will reply, “Allah has forbidden both to the disbelievers,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,121,'those who took this faith ˹of Islam˺ as mere amusement and play and were deluded by ˹their˺ worldly life.” ˹Allah will say,˺ “Today We will ignore them just as they ignored the coming of this Day of theirs and for rejecting Our revelations.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,121,'We have certainly brought them a Book which We explained with knowledge—a guide and mercy for those who believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,121,'Do they only await the fulfilment ˹of its warning˺? The Day it will be fulfilled, those who ignored it before will say, “The messengers of our Lord certainly came with the truth. Are there any intercessors who can plead on our behalf? Or can we be sent back so we may do ˹good,˺ unlike what we used to do?” They will have certainly ruined themselves, and whatever ˹gods˺ they fabricated will fail them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,121,'Indeed your Lord is Allah Who created the heavens and the earth in six Days, then established Himself on the Throne. He makes the day and night overlap in rapid succession. He created the sun, the moon, and the stars—all subjected by His command. The creation and the command belong to Him ˹alone˺. Blessed is Allah—Lord of all worlds!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,121,'Call upon your Lord humbly and secretly. Surely He does not like the transgressors.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,121,'Do not spread corruption in the land after it has been set in order. And call upon Him with hope and fear. Indeed, Allah’s mercy is always close to the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,121,'He is the One Who sends the winds ushering in His mercy. When they bear heavy clouds, We drive them to a lifeless land and then cause rain to fall, producing every type of fruit. Similarly, We will bring the dead to life, so perhaps you will be mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,121,'The fertile land produces abundantly by the Will of its Lord, whereas the infertile land hardly produces anything. This is how We vary ˹Our˺ lessons to those who are thankful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,121,'Indeed, We sent Noah to his people. He said, “O my people! Worship Allah—you have no other god except Him. I truly fear for you the torment of a tremendous Day.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,121,'But the chiefs of his people said, “We surely see that you are clearly misguided.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,121,'He replied, “O my people! I am not misguided! But I am a messenger from the Lord of all worlds,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,121,'conveying to you my Lord’s messages and giving you ˹sincere˺ advice. And I know from Allah what you do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,121,'Do you find it astonishing that a reminder should come to you from your Lord through one of your own, warning you, so you may beware and perhaps be shown mercy?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,121,'But they rejected him, so We saved him and those with him in the Ark, and drowned those who rejected Our signs. They were certainly a blind people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,121,'And to the people of ’Âd We sent their brother Hûd. He said, “O my people! Worship Allah—you have no other god except Him. Will you not then fear Him?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,121,'The disbelieving chiefs of his people responded, “We surely see you as a fool, and we certainly think you are a liar.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,121,'Hûd replied, “O my people! I am no fool! But I am a messenger from the Lord of all worlds,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,121,'conveying to you my Lord’s messages. And I am your sincere advisor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,121,'Do you find it astonishing that a reminder should come to you from your Lord through one of your own so he may warn you? Remember that He made you successors after the people of Noah and increased you greatly in stature. So remember Allah’s favours, so you may be successful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,121,'They said, “Have you come to us so that we would worship Allah alone and abandon what our forefathers used to worship? Then bring us what you threaten us with, if what you say is true!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,121,'He said, “You will certainly be subjected to your Lord’s torment and wrath. Do you dispute with me regarding the so-called gods which you and your forefathers have made up—a practice Allah has never authorized? Then wait! I too am waiting with you.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,121,'So We saved him and those with him by Our mercy and uprooted those who denied Our signs. They were not believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,121,'And to the people of Thamûd We sent their brother Ṣâliḥ. He said, “O my people! Worship Allah—you have no other god except Him. A clear proof has come to you from your Lord: this is Allah’s she-camel as a sign to you. So leave her to graze ˹freely˺ on Allah’s land and do not harm her, or else you will be overcome by a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,121,'Remember when He made you successors after ’Âd and established you in the land—˹and˺ you built palaces on its plains and carved homes into mountains. So remember Allah’s favours, and do not go about spreading corruption in the land.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,121,'The arrogant chiefs of his people asked the lowly who believed among them, “Are you certain that Ṣâliḥ has been sent by his Lord?” They replied, “We certainly believe in what he has been sent with.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,121,'The arrogant said, “We surely reject what you believe in.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,121,'Then they killed the she-camel—defying their Lord’s command—and challenged ˹Ṣâliḥ˺, “Bring us what you threaten us with, if you are ˹truly˺ one of the messengers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,121,'Then an ˹overwhelming˺ earthquake struck them, and they fell lifeless in their homes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,121,'So he turned away from them, saying, “O my people! Surely I conveyed to you my Lord’s message and gave you ˹sincere˺ advice, but you do not like ˹sincere˺ advisors.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,121,'And ˹remember˺ when Lot scolded ˹the men of˺ his people, ˹saying,˺ “Do you commit a shameful deed that no man has ever done before?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,121,'You lust after men instead of women! You are certainly transgressors.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,121,'But his people’s only response was to say, “Expel them from your land! They are a people who wish to remain chaste!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,121,'So We saved him and his family except his wife, who was one of the doomed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,121,'We poured upon them a rain ˹of brimstone˺. See what was the end of the wicked!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,121,'And to the people of Midian We sent their brother Shu’aib. He said, “O my people! Worship Allah—you have no other god except Him. A clear proof has already come to you from your Lord. So give just measure and weight, do not defraud people of their property, nor spread corruption in the land after it has been set in order. This is for your own good, if you are ˹truly˺ believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,121,'And do not lie in ambush on every road—threatening and hindering those who believe in Allah from His Path and striving to make it ˹appear˺ crooked. Remember when you were few, then He increased you in number. And consider the fate of the corruptors!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,121,'If some of you do believe in what I have been sent with while others do not, then be patient until Allah judges between us. He is the Best of Judges.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,121,'The arrogant chiefs of his people threatened, “O Shu’aib! We will certainly expel you and your fellow believers from our land, unless you return to our faith.” He replied, “Even if we hate it?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,121,'We would surely be fabricating a lie against Allah if we were to return to your faith after Allah has saved us from it. It does not befit us to return to it unless it is the Will of Allah, our Lord. Our Lord has encompassed everything in ˹His˺ knowledge. In Allah we trust. Our Lord! Judge between us and our people with truth. You are the best of those who judge.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,121,'The disbelieving chiefs of his people threatened, “If you follow Shu’aib, you will surely be losers!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,121,'Then an ˹overwhelming˺ earthquake struck them and they fell lifeless in their homes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,121,'Those who rejected Shu’aib were ˹wiped out˺ as if they had never lived there. Those who rejected Shu’aib were the true losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,121,'He turned away from them, saying, “O my people! Indeed, I have delivered to you the messages of my Lord and gave you ˹sincere˺ advice. How can I then grieve for those who chose to disbelieve?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,121,'Whenever We sent a prophet to a society, We afflicted its ˹disbelieving˺ people with suffering and adversity, so perhaps they would be humbled.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,121,'Then We changed their adversity to prosperity until they flourished and argued ˹falsely˺, “Our forefathers ˹too˺ had been visited by adversity and prosperity.” So We seized them by surprise, while they were unaware.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,121,'Had the people of those societies been faithful and mindful ˹of Allah˺, We would have overwhelmed them with blessings from heaven and earth. But they disbelieved, so We seized them for what they used to commit.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,121,'Did the people of those societies feel secure that Our punishment would not come upon them by night while they were asleep?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,121,'Or did they feel secure that Our punishment would not come upon them by day while they were at play?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,121,'Did they feel secure against Allah’s planning? None would feel secure from Allah’s planning except the losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,2,121,'Is it not clear to those who take over the land after ˹the destruction of˺ its former residents that—if We will—We can punish them ˹too˺ for their sins and seal their hearts so they will not hear ˹the truth˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,2,121,'We have narrated to you ˹O Prophet˺ some of the stories of those societies. Surely, their messengers came to them with clear proofs, but still they would not believe in what they had already denied. This is how Allah seals the hearts of the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,2,121,'We did not find most of them true to their covenant. Rather, We found most of them truly rebellious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,2,121,'Then after them We sent Moses with Our signs to Pharaoh and his chiefs, but they wrongfully rejected them. See what was the end of the corruptors!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,2,121,'And Moses said, “O Pharaoh! I am truly a messenger from the Lord of all worlds,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,2,121,'obliged to say nothing about Allah except the truth. Indeed, I have come to you with clear proof from your Lord, so let the children of Israel go with me.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,2,121,'Pharaoh said, “If you have come with a sign, then bring it if what you say is true.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,2,121,'So Moses threw down his staff and—behold!—it became a real snake.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,2,121,'Then he drew his hand ˹out of his collar˺ and it was ˹shining˺ white for all to see.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,2,121,'The chiefs of Pharaoh’s people said, “He is indeed a skilled magician,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,2,121,'who seeks to drive you from your land.” ˹So Pharaoh asked,˺ “What do you propose?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,2,121,'They replied, “Let him and his brother wait and send mobilizers to all cities');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,2,121,'to bring you every clever magician.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,2,121,'The magicians came to Pharaoh, saying, “Shall we receive a ˹suitable˺ reward if we prevail?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,2,121,'He replied, “Yes, and you will certainly be among those closest to me.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,2,121,'They asked, “O Moses! Will you cast, or shall we be the first to cast?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,2,121,'Moses said, “You first.” So when they did, they deceived the eyes of the people, stunned them, and made a great display of magic.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,2,121,'Then We inspired Moses, “Throw down your staff,” and—behold!—it devoured the objects of their illusion!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,2,121,'So the truth prevailed and their illusions failed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,2,121,'So Pharaoh and his people were defeated right there and put to shame.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,2,121,'And the magicians fell down, prostrating.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,2,121,'They declared, “We ˹now˺ believe in the Lord of all worlds—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,2,121,'the Lord of Moses and Aaron.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,2,121,'Pharaoh threatened, “How dare you believe in him before I give you permission? This must be a conspiracy you devised in the city to drive out its people, but soon you will see.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,2,121,'I will certainly cut off your hands and feet on opposite sides, then crucify you all.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,2,121,'They responded, “Surely to our Lord we will ˹all˺ return.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,2,121,'Your rage towards us is only because we believed in the signs of our Lord when they came to us. Our Lord! Shower us with perseverance, and let us die while submitting ˹to You˺.” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,2,121,'The chiefs of Pharaoh’s people protested, “Are you going to leave Moses and his people free to spread corruption in the land and abandon you and your gods?” He responded, “We will kill their sons and keep their women. We will completely dominate them.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,2,121,'Moses reassured his people, “Seek Allah’s help and be patient. Indeed, the earth belongs to Allah ˹alone˺. He grants it to whoever He chooses of His servants. The ultimate outcome belongs ˹only˺ to the righteous.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,2,121,'They complained, “We have always been oppressed—before and after you came to us ˹with the message˺.” He replied, “Perhaps your Lord will destroy your enemy and make you successors in the land to see what you will do.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,2,121,'Indeed, We afflicted Pharaoh’s people with famine and shortage of crops so they might come back ˹to their senses˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,2,121,'In times of prosperity, they said, “This is what we deserve,” but in adversity, they blamed it on Moses and those with him. Surely all is destined by Allah. Yet most of them did not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,2,121,'They said, “No matter what sign you may bring to deceive us, we will never believe in you.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,2,121,'So We plagued them with floods, locusts, lice, frogs, and blood—all as clear signs, but they persisted in arrogance and were a wicked people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,2,121,'When tormented, they pleaded, “O Moses! Pray to your Lord on our behalf, by virtue of the covenant He made with you. If you help remove this torment from us, we will certainly believe in you and let the Children of Israel go with you.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,2,121,'But as soon as We removed the torment from them—until they met their inevitable fate—they broke their promise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,2,121,'So We inflicted punishment upon them, drowning them in the sea for denying Our signs and being heedless of them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,2,121,'And ˹so˺ We made the oppressed people successors of the eastern and western lands, which We had showered with blessings. ˹In this way˺ the noble Word of your Lord was fulfilled for the Children of Israel for what they had endured. And We destroyed what Pharaoh and his people constructed and what they established.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,2,121,'We brought the Children of Israel across the sea and they came upon a people devoted to idols. They demanded, “O Moses! Make for us a god like their gods.” He replied, “Indeed, you are a people acting ignorantly!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,2,121,'What they follow is certainly doomed to destruction and their deeds are in vain.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,2,121,'He added, “Shall I seek for you a god other than Allah, while He has honoured you above the others?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,2,121,'And ˹remember˺ when We rescued you from the people of Pharaoh, who afflicted you with dreadful torment—killing your sons and keeping your women. That was a severe test from your Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,2,121,'We appointed for Moses thirty nights then added another ten—completing his Lord’s term of forty nights. Moses commanded his brother Aaron, “Take my place among my people, do what is right, and do not follow the way of the corruptors.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,2,121,'When Moses came at the appointed time and his Lord spoke to him, he asked, “My Lord! Reveal Yourself to me so I may see You.” Allah answered, “You cannot see Me! But look at the mountain. If it remains firm in its place, only then will you see Me.” When his Lord appeared to the mountain, He levelled it to dust and Moses collapsed unconscious. When he recovered, he cried, “Glory be to You! I turn to You in repentance and I am the first of the believers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,2,121,'Allah said, “O Moses! I have ˹already˺ elevated you above all others by My messages and speech. So hold firmly to what I have given you and be grateful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,2,121,'We wrote for him on the Tablets ˹the fundamentals˺ of everything; commandments and explanations of all things. ˹We commanded,˺ “Hold to this firmly and ask your people to take the best of it. I will soon show ˹all of˺ you the home of the rebellious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,2,121,'I will turn away from My signs those who act unjustly with arrogance in the land. And even if they were to see every sign, they still would not believe in them. If they see the Right Path, they will not take it. But if they see a crooked path, they will follow it. This is because they denied Our signs and were heedless of them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,2,121,'The deeds of those who deny Our signs and the meeting ˹with Allah˺ in the Hereafter will be in vain. Will they be rewarded except for what they have done?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,2,121,'In the absence of Moses, his people made from their ˹golden˺ jewellery an idol of a calf that made a lowing sound. Did they not see that it could neither speak to them nor guide them to the ˹Right˺ Path? Still they took it as a god and were wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,2,121,'Later, when they were filled with remorse and realized they had gone astray, they cried, “If our Lord does not have mercy on us and forgive us, we will certainly be losers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,2,121,'Upon Moses’ return to his people, ˹totally˺ furious and sorrowful, he said, “What an evil thing you committed in my absence! Did you want to hasten your Lord’s torment?” Then he threw down the Tablets and grabbed his brother by the hair, dragging him closer. Aaron pleaded, “O son of my mother! The people overpowered me and were about to kill me. So do not ˹humiliate me and˺ make my enemies rejoice, nor count me among the wrongdoing people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,2,121,'Moses prayed, “My Lord! Forgive me and my brother! And admit us into Your mercy. You are the Most Merciful of the merciful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,2,121,'Those who worshipped the calf will certainly be afflicted with Allah’s wrath as well as disgrace in the life of this world. This is how We reward those who invent falsehood.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,2,121,'But those who commit evil, then repent and become ˹true˺ believers, your Lord will certainly be All-Forgiving, Most-Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,2,121,'When Moses’ anger subsided, he took up the Tablets whose text contained guidance and mercy for those who stand in awe of their Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,2,121,'Moses chose seventy men from among his people for Our appointment and, when they were seized by an earthquake, he cried, “My Lord! Had You willed, You could have destroyed them long ago, and me as well. Will You destroy us for what the foolish among us have done? This is only a test from You—by which You allow whoever you will to stray and guide whoever You will. You are our Guardian. So forgive us and have mercy on us. You are the best forgiver.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,2,121,'Ordain for us what is good in this life and the next. Indeed, we have turned to You ˹in repentance˺.” Allah replied, “I will inflict My torment on whoever I will. But My mercy encompasses everything. I will ordain mercy for those who shun evil, pay alms-tax, and believe in Our revelations.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,2,121,'“˹They are˺ the ones who follow the Messenger, the unlettered Prophet, whose description they find in their Torah and the Gospel. He commands them to do good and forbids them from evil, permits for them what is lawful and forbids to them what is impure, and relieves them from their burdens and the shackles that bound them. ˹Only˺ those who believe in him, honour and support him, and follow the light sent down to him will be successful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,2,121,'Say, ˹O Prophet,˺ “O humanity! I am Allah’s Messenger to you all. To Him ˹alone˺ belongs the kingdom of the heavens and the earth. There is no god ˹worthy of worship˺ except Him. He gives life and causes death.” So believe in Allah and His Messenger, the unlettered Prophet, who believes in Allah and His revelations. And follow him, so you may be ˹rightly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,2,121,'There are some among the people of Moses who guide with the truth and establish justice accordingly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,2,121,'We divided them into twelve tribes—each as a community. And We revealed to Moses, when his people asked for water, “Strike the rock with your staff.” Then twelve springs gushed out. Each tribe knew its drinking place. We shaded them with clouds and sent down to them manna and quails, ˹saying˺, “Eat from the good things We have provided for you.” They ˹certainly˺ did not wrong Us, but wronged themselves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,2,121,'And ˹remember˺ when it was said to them, “Enter this city ˹of Jerusalem˺ and eat from wherever you please. Say, ‘Absolve us,’ and enter the gate with humility. We will forgive your sins, ˹and˺ We will multiply the reward for the good-doers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,2,121,'But the wrongdoers among them changed the words they were commanded to say. So We sent down a punishment from the heavens upon them for their wrongdoing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,2,121,'Ask them ˹O Prophet˺ about ˹the people of˺ the town which was by the sea, who broke the Sabbath. During the Sabbath, ˹abundant˺ fish would come to them clearly visible, but on other days the fish were never seen. In this way We tested them for their rebelliousness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,2,121,'When some of ˹the righteous among˺ them questioned ˹their fellow Sabbath-keepers˺, “Why do you ˹bother to˺ warn those ˹Sabbath-breakers˺ who will either be destroyed or severely punished by Allah?” They replied, “Just to be free from your Lord’s blame, and so perhaps they may abstain.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,2,121,'When they ignored the warning they were given, We rescued those who used to warn against evil and overtook the wrongdoers with a dreadful punishment for their rebelliousness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,2,121,'But when they stubbornly persisted in violation, We said to them, “Be disgraced apes!” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,2,121,'And ˹remember, O Prophet,˺ when your Lord declared that He would send against them others who would make them suffer terribly until the Day of Judgment. Indeed, your Lord is swift in punishment, but He is certainly All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,2,121,'We dispersed them through the land in groups—some were righteous, others were less so. We tested them with prosperity and adversity, so perhaps they would return ˹to the Right Path˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,2,121,'Then they were succeeded by other generations who inherited the Scripture. They indulged in unlawful gains, claiming, “We will be forgiven ˹after all˺.” And if similar gain came their way, they would seize it. Was a covenant not taken from them in the Scripture that they would not say anything about Allah except the truth? And they were already well-versed in its teachings. But the ˹eternal˺ Home of the Hereafter is far better for those mindful ˹of Allah˺. Will you not then understand?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,2,121,'As for those who firmly abide by the Scripture and establish prayer—surely We never discount the reward of those acting righteously.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,2,121,'And ˹remember˺ when We raised the mountain over them as if it were a cloud and they thought it would fall on them. ˹We said,˺ “Hold firmly to that ˹Scripture˺ which We have given you and observe its teachings so perhaps you will become mindful ˹of Allah˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,2,121,'And ˹remember˺ when your Lord brought forth from the loins of the children of Adam their descendants and had them testify regarding themselves. ˹Allah asked,˺ “Am I not your Lord?” They replied, “Yes, You are! We testify.” ˹He cautioned,˺ “Now you have no right to say on Judgment Day, ‘We were not aware of this.’');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,2,121,'Nor say, ‘It was our forefathers who had associated others ˹with Allah in worship˺ and we, as their descendants, followed in their footsteps. Will you then destroy us for the falsehood they invented?’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,2,121,'This is how We make our signs clear, so perhaps they will return ˹to the Right Path˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,2,121,'And relate to them ˹O Prophet˺ the story of the one to whom We gave Our signs, but he abandoned them, so Satan took hold of him, and he became a deviant.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,2,121,'If We had willed, We would have elevated him with Our signs, but he clung to this life—following his evil desires. His example is that of a dog: if you chase it away, it pants, and if you leave it, it ˹still˺ pants. This is the example of the people who deny Our signs. So narrate ˹to them˺ stories ˹of the past˺, so perhaps they will reflect.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,2,121,'What an evil example of those who denied Our signs! They ˹only˺ wronged their own souls.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,2,121,'Whoever Allah guides is truly guided. And whoever He leaves to stray, they are the ˹true˺ losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,2,121,'Indeed, We have destined many jinn and humans for Hell. They have hearts they do not understand with, eyes they do not see with, and ears they do not hear with. They are like cattle. In fact, they are even less guided! Such ˹people˺ are ˹entirely˺ heedless.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,2,121,'Allah has the Most Beautiful Names. So call upon Him by them, and keep away from those who abuse His Names. They will be punished for what they used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,2,121,'And among those We created is a group that guides with the truth and establishes justice accordingly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,2,121,'As for those who deny Our signs, We will gradually draw them to destruction in ways they cannot comprehend.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(183,2,121,'I ˹only˺ delay their end for a while, but My planning is flawless.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(184,2,121,'Have they not ever given it a thought? Their fellow man is not insane. He is only sent with a clear warning.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(185,2,121,'Have they ever reflected on the wonders of the heavens and the earth, and everything Allah has created, and that perhaps their end is near? So what message after this ˹Quran˺ would they believe in?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(186,2,121,'Whoever Allah allows to stray, none can guide, leaving them to wander blindly in their defiance.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(187,2,121,'They ask you ˹O Prophet˺ regarding the Hour, “When will it be?” Say, “That knowledge is only with my Lord. He alone will reveal it when the time comes. It is too tremendous for the heavens and the earth and will only take you by surprise.” They ask you as if you had full knowledge of it. Say, “That knowledge is only with Allah, but most people do not know.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(188,2,121,'Say, “I have no power to benefit or protect myself, except by the Will of Allah. If I had known the unknown, I would have benefited myself enormously, and no harm would have ever touched me. I am only a warner and deliverer of good news for those who believe.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(189,2,121,'He is the One Who created you from a single soul, then from it made its spouse so he may find comfort in her. After he had been united with her, she carried a light burden that developed gradually. When it grew heavy, they prayed to Allah, their Lord, “If you grant us good offspring, we will certainly be grateful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(190,2,121,'But when He granted their descendants good offspring, they associated false gods in what He has given them. Exalted is Allah above what they associate ˹with Him˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(191,2,121,'Do they associate ˹with Allah˺ those ˹idols˺ which cannot create anything, but are in fact created;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(192,2,121,'which cannot help them, or even help themselves?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(193,2,121,'And if you ˹idolaters˺ call upon them for guidance, they cannot respond to you. It is all the same whether you call them or remain silent.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(194,2,121,'Those ˹idols˺ you invoke besides Allah are created beings like yourselves. So call upon them and see if they will answer you, if your claims are true!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(195,2,121,'Do they have feet to walk with? Or hands to hold with? Or eyes to see with? Or ears to hear with? Say, ˹O Prophet,˺ “Call upon your associate-gods and conspire against me without delay!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(196,2,121,'“Indeed, my Protector is Allah Who has revealed this Book. For He ˹alone˺ protects the righteous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(197,2,121,'But those ˹false gods˺ you call besides Him can neither help you nor even themselves.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(198,2,121,'If you ˹idolaters˺ call them to guidance, they cannot hear. And you ˹O Prophet˺ may see them facing towards you, but they cannot see.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(199,2,121,'Be gracious, enjoin what is right, and turn away from those who act ignorantly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(200,2,121,'If you are tempted by Satan, then seek refuge with Allah. Surely He is All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(201,2,121,'Indeed, when Satan whispers to those mindful ˹of Allah˺, they remember ˹their Lord˺ then they start to see ˹things˺ clearly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(202,2,121,'But the devils persistently plunge their ˹human˺ associates deeper into wickedness, sparing no effort.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(203,2,121,'If you ˹O Prophet˺ do not bring them a sign ˹which they demanded˺, they ask, “Why do you not make it yourself?” Say, “I only follow what is revealed to me from my Lord. This ˹Quran˺ is an insight from your Lord—a guide and a mercy for those who believe.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(204,2,121,'When the Quran is recited, listen to it attentively and be silent, so you may be shown mercy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(205,2,121,'Remember your Lord inwardly with humility and reverence and in a moderate tone of voice, both morning and evening. And do not be one of the heedless.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(206,2,121,'Surely those ˹angels˺ nearest to your Lord are not too proud to worship Him. They glorify Him. And to Him they prostrate.');
+INSERT INTO chapters (id, number, quran_id) VALUES(122,8,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,122,'They ask you ˹O Prophet˺ regarding the spoils of war. Say, “Their distribution is decided by Allah and His Messenger. So be mindful of Allah, settle your affairs, and obey Allah and His Messenger if you are ˹true˺ believers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,122,'The ˹true˺ believers are only those whose hearts tremble at the remembrance of Allah, whose faith increases when His revelations are recited to them, and who put their trust in their Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,122,'˹They are˺ those who establish prayer and donate from what We have provided for them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,122,'It is they who are the true believers. They will have elevated ranks, forgiveness, and an honourable provision from their Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,122,'Similarly, when your Lord brought you ˹O Prophet˺ out of your home for a just cause, a group of believers was totally against it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,122,'They disputed with you about the truth after it had been made clear, as if they were being driven to death with their eyes wide open.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,122,'˹Remember, O believers,˺ when Allah promised ˹to give˺ you the upper hand over either target, you wished to capture the unarmed party. But it was Allah’s Will to establish the truth by His Words and uproot the disbelievers;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,122,'to firmly establish the truth and wipe out falsehood—even to the dismay of the wicked.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,122,'˹Remember˺ when you cried out to your Lord for help, He answered, “I will reinforce you with a thousand angels—followed by many others.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,122,'And Allah made this a sign of victory and reassurance to your hearts. Victory comes only from Allah. Surely Allah is Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,122,'˹Remember˺ when He caused drowsiness to overcome you, giving you serenity. And He sent down rain from the sky to purify you, free you from Satan’s whispers, strengthen your hearts, and make ˹your˺ steps firm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,122,'˹Remember, O Prophet,˺ when your Lord revealed to the angels, “I am with you. So make the believers stand firm. I will cast horror into the hearts of the disbelievers. So strike their necks and strike their fingertips.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,122,'This is because they defied Allah and His Messenger. And whoever defies Allah and His Messenger, then ˹know that˺ Allah is surely severe in punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,122,'That ˹worldly punishment˺ is yours, so taste it! Then the disbelievers will suffer the torment of the Fire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,122,'O believers! When you face the disbelievers in battle, never turn your backs to them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,122,'And whoever does so on such an occasion—unless it is a manoeuvre or to join their own troops—will earn the displeasure of Allah, and their home will be Hell. What an evil destination!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,122,'It was not you ˹believers˺ who killed them, but it was Allah Who did so. Nor was it you ˹O Prophet˺ who threw ˹a handful of sand at the disbelievers˺, but it was Allah Who did so, rendering the believers a great favour. Surely Allah is All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,122,'As such, Allah frustrates the evil plans of the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,122,'If you ˹Meccans˺ sought judgment, now it has come to you. And if you cease, it will be for your own good. But if you persist, We will persist. And your forces—no matter how numerous they might be—will not benefit you whatsoever. For Allah is certainly with the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,122,'O believers! Obey Allah and His Messenger and do not turn away from him while you hear ˹his call˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,122,'Do not be like those who say, “We hear,” but in fact they are not listening.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,122,'Indeed, the worst of all beings in the sight of Allah are the ˹wilfully˺ deaf and dumb, who do not understand.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,122,'Had Allah known any goodness in them, He would have certainly made them hear. ˹But˺ even if He had made them hear, they would have surely turned away heedlessly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,122,'O believers! Respond to Allah and His Messenger when he calls you to that which gives you life. And know that Allah stands between a person and their heart, and that to Him you will all be gathered.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,122,'Beware of a trial that will not only affect the wrongdoers among you. And know that Allah is severe in punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,122,'Remember when you had been vastly outnumbered and oppressed in the land, constantly in fear of attacks by your enemy, then He sheltered you, strengthened you with His help, and provided you with good things so perhaps you would be thankful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,122,'O believers! Do not betray Allah and the Messenger, nor betray your trusts knowingly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,122,'And know that your wealth and your children are only a test and that with Allah is a great reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,122,'O believers! If you are mindful of Allah, He will grant you a standard ˹to distinguish between right and wrong˺, absolve you of your sins, and forgive you. And Allah is the Lord of infinite bounty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,122,'And ˹remember, O Prophet,˺ when the disbelievers conspired to capture, kill, or exile you. They planned, but Allah also planned. And Allah is the best of planners.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,122,'Whenever Our revelations are recited to them, they challenge ˹you˺, “We have already heard ˹the recitation˺. If we wanted, we could have easily produced something similar. This ˹Quran˺ is nothing but ancient fables!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,122,'And ˹remember˺ when they prayed, “O Allah! If this is indeed the truth from You, then rain down stones upon us from the sky or overcome us with a painful punishment.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,122,'But Allah would never punish them while you ˹O Prophet˺ were in their midst. Nor would He ever punish them if they prayed for forgiveness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,122,'And why should Allah not punish them while they hinder pilgrims from the Sacred Mosque, claiming to be its rightful guardians? None has the right to guardianship except those mindful ˹of Allah˺, but most pagans do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,122,'Their prayer at the Sacred House was nothing but whistling and clapping. So taste the punishment for your disbelief.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,122,'Surely the disbelievers spend their wealth to hinder others from the Path of Allah. They will continue to spend to the point of regret. Then they will be defeated and the disbelievers will be driven into Hell,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,122,'so Allah may separate the evil from the good. He will pile up the evil ones all together and then cast them into Hell. They are the ˹true˺ losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,122,'Tell the disbelievers that if they desist, their past will be forgiven. But if they persist, then they have an example in those destroyed before them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,122,'Fight against them until there is no more persecution—and ˹your˺ devotion will be entirely to Allah. But if they desist, then surely Allah is All-Seeing of what they do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,122,'And if they do not comply, then know that Allah is your Protector. What an excellent Protector, and what an excellent Helper!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,122,'Know that whatever spoils you take, one-fifth is for Allah and the Messenger, his close relatives, orphans, the poor, and ˹needy˺ travellers, if you ˹truly˺ believe in Allah and what We revealed to Our servant on that decisive day when the two armies met ˹at Badr˺. And Allah is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,122,'˹Remember˺ when you were on the near side of the valley, your enemy on the far side, and the caravan was below you. Even if the two armies had made an appointment ˹to meet˺, both would have certainly missed it. Still it transpired so Allah may establish what He had destined—that those who were to perish and those who were to survive might do so after the truth had been made clear to both. Surely Allah is All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,122,'˹Remember, O Prophet,˺ when Allah showed them in your dream as few in number. Had He shown them to you as many, you ˹believers˺ would have certainly faltered and disputed in the matter. But Allah spared you ˹from that˺. Surely He knows best what is ˹hidden˺ in the heart.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,122,'Then when your armies met, Allah made them appear as few in your eyes, and made you appear as few in theirs, so Allah may establish what He had destined. And to Allah ˹all˺ matters will be returned ˹for judgment˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,122,'O believers! When you face an enemy, stand firm and remember Allah often so you may triumph.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,122,'Obey Allah and His Messenger and do not dispute with one another, or you would be discouraged and weakened. Persevere! Surely Allah is with those who persevere.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,122,'Do not be like those ˹pagans˺ who left their homes arrogantly, only to be seen by people and to hinder others from Allah’s Path. And Allah is Fully Aware of what they do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,122,'And ˹remember˺ when Satan made their ˹evil˺ deeds appealing to them, and said, “No one can overcome you today. I am surely by your side.” But when the two forces faced off, he cowered and said, “I have absolutely nothing to do with you. I certainly see what you do not see. I truly fear Allah, for Allah is severe in punishment.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,122,'˹Remember˺ when the hypocrites and those with sickness in their hearts said, “These ˹believers˺ are deluded by their faith.” But whoever puts their trust in Allah, surely Allah is Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,122,'If only you could see when the angels take the souls of the disbelievers, beating their faces and backs, ˹saying,˺ “Taste the torment of burning!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,122,'This is ˹the reward˺ for what your hands have done. And Allah is never unjust to ˹His˺ creation.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,122,'Their fate is that of the people of Pharaoh and those before them—they all disbelieved in Allah’s signs, so Allah seized them for their sins. Indeed, Allah is All-Powerful, severe in punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,122,'This is because Allah would never discontinue His favour to a people until they discontinue their faith. Surely Allah is All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,122,'That was the case with Pharaoh’s people and those before them—they all rejected the signs of their Lord, so We destroyed them for their sins and drowned Pharaoh’s people. They were all wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,122,'Indeed, the worst of all beings in the sight of Allah are those who persist in disbelief, never to have faith—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,122,'˹namely˺ those with whom you ˹O Prophet˺ have entered into treaties, but they violate them every time, not fearing the consequences.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,122,'If you ever encounter them in battle, make a fearsome example of them, so perhaps those who would follow them may be deterred.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,122,'And if you ˹O Prophet˺ see signs of betrayal by a people, respond by openly terminating your treaty with them. Surely Allah does not like those who betray.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,122,'Do not let those disbelievers think they are not within reach. They will have no escape.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,122,'Prepare against them what you ˹believers˺ can of ˹military˺ power and cavalry to deter Allah’s enemies and your enemies as well as other enemies unknown to you but known to Allah. Whatever you spend in the cause of Allah will be paid to you in full and you will not be wronged.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,122,'If the enemy is inclined towards peace, make peace with them. And put your trust in Allah. Indeed, He ˹alone˺ is the All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,122,'But if their intention is only to deceive you, then Allah is certainly sufficient for you. He is the One Who has supported you with His help and with the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,122,'He brought their hearts together. Had you spent all the riches in the earth, you could not have united their hearts. But Allah has united them. Indeed, He is Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,122,'O Prophet! Allah is sufficient for you and for the believers who follow you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,122,'O Prophet! Motivate the believers to fight. If there are twenty steadfast among you, they will overcome two hundred. And if there are one hundred of you, they will overcome one thousand of the disbelievers, for they are a people who do not comprehend.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,122,'Now Allah has lightened your burden, for He knows that there is weakness in you. So if there are a hundred steadfast among you, they will overcome two hundred. And if there be one thousand, they will overcome two thousand, by Allah’s Will. And Allah is with the steadfast.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,122,'It is not fit for a prophet that he should take captives until he has thoroughly subdued the land. You ˹believers˺ settled with the fleeting gains of this world, while Allah’s aim ˹for you˺ is the Hereafter. Allah is Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,122,'Had it not been for a prior decree from Allah, you would have certainly been disciplined with a tremendous punishment for whatever ˹ransom˺ you have taken.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,122,'Now enjoy what you have taken, for it is lawful and good. And be mindful of Allah. Surely Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,122,'O Prophet! Tell the captives in your custody, “If Allah finds goodness in your hearts, He will give you better than what has been taken from you, and forgive you. For Allah is All-Forgiving, Most Merciful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,122,'But if their intention is only to betray you ˹O Prophet˺, they sought to betray Allah before. But He gave you power over them. And Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,122,'Those who believed, emigrated, and strived with their wealth and lives in the cause of Allah, as well as those who gave them shelter and help—they are truly guardians of one another. As for those who believed but did not emigrate, you have no obligations to them until they emigrate. But if they seek your help ˹against persecution˺ in faith, it is your obligation to help them, except against people bound with you in a treaty. Allah is All-Seeing of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,122,'As for the disbelievers, they are guardians of one another. And unless you ˹believers˺ act likewise, there will be great oppression and corruption in the land.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,122,'Those who believed, migrated, and struggled in the cause of Allah, and those who gave ˹them˺ shelter and help, they are the true believers. They will have forgiveness and an honourable provision.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,122,'And those who later believed, migrated, and struggled alongside you, they are also with you. But only blood relatives are now entitled to inherit from one another, as ordained by Allah. Surely Allah has ˹full˺ knowledge of everything.');
+INSERT INTO chapters (id, number, quran_id) VALUES(123,9,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,123,'˹This is˺ a discharge from all obligations, by Allah and His Messenger, to the polytheists you ˹believers˺ have entered into treaties with:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,123,'“You ˹polytheists˺ may travel freely through the land for four months, but know that you will have no escape from Allah, and that Allah will disgrace the disbelievers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,123,'A declaration from Allah and His Messenger ˹is made˺ to all people on the day of the greater pilgrimage that Allah and His Messenger are free of the polytheists. So if you ˹pagans˺ repent, it will be better for you. But if you turn away, then know that you will have no escape from Allah. And give good news ˹O Prophet˺ to the disbelievers of a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,123,'As for the polytheists who have honoured every term of their treaty with you and have not supported an enemy against you, honour your treaty with them until the end of its term. Surely Allah loves those who are mindful ˹of Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,123,'But once the Sacred Months have passed, kill the polytheists ˹who violated their treaties˺ wherever you find them, capture them, besiege them, and lie in wait for them on every way. But if they repent, perform prayers, and pay alms-tax, then set them free. Indeed, Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,123,'And if anyone from the polytheists asks for your protection ˹O Prophet˺, grant it to them so they may hear the Word of Allah, then escort them to a place of safety, for they are a people who have no knowledge.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,123,'How can such polytheists have a treaty with Allah and His Messenger, except those you have made a treaty with at the Sacred Mosque? So, as long as they are true to you, be true to them. Indeed Allah loves those who are mindful ˹of Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,123,'How ˹can they have a treaty˺? If they were to have the upper hand over you, they would have no respect for kinship or treaty. They only flatter you with their tongues, but their hearts are in denial, and most of them are rebellious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,123,'They chose a fleeting gain over Allah’s revelations, hindering ˹others˺ from His Way. Evil indeed is what they have done!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,123,'They do not honour the bonds of kinship or treaties with the believers. It is they who are the transgressors.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,123,'But if they repent, perform prayer, and pay alms-tax, then they are your brothers in faith. This is how We make the revelations clear for people of knowledge.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,123,'But if they break their oaths after making a pledge and attack your faith, then fight the champions of disbelief—who never honour their oaths—so perhaps they will desist.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,123,'Will you not fight those who have broken their oaths, conspired to expel the Messenger ˹from Mecca˺, and attacked you first? Do you fear them? Allah is more deserving of your fear, if you are ˹true˺ believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,123,'˹So˺ fight them and Allah will punish them at your hands, put them to shame, help you overcome them, and soothe the hearts of the believers—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,123,'removing rage from their hearts. And Allah pardons whoever He wills. For Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,123,'Do you ˹believers˺ think that you will be left without Allah proving who among you ˹truly˺ struggles ˹in His cause˺ and never takes trusted allies other than Allah, His Messenger, or the believers? And Allah is All-Aware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,123,'It is not for the polytheists to maintain the mosques of Allah while they openly profess disbelief. Their deeds are void, and they will be in the Fire forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,123,'The mosques of Allah should only be maintained by those who believe in Allah and the Last Day, establish prayer, pay alms-tax, and fear none but Allah. It is right to hope that they will be among the ˹truly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,123,'Do you ˹pagans˺ consider providing the pilgrims with water and maintaining the Sacred Mosque as equal to believing in Allah and the Last Day and struggling in the cause of Allah? They are not equal in Allah’s sight. And Allah does not guide the wrongdoing people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,123,'Those who have believed, emigrated, and strived in the cause of Allah with their wealth and their lives are greater in rank in the sight of Allah. It is they who will triumph.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,123,'Their Lord gives them good news of His mercy, pleasure, and Gardens with everlasting bliss,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,123,'to stay there for ever and ever. Surely with Allah is a great reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,123,'O believers! Do not take your parents and siblings as trusted allies if they choose disbelief over belief. And whoever of you does so, they are the ˹true˺ wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,123,'Say, ˹O Prophet,˺ “If your parents and children and siblings and spouses and extended family and the wealth you have acquired and the trade you fear will decline and the homes you cherish—˹if all these˺ are more beloved to you than Allah and His Messenger and struggling in His Way, then wait until Allah brings about His Will. Allah does not guide the rebellious people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,123,'Indeed Allah has given you ˹believers˺ victory on many battlefields, even at the Battle of Ḥunain when you took pride in your great numbers, but they proved of no advantage to you. The earth, despite its vastness, seemed to close in on you, then you turned back in retreat.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,123,'Then Allah sent down His reassurance upon His Messenger and the believers, and sent down forces you could not see, and punished those who disbelieved. Such was the reward of the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,123,'Then afterwards Allah will turn in grace to whoever He wills. And Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,123,'O believers! Indeed, the polytheists are ˹spiritually˺ impure, so they should not approach the Sacred Mosque after this year. If you fear poverty, Allah will enrich you out of His bounty, if He wills. Surely, Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,123,'Fight those who do not believe in Allah and the Last Day, nor comply with what Allah and His Messenger have forbidden, nor embrace the religion of truth from among those who were given the Scripture, until they pay the tax, willingly submitting, fully humbled.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,123,'The Jews say, “Ezra is the son of Allah,” while the Christians say, “The Messiah is the son of Allah.” Such are their baseless assertions, only parroting the words of earlier disbelievers. May Allah condemn them! How can they be deluded ˹from the truth˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,123,'They have taken their rabbis and monks as well as the Messiah, son of Mary, as lords besides Allah, even though they were commanded to worship none but One God. There is no god ˹worthy of worship˺ except Him. Glorified is He above what they associate ˹with Him˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,123,'They wish to extinguish Allah’s light with their mouths, but Allah will only allow His light to be perfected, even to the dismay of the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,123,'He is the One Who has sent His Messenger with ˹true˺ guidance and the religion of truth, making it prevail over all others, even to the dismay of the polytheists.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,123,'O believers! Indeed, many rabbis and monks consume people’s wealth wrongfully and hinder ˹others˺ from the Way of Allah. Give good news of a painful torment to those who hoard gold and silver and do not spend it in Allah’s cause.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,123,'The Day ˹will come˺ when their treasure will be heated up in the Fire of Hell, and their foreheads, sides, and backs branded with it. ˹It will be said to them,˺ “This is the treasure you hoarded for yourselves. Now taste what you hoarded!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,123,'Indeed, the number of months ordained by Allah is twelve—in Allah’s Record since the day He created the heavens and the earth—of which four are sacred. That is the Right Way. So do not wrong one another during these months. And together fight the polytheists as they fight against you together. And know that Allah is with those mindful ˹of Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,123,'Reallocating the sanctity of ˹these˺ months is an increase in disbelief, by which the disbelievers are led ˹far˺ astray. They adjust the sanctity one year and uphold it in another, only to maintain the number of months sanctified by Allah, violating the very months Allah has made sacred. Their evil deeds have been made appealing to them. And Allah does not guide the disbelieving people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,123,'O believers! What is the matter with you that when you are asked to march forth in the cause of Allah, you cling firmly to ˹your˺ land? Do you prefer the life of this world over the Hereafter? The enjoyment of this worldly life is insignificant compared to that of the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,123,'If you do not march forth, He will afflict you with a painful torment and replace you with other people. You are not harming Him in the least. And Allah is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,123,'˹It does not matter˺ if you ˹believers˺ do not support him, for Allah did in fact support him when the disbelievers drove him out ˹of Mecca˺ and he was only one of two. While they both were in the cave, he reassured his companion, “Do not worry; Allah is certainly with us.” So Allah sent down His serenity upon the Prophet, supported him with forces you ˹believers˺ did not see, and made the word of the disbelievers lowest, while the Word of Allah is supreme. And Allah is Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,123,'˹O believers!˺ March forth whether it is easy or difficult for you, and strive with your wealth and your lives in the cause of Allah. That is best for you, if only you knew.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,123,'Had the gain been within reach and the journey shorter, they would have followed you, but the distance seemed too long for them. And they will swear by Allah, “Had we been able, we would have certainly joined you.” They are ruining themselves. And Allah knows that they are surely lying.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,123,'May Allah pardon you ˹O Prophet˺! Why did you give them permission ˹to stay behind˺ before those who told the truth were distinguished from those who were lying?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,123,'Those who believe in Allah and the Last Day do not ask for exemption from striving with their wealth and their lives. And Allah has perfect knowledge of those who are mindful ˹of Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,123,'No one would ask for exemption except those who have no faith in Allah or the Last Day, and whose hearts are in doubt, so they are torn by their doubts.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,123,'Had they ˹really˺ intended to march forth, they would have made preparations for it. But Allah disliked that they should go, so He let them lag behind, and it was said ˹to them˺, “Stay with those ˹helpless˺ who remain behind.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,123,'Had they gone forth with you ˹believers˺, they would have been nothing but trouble for you, and would have scrambled around, seeking to spread discord in your midst. And some of you would have eagerly listened to them. And Allah has ˹perfect˺ knowledge of the wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,123,'They had already sought to spread discord before and devised every ˹possible˺ plot against you ˹O Prophet˺, until the truth came and Allah’s Will prevailed—much to their dismay.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,123,'There are some of them who say, “Exempt me and do not expose me to temptation.” They have already fallen into temptation. And Hell will surely engulf the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,123,'If a blessing befalls you ˹O Prophet˺, they grieve, but if a disaster befalls you, they say, “We took our precaution in advance,” and turn away, rejoicing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,123,'Say, “Nothing will ever befall us except what Allah has destined for us. He is our Protector.” So in Allah let the believers put their trust.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,123,'Say, “Are you awaiting anything to befall us except one of the two best things: ˹victory or martyrdom˺? But We are awaiting Allah to afflict you with torment either from Him or at our hands. So keep waiting! We too are waiting with you.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,123,'Say, ˹O Prophet,˺ “˹Whether you˺ donate willingly or unwillingly, it will never be accepted from you, for you have been a rebellious people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,123,'And what prevented their donations from being accepted is that they have lost faith in Allah and His Messenger, they never come to prayer except half-heartedly, and they never donate except resentfully.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,123,'So let neither their wealth nor children impress you ˹O Prophet˺. Allah only intends to torment them through these things in this worldly life, then their souls will depart while they are disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,123,'They swear by Allah that they are part of you, but they are not. They only say so out of fear.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,123,'If only they could find a refuge, or a cave, or any hiding-place, they would rush headlong towards it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,123,'There are some of them who are critical of your distribution of alms ˹O Prophet˺. If they are given some of it they are pleased, but if not they are enraged.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,123,'If only they had been content with what Allah and His Messenger had given them and said, “Allah is sufficient for us! Allah will grant us out of His bounty, and so will His Messenger. To Allah ˹alone˺ we turn with hope.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,123,'Alms-tax is only for the poor and the needy, for those employed to administer it, for those whose hearts are attracted ˹to the faith˺, for ˹freeing˺ slaves, for those in debt, for Allah’s cause, and for ˹needy˺ travellers. ˹This is˺ an obligation from Allah. And Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,123,'And there are others who hurt the Prophet by saying, “He listens to anyone.” Say, ˹O Prophet,˺ “He listens to what is best for you. He believes in Allah, has faith in the believers, and is a mercy for those who believe among you.” Those who hurt Allah’s Messenger will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,123,'They swear by Allah to you ˹believers˺ in order to please you, while it is the pleasure of Allah and His Messenger they should seek, if they are ˹true˺ believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,123,'Do they not know that whoever opposes Allah and His Messenger will be in the Fire of Hell forever? That is the ultimate disgrace.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,123,'The hypocrites fear that a sûrah should be revealed about them, exposing what is in their hearts. Say, ˹O Prophet,˺ “Keep mocking! Allah will definitely bring to light what you fear.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,123,'If you question them, they will certainly say, “We were only talking idly and joking around.” Say, “Was it Allah, His revelations, and His Messenger that you ridiculed?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,123,'Make no excuses! You have lost faith after your belief. If We pardon a group of you, We will punish others for their wickedness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,123,'The hypocrites, both men and women, are all alike: they encourage what is evil, forbid what is good, and withhold ˹what is in˺ their hands. They neglected Allah, so He neglected them. Surely the hypocrites are the rebellious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,123,'Allah has promised the hypocrites, both men and women, and the disbelievers an everlasting stay in the Fire of Hell—it is sufficient for them. Allah has condemned them, and they will suffer a never-ending punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,123,'˹You hypocrites are˺ like those ˹disbelievers˺ before you. They were far superior to you in might and more abundant in wealth and children. They enjoyed their share in this life. You have enjoyed your share, just as they did. And you have engaged in idle talk, just as they did. Their deeds have become void in this world and the Hereafter. And it is they who are the ˹true˺ losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,123,'Have they not received the stories of those ˹destroyed˺ before them: the people of Noah, ’Âd, and Thamûd, the people of Abraham, the residents of Midian, and the overturned cities ˹of Lot˺? Their messengers came to them with clear proofs. Allah would have never wronged them, but it was they who wronged themselves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,123,'The believers, both men and women, are guardians of one another. They encourage good and forbid evil, establish prayer and pay alms-tax, and obey Allah and His Messenger. It is they who will be shown Allah’s mercy. Surely Allah is Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,123,'Allah has promised the believers, both men and women, Gardens under which rivers flow, to stay there forever, and splendid homes in the Gardens of Eternity, and—above all—the pleasure of Allah. That is ˹truly˺ the ultimate triumph.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,123,'O Prophet! Struggle against the disbelievers and the hypocrites, and be firm with them. Hell will be their home. What an evil destination!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,123,'They swear by Allah that they never said anything ˹blasphemous˺, while they did in fact utter a blasphemy, lost faith after accepting Islam, and plotted what they could not carry out. It is only through resentment that they pay Allah and His Messenger back for enriching them out of His bounty! If they repent, it will be better for them. But if they turn away, Allah will torment them with a painful punishment in this world and the Hereafter, and they will have no one on earth to protect or help them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,123,'And there are some who had made a vow to Allah: “If He gives us from His bounty, we will surely spend in charity and be of the righteous.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,123,'But when He gave them out of His bounty, they withheld it and turned away indifferently.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,123,'So He caused hypocrisy to plague their hearts until the Day they will meet Him, for breaking their promise to Allah and for their lies.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,123,'Do they not know that Allah ˹fully˺ knows their ˹evil˺ thoughts and secret talks, and that Allah is the Knower of all unseen?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,123,'˹There are˺ those who slander ˹some of˺ the believers for donating liberally and mock others for giving only the little they can afford. Allah will throw their mockery back at them, and they will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,123,'˹It does not matter˺ whether you ˹O Prophet˺ pray for them to be forgiven or not. Even if you pray for their forgiveness seventy times, Allah will never forgive them. That is because they have lost faith in Allah and His Messenger. And Allah does not guide the rebellious people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,123,'Those ˹hypocrites˺ who remained behind rejoiced for doing so in defiance of the Messenger of Allah and hated ˹the prospect of˺ striving with their wealth and their lives in the cause of Allah. They said ˹to one another˺, “Do not march forth in the heat.” Say, ˹O Prophet,˺ “The Fire of Hell is far hotter!” If only they could comprehend!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,123,'So let them laugh a little—they will weep much as a reward for what they have committed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,123,'If Allah returns you ˹O Prophet˺ to a group of them and they ask to go forth with you, say, “You will not ever go forth or fight an enemy along with me. You preferred to stay behind the first time, so stay with those ˹helpless˺ who remain behind.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,123,'And do not ever offer ˹funeral˺ prayers for any of their dead, nor stand by their grave ˹at burial˺, for they have lost faith in Allah and His Messenger and died rebellious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,123,'And let neither their wealth nor children impress you ˹O Prophet˺. Allah only intends to torment them through these things in this world, and ˹then˺ their souls will depart while they are disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,123,'Whenever a sûrah is revealed stating, “Believe in Allah and struggle along with His Messenger,” the rich among them would ask to be exempt, saying, “Leave us with those who remain behind.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,123,'They preferred to stay behind with the helpless, and their hearts have been sealed so they do not comprehend.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,123,'But the Messenger and the believers with him strived with their wealth and their lives. They will have all the best, and it is they who will be successful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,123,'Allah has prepared for them Gardens under which rivers flow, to stay there forever. That is the ultimate triumph.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,123,'Some nomadic Arabs ˹also˺ came with excuses, seeking exemption. And those who were untrue to Allah and His Messenger remained behind ˹with no excuse˺. The unfaithful among them will be afflicted with a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,123,'There is no blame on the weak, the sick, or those lacking the means ˹if they stay behind˺, as long as they are true to Allah and His Messenger. There is no blame on the good-doers. And Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,123,'Nor ˹is there any blame on˺ those who came to you ˹O Prophet˺ for mounts, then when you said, “I can find no mounts for you,” they left with eyes overflowing with tears out of grief that they had nothing to contribute.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,123,'Blame is only on those who seek exemption from you although they have the means. They preferred to stay behind with the helpless, and Allah has sealed their hearts so they do not realize ˹the consequences˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,123,'They will make excuses to you ˹believers˺ when you return to them. Say, “Make no excuses, ˹for˺ we will not believe you. Allah has already informed us about your ˹true˺ state ˹of faith˺. Your ˹future˺ deeds will be observed by Allah and His Messenger as well. And you will be returned to the Knower of the seen and unseen, then He will inform you of what you used to do.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,123,'When you return, they will swear to you by Allah so that you may leave them alone. So leave them alone—they are truly evil. Hell will be their home as a reward for what they have committed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,123,'They will swear to you in order to please you. And even if you are pleased with them, Allah will never be pleased with the rebellious people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,123,'The nomadic Arabs ˹around Medina˺ are far worse in disbelief and hypocrisy, and less likely to know the laws revealed by Allah to His Messenger. And Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,123,'And among the nomads are those who consider what they donate to be a loss and await your misfortune. May ill-fortune befall them! And Allah is All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,123,'However, among the nomadic Arabs are those who believe in Allah and the Last Day, and consider what they donate as a means of coming closer to Allah and ˹receiving˺ the prayers of the Messenger. It will certainly bring them closer. Allah will admit them into His mercy. Surely Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,2,123,'As for the foremost—the first of the Emigrants and the Helpers—and those who follow them in goodness, Allah is pleased with them and they are pleased with Him. And He has prepared for them Gardens under which rivers flow, to stay there for ever and ever. That is the ultimate triumph.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,2,123,'Some of the nomads around you ˹believers˺ are hypocrites, as are some of the people of Medina. They have mastered hypocrisy. They are not known to you ˹O Prophet˺; they are known to Us. We will punish them twice ˹in this world˺, then they will be brought back ˹to their Lord˺ for a tremendous punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,2,123,'Some others have confessed their wrongdoing: they have mixed goodness with evil. It is right to hope that Allah will turn to them in mercy. Surely Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,2,123,'Take from their wealth ˹O Prophet˺ charity to purify and bless them, and pray for them—surely your prayer is a source of comfort for them. And Allah is All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,2,123,'Do they not know that Allah alone accepts the repentance of His servants and receives ˹their˺ charity, and that Allah alone is the Accepter of Repentance, Most Merciful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,2,123,'Tell ˹them, O Prophet˺, “Do as you will. Your deeds will be observed by Allah, His Messenger, and the believers. And you will be returned to the Knower of the seen and unseen, then He will inform you of what you used to do.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,2,123,'And some others are left for Allah’s decision, either to punish them or turn to them in mercy. And Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,2,123,'There are also those ˹hypocrites˺ who set up a mosque ˹only˺ to cause harm, promote disbelief, divide the believers, and as a base for those who had previously fought against Allah and His Messenger. They will definitely swear, “We intended nothing but good,” but Allah bears witness that they are surely liars.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,2,123,'Do not ˹O Prophet˺ ever pray in it. Certainly, a mosque founded on righteousness from the first day is more worthy of your prayers. In it are men who love to be purified. And Allah loves those who purify themselves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,2,123,'Which is better: those who laid the foundation of their building on the fear and pleasure of Allah, or those who did so on the edge of a crumbling cliff that tumbled down with them into the Fire of Hell? And Allah does not guide the wrongdoing people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,2,123,'The building which they erected will never cease to fuel hypocrisy in their hearts until their hearts are torn apart. And Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,2,123,'Allah has indeed purchased from the believers their lives and wealth in exchange for Paradise. They fight in the cause of Allah and kill or are killed. This is a true promise binding on Him in the Torah, the Gospel, and the Quran. And whose promise is truer than Allah’s? So rejoice in the exchange you have made with Him. That is ˹truly˺ the ultimate triumph.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,2,123,'˹It is the believers˺ who repent, who are devoted to worship, who praise ˹their Lord˺, who fast, who bow down and prostrate themselves, who encourage good and forbid evil, and who observe the limits set by Allah. And give good news to the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,2,123,'It is not ˹proper˺ for the Prophet and the believers to seek forgiveness for the polytheists, even if they were close relatives, after it has become clear to the believers that they are bound for the Hellfire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,2,123,'As for Abraham’s prayer for his father’s forgiveness, it was only in fulfilment of a promise he had made to him. But when it became clear to Abraham that his father was an enemy of Allah, he broke ties with him. Abraham was truly tender-hearted, forbearing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,2,123,'Allah would never consider a people deviant after He has guided them, until He makes clear to them what they must avoid. Surely Allah has ˹full˺ knowledge of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,2,123,'Indeed, to Allah ˹alone˺ belongs the kingdom of the heavens and the earth. He gives life and causes death. And besides Allah you have no guardian or helper.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,2,123,'Allah has certainly turned in mercy to the Prophet as well as the Emigrants and the Helpers who stood by him in the time of hardship, after the hearts of a group of them had almost faltered. He then accepted their repentance. Surely He is Ever Gracious and Most Merciful to them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,2,123,'And ˹Allah has also turned in mercy to˺ the three who had remained behind, ˹whose guilt distressed them˺ until the earth, despite its vastness, seemed to close in on them, and their souls were torn in anguish. They knew there was no refuge from Allah except in Him. Then He turned to them in mercy so that they might repent. Surely Allah ˹alone˺ is the Accepter of Repentance, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,2,123,'O believers! Be mindful of Allah and be with the truthful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,2,123,'It was not ˹proper˺ for the people of Medina and the nomadic Arabs around them to avoid marching with the Messenger of Allah or to prefer their own lives above his. That is because whenever they suffer from thirst, fatigue, or hunger in the cause of Allah; or tread on a territory, unnerving the disbelievers; or inflict any loss on an enemy—it is written to their credit as a good deed. Surely Allah never discounts the reward of the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,2,123,'And whenever they make a donation, small or large, or cross a valley ˹in Allah’s cause˺—it is written to their credit, so that Allah may grant them the best reward for what they used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,2,123,'˹However,˺ it is not necessary for the believers to march forth all at once. Only a party from each group should march forth, leaving the rest to gain religious knowledge then enlighten their people when they return to them, so that they ˹too˺ may beware ˹of evil˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,2,123,'O believers! Fight the disbelievers around you and let them find firmness in you. And know that Allah is with those mindful ˹of Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,2,123,'Whenever a sûrah is revealed, some of them ask ˹mockingly˺, “Which of you has this increased in faith?” As for the believers, it has increased them in faith and they rejoice.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,2,123,'But as for those with sickness in their hearts, it has increased them only in wickedness upon their wickedness, and they die as disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,2,123,'Do they not see that they are tried once or twice every year? Yet they neither repent nor do they learn a lesson.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,2,123,'Whenever a sûrah is revealed, they look at one another, ˹saying,˺ “Is anyone watching you?” Then they slip away. ˹It is˺ Allah ˹Who˺ has turned their hearts away because they are a people who do not comprehend.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,2,123,'There certainly has come to you a messenger from among yourselves. He is concerned by your suffering, anxious for your well-being, and gracious and merciful to the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,2,123,'But if they turn away, then say, ˹O Prophet,˺ “Allah is sufficient for me. There is no god ˹worthy of worship˺ except Him. In Him I put my trust. And He is the Lord of the Mighty Throne.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(124,10,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,124,'Alif-Lãm-Ra. These are the verses of the Book, rich in wisdom.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,124,'Is it astonishing to people that We have sent revelation to a man from among themselves, ˹instructing him,˺ “Warn humanity and give good news to the believers that they will have an honourable status with their Lord.”? Yet the disbelievers said, “Indeed, this ˹man˺ is clearly a magician!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,124,'Surely your Lord is Allah Who created the heavens and the earth in six Days, then established Himself on the Throne, conducting every affair. None can intercede except by His permission. That is Allah—your Lord, so worship Him ˹alone˺. Will you not then be mindful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,124,'To Him is your return all together. Allah’s promise is ˹always˺ true. Indeed, He originates the creation then resurrects it so that He may justly reward those who believe and do good. But those who disbelieve will have a boiling drink and a painful punishment for their disbelief.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,124,'He is the One Who made the sun a radiant source and the moon a reflected light, with precisely ordained phases, so that you may know the number of years and calculation ˹of time˺. Allah did not create all this except for a purpose. He makes the signs clear for people of knowledge.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,124,'Surely in the alternation of the day and the night, and in all that Allah has created in the heavens and the earth, there are truly signs for those mindful ˹of Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,124,'Indeed, those who do not expect to meet Us, being pleased and content with this worldly life, and who are heedless of Our signs,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,124,'they will have the Fire as a home because of what they have committed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,124,'Surely those who believe and do good, their Lord will guide them ˹to Paradise˺ through their faith, rivers will flow under their feet in the Gardens of Bliss,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,124,'in which their prayer will be, “Glory be to You, O Allah!” and their greeting will be, “Peace!” and their closing prayer will be, “All praise is for Allah—Lord of all worlds!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,124,'If Allah were to hasten evil for people as they wish to hasten good, they would have certainly been doomed. But We leave those who do not expect to meet Us to wander blindly in their defiance.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,124,'Whenever someone is touched by hardship, they cry out to Us, whether lying on their side, sitting, or standing. But when We relieve their hardship, they return to their old ways as if they had never cried to Us to remove any hardship! This is how the misdeeds of the transgressors have been made appealing to them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,124,'We surely destroyed ˹other˺ peoples before you when they did wrong, and their messengers came to them with clear proofs but they would not believe! This is how We reward the wicked people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,124,'Then We made you their successors in the land to see how you would act.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,124,'When Our clear revelations are recited to them, those who do not expect to meet Us say ˹to the Prophet˺, “Bring us a different Quran or make some changes in it.” Say ˹to them˺, “It is not for me to change it on my own. I only follow what is revealed to me. I fear, if I were to disobey my Lord, the punishment of a tremendous Day.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,124,'Say, “Had Allah willed, I would not have recited it to you, nor would He have made it known to you. I had lived my whole life among you before this ˹revelation˺. Do you not understand?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,124,'Who does more wrong than those who fabricate lies against Allah or deny His revelations? Indeed, the wicked will never succeed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,124,'They worship besides Allah others who can neither harm nor benefit them, and say, “These are our intercessors with Allah.” Ask ˹them, O Prophet˺, “Are you informing Allah of something He does not know in the heavens or the earth? Glorified and Exalted is He above what they associate ˹with Him˺!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,124,'Humanity was once nothing but a single community ˹of believers˺, but then they differed. Had it not been for a prior decree from your Lord, their differences would have been settled ˹at once˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,124,'They ask, “Why has no ˹other˺ sign been sent down to him from his Lord?” Say, ˹O Prophet,˺ “˹The knowledge of˺ the unseen is with Allah alone. So wait! I too am waiting with you.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,124,'When We give people a taste of mercy after being afflicted with a hardship, they swiftly devise plots against Our revelations! Say, ˹O Prophet,˺ “Allah is swifter in devising ˹punishment˺. Surely Our messenger-angels record whatever you devise.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,124,'He is the One Who enables you to travel through land and sea. And it so happens that you are on ships, sailing with a favourable wind, to the passengers’ delight. Suddenly, the ships are overcome by a gale wind and those on board are overwhelmed by waves from every side, and they assume they are doomed. They cry out to Allah ˹alone˺ in sincere devotion, “If You save us from this, we will certainly be grateful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,124,'But as soon as He rescues them, they transgress in the land unjustly. O humanity! Your transgression is only against your own souls. ˹There is only˺ brief enjoyment in this worldly life, then to Us is your return, and then We will inform you of what you used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,124,'The life of this world is just like rain We send down from the sky, producing a mixture of plants which humans and animals consume. Then just as the earth looks its best, perfectly beautified, and its people think they have full control over it, there comes to it Our command by night or by day, so We mow it down as if it never flourished yesterday! This is how We make the signs clear for people who reflect.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,124,'And Allah invites ˹all˺ to the Home of Peace and guides whoever He wills to the Straight Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,124,'Those who do good will have the finest reward and ˹even˺ more. Neither gloom nor disgrace will cover their faces. It is they who will be the residents of Paradise. They will be there forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,124,'As for those who commit evil, the reward of an evil deed is its equivalent. Humiliation will cover them—with no one to protect them from Allah—as if their faces were covered with patches of the night’s deep darkness. It is they who will be the residents of the Fire. They will be there forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,124,'˹Consider˺ the Day We will gather them all together then say to those who associated others ˹with Allah in worship˺, “Stay in your places—you and your associate-gods.” We will separate them from each other, and their associate-gods will say, “It was not us that you worshipped!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,124,'Allah is sufficient as a Witness between each of us that we were totally unaware of your worship.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,124,'Then and there every soul will face ˹the consequences of˺ what it had done. They all will be returned to Allah—their True Master. And whatever ˹gods˺ they fabricated will fail them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,124,'Ask ˹them, O Prophet˺, “Who provides for you from heaven and earth? Who owns ˹your˺ hearing and sight? Who brings forth the living from the dead and the dead from the living? And who conducts every affair?” They will ˹surely˺ say, “Allah.” Say, “Will you not then fear ˹Him˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,124,'That is Allah—your True Lord. So what is beyond the truth except falsehood? How can you then be turned away?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,124,'And so your Lord’s decree has been proven true against the rebellious—that they will never believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,124,'Ask ˹them, O Prophet˺, “Can any of your associate-gods originate creation and then resurrect it?” Say, “˹Only˺ Allah originates creation and then resurrects it. How can you then be deluded ˹from the truth˺?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,124,'Ask ˹them, O Prophet˺, “Can any of your associate-gods guide to the truth?” Say, “˹Only˺ Allah guides to the truth.” Who then is more worthy to be followed: the One Who guides to the truth or those who cannot find the way unless guided? What is the matter with you? How do you judge?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,124,'Most of them follow nothing but ˹inherited˺ assumptions. ˹And˺ surely assumptions can in no way replace the truth. Allah is indeed All-Knowing of what they do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,124,'It is not ˹possible˺ for this Quran to have been produced by anyone other than Allah. In fact, it is a confirmation of what came before, and an explanation of the Scripture. It is, without a doubt, from the Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,124,'Or do they claim, “He made it up!”? Tell them ˹O Prophet˺, “Produce one sûrah like it then, and seek help from whoever you can—other than Allah—if what you say is true!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,124,'In fact, they ˹hastily˺ rejected the Book without comprehending it and before the fulfilment of its warnings. Similarly, those before them were in denial. See then what was the end of the wrongdoers!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,124,'Some of them will ˹eventually˺ believe in it; others will not. And your Lord knows best the corruptors.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,124,'If they deny you, then say, “My deeds are mine and your deeds are yours. You are free of what I do and I am free of what you do!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,124,'Some of them listen to what you say, but can you make the deaf hear even though they do not understand?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,124,'And some of them look at you, but can you guide the blind even though they cannot see?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,124,'Indeed, Allah does not wrong people in the least, but it is people who wrong themselves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,124,'On the Day He will gather them, it will be as if they had not stayed ˹in the world˺ except for an hour of a day, ˹as though they were only˺ getting to know one another. Lost indeed will be those who denied the meeting with Allah, and were not ˹rightly˺ guided!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,124,'Whether We show you ˹O Prophet˺ some of what We threaten them with, or cause you to die ˹before that˺, to Us is their return and Allah is a Witness over what they do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,124,'And for every community there is a messenger. After their messenger has come, judgment is passed on them in all fairness, and they are not wronged.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,124,'They ask ˹the believers˺, “When will this threat come to pass if what you say is true?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,124,'Say, ˹O Prophet,˺ “I have no power to benefit or protect myself, except by the Will of Allah.” For each community there is an appointed term. When their time arrives, they cannot delay it for a moment, nor could they advance it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,124,'Tell them ˹O Prophet˺, “Imagine if His torment were to overcome you by night or day—do the wicked realize what they are ˹really˺ asking Him to hasten?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,124,'Will you believe in it only after it has overtaken you? Now? But you always wanted to hasten it!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,124,'Then the wrongdoers will be told, “Taste the torment of eternity! Are you not rewarded except for what you used to commit?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,124,'They ask you ˹O Prophet˺, “Is this true?” Say, “Yes, by my Lord! Most certainly it is true! And you will have no escape.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,124,'If every wrongdoer were to possess everything in the world, they would surely ransom themselves with it. They will hide ˹their˺ remorse when they see the torment. And they will be judged in all fairness, and none will be wronged.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,124,'Surely to Allah belongs whatever is in the heavens and the earth. Surely Allah’s promise is ˹always˺ true, but most of them do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,124,'He ˹is the One Who˺ gives life and causes death, and to Him you will ˹all˺ be returned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,124,'O humanity! Indeed, there has come to you a warning from your Lord, a cure for what is in the hearts, a guide, and a mercy for the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,124,'Say, ˹O Prophet,˺ “In Allah’s grace and mercy let them rejoice. That is far better than whatever ˹wealth˺ they amass.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,124,'Ask ˹the pagans, O Prophet˺, “Have you seen that which Allah has sent down for you as a provision, of which you have made some lawful and some unlawful?” Say, “Has Allah given you authorization, or are you fabricating lies against Allah?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,124,'What do those who fabricate lies against Allah expect on Judgment Day? Surely Allah is ever Bountiful to humanity, but most of them are ungrateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,124,'There is no activity you may be engaged in ˹O Prophet˺ or portion of the Quran you may be reciting, nor any deed you ˹all˺ may be doing except that We are a Witness over you while doing it. Not ˹even˺ an atom’s weight is hidden from your Lord on earth or in heaven; nor anything smaller or larger than that, but is ˹written˺ in a perfect Record. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,124,'There will certainly be no fear for the close servants of Allah, nor will they grieve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,124,'˹They are˺ those who are faithful and are mindful ˹of Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,124,'For them is good news in this worldly life and the Hereafter. There is no change in the promise of Allah. That is ˹truly˺ the ultimate triumph.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,124,'Do not let their words grieve you ˹O Prophet˺. Surely all honour and power belongs to Allah. He is the All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,124,'Certainly to Allah ˹alone˺ belong all those in the heavens and all those on the earth. And what do those who associate others with Allah really follow? They follow nothing but assumptions and do nothing but lie.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,124,'He is the One Who has made the night for you to rest in and the day bright. Surely in this are signs for people who listen.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,124,'They say, “Allah has offspring.” Glory be to Him! He is the Self-Sufficient. To Him belongs whatever is in the heavens and whatever is on the earth. You have no proof of this! Do you say about Allah what you do not know?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,124,'Say, ˹O Prophet,˺ “Indeed, those who fabricate lies against Allah will never succeed.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,124,'˹It is only˺ a brief enjoyment in this world, then to Us is their return, then We will make them taste the severe punishment for their disbelief.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,124,'Relate to them ˹O Prophet˺ the story of Noah when he said to his people, “O my People! If my presence and my reminders to you of Allah’s signs are unbearable to you, then ˹know that˺ I have put my trust in Allah. So devise a plot along with your associate-gods—and you do not have to be secretive about your plot—then carry it out against me without delay!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,124,'And if you turn away, ˹remember˺ I have never demanded a reward from you ˹for delivering the message˺. My reward is only from Allah. And I have been commanded to be one of those who submit ˹to Allah˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,124,'But they still rejected him, so We saved him and those with him in the Ark and made them successors, and drowned those who rejected Our signs. See then what was the end of those who had been warned!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,124,'Then after him We sent ˹other˺ messengers to their ˹own˺ people and they came to them with clear proofs. But they would not believe in what they had rejected before. This is how We seal the hearts of the transgressors.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,124,'Then after these ˹messengers˺ We sent Moses and Aaron to Pharaoh and his chiefs with Our signs. But they behaved arrogantly and were a wicked people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,124,'When the truth came to them from Us, they said, “This is certainly pure magic!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,124,'Moses responded, “Is this what you say about the truth when it has come to you? Is this magic? Magicians will never succeed.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,124,'They argued, “Have you come to turn us away from the faith of our forefathers so that the two of you may become supreme in the land? We will never believe in you!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,124,'Pharaoh demanded, “Bring me every skilled magician.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,124,'When the magicians came, Moses said to them, “Cast whatever you wish to cast!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,124,'When they did, Moses said, “What you have produced is mere magic, Allah will surely make it useless, for Allah certainly does not set right the work of the corruptors.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,124,'And Allah establishes the truth by His Words—even to the dismay of the wicked.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,124,'But no one believed in Moses except a few youths of his people, while fearing that Pharaoh and their own chiefs might persecute them. And certainly Pharaoh was a tyrant in the land, and he was truly a transgressor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,124,'Moses said, “O my people! If you do believe in Allah and submit ˹to His Will˺, then put your trust in Him.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,124,'They replied, “In Allah we trust. Our Lord! Do not subject us to the persecution of the oppressive people,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,124,'and deliver us by Your mercy from the disbelieving people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,124,'We revealed to Moses and his brother, “Appoint houses for your people in Egypt. Turn these houses into places of worship, establish prayer, and give good news to the believers!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,124,'Moses prayed, “Our Lord! You have granted Pharaoh and his chiefs luxuries and riches in this worldly life, ˹which they abused˺ to lead people astray from Your Way! Our Lord, destroy their riches and harden their hearts so that they will not believe until they see the painful punishment.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,124,'Allah responded ˹to Moses and Aaron˺, “Your prayer is answered! So be steadfast and do not follow the way of those who do not know.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,124,'We brought the Children of Israel across the sea. Then Pharaoh and his soldiers pursued them unjustly and oppressively. But as Pharaoh was drowning, he cried out, “I believe that there is no god except that in whom the Children of Israel believe, and I am ˹now˺ one of those who submit.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,124,'˹He was told,˺ “Now ˹you believe˺? But you always disobeyed and were one of the corruptors.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,124,'Today We will preserve your corpse so that you may become an example for those who come after you. And surely most people are heedless of Our examples!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,124,'Indeed, We settled the Children of Israel in a blessed land, and granted them good, lawful provisions. They did not differ until knowledge came to them. Surely your Lord will judge between them on the Day of Judgment regarding their differences.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,124,'If you ˹O Prophet˺ are in doubt about ˹these stories˺ that We have revealed to you, then ask those who read the Scripture before you. The truth has certainly come to you from your Lord, so do not be one of those who doubt,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,124,'and do not be one of those who deny Allah’s signs or you will be one of the losers. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,124,'Indeed, those against whom Allah’s decree ˹of torment˺ is justified will not believe—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,124,'even if every sign were to come to them—until they see the painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,124,'If only there had been a society which believed ˹before seeing the torment˺ and, therefore, benefited from its belief, like the people of Jonah. When they believed, We lifted from them the torment of disgrace in this world and allowed them enjoyment for a while. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,124,'Had your Lord so willed ˹O Prophet˺, all ˹people˺ on earth would have certainly believed, every single one of them! Would you then force people to become believers?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,2,124,'It is not for any soul to believe except by Allah’s leave, and He will bring His wrath upon those who are unmindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,2,124,'Say, ˹O Prophet,˺ “Consider all that is in the heavens and the earth!” Yet neither signs nor warners are of any benefit to those who refuse to believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,2,124,'Are they waiting for ˹anything˺ except the same torments that befell those before them? Say, “Keep waiting then! I too am waiting with you.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,2,124,'Then We saved Our messengers and those who believed. For it is Our duty to save the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,2,124,'Say, ˹O Prophet,˺ “O humanity! If you are in doubt of my faith, then ˹know that˺ I do not worship those ˹idols˺ you worship instead of Allah. But I worship Allah, Who has the power to cause your death. And I have been commanded, ‘Be one of the believers,’');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,2,124,'and, ‘Be steadfast in faith in all uprightness, and do not be one of the polytheists,’');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,2,124,'and ‘Do not invoke, instead of Allah, what can neither benefit nor harm you—for if you do, then you will certainly be one of the wrongdoers,’');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,2,124,'and ‘If Allah touches you with harm, none can undo it except Him. And if He intends good for you, none can withhold His bounty. He grants it to whoever He wills of His servants. And He is the All-Forgiving, Most Merciful.’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,2,124,'Say, ˹O Prophet,˺ “O humanity! The truth has surely come to you from your Lord. So whoever chooses to be guided, it is only for their own good. And whoever chooses to stray, it is only to their own loss. And I am not a keeper over you.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,2,124,'And follow what is revealed to you, and be patient until Allah passes His judgment. For He is the Best of Judges.');
+INSERT INTO chapters (id, number, quran_id) VALUES(125,11,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,125,'Alif-Lãm-Ra. ˹This is˺ a Book whose verses are well perfected and then fully explained. ˹It is˺ from the One ˹Who is˺ All-Wise, All-Aware.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,125,'˹Tell them, O Prophet,˺ “Worship none but Allah. Surely I am a warner and deliverer of good news to you from Him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,125,'And seek your Lord’s forgiveness and turn to Him in repentance. He will grant you a good provision for an appointed term and graciously reward the doers of good. But if you turn away, then I truly fear for you the torment of a formidable Day.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,125,'To Allah is your return. And He is Most Capable of everything.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,125,'Indeed, they enfold ˹what is in˺ their hearts, ˹trying˺ to hide it from Him! But even when they cover themselves with their clothes, He knows what they conceal and what they reveal. Surely He knows best what is ˹hidden˺ in the heart.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,125,'There is no moving creature on earth whose provision is not guaranteed by Allah. And He knows where it lives and where it is laid to rest. All is ˹written˺ in a perfect Record.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,125,'He is the One Who created the heavens and the earth in six Days—and His Throne was upon the waters—in order to test which of you is best in deeds. And if you ˹O Prophet˺ say, “Surely you will ˹all˺ be raised up after death,” the disbelievers will certainly say, “That is nothing but pure magic!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,125,'And if We delay their punishment until an appointed time, they will definitely say, “What is holding it back?” Indeed, on the Day it overtakes them, it will not be averted from them, and they will be overwhelmed by what they used to ridicule.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,125,'If We give people a taste of Our mercy then take it away from them, they become utterly desperate, ungrateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,125,'But if We give them a taste of prosperity after being touched with adversity, they say, “My ills are gone,” and become totally prideful and boastful,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,125,'except those who patiently endure and do good. It is they who will have forgiveness and a mighty reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,125,'Perhaps you ˹O Prophet˺ may wish to give up some of what is revealed to you and may be distressed by it because they say, “If only a treasure had been sent down to him, or an angel had come with him!” You are only a warner, and Allah is the Trustee of All Affairs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,125,'Or do they say, “He has fabricated this ˹Quran˺!”? Say, ˹O Prophet,˺ “Produce ten fabricated sûrahs like it and seek help from whoever you can—other than Allah—if what you say is true!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,125,'But if your helpers fail you, then know that it has been revealed with the knowledge of Allah, and that there is no god ˹worthy of worship˺ except Him! Will you ˹not˺ then submit ˹to Allah˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,125,'Whoever desires ˹only˺ this worldly life and its luxuries, We will pay them in full for their deeds in this life—nothing will be left out.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,125,'It is they who will have nothing in the Hereafter except the Fire. Their efforts in this life will be fruitless and their deeds will be useless.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,125,'˹Can these people be compared to˺ those ˹believers˺ who stand on clear proof from their Lord, backed by ˹the Quran as˺ a witness from Him, and preceded by the Book of Moses ˹which was revealed˺ as a guide and mercy? It is those ˹believers˺ who have faith in it. But whoever from the ˹disbelieving˺ groups rejects it, the Fire will be their destiny. So do not be in doubt of it. It is certainly the truth from your Lord, but most people do not believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,125,'Who does more wrong than those who fabricate lies against Allah? They will be brought before their Lord, and the witnesses will say, “These are the ones who lied against their Lord.” Surely Allah’s condemnation is upon the wrongdoers,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,125,'who hinder ˹others˺ from Allah’s Path, striving to make it ˹appear˺ crooked, and disbelieve in the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,125,'They will never frustrate Allah on earth, and they will have no protector besides Allah. Their punishment will be multiplied, for they failed to hear or see ˹the truth˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,125,'It is they who have ruined themselves, and whatever ˹gods˺ they fabricated will fail them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,125,'Without a doubt, they will be the worst losers in the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,125,'Surely those who believe, do good, and humble themselves before their Lord will be the residents of Paradise. They will be there forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,125,'The example of these two parties is that of the blind and the deaf, compared to the seeing and the hearing. Can the two be equal? Will you not then be mindful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,125,'Surely We sent Noah to his people. ˹He said,˺ “Indeed, I am sent to you with a clear warning');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,125,'that you should worship none but Allah. I truly fear for you the torment of a painful Day.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,125,'The disbelieving chiefs of his people said, “We see you only as a human being like ourselves, and we see that no one follows you except the lowliest among us, who do so ˹hastily˺ without thinking. We do not see anything that makes ˹all of˺ you any better than us. In fact, we think you are liars.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,125,'He said, “O my people! Consider if I stand on a clear proof from my Lord and He has blessed me with a mercy from Himself, which you fail to see. Should we ˹then˺ force it on you against your will?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,125,'O my people! I do not ask you for a payment for this ˹message˺. My reward is only from Allah. And I will never dismiss the believers, for they will surely meet their Lord. But I can see that you are a people acting ignorantly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,125,'O my people! Who would protect me from Allah if I were to dismiss them? Will you not then be mindful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,125,'I do not say to you that I possess Allah’s treasuries or know the unseen, nor do I claim to be an angel, nor do I say that Allah will never grant goodness to those you look down upon. Allah knows best what is ˹hidden˺ within them. ˹If I did,˺ then I would truly be one of the wrongdoers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,125,'They protested, “O Noah! You have argued with us far too much, so bring upon us what you threaten us with, if what you say is true.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,125,'He responded, “It is Allah Who can bring it upon you if He wills, and then you will have no escape!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,125,'My advice will not benefit you—no matter how hard I try—if Allah wills ˹for˺ you to stray. He is your Lord, and to Him you will ˹all˺ be returned.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,125,'Or do they say, “He has fabricated this ˹Quran˺!”? Say, ˹O Prophet,˺ “If I have done so, then I bear the burden of that sin! But I am free from your sinful accusation.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,125,'And it was revealed to Noah, “None of your people will believe except those who already have. So do not be distressed by what they have been doing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,125,'And build the Ark under Our ˹watchful˺ Eyes and directions, and do not plead with Me for those who have done wrong, for they will surely be drowned.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,125,'So he began to build the Ark, and whenever some of the chiefs of his people passed by, they mocked him. He said, “If you laugh at us, we will ˹soon˺ laugh at you similarly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,125,'You will soon come to know who will be visited by a humiliating torment ˹in this life˺ and overwhelmed by an everlasting punishment ˹in the next˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,125,'And when Our command came and the oven burst ˹with water˺, We said ˹to Noah˺, “Take into the Ark a pair from every species along with your family—except those against whom the decree ˹to drown˺ has already been passed—and those who believe.” But none believed with him except for a few.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,125,'And he said, “Board it! In the Name of Allah it will sail and cast anchor. Surely my Lord is All-Forgiving, Most Merciful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,125,'And ˹so˺ the Ark sailed with them through waves like mountains. Noah called out to his son, who stood apart, “O my dear son! Come aboard with us and do not be with the disbelievers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,125,'He replied, “I will take refuge on a mountain, which will protect me from the water.” Noah cried, “Today no one is protected from Allah’s decree except those to whom He shows mercy!” And the waves came between them, and his son was among the drowned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,125,'And it was said, “O earth! Swallow up your water. And O sky! Withhold ˹your rain˺.” The floodwater receded and the decree was carried out. The Ark rested on Mount Judi, and it was said, “Away with the wrongdoing people!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,125,'Noah called out to his Lord, saying, “My Lord! Certainly my son is ˹also˺ of my family, Your promise is surely true, and You are the most just of all judges!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,125,'Allah replied, “O Noah! He is certainly not of your family—he was entirely of unrighteous conduct. So do not ask Me about what you have no knowledge of! I warn you so you do not fall into ignorance.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,125,'Noah pleaded, “My Lord, I seek refuge in You from asking You about what I have no knowledge of, and unless You forgive me and have mercy on me, I will be one of the losers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,125,'It was said, “O Noah! Disembark with Our peace and blessings on you and some of the descendants of those with you. As for the others, We will allow them ˹a brief˺ enjoyment, then they will be touched with a painful punishment from Us.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,125,'This is one of the stories of the unseen, which we reveal to you ˹O Prophet˺. Neither you nor your people knew it before this. So be patient! Surely the ultimate outcome belongs ˹only˺ to the righteous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,125,'And to the people of ’Âd We sent their brother Hûd. He said, “O my people! Worship Allah. You have no god other than Him. You do nothing but fabricate lies ˹against Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,125,'O my people! I do not ask you for any reward for this ˹message˺. My reward is only from the One Who created me. Will you not then understand?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,125,'And O my people! Seek your Lord’s forgiveness and turn to Him in repentance. He will shower you with rain in abundance, and add strength to your strength. So do not turn away, persisting in wickedness.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,125,'They argued, “O Hûd! You have not given us any clear proof, and we will never abandon our gods upon your word, nor will we believe in you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,125,'All we can say is that some of our gods have possessed you with evil.” He said, “I call Allah to witness, and you too bear witness, that I ˹totally˺ reject whatever you associate');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,125,'with Him ˹in worship˺. So let all of you plot against me without delay!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,125,'I have put my trust in Allah—my Lord and your Lord. There is no living creature that is not completely under His control. Surely my Lord’s Way is perfect justice.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,125,'But if you turn away, I have already delivered to you what I have been sent with. My Lord will replace you with others. You are not harming Him in the least. Indeed, my Lord is a ˹vigilant˺ Keeper over all things.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,125,'When Our command came, We rescued Hûd and those who believed with him by a mercy from Us, saving them from a harsh torment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,125,'That was ’Âd. They denied the signs of their Lord, disobeyed His messengers, and followed the command of every stubborn tyrant.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,125,'They were followed by a curse in this world, as they will be on the Day of Judgment. Surely ’Âd denied their Lord. So away with ’Âd, the people of Hûd.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,125,'And to the people of Thamûd We sent their brother Ṣâliḥ. He said, “O my people! Worship Allah. You have no god other than Him. He ˹is the One Who˺ produced you from the earth and settled you on it. So seek His forgiveness and turn to Him in repentance. Surely my Lord is Ever Near, All-Responsive ˹to prayers˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,125,'They argued, “O Ṣâliḥ! We truly had high hopes in you before this. How dare you forbid us to worship what our forefathers had worshipped? We are certainly in alarming doubt about what you are inviting us to.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,125,'He responded, “O my people! Consider if I stand on a clear proof from my Lord and He has blessed me with a mercy from Him. Who could help me against Allah if I were to disobey Him? You would only contribute to my doom.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,125,'And O my people! This she-camel of Allah is a sign for you. So leave her to graze ˹freely˺ on Allah’s earth and do her no harm, or a swift punishment will overtake you!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,125,'But they killed her, so he warned ˹them˺, “You have ˹only˺ three ˹more˺ days to enjoy life in your homes—this is an unfailing promise!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,125,'When Our command came, We saved Ṣâliḥ and those who believed with him by a mercy from Us and spared them the disgrace of that Day. Surely your Lord ˹alone˺ is the All-Powerful, Almighty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,125,'And the ˹mighty˺ blast overtook the wrongdoers, so they fell lifeless in their homes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,125,'as if they had never lived there. Surely Thamûd denied their Lord, so away with Thamûd!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,125,'And surely Our messenger-angels came to Abraham with good news ˹of a son˺. They greeted ˹him with˺, “Peace!” And he replied, “Peace ˹be upon you˺!” Then it was not long before he brought ˹them˺ a ˹fat,˺ roasted calf.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,125,'And when he saw that their hands did not reach for the food, he became suspicious and fearful of them. They reassured ˹him˺, “Do not be afraid! We are ˹angels˺ sent ˹only˺ against the people of Lot.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,125,'And his wife was standing by, so she laughed, then We gave her good news of ˹the birth of˺ Isaac, and, after him, Jacob.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,125,'She wondered, “Oh, my! How can I have a child in this old age, and my husband here is an old man? This is truly an astonishing thing!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,125,'They responded, “Are you astonished by Allah’s decree? May Allah’s mercy and blessings be upon you, O people of this house. Indeed, He is Praiseworthy, All-Glorious.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,125,'Then after the fear had left Abraham, and the good news had reached him, he began to plead with Us for the people of Lot.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,125,'Truly, Abraham was forbearing, tender-hearted, and ever turning ˹to his Lord˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,125,'˹The angels said,˺ “O Abraham! Plead no more! Your Lord’s decree has already come, and they will certainly be afflicted with a punishment that cannot be averted!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,125,'When Our messenger-angels came to Lot, he was distressed and worried by their arrival. He said, “This is a terrible day.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,125,'And ˹the men of˺ his people—who were used to shameful deeds—came to him rushing. He pleaded, “O my people! Here are my daughters ˹for marriage˺—they are pure for you. So fear Allah, and do not humiliate me by disrespecting my guests. Is there not ˹even˺ a single right-minded man among you?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,125,'They argued, “You certainly know that we have no need for your daughters. You already know what we desire!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,125,'He responded, “If only I had the strength ˹to resist you˺ or could rely on a strong supporter.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,125,'The angels said, “O Lot! We are the messengers of your Lord. They will never reach you. So travel with your family in the dark of night, and do not let any of you look back, except your wife. She will certainly suffer the fate of the others. Their appointed time is the morning. Is the morning not near?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,125,'When Our command came, We turned the cities upside down and rained down on them clustered stones of baked clay,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,125,'marked by your Lord ˹O Prophet˺. And these stones are not far from the ˹pagan˺ wrongdoers!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,125,'And to the people of Midian We sent their brother Shu’aib. He said, “O my people! Worship Allah. You have no god other than Him. And do not give short measure and weight. I do see you in prosperity now, but I truly fear for you the torment of an overwhelming Day.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,125,'O my people! Give full measure and weigh with justice. Do not defraud people of their property, nor go about spreading corruption in the land.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,125,'What is left ˹as a lawful gain˺ by Allah is far better for you if you are ˹truly˺ believers. And I am not a keeper over you.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,125,'They asked ˹sarcastically˺, “O Shu’aib! Does your prayer command you that we should abandon what our forefathers worshipped or give up managing our wealth as we please? Indeed, you are such a tolerant, sensible man!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,125,'He said, “O my people! Consider if I stand on a clear proof from my Lord and He has blessed me with a good provision from Him. I do not want to do what I am forbidding you from. I only intend reform to the best of my ability. My success comes only through Allah. In Him I trust and to Him I turn.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,125,'O my people! Do not let your opposition to me lead you to a fate similar to that of the people of Noah, or Hûd, or Ṣâliḥ. And the people of Lot are not far from you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,125,'So seek your Lord’s forgiveness and turn to Him in repentance. Surely my Lord is Most Merciful, All-Loving.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,125,'They threatened, “O Shu’aib! We do not comprehend much of what you say, and surely we see you powerless among us. Were it not for your clan, we would have certainly stoned you, for you are nothing to us.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,125,'He said, “O my people! Do you have more regard for my clan than for Allah, turning your back on Him entirely? Surely my Lord is Fully Aware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,125,'O my people! Persist in your ways, for I ˹too˺ will persist in mine. You will soon come to know who will be visited by a humiliating torment and is a liar! And watch! I too am watching with you!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,125,'When Our command came, We saved Shu’aib and those who believed with him by a mercy from Us. And the ˹mighty˺ blast overtook the wrongdoers, so they fell lifeless in their homes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,125,'as if they had never lived there. So away with Midian as it was with Thamûd!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,125,'Indeed, We sent Moses with Our signs and compelling proof');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,125,'to Pharaoh and his chiefs, but they followed the command of Pharaoh, and Pharaoh’s command was not well guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,125,'He will be before his people on the Day of Judgment and will lead them into the Fire. What an evil place to be led into!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,125,'They were followed by a curse in this ˹life˺ and ˹will receive another˺ on the Day of Judgment. What an evil gift to receive!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,2,125,'These are accounts, We relate to you ˹O Prophet˺, of the ˹destroyed˺ cities. Some are still standing ˹barren˺, while others have been mowed down.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,2,125,'We did not wrong them, rather they wronged themselves. The gods they invoked beside Allah were of no help at all when the command of your Lord came, and only contributed to their ruin.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,2,125,'Such is the ˹crushing˺ grip of your Lord when He seizes the societies entrenched in wrongdoing. Indeed, His grip is ˹terribly˺ painful and severe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,2,125,'Surely in this is a sign for those who fear the torment of the Hereafter. That is a Day for which humanity will be gathered and a Day ˹that will be˺ witnessed ˹by all˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,2,125,'We only delay it for a fixed term.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,2,125,'When that Day arrives, no one will dare speak except with His permission. Some of them will be miserable, others joyful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,2,125,'As for those bound for misery, they will be in the Fire, where they will be sighing and gasping,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,2,125,'staying there forever, as long as the heavens and the earth will endure, except what your Lord wills. Surely your Lord does what He intends.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,2,125,'And as for those destined to joy, they will be in Paradise, staying there forever, as long as the heavens and the earth will endure, except what your Lord wills—a ˹generous˺ giving, without end.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,2,125,'So do not be in doubt ˹O Prophet˺ about what those ˹pagans˺ worship. They worship nothing except what their forefathers worshipped before ˹them˺. And We will certainly give them their share ˹of punishment˺ in full, without any reduction.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,2,125,'Indeed, We had given Moses the Scripture, but differences arose regarding it. Had it not been for a prior decree from your Lord, their differences would have been settled ˹at once˺. They are truly in alarming doubt about it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,2,125,'And surely your Lord will fully pay all for their deeds. He is certainly All-Aware of what they do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,2,125,'So be steadfast as you are commanded ˹O Prophet˺, along with those who turn ˹in submission to Allah˺ with you. And do not transgress. Surely He is All-Seeing of what you ˹believers˺ do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,2,125,'And do not be inclined to the wrongdoers or you will be touched by the Fire. For then you would have no protectors other than Allah, nor would you be helped.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,2,125,'Establish prayer ˹O Prophet˺ at both ends of the day and in the early part of the night. Surely good deeds wipe out evil deeds. That is a reminder for the mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,2,125,'And be patient! Certainly Allah does not discount the reward of the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,2,125,'If only there had been among the ˹destroyed˺ peoples before you, ˹O believers,˺ virtuous individuals who forbade corruption in the land—other than the few We had saved ˹from the torment˺. But the wrongdoers ˹only˺ pursued their ˹worldly˺ pleasures, becoming wicked.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,2,125,'And your Lord ˹O Prophet˺ would never destroy a society unjustly while its people were acting rightly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,2,125,'Had your Lord so willed, He would have certainly made humanity one single community ˹of believers˺, but they will always ˹choose to˺ differ—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,2,125,'except those shown mercy by your Lord—and so He created them ˹to choose freely˺. And so the Word of your Lord will be fulfilled: “I will surely fill up Hell with jinn and humans all together.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,2,125,'And We relate to you ˹O Prophet˺ the stories of the messengers to reassure your heart. And there has come to you in this ˹sûrah˺ the truth, a warning ˹to the disbelievers˺, and a reminder to the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,2,125,'Say to those who disbelieve, “Persist in your ways; we will certainly persist in ours.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,2,125,'And wait! Surely we ˹too˺ are waiting.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,2,125,'To Allah ˹alone˺ belongs the knowledge of what is hidden in the heavens and the earth. And to Him all matters are returned. So worship Him and put your trust in Him. And your Lord is never unaware of what you do.');
+INSERT INTO chapters (id, number, quran_id) VALUES(126,12,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,126,'Alif-Lãm-Ra. These are the verses of the clear Book.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,126,'Indeed, We have sent it down as an Arabic Quran so that you may understand.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,126,'We relate to you ˹O Prophet˺ the best of stories through Our revelation of this Quran, though before this you were totally unaware ˹of them˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,126,'˹Remember˺ when Joseph said to his father, “O my dear father! Indeed I dreamt of eleven stars, and the sun, and the moon—I saw them prostrating to me!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,126,'He replied, “O my dear son! Do not relate your vision to your brothers, or they will devise a plot against you. Surely Satan is a sworn enemy to humankind.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,126,'And so will your Lord choose you ˹O Joseph˺, and teach you the interpretation of dreams, and perfect His favour upon you and the descendants of Jacob—˹just˺ as He once perfected it upon your forefathers, Abraham and Isaac. Surely your Lord is All-Knowing, All-Wise.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,126,'Indeed, in the story of Joseph and his brothers there are lessons for all who ask.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,126,'˹Remember˺ when they said ˹to one another˺, “Surely Joseph and his brother ˹Benjamin˺ are more beloved to our father than we, even though we are a group of so many. Indeed, our father is clearly mistaken.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,126,'Kill Joseph or cast him out to some ˹distant˺ land so that our father’s attention will be only ours, then after that you may ˹repent and˺ become righteous people!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,126,'One of them said, “Do not kill Joseph. But if you must do something, throw him into the bottom of a well so perhaps he may be picked up by some travellers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,126,'They said, “O our father! Why do you not trust us with Joseph, although we truly wish him well?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,126,'Send him out with us tomorrow so that he may enjoy himself and play. And we will really watch over him.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,126,'He responded, “It would truly sadden me if you took him away with you, and I fear that a wolf may devour him while you are negligent of him.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,126,'They said, “If a wolf were to devour him, despite our strong group, then we would certainly be losers!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,126,'And so, when they took him away and decided to throw him into the bottom of the well, We inspired him: “˹One day˺ you will remind them of this deed of theirs while they are unaware ˹of who you are˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,126,'Then they returned to their father in the evening, weeping.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,126,'They cried, “Our father! We went racing and left Joseph with our belongings, and a wolf devoured him! But you will not believe us, no matter how truthful we are.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,126,'And they brought his shirt, stained with false blood. He responded, “No! Your souls must have tempted you to do something ˹evil˺. So ˹I can only endure with˺ beautiful patience! It is Allah’s help that I seek to bear your claims.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,126,'And there came some travellers, and they sent their water-boy who let down his bucket into the well. He cried out, “Oh, what a great find! Here is a boy!” And they took him secretly ˹to be sold˺ as merchandise, but Allah is All-Knowing of what they did.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,126,'They ˹later˺ sold him for a cheap price, just a few silver coins—only wanting to get rid of him. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,126,'The man from Egypt who bought him said to his wife, “Take good care of him, perhaps he may be useful to us or we may adopt him as a son.” This is how We established Joseph in the land, so that We might teach him the interpretation of dreams. Allah’s Will always prevails, but most people do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,126,'And when he reached maturity, We gave him wisdom and knowledge. This is how We reward the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,126,'And the lady, in whose house he lived, tried to seduce him. She locked the doors ˹firmly˺ and said, “Come to me!” He replied, “Allah is my refuge! It is ˹not right to betray˺ my master, who has taken good care of me. Indeed, the wrongdoers never succeed.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,126,'She advanced towards him, and he would have done likewise, had he not seen a sign from his Lord. This is how We kept evil and indecency away from him, for he was truly one of Our chosen servants.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,126,'They raced for the door and she tore his shirt from the back, only to find her husband at the door. She cried, “What is the penalty for someone who tried to violate your wife, except imprisonment or a painful punishment?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,126,'Joseph responded, “It was she who tried to seduce me.” And a witness from her own family testified: “If his shirt is torn from the front, then she has told the truth and he is a liar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,126,'But if it is torn from the back, then she has lied and he is truthful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,126,'So when her husband saw that Joseph’s shirt was torn from the back, he said ˹to her˺, “This must be ˹an example˺ of the cunning of you ˹women˺! Indeed, your cunning is so shrewd!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,126,'O Joseph! Forget about this. And you ˹O wife˺! Seek forgiveness for your sin. It certainly has been your fault.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,126,'Some women of the city gossiped, “The Chief Minister’s wife is trying to seduce her slave-boy. Love for him has plagued her heart. Indeed, we see that she is clearly mistaken.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,126,'When she heard about their gossip, she invited them and set a banquet for them. She gave each one a knife, then said ˹to Joseph˺, “Come out before them.” When they saw him, they were so stunned ˹by his beauty˺ that they cut their hands, and exclaimed, “Good God! This cannot be human; this must be a noble angel!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,126,'She said, “This is the one for whose love you criticized me! I did try to seduce him but he ˹firmly˺ refused. And if he does not do what I order him to, he will certainly be imprisoned and ˹fully˺ disgraced.” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,126,'Joseph prayed, “My Lord! I would rather be in jail than do what they invite me to. And if You do not turn their cunning away from me, I might yield to them and fall into ignorance.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,126,'So his Lord responded to him, turning their cunning away from him. Surely He is the All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,126,'And so it occurred to those in charge, despite seeing all the proofs ˹of his innocence˺, that he should be imprisoned for a while. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,126,'And two other servants went to jail with Joseph. One of them said, “I dreamt I was pressing wine.” The other said, “I dreamt I was carrying ˹some˺ bread on my head, from which birds were eating.” ˹Then both said,˺ “Tell us their interpretation, for we surely see you as one of the good-doers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,126,'Joseph replied, “I can even tell you what kind of meal you will be served before you receive it. This ˹knowledge˺ is from what my Lord has taught me. I have shunned the faith of a people who disbelieve in Allah and deny the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,126,'I follow the faith of my fathers: Abraham, Isaac, and Jacob. It is not ˹right˺ for us to associate anything with Allah ˹in worship˺. This is part of Allah’s grace upon us and humanity, but most people are not grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,126,'O my fellow-prisoners! Which is far better: many different lords or Allah—the One, the Supreme?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,126,'Whatever ˹idols˺ you worship instead of Him are mere names which you and your forefathers have made up—a practice Allah has never authorized. It is only Allah Who decides. He has commanded that you worship none but Him. That is the upright faith, but most people do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,126,'“O my fellow-prisoners! ˹The first˺ one of you will serve wine to his master, and the other will be crucified and the birds will eat from his head. The matter about which you inquired has been decided.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,126,'Then he said to the one he knew would survive, “Mention me in the presence of your master.” But Satan made him forget to mention Joseph to his master, so he remained in prison for several years.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,126,'And ˹one day˺ the King said, “I dreamt of seven fat cows eaten up by seven skinny ones; and seven green ears of grain and ˹seven˺ others dry. O chiefs! Tell me the meaning of my dream if you can interpret dreams.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,126,'They replied, “These are confused visions and we do not know the interpretation of such dreams.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,126,'˹Finally,˺ the surviving ex-prisoner remembered ˹Joseph˺ after a long time and said, “I will tell you its interpretation, so send me forth ˹to Joseph˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,126,'˹He said,˺ “Joseph, O man of truth! Interpret for us ˹the dream of˺ seven fat cows eaten up by seven skinny ones; and seven green ears of grain and ˹seven˺ others dry, so that I may return to the people and let them know.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,126,'Joseph replied, “You will plant ˹grain˺ for seven consecutive years, leaving in the ear whatever you will harvest, except for the little you will eat.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,126,'Then after that will come seven years of great hardship which will consume whatever you have saved, except the little you will store ˹for seed˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,126,'Then after that will come a year in which people will receive abundant rain and they will press ˹oil and wine˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,126,'The King ˹then˺ said, “Bring him to me.” When the messenger came to him, Joseph said, “Go back to your master and ask him about the case of the women who cut their hands. Surely my Lord has ˹full˺ knowledge of their cunning.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,126,'The King asked ˹the women˺, “What did you get when you tried to seduce Joseph?” They replied, “Allah forbid! We know nothing indecent about him.” Then the Chief Minister’s wife admitted, “Now the truth has come to light. It was I who tried to seduce him, and he is surely truthful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,126,'From this, Joseph should know that I did not speak dishonestly about him in his absence, for Allah certainly does not guide the scheming of the dishonest.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,126,'And I do not seek to free myself from blame, for indeed the soul is ever inclined to evil, except those shown mercy by my Lord. Surely my Lord is All-Forgiving, Most Merciful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,126,'The King said, “Bring him to me. I will employ him exclusively in my service.” And when Joseph spoke to him, the King said, “Today you are highly esteemed and fully trusted by us.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,126,'Joseph proposed, “Put me in charge of the store-houses of the land, for I am truly reliable and adept.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,126,'This is how We established Joseph in the land to settle wherever he pleased. We shower Our mercy on whoever We will, and We never discount the reward of the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,126,'And the reward of the Hereafter is far better for those who are faithful and are mindful ˹of Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,126,'And Joseph’s brothers came and entered his presence. He recognized them but they were unaware of who he really was.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,126,'When he had provided them with their supplies, he demanded, “Bring me your brother on your father’s side. Do you not see that I give full measure and I am the best of hosts?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,126,'But if you do not bring him to me ˹next time˺, I will have no grain for you, nor will you ever come close to me again.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,126,'They promised, “We will try to convince his father to let him come. We will certainly do ˹our best˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,126,'Joseph ordered his servants to put his brothers’ money back into their saddlebags so that they would find it when they returned to their family and perhaps they would come back.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,126,'When Joseph’s brothers returned to their father, they pleaded, “O our father! We have been denied ˹further˺ supplies. So send our brother with us so that we may receive our measure, and we will definitely watch over him.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,126,'He responded, “Should I trust you with him as I once trusted you with his brother ˹Joseph˺? But ˹only˺ Allah is the best Protector, and He is the Most Merciful of the merciful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,126,'When they opened their bags, they discovered that their money had been returned to them. They argued, “O our father! What more can we ask for? Here is our money, fully returned to us. Now we can buy more food for our family. We will watch over our brother, and obtain an extra camel-load of grain. That load can be easily secured.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,126,'Jacob insisted, “I will not send him with you until you give me a solemn oath by Allah that you will certainly bring him back to me, unless you are totally overpowered.” Then after they had given him their oaths, he concluded, “Allah is a Witness to what we have said.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,126,'He then instructed ˹them˺, “O my sons! Do not enter ˹the city˺ all through one gate, but through separate gates. I cannot help you against ˹what is destined by˺ Allah in the least. It is only Allah Who decides. In Him I put my trust. And in Him let the faithful put their trust.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,126,'Then when they entered as their father had instructed them, this did not help them against ˹the Will of˺ Allah whatsoever. It was just a desire in Jacob’s heart which he satisfied. He was truly blessed with ˹great˺ knowledge because of what We had taught him, but most people have no knowledge.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,126,'When they entered Joseph’s presence, he called his brother ˹Benjamin˺ aside, and confided ˹to him˺, “I am indeed your brother ˹Joseph˺! So do not feel distressed about what they have been doing.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,126,'When Joseph had provided them with supplies, he slipped the royal cup into his brother’s bag. Then a herald cried, “O people of the caravan! You must be thieves!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,126,'They asked, turning back, “What have you lost?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,126,'The herald ˹along with the guards˺ replied, “We have lost the King’s measuring cup. And whoever brings it will be awarded a camel-load ˹of grain˺. I guarantee it.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,126,'Joseph’s brothers replied, “By Allah! You know well that we did not come to cause trouble in the land, nor are we thieves.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,126,'Joseph’s men asked, “What should be the price for theft, if you are lying?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,126,'Joseph’s brothers responded, “The price will be ˹the enslavement of˺ the one in whose bag the cup is found. That is how we punish the wrongdoers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,126,'Joseph began searching their bags before that of his brother ˹Benjamin˺, then brought it out of Benjamin’s bag. This is how We inspired Joseph to plan. He could not have taken his brother under the King’s law, but Allah had so willed. We elevate in rank whoever We will. But above those ranking in knowledge is the One All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,126,'˹To distance themselves,˺ Joseph’s brothers argued, “If he has stolen, so did his ˹full˺ brother before.” But Joseph suppressed his outrage—revealing nothing to them—and said ˹to himself˺, “You are in such an evil position, and Allah knows best ˹the truth of˺ what you claim.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,126,'They appealed, “O Chief Minister! He has a very old father, so take one of us instead. We surely see you as one of the good-doers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,126,'Joseph responded, “Allah forbid that we should take other than the one with whom we found our property. Otherwise, we would surely be unjust.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,126,'When they lost all hope in him, they spoke privately. The eldest of them said, “Do you not know that your father had taken a solemn oath by Allah from you, nor how you failed him regarding Joseph before? So I am not leaving this land until my father allows me to, or Allah decides for me. For He is the Best of Judges.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,126,'Return to your father and say, ‘O our father! Your son committed theft. We testify only to what we know. We could not guard against the unforeseen.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,126,'Ask ˹the people of˺ the land where we were and the caravan we travelled with. We are certainly telling the truth.’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,126,'He cried, “No! Your souls must have tempted you to do something ˹evil˺. So ˹I am left with nothing but˺ beautiful patience! I trust Allah will return them all to me. Surely He ˹alone˺ is the All-Knowing, All-Wise.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,126,'He turned away from them, lamenting, “Alas, poor Joseph!” And his eyes turned white out of the grief he suppressed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,126,'They said, “By Allah! You will not cease to remember Joseph until you lose your health or ˹even˺ your life.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,126,'He replied, “I complain of my anguish and sorrow only to Allah, and I know from Allah what you do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,126,'O my sons! Go and search ˹diligently˺ for Joseph and his brother. And do not lose hope in the mercy of Allah, for no one loses hope in Allah’s mercy except those with no faith.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,126,'When they entered Joseph’s presence, they pleaded, “O Chief Minister! We and our family have been touched with hardship, and we have brought only a few worthless coins, but ˹please˺ give us our supplies in full and be charitable to us. Indeed, Allah rewards the charitable.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,126,'He asked, “Do you remember what you did to Joseph and his brother in your ignorance?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,126,'They replied ˹in shock˺, “Are you really Joseph?” He said, “I am Joseph, and here is my brother ˹Benjamin˺! Allah has truly been gracious to us. Surely whoever is mindful ˹of Allah˺ and patient, then certainly Allah never discounts the reward of the good-doers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,126,'They admitted, “By Allah! Allah has truly preferred you over us, and we have surely been sinful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,126,'Joseph said, “There is no blame on you today. May Allah forgive you! He is the Most Merciful of the merciful!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,126,'Go with this shirt of mine and cast it over my father’s face, and he will regain his sight. Then come back to me with your whole family.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,126,'When the caravan departed ˹from Egypt˺, their father said ˹to those around him˺, “You may think I am senile, but I certainly sense the smell of Joseph.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,126,'They replied, “By Allah! You are definitely still in your old delusion.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,126,'But when the bearer of the good news arrived, he cast the shirt over Jacob’s face, so he regained his sight. Jacob then said ˹to his children˺, “Did I not tell you that I truly know from Allah what you do not know?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,126,'They begged, “O our father! Pray for the forgiveness of our sins. We have certainly been sinful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,126,'He said, “I will pray to my Lord for your forgiveness. He ˹alone˺ is indeed the All-Forgiving, Most Merciful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,126,'When they entered Joseph’s presence, he received his parents ˹graciously˺ and said, “Enter Egypt, Allah willing, in security.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,2,126,'Then he raised his parents to the throne, and they all fell down in prostration to Joseph, who then said, “O my dear father! This is the interpretation of my old dream. My Lord has made it come true. He was truly kind to me when He freed me from prison, and brought you all from the desert after Satan had ignited rivalry between me and my siblings. Indeed my Lord is subtle in fulfilling what He wills. Surely He ˹alone˺ is the All-Knowing, All-Wise.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,2,126,'“My Lord! You have surely granted me authority and taught me the interpretation of dreams. ˹O˺ Originator of the heavens and the earth! You are my Guardian in this world and the Hereafter. Allow me to die as one who submits and join me with the righteous.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,2,126,'That is from the stories of the unseen which We reveal to you ˹O Prophet˺. You were not present when they ˹all˺ made up their minds, and when they plotted ˹against Joseph˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,2,126,'And most people will not believe—no matter how keen you are—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,2,126,'even though you are not asking them for a reward for this ˹Quran˺. It is only a reminder to the whole world.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,2,126,'How many signs in the heavens and the earth do they pass by with indifference!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,2,126,'And most of them do not believe in Allah without associating others with Him ˹in worship˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,2,126,'Do they feel secure that an overwhelming torment from Allah will not overtake them, or that the Hour will not take them by surprise when they least expect ˹it˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,2,126,'Say, ˹O Prophet,˺ “This is my way. I invite to Allah with insight—I and those who follow me. Glory be to Allah, and I am not one of the polytheists.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,2,126,'We only sent before you ˹O Prophet˺ men inspired by Us from among the people of each society. Have the deniers not travelled through the land to see what was the end of those ˹destroyed˺ before them? And surely the ˹eternal˺ Home of the Hereafter is far better for those mindful ˹of Allah˺. Will you not then understand?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,2,126,'And when the messengers despaired and their people thought the messengers had been denied help, Our help came to them ˹at last˺. We then saved whoever We willed, and Our punishment is never averted from the wicked people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,2,126,'In their stories there is truly a lesson for people of reason. This message cannot be a fabrication, rather ˹it is˺ a confirmation of previous revelation, a detailed explanation of all things, a guide, and a mercy for people of faith.');
+INSERT INTO chapters (id, number, quran_id) VALUES(127,13,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,127,'Alif-Lãm-Mĩm-Ra. These are the verses of the Book. What has been revealed to you ˹O Prophet˺ from your Lord is the truth, but most people do not believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,127,'It is Allah Who has raised the heavens without pillars—as you can see—then established Himself on the Throne. He has subjected the sun and the moon, each orbiting for an appointed term. He conducts the whole affair. He makes the signs clear so that you may be certain of the meeting with your Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,127,'And He is the One Who spread out the earth and placed firm mountains and rivers upon it, and created fruits of every kind in pairs. He covers the day with night. Surely in this are signs for those who reflect.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,127,'And on the earth there are ˹different˺ neighbouring tracts, gardens of grapevines, ˹various˺ crops, palm trees—some stemming from the same root, others standing alone. They are all irrigated with the same water, yet We make some taste better than others. Surely in this are signs for those who understand.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,127,'˹Now,˺ if anything should amaze you ˹O Prophet˺, then it is their question: “When we are reduced to dust, will we really be raised as a new creation?” It is they who have disbelieved in their Lord. It is they who will have shackles around their necks. And it is they who will be the residents of the Fire. They will be there forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,127,'They ask you ˹O Prophet˺ to hasten the torment rather than grace, though there have ˹already˺ been ˹many˺ torments before them. Surely your Lord is full of forgiveness for people, despite their wrongdoing, and your Lord is truly severe in punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,127,'The disbelievers say, “If only a sign could be sent down to him from his Lord.” You ˹O Prophet˺ are only a warner. And every people had a guide.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,127,'Allah knows what every female bears and what increases and decreases in the wombs. And with Him everything is determined with precision.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,127,'˹He is the˺ Knower of the seen and the unseen—the All-Great, Most Exalted.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,127,'It is the same ˹to Him˺ whether any of you speaks secretly or openly, whether one hides in the darkness of night or goes about in broad daylight.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,127,'For each one there are successive angels before and behind, protecting them by Allah’s command. Indeed, Allah would never change a people’s state ˹of favour˺ until they change their own state ˹of faith˺. And if it is Allah’s Will to torment a people, it can never be averted, nor can they find a protector other than Him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,127,'He is the One Who shows you lightning, inspiring ˹you with˺ hope and fear, and produces heavy clouds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,127,'The thunder glorifies His praises, as do the angels in awe of Him. He sends thunderbolts, striking with them whoever He wills. Yet they dispute about Allah. And He is tremendous in might.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,127,'Calling upon Him ˹alone˺ is the truth. But those ˹idols˺ the pagans invoke besides Him ˹can˺ never respond to them in any way. ˹It is˺ just like someone who stretches out their hands to water, ˹asking it˺ to reach their mouths, but it can never do so. The calls of the disbelievers are only in vain.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,127,'To Allah ˹alone˺ bow down ˹in submission˺ all those in the heavens and the earth—willingly or unwillingly—as do their shadows, morning and evening.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,127,'Ask ˹them, O Prophet˺, “Who is the Lord of the heavens and the earth?” Say, “Allah!” Ask ˹them˺, “Why ˹then˺ have you taken besides Him lords who cannot even benefit or protect themselves?” Say, “Can the blind and the sighted be equal? Or can darkness and light be equal?” Or have they associated with Allah partners who ˹supposedly˺ produced a creation like His, leaving them confused between the two creations? Say, “Allah is the Creator of all things, and He is the One, the Supreme.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,127,'He sends down rain from the sky, causing the valleys to flow, each according to its capacity. The currents then carry along rising foam, similar to the slag produced from metal that people melt in the fire for ornaments or tools. This is how Allah compares truth to falsehood. The ˹worthless˺ residue is then cast away, but what benefits people remains on the earth. This is how Allah sets forth parables.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,127,'Those who respond to ˹the call of˺ their Lord will have the finest reward. As for those who do not respond to Him, even if they were to possess everything in the world twice over, they would certainly offer it to ransom themselves. They will face strict judgment, and Hell will be their home. What an evil place to rest!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,127,'Can the one who knows that your Lord’s revelation to you ˹O Prophet˺ is the truth be like the one who is blind? None will be mindful ˹of this˺ except people of reason.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,127,'˹They are˺ those who honour Allah’s covenant, never breaking the pledge;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,127,'and those who maintain whatever ˹ties˺ Allah has ordered to be maintained, stand in awe of their Lord, and fear strict judgment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,127,'And ˹they are˺ those who endure patiently, seeking their Lord’s pleasure, establish prayer, donate from what We have provided for them—secretly and openly—and respond to evil with good. It is they who will have the ultimate abode:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,127,'the Gardens of Eternity, which they will enter along with the righteous among their parents, spouses, and descendants. And the angels will enter upon them from every gate, ˹saying,˺');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,127,'“Peace be upon you for your perseverance. How excellent is the ultimate abode!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,127,'And those who violate Allah’s covenant after it has been affirmed, break whatever ˹ties˺ Allah has ordered to be maintained, and spread corruption in the land—it is they who will be condemned and will have the worst abode. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,127,'Allah gives abundant or limited provisions to whoever He wills. And the disbelievers become prideful of ˹the pleasures of˺ this worldly life. But the life of this world, compared to the Hereafter, is nothing but a fleeting enjoyment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,127,'The disbelievers say, “If only a sign could be sent down to him from his Lord.” Say, ˹O Prophet,˺ “Indeed, Allah leaves to stray whoever He wills, and guides to Himself whoever turns to Him—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,127,'those who believe and whose hearts find comfort in the remembrance of Allah. Surely in the remembrance of Allah do hearts find comfort.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,127,'Those who believe and do good, for them will be bliss and an honourable destination.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,127,'And so We have sent you ˹O Prophet˺ to a community, like ˹We did with˺ earlier communities, so that you may recite to them what We have revealed to you. Yet they deny the Most Compassionate. Say, “He is my Lord! There is no god ˹worthy of worship˺ except Him. In Him I put my trust, and to Him I turn ˹in repentance˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,127,'If there were a recitation that could cause mountains to move, or the earth to split, or the dead to speak, ˹it would have been this Quran˺. But all matters are by Allah’s Will. Have the believers not yet realized that had Allah willed, He could have guided all of humanity? And disasters will continue to afflict the disbelievers or strike close to their homes for their misdeeds, until Allah’s promise comes to pass. Surely Allah never fails in His promise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,127,'Other messengers had already been ridiculed before you, but I delayed the disbelievers ˹for a while˺ then seized them. And how ˹horrible˺ was My punishment!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,127,'Is ˹there any equal to˺ the Vigilant One Who knows what every soul commits? Yet the pagans have associated others with Allah ˹in worship˺. Say, ˹O Prophet,˺ “Name them! Or do you ˹mean to˺ inform Him of something He does not know on the earth? Or are these ˹gods˺ just empty words?” In fact, the disbelievers’ falsehood has been made so appealing to them that they have been turned away from the Path. And whoever Allah leaves to stray will be left with no guide.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,127,'For them is punishment in this worldly life, but the punishment of the Hereafter is truly far worse. And none can shield them from Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,127,'The description of the Paradise promised to the righteous is that under it rivers flow; eternal is its fruit as well as its shade. That is the ˹ultimate˺ outcome for the righteous. But the outcome for the disbelievers is the Fire!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,127,'˹The believers among˺ those who were given the Scripture rejoice at what has been revealed to you ˹O Prophet˺, while some ˹disbelieving˺ factions deny a portion of it. Say, “I have only been commanded to worship Allah, associating none with Him ˹in worship˺. To Him I invite ˹all˺, and to Him is my return.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,127,'And so We have revealed it as an authority in Arabic. And if you were to follow their desires after ˹all˺ the knowledge that has come to you, there would be none to protect or shield you from Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,127,'We have certainly sent messengers before you ˹O Prophet˺ and blessed them with wives and offspring. It was not for any messenger to bring a sign without Allah’s permission. Every destined matter has a ˹set˺ time.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,127,'Allah eliminates and confirms what He wills, and with Him is the Master Record. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,127,'Whether We show you ˹O Prophet˺ some of what We threaten them with, or cause you to die ˹before that˺, your duty is only to deliver ˹the message˺. Judgment is for Us.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,127,'Do they not see that We gradually reduce their land from its borders? Allah decides—none can reverse His decision. And He is swift in reckoning.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,127,'Those ˹disbelievers˺ before them ˹secretly˺ planned, but Allah has the ultimate plan. He knows what every soul commits. And the disbelievers will soon know who will have the ultimate outcome.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,127,'The disbelievers say, “You ˹Muḥammad˺ are no messenger.” Say, ˹O Prophet,˺ “Allah is sufficient as a Witness between me and you, as is whoever has knowledge of the Scripture.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(128,14,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,128,'Alif-Lãm-Ra. ˹This is˺ a Book which We have revealed to you ˹O Prophet˺ so that you may lead people out of darkness and into light, by the Will of their Lord, to the Path of the Almighty, the Praiseworthy—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,128,'Allah, to Whom belongs whatever is in the heavens and whatever is on the earth. And woe to the disbelievers because of a severe torment!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,128,'˹They are˺ the ones who favour the life of this world over the Hereafter and hinder ˹others˺ from the Way of Allah, striving to make it ˹appear˺ crooked. It is they who have gone far astray.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,128,'We have not sent a messenger except in the language of his people to clarify ˹the message˺ for them. Then Allah leaves whoever He wills to stray and guides whoever He wills. And He is the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,128,'Indeed, We sent Moses with Our signs, ˹ordering him,˺ “Lead your people out of darkness and into light, and remind them of Allah’s days ˹of favour˺.” Surely in this are signs for whoever is steadfast, grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,128,'˹Consider˺ when Moses said to his people, “Remember Allah’s favour upon you when He rescued you from the people of Pharaoh, who afflicted you with dreadful torment—slaughtering your sons and keeping your women. That was a severe test from your Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,128,'And ˹remember˺ when your Lord proclaimed, ‘If you are grateful, I will certainly give you more. But if you are ungrateful, surely My punishment is severe.’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,128,'Moses added, “If you along with everyone on earth were to be ungrateful, then ˹know that˺ Allah is indeed Self-Sufficient, Praiseworthy.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,128,'Have you not ˹already˺ received the stories of those who were before you: the people of Noah, ’Âd, Thamûd, and those after them? Only Allah knows how many they were. Their messengers came to them with clear proofs, but they put their hands over their mouths and said, “We totally reject what you have been sent with, and we are certainly in alarming doubt about what you are inviting us to.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,128,'Their messengers asked ˹them˺, “Is there any doubt about Allah, the Originator of the heavens and the earth? He is inviting you in order to forgive your sins, and delay your end until your appointed term.” They argued, “You are no more than humans like us! You ˹only˺ wish to turn us away from what our forefathers worshipped. So bring us some compelling proof.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,128,'Their messengers said to them, “We are ˹indeed˺ only humans like you, but Allah favours whoever He chooses of His servants. It is not for us to bring you any proof without Allah’s permission. And in Allah let the believers put their trust.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,128,'Why should we not put our trust in Allah, when He has truly guided us to ˹the very best of˺ ways? Indeed, we will patiently endure whatever harm you may cause us. And in Allah let the faithful put their trust.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,128,'The disbelievers then threatened their messengers, “We will certainly expel you from our land, unless you return to our faith.” So their Lord revealed to them, “We will surely destroy the wrongdoers,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,128,'and make you reside in the land after them. This is for whoever is in awe of standing before Me and fears My warning.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,128,'And both sides called for judgment, so every stubborn tyrant was doomed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,128,'Awaiting them is Hell, and they will be left to drink oozing pus,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,128,'which they will sip with difficulty, and can hardly swallow. Death will overwhelm them from every side, yet they will not ˹be able to˺ die. Awaiting them still is harsher torment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,128,'The parable of the deeds of those who disbelieve in their Lord is that of ashes fiercely blown away by wind on a stormy day. They will gain nothing from what they have earned. That is ˹truly˺ the farthest one can stray.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,128,'Have you not seen that Allah created the heavens and the earth for a reason? If He wills, He can eliminate you and produce a new creation.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,128,'And that is not difficult for Allah ˹at all˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,128,'They will all appear before Allah, and the lowly ˹followers˺ will appeal to the arrogant ˹leaders˺, “We were your ˹dedicated˺ followers, so will you ˹then˺ protect us from Allah’s torment in any way?” They will reply, “Had Allah guided us, we would have guided you. ˹Now˺ it is all the same for us whether we suffer patiently or impatiently, there is no escape for us.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,128,'And Satan will say ˹to his followers˺ after the judgment has been passed, “Indeed, Allah has made you a true promise. I too made you a promise, but I failed you. I did not have any authority over you. I only called you, and you responded to me. So do not blame me; blame yourselves. I cannot save you, nor can you save me. Indeed, I denounce your previous association of me with Allah ˹in loyalty˺. Surely the wrongdoers will suffer a painful punishment.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,128,'Those who believe and do good will be admitted into Gardens, under which rivers flow—to stay there forever by the Will of their Lord—where they will be greeted with “Peace!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,128,'Do you not see how Allah compares a good word to a good tree? Its root is firm and its branches reach the sky,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,128,'˹always˺ yielding its fruit in every season by the Will of its Lord. This is how Allah sets forth parables for the people, so perhaps they will be mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,128,'And the parable of an evil word is that of an evil tree, uprooted from the earth, having no stability.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,128,'Allah makes the believers steadfast with the firm Word ˹of faith˺ in this worldly life and the Hereafter. And Allah leaves the wrongdoers to stray. For Allah does what He wills.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,128,'Have you not seen those ˹disbelievers˺ who meet Allah’s favours with ingratitude and lead their own people to their doom?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,128,'In Hell they will burn. What an evil place for settlement.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,128,'They set up equals to Allah to mislead ˹others˺ from His Way. Say, ˹O Prophet,˺ “Enjoy yourselves! Surely your destination is the Fire.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,128,'Tell My believing servants to establish prayer and donate from what We have provided for them—openly and secretly—before the arrival of a Day in which there will be no ransom or friendly connections.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,128,'It is Allah Who created the heavens and the earth and sends down rain from the sky, causing fruits to grow as a provision for you. He has subjected the ships for your service, sailing through the sea by His command, and has subjected the rivers for you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,128,'He has ˹also˺ subjected for you the sun and the moon, both constantly orbiting, and has subjected the day and night for you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,128,'And He has granted you all that you asked Him for. If you tried to count Allah’s blessings, you would never be able to number them. Indeed humankind is truly unfair, ˹totally˺ ungrateful. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,128,'˹Remember˺ when Abraham prayed, “My Lord! Make this city ˹of Mecca˺ secure, and keep me and my children away from the worship of idols.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,128,'My Lord! They have caused many people to go astray. So whoever follows me is with me, and whoever disobeys me—then surely You are ˹still˺ All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,128,'Our Lord! I have settled some of my offspring in a barren valley, near Your Sacred House, our Lord, so that they may establish prayer. So make the hearts of ˹believing˺ people incline towards them and provide them with fruits, so perhaps they will be thankful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,128,'Our Lord! You certainly know what we conceal and what we reveal. Nothing on earth or in heaven is hidden from Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,128,'All praise is for Allah who has blessed me with Ishmael and Isaac in my old age. My Lord is indeed the Hearer of ˹all˺ prayers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,128,'My Lord! Make me and those ˹believers˺ of my descendants keep up prayer. Our Lord! Accept my prayers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,128,'Our Lord! Forgive me, my parents, and the believers on the Day when the judgment will come to pass.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,128,'Do not think ˹O Prophet˺ that Allah is unaware of what the wrongdoers do. He only delays them until a Day when ˹their˺ eyes will stare in horror—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,128,'rushing forth, heads raised, never blinking, hearts void.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,128,'And warn the people of the Day when the punishment will overtake ˹the wicked among˺ them, and the wrongdoers will cry, “Our Lord! Delay us for a little while. We will respond to Your call and follow the messengers!” ˹It will be said,˺ “Did you not swear before that you would never be removed ˹to the next life˺?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,128,'You passed by the ruins of those ˹destroyed peoples˺ who had wronged themselves. It was made clear to you how We dealt with them, and We gave you ˹many˺ examples.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,128,'They devised every plot, which was fully known to Allah, but their plotting was not enough to ˹even˺ overpower mountains ˹let alone Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,128,'So do not think ˹O Prophet˺ that Allah will fail to keep His promise to His messengers. Allah is indeed Almighty, capable of punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,128,'˹Watch for˺ the Day ˹when˺ the earth will be changed into a different earth and the heavens as well, and all will appear before Allah—the One, the Supreme.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,128,'On that Day you will see the wicked bound together in chains,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,128,'with garments of tar, and their faces covered with flames.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,128,'As such, Allah will reward every soul for what it has committed. Surely Allah is swift in reckoning.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,128,'This ˹Quran˺ is a ˹sufficient˺ message for humanity so that they may take it as a warning and know that there is only One God, and so that people of reason may be mindful.');
+INSERT INTO chapters (id, number, quran_id) VALUES(129,15,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,129,'Alif-Lãm-Ra. These are the verses of the Book; the clear Quran.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,129,'˹The day will come when˺ the disbelievers will certainly wish they had submitted ˹to Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,129,'˹So˺ let them eat and enjoy themselves and be diverted by ˹false˺ hope, for they will soon know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,129,'We have never destroyed a society without a destined term.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,129,'No people can advance their doom, nor can they delay it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,129,'They say, “O you to whom the Reminder is revealed! You must be insane!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,129,'Why do you not bring us the angels, if what you say is true?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,129,'We do not send the angels down except for a just cause, and then ˹the end of˺ the disbelievers will not be delayed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,129,'It is certainly We Who have revealed the Reminder, and it is certainly We Who will preserve it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,129,'Indeed, We sent messengers before you ˹O Prophet˺ among the groups of early peoples,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,129,'but no messenger ever came to them without being mocked.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,129,'This is how We allow disbelief ˹to steep˺ into the hearts of the wicked.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,129,'They would not believe in this ˹Quran˺ despite the ˹many˺ examples of those ˹destroyed˺ before.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,129,'And even if We opened for them a gate to heaven, through which they continued to ascend,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,129,'still they would say, “Our eyes have truly been dazzled! In fact, we must have been bewitched.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,129,'Indeed, We have placed constellations in the sky, and adorned it for all to see.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,129,'And We protected it from every accursed devil,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,129,'except the one eavesdropping, who is then pursued by a visible flare.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,129,'As for the earth, We spread it out and placed upon it firm mountains, and caused everything to grow there in perfect balance.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,129,'And We made in it means of sustenance for you and others, who you do not provide for.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,129,'There is not any means ˹of sustenance˺ whose reserves We do not hold, only bringing it forth in precise measure.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,129,'We send fertilizing winds, and bring down rain from the sky for you to drink. It is not you who hold its reserves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,129,'Surely it is We Who give life and cause death. And We are the ˹Eternal˺ Successor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,129,'We certainly know those who have gone before you and those who will come after ˹you˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,129,'Surely your Lord ˹alone˺ will gather them together ˹for judgment˺. He is truly All-Wise, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,129,'Indeed, We created man from sounding clay moulded from black mud.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,129,'As for the jinn, We created them earlier from smokeless fire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,129,'˹Remember, O Prophet˺ when your Lord said to the angels, “I am going to create a human being from sounding clay moulded from black mud.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,129,'So when I have fashioned him and had a spirit of My Own ˹creation˺ breathed into him, fall down in prostration to him.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,129,'So the angels prostrated all together—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,129,'but not Iblîs, who refused to prostrate with the others.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,129,'Allah asked, “O Iblîs! What is the matter with you that you did not join others in prostration?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,129,'He replied, “It is not for me to prostrate to a human You created from sounding clay moulded from black mud.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,129,'Allah commanded, “Then get out of Paradise, for you are truly cursed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,129,'And surely upon you is condemnation until the Day of Judgment.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,129,'Satan appealed, “My Lord! Then delay my end until the Day of their resurrection.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,129,'Allah said, “You will be delayed');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,129,'until the appointed Day.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,129,'Satan responded, “My Lord! For allowing me to stray I will surely tempt them on earth and mislead them all together,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,129,'except Your chosen servants among them.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,129,'Allah said, “This is the Way, binding on Me:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,129,'you will certainly have no authority over My servants, except the deviant who follow you,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,129,'and surely Hell is their destined place, all together.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,129,'It has seven gates, to each a group of them is designated.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,129,'Indeed, the righteous will be amid Gardens and springs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,129,'˹It will be said to them,˺ “Enter in peace and security.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,129,'We will remove whatever bitterness they had in their hearts. In a friendly manner, they will be on thrones, facing one another.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,129,'No fatigue will touch them there, nor will they ever be asked to leave.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,129,'Inform My servants ˹O Prophet˺ that I am truly the All-Forgiving, Most Merciful,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,129,'and that My torment is indeed the most painful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,129,'And inform them ˹O Prophet˺ about Abraham’s guests');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,129,'who entered upon him and greeted ˹him with˺, “Peace!” He ˹later˺ said, “Surely we are afraid of you.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,129,'They reassured ˹him˺, “Do not be afraid! Surely we give you good news of a knowledgeable son.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,129,'He wondered, “Do you give me good news despite my old age? What unlikely news!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,129,'They responded, “We give you good news in all truth, so do not be one of those who despair.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,129,'He exclaimed, “Who would despair of the mercy of their Lord except the misguided?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,129,'He ˹then˺ added, “What is your mission, O messenger-angels?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,129,'They replied, “We have actually been sent to a wicked people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,129,'As for the family of Lot, we will certainly deliver them all,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,129,'except his wife. We have determined that she will be one of the doomed.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,129,'So when the messengers came to the family of Lot,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,129,'he said, “You are surely an unfamiliar people!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,129,'They responded, “We have come to you with that ˹torment˺ which they have doubted.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,129,'We come to you with the truth, and we are certainly truthful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,129,'So travel with your family in the dark of night, and follow ˹closely˺ behind them. Do not let any of you look back, and go where you are commanded.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,129,'We revealed to him this decree: “Those ˹sinners˺ will be uprooted in the morning.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,129,'And there came the men of the city, rejoicing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,129,'Lot pleaded, “Indeed, these are my guests, so do not embarrass me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,129,'Fear Allah and do not humiliate me.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,129,'They responded, “Have we not forbidden you from protecting anyone?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,129,'He said, “O my people! Here are my daughters ˹so marry them˺ if you wish to do so.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,129,'By your life ˹O Prophet˺, they certainly wandered blindly, intoxicated ˹by lust˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,129,'So the ˹mighty˺ blast overtook them at sunrise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,129,'And We turned the cities ˹of Sodom and Gomorrah˺ upside down and rained upon them stones of baked clay.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,129,'Surely in this are signs for those who contemplate.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,129,'Their ruins still lie along a known route.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,129,'Surely in this is a sign for those who believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,129,'And the residents of the Forest were truly wrongdoers,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,129,'so We inflicted punishment upon them. The ruins of both nations still lie on a well-known road.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,129,'Indeed, the residents of the Stone Valley also denied the messengers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,129,'We gave them Our signs, but they turned away from them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,129,'They carved their homes in the mountains, feeling secure.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,129,'But the ˹mighty˺ blast overtook them in the morning,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,129,'and all they achieved was of no help to them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,129,'We have not created the heavens and the earth and everything in between except for a purpose. And the Hour is certain to come, so forgive graciously.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,129,'Surely your Lord is the Master Creator, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,129,'We have certainly granted you the seven often-repeated verses and the great Quran.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,129,'Do not let your eyes crave the ˹fleeting˺ pleasures We have provided for some of the disbelievers, nor grieve for them. And be gracious to the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,129,'And say, “I am truly sent with a clear warning”—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,129,'˹a warning˺ similar to what We sent to those who divided ˹the Scriptures˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,129,'who ˹now˺ accept parts of the Quran, rejecting others.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,129,'So by your Lord! We will certainly question them all');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,129,'about what they used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,129,'So proclaim what you have been commanded, and turn away from the polytheists.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,129,'Surely We will be sufficient for you against the mockers,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,129,'who set up ˹other˺ gods with Allah. They will soon come to know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,129,'We certainly know that your heart is truly distressed by what they say.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,129,'So glorify the praises of your Lord and be one of those who ˹always˺ pray,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,129,'and worship your Lord until the inevitable comes your way.');
+INSERT INTO chapters (id, number, quran_id) VALUES(130,16,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,130,'The command of Allah is at hand, so do not hasten it. Glorified and Exalted is He above what they associate ˹with Him in worship˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,130,'He sends down the angels with revelation by His command to whoever He wills of His servants, ˹stating:˺ “Warn ˹humanity˺ that there is no god ˹worthy of worship˺ except Me, so be mindful of Me ˹alone˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,130,'He created the heavens and the earth for a purpose. Exalted is He above what they associate with Him ˹in worship˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,130,'He created humans from a sperm-drop, then—behold!—they openly challenge ˹Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,130,'And He created the cattle for you as a source of warmth, food, and ˹many other˺ benefits.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,130,'They are also pleasing to you when you bring them home and when you take them out to graze.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,130,'And they carry your loads to ˹distant˺ lands which you could not otherwise reach without great hardship. Surely your Lord is Ever Gracious, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,130,'˹He also created˺ horses, mules, and donkeys for your transportation and adornment. And He creates what you do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,130,'It is upon Allah ˹alone˺ to ˹clearly˺ show the Straight Way. Other ways are deviant. Had He willed, He would have easily imposed guidance upon all of you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,130,'He is the One Who sends down rain from the sky, from which you drink and by which plants grow for your cattle to graze.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,130,'With it He produces for you ˹various˺ crops, olives, palm trees, grapevines, and every type of fruit. Surely in this is a sign for those who reflect.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,130,'And He has subjected for your benefit the day and the night, the sun and the moon. And the stars have been subjected by His command. Surely in this are signs for those who understand.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,130,'And ˹He subjected˺ for you whatever He has created on earth of varying colours. Surely in this is a sign for those who are mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,130,'And He is the One Who has subjected the sea, so from it you may eat tender seafood and extract ornaments to wear. And you see the ships ploughing their way through it, so you may seek His bounty and give thanks ˹to Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,130,'He has placed into the earth firm mountains, so it does not shake with you, as well as rivers, and pathways so you may find your way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,130,'Also by landmarks and stars do people find their way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,130,'Can the One Who creates be equal to those who do not? Will you not then be mindful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,130,'If you tried to count Allah’s blessings, you would never be able to number them. Surely Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,130,'And Allah knows what you conceal and what you reveal.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,130,'But those ˹idols˺ they invoke besides Allah cannot create anything—they themselves are created.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,130,'They are dead, not alive—not even knowing when their followers will be resurrected.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,130,'Your God is ˹only˺ One God. As for those who do not believe in the Hereafter, their hearts are in denial, and they are too proud.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,130,'Without a doubt, Allah knows what they conceal and what they reveal. He certainly does not like those who are too proud.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,130,'And when it is said to them, “What has your Lord revealed?” They say, “Ancient fables!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,130,'Let them bear their burdens in full on the Day of Judgment as well as some of the burdens of those they mislead without knowledge. Evil indeed is what they will bear!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,130,'Indeed, those before them had plotted, but Allah struck at the ˹very˺ foundation of their structure, so the roof collapsed on top of them, and the torment came upon them from where they did not expect.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,130,'Then on the Day of Judgment He will humiliate them and say, “Where are My ˹so-called˺ associate-gods for whose sake you used to oppose ˹the believers˺?” Those gifted with knowledge will say, “Surely disgrace and misery today are upon the disbelievers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,130,'Those whose souls the angels seize while they wrong themselves will then offer ˹full˺ submission ˹and say falsely,˺ “We did not do any evil.” ˹The angels will say,˺ “No! Surely Allah fully knows what you used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,130,'So enter the gates of Hell, to stay there forever. Indeed, what an evil home for the arrogant!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,130,'And ˹when˺ it is said to those mindful ˹of Allah˺, “What has your Lord revealed?” They say, “All the best!” For those who do good in this world, there is goodness. But far better is the ˹eternal˺ Home of the Hereafter. How excellent indeed is the home of the righteous:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,130,'the Gardens of Eternity which they will enter, under which rivers flow. In it they will have whatever they desire. This is how Allah rewards the righteous—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,130,'those whose souls the angels take while they are virtuous, saying ˹to them˺, “Peace be upon you! Enter Paradise for what you used to do.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,130,'Are they only awaiting the coming of the angels or the command of your Lord ˹O Prophet˺? So were those before them. And Allah never wronged them, but it was they who wronged themselves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,130,'Then the evil ˹consequences˺ of their deeds overtook them, and they were overwhelmed by what they used to ridicule.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,130,'The polytheists argue, “Had Allah willed, neither we nor our forefathers would have worshipped anything other than Him, nor prohibited anything without His command.” So did those before them. Is not the messengers’ duty only to deliver ˹the message˺ clearly?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,130,'We surely sent a messenger to every community, saying, “Worship Allah and shun false gods.” But some of them were guided by Allah, while others were destined to stray. So travel throughout the land and see the fate of the deniers!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,130,'Even though you ˹O Prophet˺ are keen on their guidance, Allah certainly does not guide those He leaves to stray, and they will have no helpers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,130,'They swear by Allah their most solemn oaths that Allah will never raise the dead to life. Yes ˹He will˺! It is a true promise binding on Him, but most people do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,130,'˹He will do that˺ to make clear to them what they disagreed on, and for the disbelievers to know that they were liars.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,130,'If We ever will something ˹to exist˺, all We say is: “Be!” And it is!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,130,'As for those who emigrated in ˹the cause of˺ Allah after being persecuted, We will surely bless them with a good home in this world. But the reward of the Hereafter is far better, if only they knew.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,130,'˹It is˺ they who have patiently endured, and in their Lord they put their trust.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,130,'We did not send ˹messengers˺ before you ˹O Prophet˺ except mere men inspired by Us. If you ˹polytheists˺ do not know ˹this already˺, then ask those who have knowledge ˹of the Scriptures˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,130,'˹We sent them˺ with clear proofs and divine Books. And We have sent down to you ˹O Prophet˺ the Reminder, so that you may explain to people what has been revealed for them, and perhaps they will reflect.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,130,'Do those who devise evil plots feel secure that Allah will not cause the earth to swallow them? Or that the torment will not come upon them in ways they cannot comprehend?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,130,'Or that He will not seize them while they go about ˹their day˺, for then they will have no escape?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,130,'Or that He will not destroy them gradually? But your Lord is truly Ever Gracious, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,130,'Have they not considered how the shadows of everything Allah has created incline to the right and the left ˹as the sun moves˺, totally submitting to Allah in all humility?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,130,'And to Allah ˹alone˺ bows down ˹in submission˺ whatever is in the heavens and whatever is on the earth of living creatures, as do the angels—who are not too proud ˹to do so˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,130,'They fear their Lord above them, and do whatever they are commanded.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,130,'And Allah has said, “Do not take two gods. There is only One God. So be in awe of Me ˹alone˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,130,'To Him belongs whatever is in the heavens and the earth, and to Him ˹alone˺ is the everlasting devotion. Will you then fear any other than Allah?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,130,'Whatever blessings you have are from Allah. Then whenever hardship touches you, to Him ˹alone˺ you cry ˹for help˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,130,'Then as soon as He removes the hardship from you, a group of you associates ˹others˺ with their Lord ˹in worship˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,130,'only returning Our favours with ingratitude. So enjoy yourselves, for you will soon know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,130,'And they ˹even˺ assign to those ˹idols˺—who know nothing—a share of what We have provided for them. By Allah! You will certainly be questioned about whatever ˹lies˺ you used to fabricate ˹against Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,130,'And they attribute ˹angels as˺ daughters to Allah—glory be to Him!—the opposite of what they desire for themselves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,130,'Whenever one of them is given the good news of a baby girl, his face grows gloomy, as he suppresses his rage.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,130,'He hides himself from the people because of the bad news he has received. Should he keep her in disgrace, or bury her ˹alive˺ in the ground? Evil indeed is their judgment!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,130,'To those who disbelieve in the Hereafter belong all evil qualities, whereas to Allah belong the finest attributes. And He is the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,130,'If Allah were to punish people ˹immediately˺ for their wrongdoing, He would not have left a single living being on earth. But He delays them for an appointed term. And when their time arrives, they cannot delay it for a moment, nor could they advance it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,130,'They attribute to Allah what they hate ˹for themselves˺, and their tongues utter the lie that they will have the finest reward. Without a doubt, for them is the Fire, where they will be abandoned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,130,'By Allah! We have surely sent messengers to communities before you ˹O Prophet˺, but Satan made their misdeeds appealing to them. So he is their patron today, and they will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,130,'We have revealed to you the Book only to clarify for them what they differed about, and as a guide and mercy for those who believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,130,'And Allah sends down rain from the sky, giving life to the earth after its death. Surely in this is a sign for those who listen.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,130,'And there is certainly a lesson for you in cattle: We give you to drink of what is in their bellies, from between digested food and blood: pure milk, pleasant to drink.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,130,'And from the fruits of palm trees and grapevines you derive intoxicants as well as wholesome provision. Surely in this is a sign for those who understand.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,130,'And your Lord inspired the bees: “Make ˹your˺ homes in the mountains, the trees, and in what people construct,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,130,'and feed from ˹the flower of˺ any fruit ˹you please˺ and follow the ways your Lord has made easy for you.” From their bellies comes forth liquid of varying colours, in which there is healing for people. Surely in this is a sign for those who reflect.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,130,'Allah has created you, and then causes you to die. And some of you are left to reach the most feeble stage of life so that they may know nothing after having known much. Indeed, Allah is All-Knowing, Most Capable.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,130,'And Allah has favoured some of you over others in provision. But those who have been much favoured would not share their wealth with those ˹bondspeople˺ in their possession, making them their equals. Do they then deny Allah’s favours?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,130,'And Allah has made for you spouses of your own kind, and given you through your spouses children and grandchildren. And He has granted you good, lawful provisions. Are they then faithful to falsehood and ungrateful for Allah’s favours?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,130,'Yet they worship besides Allah those ˹idols˺ who do not afford them any provision from the heavens and the earth, nor do they have the power to.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,130,'So do not set up equals to Allah, for Allah certainly knows and you do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,130,'Allah sets forth a parable: a slave who lacks all means, compared to a ˹free˺ man to whom We granted a good provision, of which he donates ˹freely,˺ openly and secretly. Are they equal? Praise be to Allah. In fact, most of them do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,130,'And Allah sets forth a parable of two men: one of them is dumb, incapable of anything. He is a burden on his master. Wherever he is sent, he brings no good. Can such a person be equal to the one who commands justice and is on the Straight Path?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,130,'To Allah ˹alone˺ belongs ˹the knowledge of˺ the unseen in the heavens and the earth. Bringing about the Hour would only take the blink of an eye, or even less. Surely Allah is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,130,'And Allah brought you out of the wombs of your mothers while you knew nothing, and gave you hearing, sight, and intellect so perhaps you would be thankful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,130,'Have they not seen the birds glide in the open sky? None holds them up except Allah. Surely in this are signs for those who believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,130,'And Allah has made your homes a place to rest, and has given you tents from the hide of animals, light to handle when you travel and when you camp. And out of their wool, fur, and hair He has given you furnishings and goods for a while.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,130,'And Allah has provided you shade out of what He created, and has given you shelter in the mountains. He has also provided you with clothes protecting you from the heat ˹and cold˺, and armour shielding you in battle. This is how He perfects His favour upon you, so perhaps you will ˹fully˺ submit ˹to Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,130,'But if they turn away, then your duty ˹O Prophet˺ is only to deliver ˹the message˺ clearly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,130,'They are aware of Allah’s favours, but still deny them. And most of them are ˹truly˺ ungrateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,130,'˹Consider, O Prophet,˺ the Day We will call ˹a prophet as˺ a witness from every faith-community. Then the disbelievers will neither be allowed to plead nor appease ˹their Lord˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,130,'And when the wrongdoers face the punishment, it will not be lightened for them, nor will they be delayed ˹from it˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,130,'And when the polytheists see their associate-gods, they will say, “Our Lord! These are our associate-gods that we used to invoke besides You.” Their gods will throw a rebuttal at them, ˹saying,˺ “You are definitely liars.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,130,'They will offer ˹full˺ submission to Allah on that Day, and whatever ˹gods˺ they fabricated will fail them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,130,'For those who disbelieve and hinder ˹others˺ from the Way of Allah, We will add more punishment to their punishment for all the corruption they spread.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,130,'˹Consider, O Prophet,˺ the Day We will call against every faith-community a witness of their own. And We will call you to be a witness against these ˹people of yours˺. We have revealed to you the Book as an explanation of all things, a guide, a mercy, and good news for those who ˹fully˺ submit.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,130,'Indeed, Allah commands justice, grace, as well as courtesy to close relatives. He forbids indecency, wickedness, and aggression. He instructs you so perhaps you will be mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,130,'Honour Allah’s covenant when you make a pledge, and do not break your oaths after confirming them, having made Allah your guarantor. Surely Allah knows all you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,130,'Do not be like the woman who ˹foolishly˺ unravels her yarn after it is firmly spun, by taking your oaths as a means of deceiving one another in favour of a stronger group. Surely Allah tests you through this. And on the Day of Judgment He will certainly make your differences clear to you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,130,'Had Allah willed, He could have easily made you one community ˹of believers˺, but He leaves to stray whoever He wills and guides whoever He wills. And you will certainly be questioned about what you used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,130,'And do not take your oaths as a means of deceiving one another or your feet will slip after they have been firm. Then you will taste the evil ˹consequences˺ of hindering ˹others˺ from the Way of Allah, and you will suffer a tremendous punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,130,'And do not trade Allah’s covenant for a fleeting gain. What is with Allah is certainly far better for you, if only you knew.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,130,'Whatever you have will end, but whatever Allah has is everlasting. And We will certainly reward the steadfast according to the best of their deeds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,130,'Whoever does good, whether male or female, and is a believer, We will surely bless them with a good life, and We will certainly reward them according to the best of their deeds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,130,'When you recite the Quran, seek refuge with Allah from Satan, the accursed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,130,'He certainly has no authority over those who believe and put their trust in their Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,2,130,'His authority is only over those who take him as a patron and who—under his influence—associate ˹others˺ with Allah ˹in worship˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,2,130,'When We replace a verse with another—and Allah knows best what He reveals—they say, “You ˹Muḥammad˺ are just a fabricator.” In fact, most of them do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,2,130,'Say, “The holy spirit has brought it down from your Lord with the truth to reassure the believers, and as a guide and good news for those who submit ˹to Allah˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,2,130,'And We surely know that they say, “No one is teaching him except a human.” But the man they refer to speaks a foreign tongue, whereas this ˹Quran˺ is ˹in˺ eloquent Arabic.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,2,130,'Surely those who do not believe in Allah’s revelations will never be guided by Allah, and they will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,2,130,'No one fabricates lies except those who disbelieve in Allah’s revelations, and it is they who are the ˹true˺ liars.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,2,130,'Whoever disbelieves in Allah after their belief—not those who are forced while their hearts are firm in faith, but those who embrace disbelief wholeheartedly—they will be condemned by Allah and suffer a tremendous punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,2,130,'This is because they prefer the life of this world over the Hereafter. Surely Allah never guides those who ˹choose to˺ disbelieve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,2,130,'They are the ones whose hearts, ears, and eyes are sealed by Allah, and it is they who are ˹truly˺ heedless.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,2,130,'Without a doubt, they will be the losers in the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,2,130,'As for those who emigrated after being compelled ˹to renounce Islam˺, then struggled ˹in Allah’s cause˺, and persevered, your Lord ˹O Prophet˺ is truly All-Forgiving, Most Merciful after all.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,2,130,'˹Consider˺ the Day ˹when˺ every soul will come pleading for itself, and each will be paid in full for what it did, and none will be wronged.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,2,130,'And Allah sets forth the example of a society which was safe and at ease, receiving its provision in abundance from all directions. But its people met Allah’s favours with ingratitude, so Allah made them taste the clutches of hunger and fear for their misdeeds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,2,130,'A messenger of their own actually did come to them, but they denied him. So the torment overtook them while they persisted in wrongdoing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,2,130,'So eat from the good, lawful things which Allah has provided for you, and be grateful for Allah’s favours, if you ˹truly˺ worship Him ˹alone˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,2,130,'He has only forbidden you ˹to eat˺ carrion, blood, swine, and what is slaughtered in the name of any other than Allah. But if someone is compelled by necessity—neither driven by desire nor exceeding immediate need—then surely Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,2,130,'Do not falsely declare with your tongues, “This is lawful, and that is unlawful,” ˹only˺ fabricating lies against Allah. Indeed, those who fabricate lies against Allah will never succeed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,2,130,'˹It is only˺ a brief enjoyment, then they will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,2,130,'To the Jews, We have forbidden what We related to you before. We did not wrong them, but it was they who wronged themselves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,2,130,'As for those who commit evil ignorantly ˹or recklessly˺, then repent afterwards and mend their ways, then your Lord is surely All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,2,130,'Indeed, Abraham was a model of excellence: devoted to Allah, ˹perfectly˺ upright—not a polytheist—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,2,130,'˹utterly˺ grateful for Allah’s favours. ˹So˺ He chose him and guided him to the Straight Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,2,130,'We blessed him with all goodness in this world, and in the Hereafter he will certainly be among the righteous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,2,130,'Then We revealed to you ˹O Prophet, saying˺: “Follow the faith of Abraham, the upright, who was not one of the polytheists.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,2,130,'˹Honouring˺ the Sabbath was ordained only for those who disputed about Abraham. And surely your Lord will judge between them on the Day of Judgment regarding their disputes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,2,130,'Invite ˹all˺ to the Way of your Lord with wisdom and kind advice, and only debate with them in the best manner. Surely your Lord ˹alone˺ knows best who has strayed from His Way and who is ˹rightly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,2,130,'If you retaliate, then let it be equivalent to what you have suffered. But if you patiently endure, it is certainly best for those who are patient.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,2,130,'Be patient ˹O Prophet˺, for your patience is only with Allah’s help. Do not grieve over those ˹who disbelieve˺, nor be distressed by their schemes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,2,130,'Surely Allah is with those who shun evil and who do good ˹deeds˺.');
+INSERT INTO chapters (id, number, quran_id) VALUES(131,17,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,131,'Glory be to the One Who took His servant ˹Muḥammad˺ by night from the Sacred Mosque to the Farthest Mosque whose surroundings We have blessed, so that We may show him some of Our signs. Indeed, He alone is the All-Hearing, All-Seeing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,131,'And We gave Moses the Scripture and made it a guide for the Children of Israel, ˹stating:˺ “Do not take besides Me any other Trustee of Affairs,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,131,'˹O˺ descendants of those We carried with Noah ˹in the Ark˺! He was indeed a grateful servant.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,131,'And We warned the Children of Israel in the Scripture, “You will certainly cause corruption in the land twice, and you will become extremely arrogant.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,131,'When the first of the two warnings would come to pass, We would send against you some of Our servants of great might, who would ravage your homes. This would be a warning fulfilled.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,131,'Then ˹after your repentance˺ We would give you the upper hand over them and aid you with wealth and offspring, causing you to outnumber them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,131,'If you act rightly, it is for your own good, but if you do wrong, it is to your own loss. “And when the second warning would come to pass, your enemies would ˹be left to˺ totally disgrace you and enter the Temple ˹of Jerusalem˺ as they entered it the first time, and utterly destroy whatever would fall into their hands.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,131,'Perhaps your Lord will have mercy on you ˹if you repent˺, but if you return ˹to sin˺, We will return ˹to punishment˺. And We have made Hell a ˹permanent˺ confinement for the disbelievers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,131,'Surely this Quran guides to what is most upright, and gives good news to the believers—who do good—that they will have a mighty reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,131,'And ˹it warns˺ those who do not believe in the Hereafter ˹that˺ We have prepared for them a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,131,'And humans ˹swiftly˺ pray for evil as they pray for good. For humankind is ever hasty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,131,'We made the day and night as two signs. So We made the sign of the night devoid of light, and We made the sign of the day ˹perfectly˺ bright, so that you may seek the bounty of your Lord and know the number of years and calculation ˹of time˺. And We have explained everything in detail.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,131,'We have bound every human’s destiny to their neck. And on the Day of Judgment We will bring forth to each ˹person˺ a record which they will find laid open.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,131,'˹And it will be said,˺ “Read your record. You ˹alone˺ are sufficient this Day to take account of yourself.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,131,'Whoever chooses to be guided, it is only for their own good. And whoever chooses to stray, it is only to their own loss. No soul burdened with sin will bear the burden of another. And We would never punish ˹a people˺ until We have sent a messenger ˹to warn them˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,131,'Whenever We intend to destroy a society, We command its elite ˹to obey Allah˺ but they act rebelliously in it. So the decree ˹of punishment˺ is justified, and We destroy it utterly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,131,'˹Imagine˺ how many peoples We have destroyed after Noah! And sufficient is your Lord as All-Aware and All-Seeing of the sins of His servants.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,131,'Whoever desires this fleeting world ˹alone˺, We hasten in it whatever We please to whoever We will; then We destine them for Hell, where they will burn, condemned and rejected.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,131,'But whoever desires the Hereafter and strives for it accordingly, and is a ˹true˺ believer, it is they whose striving will be appreciated.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,131,'We provide both the former and the latter from the bounty of your Lord. And the bounty of your Lord can never be withheld.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,131,'See how We have favoured some over others ˹in this life˺, but the Hereafter is certainly far greater in rank and in favour.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,131,'Do not set up any other god with Allah, or you will end up condemned, abandoned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,131,'For your Lord has decreed that you worship none but Him. And honour your parents. If one or both of them reach old age in your care, never say to them ˹even˺ ‘ugh,’ nor yell at them. Rather, address them respectfully.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,131,'And be humble with them out of mercy, and pray, “My Lord! Be merciful to them as they raised me when I was young.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,131,'Your Lord knows best what is within yourselves. If you are righteous, He is certainly All-Forgiving to those who ˹constantly˺ turn to Him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,131,'Give to close relatives their due, as well as the poor and ˹needy˺ travellers. And do not spend wastefully.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,131,'Surely the wasteful are ˹like˺ brothers to the devils. And the Devil is ever ungrateful to his Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,131,'But if you must turn them down ˹because you lack the means to give˺—while hoping to receive your Lord’s bounty—then ˹at least˺ give them a kind word.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,131,'Do not be so tight-fisted, for you will be blameworthy; nor so open-handed, for you will end up in poverty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,131,'Surely your Lord gives abundant or limited provisions to whoever He wills. He is certainly All-Aware, All-Seeing of His servants.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,131,'Do not kill your children for fear of poverty. We provide for them and for you. Surely killing them is a heinous sin.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,131,'Do not go near adultery. It is truly a shameful deed and an evil way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,131,'Do not take a ˹human˺ life—made sacred by Allah—except with ˹legal˺ right. If anyone is killed unjustly, We have given their heirs the authority, but do not let them exceed limits in retaliation, for they are already supported ˹by law˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,131,'Do not come near the wealth of the orphan—unless intending to enhance it—until they attain maturity. Honour ˹your˺ pledges, for you will surely be accountable for them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,131,'Give in full when you measure, and weigh with an even balance. That is fairest and best in the end.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,131,'Do not follow what you have no ˹sure˺ knowledge of. Indeed, all will be called to account for ˹their˺ hearing, sight, and intellect.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,131,'And do not walk on the earth arrogantly. Surely you can neither crack the earth nor stretch to the height of the mountains.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,131,'The violation of any of these ˹commandments˺ is detestable to your Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,131,'This is part of the wisdom which your Lord has revealed to you ˹O Prophet˺. And do not set up any other god with Allah ˹O humanity˺, or you will be cast into Hell, blameworthy, rejected.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,131,'Has your Lord favoured you ˹pagans˺ with sons and taken angels as ˹His˺ daughters? You are truly making an outrageous claim.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,131,'We have surely varied ˹the signs˺ in this Quran so perhaps they may be mindful, but it only drives them farther away.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,131,'Say, ˹O Prophet,˺ “Had there been other gods besides Him—as they claim—then they would have certainly sought a way to ˹challenge˺ the Lord of the Throne.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,131,'Glorified and Highly Exalted is He above what they claim!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,131,'The seven heavens, the earth, and all those in them glorify Him. There is not a single thing that does not glorify His praises—but you ˹simply˺ cannot comprehend their glorification. He is indeed Most Forbearing, All-Forgiving.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,131,'When you ˹O Prophet˺ recite the Quran, We put a hidden barrier between you and those who do not believe in the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,131,'We have cast veils over their hearts—leaving them unable to comprehend it—and deafness in their ears. And when you mention your Lord alone in the Quran, they turn their backs in aversion.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,131,'We know best how they listen to your recitation and what they say privately—when the wrongdoers say, “You would only be following a bewitched man.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,131,'See how they call you names ˹O Prophet˺! So they have gone so ˹far˺ astray that they cannot find the ˹Right˺ Way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,131,'And they say ˹mockingly˺, “When we are reduced to bones and ashes, will we really be raised as a new creation?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,131,'Say, ˹O Prophet,˺ “˹Yes, even if˺ you become stones, or iron,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,131,'or whatever you think is harder to bring to life!” Then they will ask ˹you˺, “Who will bring us back ˹to life˺?” Say, “The One Who created you the first time.” They will then shake their heads at you and ask, “When will that be?” Say, “Perhaps it is soon!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,131,'On the Day He will call you, you will ˹instantly˺ respond by praising Him, thinking you had remained ˹in the world˺ only for a little while.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,131,'Tell My ˹believing˺ servants to say only what is best. Satan certainly seeks to sow discord among them. Satan is indeed a sworn enemy to humankind.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,131,'Your Lord knows you best. He may have mercy on you if He wills, or punish you if He wills. We have not sent you ˹O Prophet˺ as a keeper over them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,131,'Your Lord knows best all those in the heavens and the earth. And We have surely favoured some prophets above others, and to David We gave the Psalms. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,131,'Say, ˹O Prophet,˺ “Invoke those you claim ˹to be divine˺ besides Him—they do not have the power to undo harm from you or transfer it ˹to someone else˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,131,'˹Even˺ the closest ˹to Allah˺ of those invoked would be seeking a way to their Lord, hoping for His mercy, and fearing His punishment. Indeed, your Lord’s torment is fearsome.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,131,'There is not a ˹wicked˺ society that We will not destroy or punish with a severe torment before the Day of Judgment. That is written in the Record.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,131,'Nothing keeps Us from sending the ˹demanded˺ signs except that they had ˹already˺ been denied by earlier peoples. And We gave Thamûd the she-camel as a clear sign, but they wrongfully rejected it. We only send the signs as a warning.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,131,'And ˹remember, O Prophet˺ when We told you, “Certainly your Lord encompasses the people.” And We have made what We brought you to see as well as the cursed tree ˹mentioned˺ in the Quran only as a test for the people. We keep warning them, but it only increases them greatly in defiance.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,131,'And ˹remember˺ when We said to the angels, “Prostrate before Adam,” so they all did—but not Iblîs, who protested, “Should I prostrate to the one You have created from mud?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,131,'Adding, “Do you see this one you honoured above me? If you delay my end until the Day of Judgment, I will certainly take hold of his descendants, except for a few.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,131,'Allah responded, “Be gone! Whoever of them follows you, Hell will surely be the reward for all of you—an ample reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,131,'And incite whoever you can of them with your voice, mobilize against them all your cavalry and infantry, manipulate them in their wealth and children, and make them promises.” But Satan promises them nothing but delusion.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,131,'˹Allah added,˺ “You will truly have no authority over My ˹faithful˺ servants.” And sufficient is your Lord as a Guardian.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,131,'It is your Lord Who steers the ships for you through the sea, so that you may seek His bounty. Surely He is ever Merciful to you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,131,'When you are touched with hardship at sea, you ˹totally˺ forget all ˹the gods˺ you ˹normally˺ invoke, except Him. But when He delivers you ˹safely˺ to shore, you turn away. Humankind is ever ungrateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,131,'Do you feel secure that He will not cause the land to swallow you up, or unleash upon you a storm of stones? Then you will find none to protect you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,131,'Or do you feel secure that He will not send you back to sea once again, and send upon you a violent storm, drowning you for your denial? Then you will find none to avenge you against Us.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,131,'Indeed, We have dignified the children of Adam, carried them on land and sea, granted them good and lawful provisions, and privileged them far above many of Our creatures.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,131,'˹Beware of˺ the Day We will summon every people with their leader. So whoever will be given their record in their right hand will read it ˹happily˺ and will not be wronged ˹even by the width of˺ the thread of a date stone.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,131,'But whoever is blind ˹to the truth˺ in this ˹world˺ will be blind in the Hereafter, and ˹even˺ far more astray from the ˹Right˺ Way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,131,'They definitely ˹thought they˺ were about to lure you away from what We have revealed to you ˹O Prophet˺, hoping that you would attribute something else to Us falsely—and then they would have certainly taken you as a close friend.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,131,'Had We not made you steadfast, you probably would have inclined to them a little,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,131,'and then We truly would have made you taste double ˹punishment˺ both in this life and after death, and you would have found no helper against Us.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,131,'They were about to intimidate you to drive you out of the land ˹of Mecca˺, but then they would not have survived after you ˹had left˺ except for a little while.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,131,'˹This has been˺ Our way with the messengers We sent before you. And you will never find any change in Our way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,131,'Observe the prayer from the decline of the sun until the darkness of the night and the dawn prayer, for certainly the dawn prayer is witnessed ˹by angels˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,131,'And rise at ˹the last˺ part of the night, offering additional prayers, so your Lord may raise you to a station of praise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,131,'And say, “My Lord! Grant me an honourable entrance and an honourable exit and give me a supporting authority from Yourself.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,131,'And declare, “The truth has come and falsehood has vanished. Indeed, falsehood is bound to vanish.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,131,'We send down the Quran as a healing and mercy for the believers, but it only increases the wrongdoers in loss.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,131,'When We grant people Our favours, they turn away, acting arrogantly. But when touched with evil, they lose all hope.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,131,'Say, ˹O Prophet,˺ “Everyone acts in their own way. But your Lord knows best whose way is rightly guided.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,131,'They ask you ˹O Prophet˺ about the spirit. Say, “Its nature is known only to my Lord, and you ˹O humanity˺ have been given but little knowledge.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,131,'If We willed, We could have certainly taken away what We have revealed to you ˹O Prophet˺—then you would find none to guarantee its return from Us—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,131,'had it not been for the mercy of your Lord. Indeed, His favour upon you is immense.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,131,'Say, ˹O Prophet,˺ “If ˹all˺ humans and jinn were to come together to produce the equivalent of this Quran, they could not produce its equal, no matter how they supported each other.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,131,'And We have truly set forth every ˹kind of˺ lesson for humanity in this Quran, yet most people persist in disbelief.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,131,'They challenge ˹the Prophet˺, “We will never believe in you until you cause a spring to gush forth from the earth for us,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,131,'or until you have a garden of palm trees and vineyards, and cause rivers to flow abundantly in it,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,131,'or cause the sky to fall upon us in pieces, as you have claimed, or bring Allah and the angels before us, face to face,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,131,'or until you have a house of gold, or you ascend into heaven—and even then we will not believe in your ascension until you bring down to us a book that we can read.” Say, “Glory be to my Lord! Am I not only a human messenger?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,131,'And nothing has prevented people from believing when guidance comes to them except their protest: “Has Allah sent a human as a messenger?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,131,'Say, ˹O Prophet,˺ “Had there been angels walking the earth, well settled, We would have surely sent down for them an angel from heaven as a messenger.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,131,'Say, “Sufficient is Allah as a Witness between me and you. He is certainly All-Knowing, All-Seeing of His servants.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,131,'Whoever Allah guides is truly guided. And whoever He leaves to stray, you will find no guardians for them besides Him. And We will drag them on their faces on the Day of Judgment—deaf, dumb, and blind. Hell will be their home. Whenever it dies down, We will flare it up for them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,131,'That is their reward for rejecting Our signs and asking ˹mockingly˺, “When we are reduced to bones and ashes, will we really be raised as a new creation?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,131,'Have they not realized that Allah, Who created the heavens and the earth, can ˹easily˺ re-create them? He has ˹already˺ set for them a time, about which there is no doubt. But the wrongdoers persist in denial.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,2,131,'Say ˹to them, O Prophet˺, “Even if you were to possess the ˹infinite˺ treasuries of my Lord’s mercy, then you would certainly withhold ˹them˺, fearing they would run out—for humankind is ever stingy!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,2,131,'We surely gave Moses nine clear signs. ˹You, O Prophet, can˺ ask the Children of Israel. When Moses came to them, Pharaoh said to him, “I really think that you, O Moses, are bewitched.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,2,131,'Moses replied, “You know well that none has sent these ˹signs˺ down except the Lord of the heavens and the earth as insights. And I really think that you, O Pharaoh, are doomed.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,2,131,'So Pharaoh wanted to scare the Israelites out of the land ˹of Egypt˺, but We drowned him and all of those with him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,2,131,'And We said to the Children of Israel after Pharaoh, “Reside in the land, but when the promise of the Hereafter comes to pass, We will bring you all together.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,2,131,'We have sent down the Quran in truth, and with the truth it has come down. We have sent you ˹O Prophet˺ only as a deliverer of good news and a warner.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,2,131,'˹It is˺ a Quran We have revealed in stages so that you may recite it to people at a deliberate pace. And We have sent it down in successive revelations.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,2,131,'Say, ˹O Prophet,˺ “Believe in this ˹Quran˺, or do not. Indeed, when it is recited to those who were gifted with knowledge before it ˹was revealed˺, they fall upon their faces in prostration,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,2,131,'and say, ‘Glory be to our Lord! Surely the promise of our Lord has been fulfilled.’');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,2,131,'And they fall down upon their faces weeping, and it increases them in humility.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,2,131,'Say, ˹O Prophet,˺ “Call upon Allah or call upon the Most Compassionate—whichever you call, He has the Most Beautiful Names.” Do not recite your prayers too loudly or silently, but seek a way between.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,2,131,'And say, “All praise is for Allah, Who has never had ˹any˺ offspring; nor does He have a partner in ˹governing˺ the kingdom; nor is He pathetic, needing a protector. And revere Him immensely.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(132,18,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,132,'All praise is for Allah Who has revealed the Book to His servant, allowing no crookedness in it,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,132,'˹making it˺ perfectly upright, to warn ˹the disbelievers˺ of a severe torment from Him; to give good news to the believers—who do good—that they will have a fine reward,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,132,'in which they will remain forever;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,132,'and to warn those who claim, “Allah has offspring.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,132,'They have no knowledge of this, nor did their forefathers. What a terrible claim that comes out of their mouths! They say nothing but lies.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,132,'Now, perhaps you ˹O Prophet˺ will grieve yourself to death over their denial, if they ˹continue to˺ disbelieve in this message.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,132,'We have indeed made whatever is on earth as an adornment for it, in order to test which of them is best in deeds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,132,'And We will certainly reduce whatever is on it to barren ground.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,132,'Have you ˹O Prophet˺ thought that the people of the cave and the plaque were ˹the only˺ wonders of Our signs?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,132,'˹Remember˺ when those youths took refuge in the cave, and said, “Our Lord! Grant us mercy from Yourself and guide us rightly through our ordeal.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,132,'So We caused them to fall into a dead sleep in the cave for many years,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,132,'then We raised them so We may show which of the two groups would make a better estimation of the length of their stay. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,132,'We relate to you ˹O Prophet˺ their story in truth. They were youths who truly believed in their Lord, and We increased them in guidance.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,132,'And We strengthened their hearts when they stood up and declared, “Our Lord is the Lord of the heavens and the earth. We will never call upon any god besides Him, or we would truly be uttering an outrageous lie.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,132,'˹Then they said to one another,˺ “These people of ours have taken gods besides Him. Why do they not produce a clear proof of them? Who then does more wrong than those who fabricate lies against Allah?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,132,'Since you have distanced yourselves from them and what they worship besides Allah, take refuge in the cave. Your Lord will extend His mercy to you and accommodate you in your ordeal.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,132,'And you would have seen the sun, as it rose, inclining away from their cave to the right, and as it set, declining away from them to the left, while they lay in its open space. That is one of the signs of Allah. Whoever Allah guides is truly guided. But whoever He leaves to stray, you will never find for them a guiding mentor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,132,'And you would have thought they were awake, though they were asleep. We turned them over, to the right and left, while their dog stretched his forelegs at the entrance. Had you looked at them, you would have certainly fled away from them, filled with horror.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,132,'And so We awakened them so that they might question one another. One of them exclaimed, “How long have you remained ˹asleep˺?” Some replied, “Perhaps a day, or part of a day.” They said ˹to one another˺, “Your Lord knows best how long you have remained. So send one of you with these silver coins of yours to the city, and let him find which food is the purest, and then bring you provisions from it. Let him be ˹exceptionally˺ cautious, and do not let him give you away.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,132,'For, indeed, if they find out about you, they will stone you ˹to death˺, or force you back into their faith, and then you will never succeed.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,132,'That is how We caused them to be discovered so that their people might know that Allah’s promise ˹of resurrection˺ is true and that there is no doubt about the Hour. When the people disputed with each other about the case of the youth ˹after their death˺, some proposed, “Build a structure around them. Their Lord knows best about them.” Those who prevailed in the matter said, “We will surely build a place of worship over them.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,132,'Some will say, “They were three, their dog was the fourth,” while others will say, “They were five, their dog was the sixth,” ˹only˺ guessing blindly. And others will say, “They were seven and their dog was the eighth.” Say, ˹O Prophet,˺ “My Lord knows best their ˹exact˺ number. Only a few people know as well.” So do not argue about them except with sure knowledge, nor consult any of those ˹who debate˺ about them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,132,'And never say of anything, “I will definitely do this tomorrow,”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,132,'without adding, “if Allah so wills!” But if you forget, then remember your Lord, and say, “I trust my Lord will guide me to what is more right than this.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,132,'They had remained in their cave for three hundred years, adding nine.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,132,'Say, ˹O Prophet,˺ “Allah knows best how long they stayed. With Him ˹alone˺ is ˹the knowledge of˺ the unseen of the heavens and the earth. How perfectly He hears and sees! They have no guardian besides Him, and He shares His command with none.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,132,'Recite what has been revealed to you from the Book of your Lord. None can change His Words, nor can you find any refuge besides Him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,132,'And patiently stick with those who call upon their Lord morning and evening, seeking His pleasure. Do not let your eyes look beyond them, desiring the luxuries of this worldly life. And do not obey those whose hearts We have made heedless of Our remembrance, who follow ˹only˺ their desires and whose state is ˹total˺ loss.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,132,'And say, ˹O Prophet,˺ “˹This is˺ the truth from your Lord. Whoever wills let them believe, and whoever wills let them disbelieve.” Surely We have prepared for the wrongdoers a Fire whose walls will ˹completely˺ surround them. When they cry for aid, they will be aided with water like molten metal, which will burn ˹their˺ faces. What a horrible drink! And what a terrible place to rest!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,132,'As for those who believe and do good, We certainly never deny the reward of those who are best in deeds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,132,'It is they who will have the Gardens of Eternity, with rivers flowing under their feet. There they will be adorned with bracelets of gold, and wear green garments of fine silk and rich brocade, reclining there on ˹canopied˺ couches. What a marvellous reward! And what a fabulous place to rest!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,132,'Give them ˹O Prophet˺ an example of two men. To ˹the disbelieving˺ one We gave two gardens of grapevines, which We surrounded with palm trees and placed ˹various˺ crops in between.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,132,'Each garden yielded ˹all˺ its produce, never falling short. And We caused a river to flow between them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,132,'And he had other resources ˹as well˺. So he boasted to a ˹poor˺ companion of his, while conversing with him, “I am greater than you in wealth and superior in manpower.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,132,'And he entered his property, while wronging his soul, saying, “I do not think this will ever perish,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,132,'nor do I think the Hour will ˹ever˺ come. And if in fact I am returned to my Lord, I will definitely get a far better outcome than ˹all˺ this.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,132,'His ˹believing˺ companion replied, while conversing with him, “Do you disbelieve in the One Who created you from dust, then ˹developed you˺ from a sperm-drop, then formed you into a man?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,132,'But as for me: He is Allah, my Lord, and I will never associate anyone with my Lord ˹in worship˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,132,'If only you had said, upon entering your property, ‘This is what Allah has willed! There is no power except with Allah!’ Even though you see me inferior to you in wealth and offspring,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,132,'perhaps my Lord will grant me ˹something˺ better than your garden, and send down upon your garden a thunderbolt from the sky, turning it into a barren waste.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,132,'Or its water may sink ˹into the earth˺, and then you will never be able to seek it out.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,132,'And so all his produce was ˹totally˺ ruined, so he started to wring his hands for all he had spent on it, while it had collapsed on its trellises. He cried, “Alas! I wish I had never associated anyone with my Lord ˹in worship˺!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,132,'And he had no manpower to help him against Allah, nor could he ˹even˺ help himself.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,132,'At this time, support comes ˹only˺ from Allah—the True ˹Lord˺. He is best in reward and best in outcome.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,132,'And give them a parable of this worldly life. ˹It is˺ like the plants of the earth, thriving when sustained by the rain We send down from the sky. Then they ˹soon˺ turn into chaff scattered by the wind. And Allah is fully capable of ˹doing˺ all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,132,'Wealth and children are the adornment of this worldly life, but the everlasting good deeds are far better with your Lord in reward and in hope. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,132,'˹Beware of˺ the Day We will blow the mountains away, and you will see the earth laid bare. And We will gather all ˹humankind˺, leaving none behind.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,132,'They will be presented before your Lord in rows, ˹and the deniers will be told,˺ “You have surely returned to Us ˹all alone˺ as We created you the first time, although you ˹always˺ claimed that We would never appoint a time for your return.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,132,'And the record ˹of deeds˺ will be laid ˹open˺, and you will see the wicked in fear of what is ˹written˺ in it. They will cry, “Woe to us! What kind of record is this that does not leave any sin, small or large, unlisted?” They will find whatever they did present ˹before them˺. And your Lord will never wrong anyone.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,132,'And ˹remember˺ when We said to the angels, “Prostrate before Adam,” so they all did—but not Iblîs, who was one of the jinn, but he rebelled against the command of his Lord. Would you then take him and his descendants as patrons instead of Me, although they are your enemy? What an evil alternative for the wrongdoers ˹to choose˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,132,'I never called them to witness the creation of the heavens and the earth or ˹even˺ their own creation, nor would I take the misleaders as helpers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,132,'And ˹beware of˺ the Day He will say, “Call upon those you claimed were My associate-gods.” So they will call them, but will receive no response. And We will make them ˹all˺ share in the same doom.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,132,'The wicked will see the Fire and realize that they are bound to fall into it, and will find no way to avoid it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,132,'We have surely set forth in this Quran every ˹kind of˺ lesson for people, but humankind is the most argumentative of all beings.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,132,'And nothing prevents people from believing when guidance comes to them and from seeking their Lord’s forgiveness except ˹their demand˺ to meet the same fate of earlier deniers or that the torment would confront them face to face.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,132,'We do not send the messengers except as deliverers of good news and warners. But the disbelievers argue in falsehood, ˹hoping˺ to discredit the truth with it, and make a mockery of My revelations and warnings.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,132,'And who does more wrong than those who, when reminded of their Lord’s revelations, turn away from them and forget what their own hands have done? We have certainly cast veils over their hearts—leaving them unable to comprehend this ˹Quran˺—and deafness in their ears. And if you ˹O Prophet˺ invite them to ˹true˺ guidance, they will never be ˹rightly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,132,'Your Lord is the All-Forgiving, Full of Mercy. If He were to seize them ˹immediately˺ for what they commit, He would have certainly hastened their punishment. But they have an appointed time, from which they will find no refuge.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,132,'Those ˹are the˺ societies We destroyed when they persisted in wrong, and We had set a time for their destruction.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,132,'And ˹remember˺ when Moses said to his young assistant, “I will never give up until I reach the junction of the two seas, even if I travel for ages.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,132,'But when they ˹finally˺ reached the point where the seas met, they forgot their ˹salted˺ fish, and it made its way into the sea, slipping away ˹wondrously˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,132,'When they had passed further, he said to his assistant, “Bring us our meal! We have certainly been exhausted by today’s journey.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,132,'He replied, “Do you remember when we rested by the rock? ˹That is when˺ I forgot the fish. None made me forget to mention this except Satan. And the fish made its way into the sea miraculously.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,132,'Moses responded, “That is ˹exactly˺ what we were looking for.” So they returned, retracing their footsteps.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,132,'There they found a servant of Ours, to whom We had granted mercy from Us and enlightened with knowledge of Our Own.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,132,'Moses said to him, “May I follow you, provided that you teach me some of the right guidance you have been taught?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,132,'He said, “You certainly cannot be patient ˹enough˺ with me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,132,'And how can you be patient with what is beyond your ˹realm of˺ knowledge?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,132,'Moses assured ˹him˺, “You will find me patient, Allah willing, and I will not disobey any of your orders.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,132,'He responded, “Then if you follow me, do not question me about anything until I ˹myself˺ clarify it for you.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,132,'So they set out, but after they had boarded a ship, the man made a hole in it. Moses protested, “Have you done this to drown its people? You have certainly done a terrible thing!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,132,'He replied, “Did I not say that you cannot have patience with me?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,132,'Moses pleaded, “Excuse me for forgetting, and do not be hard on me.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,132,'So they proceeded until they came across a boy, and the man killed him. Moses protested, “Have you killed an innocent soul, who killed no one? You have certainly done a horrible thing.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,132,'He answered, “Did I not tell you that you cannot have patience with me?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,132,'Moses replied, “If I ever question you about anything after this, then do not keep me in your company, for by then I would have given you enough of an excuse.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,132,'So they moved on until they came to the people of a town. They asked them for food, but the people refused to give them hospitality. There they found a wall ready to collapse, so the man set it right. Moses protested, “If you wanted, you could have demanded a fee for this.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,132,'He replied, “This is the parting of our ways. I will explain to you what you could not bear patiently.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,132,'“As for the ship, it belonged to some poor people, working at sea. So I intended to damage it, for there was a ˹tyrant˺ king ahead of them who seizes every ˹good˺ ship by force.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,132,'“And as for the boy, his parents were ˹true˺ believers, and we feared that he would pressure them into defiance and disbelief.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,132,'So we hoped that their Lord would give them another, more virtuous and caring in his place.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,132,'“And as for the wall, it belonged to two orphan boys in the city, and under the wall was a treasure that belonged to them, and their father had been a righteous man. So your Lord willed that these children should come of age and retrieve their treasure, as a mercy from your Lord. I did not do it ˹all˺ on my own. This is the explanation of what you could not bear patiently.” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,132,'They ask you ˹O Prophet˺ about Ⱬul-Qarnain. Say, “I will relate to you something of his narrative.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,132,'Surely We established him in the land, and gave him the means to all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,132,'So he travelled a course,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,132,'until he reached the setting ˹point˺ of the sun, which appeared to him to be setting in a spring of murky water, where he found some people. We said, “O Ⱬul-Qarnain! Either punish them or treat them kindly.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,132,'He responded, “Whoever does wrong will be punished by us, then will be returned to their Lord, Who will punish them with a horrible torment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,132,'As for those who believe and do good, they will have the finest reward, and we will assign them easy commands.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,132,'Then he travelled a ˹different˺ course');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,132,'until he reached the rising ˹point˺ of the sun. He found it rising on a people for whom We had provided no shelter from it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,132,'So it was. And We truly had full knowledge of him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,132,'Then he travelled a ˹third˺ course');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,132,'until he reached ˹a pass˺ between two mountains. He found in front of them a people who could hardly understand ˹his˺ language.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,132,'They pleaded, “O Ⱬul-Qarnain! Surely Gog and Magog are spreading corruption throughout the land. Should we pay you tribute, provided that you build a wall between us and them?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,132,'He responded, “What my Lord has provided for me is far better. But assist me with resources, and I will build a barrier between you and them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,132,'Bring me blocks of iron!” Then, when he had filled up ˹the gap˺ between the two mountains, he ordered, “Blow!” When the iron became red hot, he said, “Bring me molten copper to pour over it.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,132,'And so the enemies could neither scale nor tunnel through it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,132,'He declared, “This is a mercy from my Lord. But when the promise of my Lord comes to pass, He will level it to the ground. And my Lord’s promise is ever true.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,132,'On that Day, We will let them surge ˹like waves˺ over one another. Later, the Trumpet will be blown, and We will gather all ˹people˺ together.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,2,132,'On that Day We will display Hell clearly for the disbelievers,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,2,132,'those who turned a blind eye to My Reminder and could not stand listening ˹to it˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,2,132,'Do the disbelievers think they can ˹simply˺ take My servants as lords instead of Me? We have surely prepared Hell as an accommodation for the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,2,132,'Say, ˹O Prophet,˺ “Shall we inform you of who will lose the most deeds?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,2,132,'˹They are˺ those whose efforts are in vain in this worldly life, while they think they are doing good!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,2,132,'It is they who reject the signs of their Lord and their meeting with Him, rendering their deeds void, so We will not give their deeds any weight on Judgment Day.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,2,132,'That is their reward: Hell, for their disbelief and mockery of My signs and messengers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,2,132,'Indeed, those who believe and do good will have the Gardens of Paradise as an accommodation,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,2,132,'where they will be forever, never desiring anywhere else.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,2,132,'Say, ˹O Prophet,˺ “If the ocean were ink for ˹writing˺ the Words of my Lord, it would certainly run out before the Words of my Lord were finished, even if We refilled it with its equal.” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,2,132,'Say, ˹O Prophet,˺ “I am only a man like you, ˹but˺ it has been revealed to me that your God is only One God. So whoever hopes for the meeting with their Lord, let them do good deeds and associate none in the worship of their Lord.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(133,19,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,133,'Kãf-Ha-Ya-’Aĩn- Ṣãd.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,133,'˹This is˺ a reminder of your Lord’s mercy to His servant Zachariah,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,133,'when he cried out to his Lord privately,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,133,'saying, “My Lord! Surely my bones have become brittle, and grey hair has spread across my head, but I have never been disappointed in my prayer to You, my Lord!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,133,'And I am concerned about ˹the faith of˺ my relatives after me, since my wife is barren. So grant me, by Your grace, an heir,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,133,'who will inherit ˹prophethood˺ from me and the family of Jacob, and make him, O Lord, pleasing ˹to You˺!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,133,'˹The angels announced,˺ “O Zachariah! Indeed, We give you the good news of ˹the birth of˺ a son, whose name will be John—a name We have not given to anyone before.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,133,'He wondered, “My Lord! How can I have a son when my wife is barren, and I have become extremely old?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,133,'An angel replied, “So will it be! Your Lord says, ‘It is easy for Me, just as I created you before, when you were nothing!’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,133,'Zachariah said, “My Lord! Grant me a sign.” He responded, “Your sign is that you will not ˹be able to˺ speak to people for three nights, despite being healthy.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,133,'So he came out to his people from the sanctuary, signalling to them to glorify ˹Allah˺ morning and evening.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,133,'˹It was later said,˺ “O John! Hold firmly to the Scriptures.” And We granted him wisdom while ˹he was still˺ a child,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,133,'as well as purity and compassion from Us. And he was God-fearing,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,133,'and kind to his parents. He was neither arrogant nor disobedient.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,133,'Peace be upon him the day he was born, and the day of his death, and the day he will be raised back to life!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,133,'And mention in the Book ˹O Prophet, the story of˺ Mary when she withdrew from her family to a place in the east,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,133,'screening herself off from them. Then We sent to her Our angel, ˹Gabriel,˺ appearing before her as a man, perfectly formed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,133,'She appealed, “I truly seek refuge in the Most Compassionate from you! ˹So leave me alone˺ if you are God-fearing.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,133,'He responded, “I am only a messenger from your Lord, ˹sent˺ to bless you with a pure son.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,133,'She wondered, “How can I have a son when no man has ever touched me, nor am I unchaste?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,133,'He replied, “So will it be! Your Lord says, ‘It is easy for Me. And so will We make him a sign for humanity and a mercy from Us.’ It is a matter ˹already˺ decreed.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,133,'So she conceived him and withdrew with him to a remote place.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,133,'Then the pains of labour drove her to the trunk of a palm tree. She cried, “Alas! I wish I had died before this, and was a thing long forgotten!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,133,'So a voice reassured her from below her, “Do not grieve! Your Lord has provided a stream at your feet.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,133,'And shake the trunk of this palm tree towards you, it will drop fresh, ripe dates upon you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,133,'So eat and drink, and put your heart at ease. But if you see any of the people, say, ‘I have vowed silence to the Most Compassionate, so I am not talking to anyone today.’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,133,'Then she returned to her people, carrying him. They said ˹in shock˺, “O Mary! You have certainly done a horrible thing!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,133,'O sister of Aaron! Your father was not an indecent man, nor was your mother unchaste.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,133,'So she pointed to the baby. They exclaimed, “How can we talk to someone who is an infant in the cradle?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,133,'˹Jesus˺ declared, “I am truly a servant of Allah. He has destined me to be given the Scripture and to be a prophet.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,133,'He has made me a blessing wherever I go, and bid me to establish prayer and give alms-tax as long as I live,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,133,'and to be kind to my mother. He has not made me arrogant or defiant.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,133,'Peace be upon me the day I was born, the day I die, and the day I will be raised back to life!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,133,'That is Jesus, son of Mary. ˹And this is˺ a word of truth, about which they dispute.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,133,'It is not for Allah to take a son! Glory be to Him. When He decrees a matter, He simply tells it, “Be!” And it is!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,133,'˹Jesus also declared,˺ “Surely Allah is my Lord and your Lord, so worship Him ˹alone˺. This is the Straight Path.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,133,'Yet their ˹various˺ groups have differed among themselves ˹about him˺, so woe to the disbelievers when they face a tremendous Day!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,133,'How clearly will they hear and see on the Day they will come to Us! But today the wrongdoers are clearly astray.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,133,'And warn them ˹O Prophet˺ of the Day of Regret, when all matters will be settled, while they are ˹engrossed˺ in heedlessness and disbelief.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,133,'Indeed, it is We Who will succeed the earth and whoever is on it. And to Us they will ˹all˺ be returned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,133,'And mention in the Book ˹O Prophet, the story of˺ Abraham. He was surely a man of truth and a prophet.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,133,'˹Remember˺ when he said to his father, “O dear father! Why do you worship what can neither hear nor see, nor benefit you at all?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,133,'O dear father! I have certainly received some knowledge which you have not received, so follow me and I will guide you to the Straight Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,133,'O dear father! Do not worship Satan. Surely Satan is ever rebellious against the Most Compassionate.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,133,'O dear father! I truly fear that you will be touched by a torment from the Most Compassionate, and become Satan’s companion ˹in Hell˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,133,'He threatened, “How dare you reject my idols, O Abraham! If you do not desist, I will certainly stone you ˹to death˺. So be gone from me for a long time!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,133,'Abraham responded, “Peace be upon you! I will pray to my Lord for your forgiveness. He has truly been Most Gracious to me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,133,'As I distance myself from ˹all of˺ you and from whatever you invoke besides Allah, I will ˹continue to˺ call upon my Lord ˹alone˺, trusting that I will never be disappointed in invoking my Lord.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,133,'So after he had left them and what they worshipped besides Allah, We granted him Isaac and Jacob, and made each of them a prophet.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,133,'We showered them with Our mercy, and blessed them with honourable mention. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,133,'And mention in the Book ˹O Prophet, the story of˺ Moses. He was truly a chosen man, and was a messenger and a prophet.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,133,'We called him from the right side of Mount Ṭûr, and drew him near, speaking ˹with him˺ directly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,133,'And We appointed for him—out of Our grace—his brother, Aaron, as a prophet.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,133,'And mention in the Book ˹O Prophet, the story of˺ Ishmael. He was truly a man of his word, and was a messenger and a prophet.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,133,'He used to urge his people to pray and give alms-tax. And his Lord was well pleased with him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,133,'And mention in the Book ˹O Prophet, the story of˺ Enoch. He was surely a man of truth and a prophet.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,133,'And We elevated him to an honourable status. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,133,'Those were ˹some of˺ the prophets who Allah has blessed from among the descendants of Adam, and of those We carried with Noah ˹in the Ark˺, and of the descendants of Abraham and Israel, and of those We ˹rightly˺ guided and chose. Whenever the revelations of the Most Compassionate were recited to them, they fell down, prostrating and weeping.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,133,'But they were succeeded by generations who neglected prayer and followed their lusts and so will soon face the evil consequences.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,133,'As for those who repent, believe, and do good, it is they who will be admitted into Paradise, never being denied any reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,133,'˹They will be in˺ the Gardens of Eternity, promised in trust by the Most Compassionate to His servants. Surely His promise will be fulfilled.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,133,'There they will never hear any idle talk—only ˹greetings of˺ peace. And there they will have their provisions morning and evening.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,133,'That is Paradise, which We will grant to whoever is devout among Our servants.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,133,'“We only descend by the command of your Lord. To Him belongs whatever is before us, and whatever is behind us, and everything in between. And your Lord is never forgetful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,133,'˹He is the˺ Lord of the heavens, and the earth, and everything in between. So worship Him ˹alone˺, and be steadfast in His worship. Do you know of anyone equal to Him ˹in His attributes˺?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,133,'Yet ˹some˺ people ask ˹mockingly˺, “After I die, will I really be raised to life again?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,133,'Do ˹such˺ people not remember that We created them before, when they were nothing?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,133,'By your Lord ˹O Prophet˺! We will surely gather them along with the devils, and then set them around Hell on their knees.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,133,'Then We will certainly begin by dragging out of every group the ones most defiant to the Most Compassionate.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,133,'And We truly know best who is most deserving of burning in it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,133,'There is none of you who will not pass over it. ˹This is˺ a decree your Lord must fulfil.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,133,'Then We will deliver those who were devout, leaving the wrongdoers there on their knees.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,133,'When Our clear revelations are recited to them, the disbelievers ask the believers ˹mockingly˺, “Which of the two of us is better in status and superior in assembly?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,133,'˹Imagine, O Prophet˺ how many peoples We have destroyed before them, who were far better in luxury and splendour!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,133,'Say, ˹O Prophet,˺ “Whoever is ˹entrenched˺ in misguidance, the Most Compassionate will allow them plenty of time, until—behold!—they face what they are threatened with: either the torment or the Hour. Only then will they realize who is worse in position and inferior in manpower.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,133,'And Allah increases in guidance those who are ˹rightly˺ guided. And the everlasting good deeds are far better with your Lord in reward and in outcome. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,133,'Have you seen ˹O Prophet˺ the one who rejects Our revelations yet boasts, “I will definitely be granted ˹plenty of˺ wealth and children ˹if there is an afterlife˺.”?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,133,'Has he looked into the unseen or taken a pledge from the Most Compassionate?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,133,'Not at all! We certainly record whatever he claims and will increase his punishment extensively.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,133,'And We will inherit what he boasts of, and he will come before Us all by himself.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,133,'They have taken other gods, instead of Allah, seeking strength ˹and protection˺ through them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,133,'But no! Those ˹gods˺ will deny their worship and turn against them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,133,'Do you ˹O Prophet˺ not see that We have sent the devils against the disbelievers, constantly inciting them?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,133,'So do not be in haste against them, for indeed We are ˹closely˺ counting down their days.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,133,'˹Watch for˺ the Day We will gather the righteous before the Most Compassionate as an honoured delegation,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,133,'and drive the wicked to Hell like a thirsty herd.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,133,'None will have the right to intercede, except those who have taken a covenant from the Most Compassionate. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,133,'They say, “The Most Compassionate has offspring.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,133,'You have certainly made an outrageous claim,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,133,'by which the heavens are about to burst, the earth to split apart, and the mountains to crumble to pieces');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,133,'in protest of attributing children to the Most Compassionate.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,133,'It does not befit ˹the majesty of˺ the Most Compassionate to have children.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,133,'There is none in the heavens or the earth who will not return to the Most Compassionate in full submission.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,133,'Indeed, He fully knows them and has counted them precisely.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,133,'And each of them will return to Him on the Day of Judgment all alone.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,133,'As for those who believe and do good, the Most Compassionate will ˹certainly˺ bless them with ˹genuine˺ love.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,133,'Indeed, We have made this ˹Quran˺ easy in your own language ˹O Prophet˺ so with it you may give good news to the righteous and warn those who are contentious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,133,'˹Imagine˺ how many peoples We have destroyed before them! Do you ˹still˺ see any of them, or ˹even˺ hear from them the slightest sound?');
+INSERT INTO chapters (id, number, quran_id) VALUES(134,20,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,134,'Ṭâ-Hâ.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,134,'We have not revealed the Quran to you ˹O Prophet˺ to cause you distress,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,134,'but as a reminder to those in awe ˹of Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,134,'˹It is˺ a revelation from the One Who created the earth and the high heavens—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,134,'the Most Compassionate, ˹Who is˺ established on the Throne.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,134,'To Him belongs whatever is in the heavens and whatever is on the earth and whatever is in between and whatever is underground.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,134,'Whether you speak openly ˹or not˺, He certainly knows what is secret and what is even more hidden.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,134,'Allah—there is no god ˹worthy of worship˺ except Him. He has the Most Beautiful Names.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,134,'Has the story of Moses reached you ˹O Prophet˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,134,'When he saw a fire, he said to his family, “Wait here, ˹for˺ I have spotted a fire. Perhaps I can bring you a torch from it, or find some guidance at the fire.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,134,'But when he approached it, he was called, “O Moses!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,134,'It is truly I. I am your Lord! So take off your sandals, for you are in the sacred valley of Ṭuwa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,134,'I have chosen you, so listen to what is revealed:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,134,'‘It is truly I. I am Allah! There is no god ˹worthy of worship˺ except Me. So worship Me ˹alone˺, and establish prayer for My remembrance.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,134,'The Hour is sure to come. My Will is to keep it hidden, so that every soul may be rewarded according to their efforts.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,134,'So do not let those who disbelieve in it and follow their desires distract you from it, or you will be doomed.’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,134,'˹Allah added,˺ “And what is that in your right hand, O Moses?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,134,'He replied, “It is my staff! I lean on it, and with it I beat down ˹branches˺ for my sheep, and have other uses for it.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,134,'Allah said, “Throw it down, O Moses!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,134,'So he did, then—behold!—it became a serpent, slithering.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,134,'Allah said, “Take it, and have no fear. We will return it to its former state.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,134,'And put your hand under your armpit, it will come out ˹shining˺ white, unblemished, as another sign,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,134,'so that We may show you some of Our greatest signs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,134,'Go to Pharaoh, for he has truly transgressed ˹all bounds˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,134,'Moses prayed, “My Lord! Uplift my heart for me,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,134,'and make my task easy,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,134,'and remove the impediment from my tongue');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,134,'so people may understand my speech,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,134,'and grant me a helper from my family,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,134,'Aaron, my brother.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,134,'Strengthen me through him,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,134,'and let him share my task,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,134,'so that we may glorify You much');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,134,'and remember You much,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,134,'for truly You have ˹always˺ been overseeing us.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,134,'Allah responded, “All that you requested has been granted, O Moses!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,134,'And surely We had shown You favour before,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,134,'when We inspired your mother with this:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,134,'‘Put him into a chest, then put it into the river. The river will wash it ashore, and he will be taken by ˹Pharaoh,˺ an enemy of Mine and his.’ And I blessed you with lovability from Me ˹O Moses˺ so that you would be brought up under My ˹watchful˺ Eye.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,134,'˹Remember˺ when your sister came along and proposed, ‘Shall I direct you to someone who will nurse him?’ So We reunited you with your mother so that her heart would be put at ease, and she would not grieve. ˹Later˺ you killed a man ˹by mistake˺, but We saved you from sorrow, as well as other tests We put you through. Then you stayed for a number of years among the people of Midian. Then you came here as pre-destined, O Moses!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,134,'And I have selected you for My service.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,134,'Go forth, you and your brother, with My signs and never falter in remembering Me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,134,'Go, both of you, to Pharaoh, for he has truly transgressed ˹all bounds˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,134,'Speak to him gently, so perhaps he may be mindful ˹of Me˺ or fearful ˹of My punishment˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,134,'They both pleaded, “Our Lord! We fear that he may be quick to harm us or act tyrannically.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,134,'Allah reassured ˹them˺, “Have no fear! I am with you, hearing and seeing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,134,'So go to him and say, ‘Indeed we are both messengers from your Lord, so let the Children of Israel go with us, and do not oppress them. We have come to you with a sign from your Lord. And salvation will be for whoever follows the ˹right˺ guidance.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,134,'It has indeed been revealed to us that the punishment will be upon whoever denies ˹the truth˺ and turns away.’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,134,'Pharaoh asked, “Who then is the Lord of you two, O Moses?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,134,'He answered, “Our Lord is the One Who has given everything its ˹distinctive˺ form, then guided ˹it˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,134,'Pharaoh asked, “And what about previous peoples?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,134,'He replied, “That knowledge is with my Lord in a Record. My Lord neither falters nor forgets ˹anything˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,134,'˹He is the One˺ Who has laid out the earth for ˹all of˺ you, and set in it pathways for you, and sends down rain from the sky, causing various types of plants to grow,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,134,'˹so˺ eat and graze your cattle. Surely in this are signs for people of sound judgment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,134,'From the earth We created you, and into it We will return you, and from it We will bring you back again.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,134,'And We certainly showed Pharaoh all of Our signs, but he denied them and refused ˹to believe˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,134,'He said, “Have you come to drive us out of our land with your magic, O Moses?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,134,'We can surely meet you with similar magic. So set for us an appointment that neither of us will fail to keep, in a central place.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,134,'Moses said, “Your appointment is on the Day of the Festival, and let the people be gathered mid-morning.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,134,'Pharaoh then withdrew, orchestrated his scheme, then returned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,134,'Moses warned the magicians, “Woe to you! Do not fabricate a lie against Allah, or He will wipe you out with a torment. Whoever fabricates ˹lies˺ is bound to fail.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,134,'So the magicians disputed the matter among themselves, conversing privately.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,134,'They concluded, “These two are only magicians who want to drive you out of your land with their magic, and do away with your most cherished traditions.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,134,'So orchestrate your plan, then come forward in ˹perfect˺ ranks. And whoever prevails today will certainly be successful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,134,'They said, “O Moses! Either you cast, or let us be the first to cast.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,134,'Moses responded, “No, you go first.” And suddenly their ropes and staffs appeared to him—by their magic—to be slithering.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,134,'So Moses concealed fear within himself.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,134,'We reassured ˹him˺, “Do not fear! It is certainly you who will prevail.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,134,'Cast what is in your right hand, and it will swallow up what they have made, for what they have made is no more than a magic trick. And magicians can never succeed wherever they go.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,134,'So the magicians fell down in prostration, declaring, “We believe in the Lord of Aaron and Moses.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,134,'Pharaoh threatened, “How dare you believe in him before I give you permission? He must be your master who taught you magic. I will certainly cut off your hands and feet on opposite sides, and crucify you on the trunks of palm trees. You will really see whose punishment is more severe and more lasting.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,134,'They responded, “By the One Who created us! We will never prefer you over the clear proofs that have come to us. So do whatever you want! Your authority only covers the ˹fleeting˺ life of this world.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,134,'Indeed, we have believed in our Lord so He may forgive our sins and that magic you have forced us to practice. And Allah is far superior ˹in reward˺ and more lasting ˹in punishment˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,134,'Whoever comes to their Lord as an evildoer will certainly have Hell, where they can neither live nor die.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,134,'But whoever comes to Him as a believer, having done good, they will have the highest ranks:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,134,'the Gardens of Eternity, under which rivers flow, where they will stay forever. That is the reward of those who purify themselves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,134,'And We surely inspired Moses, ˹saying,˺ “Leave with My servants ˹at night˺ and strike a dry passage for them across the sea. Have no fear of being overtaken, nor be concerned ˹of drowning˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,134,'Then Pharaoh pursued them with his soldiers—but how overwhelming were the waters that submerged them!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,134,'And ˹so˺ Pharaoh led his people astray, and did not guide ˹them rightly˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,134,'O Children of Israel! We saved you from your enemy, and made an appointment with you on the right side of Mount Ṭûr, and sent down to you manna and quails,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,134,'˹saying,˺ “Eat from the good things We have provided for you, but do not transgress in them, or My wrath will befall you. And whoever My wrath befalls is certainly doomed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,134,'But I am truly Most Forgiving to whoever repents, believes, and does good, then persists on ˹true˺ guidance.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,134,'˹Allah asked,˺ “Why have you come with such haste ahead of your people, O Moses?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,134,'He replied, “They are close on my tracks. And I have hastened to You, my Lord, so You will be pleased.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,134,'Allah responded, “We have indeed tested your people in your absence, and the Sâmiri has led them astray.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,134,'So Moses returned to his people, furious and sorrowful. He said, “O my people! Had your Lord not made you a good promise? Has my absence been too long for you? Or have you wished for wrath from your Lord to befall you, so you broke your promise to me?” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,134,'They argued, “We did not break our promise to you of our own free will, but we were made to carry the burden of the people’s ˹golden˺ jewellery, then we threw it ˹into the fire˺, and so did the Sâmiri.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,134,'Then he moulded for them an idol of a calf that made a lowing sound. They said, “This is your god and the god of Moses, but Moses forgot ˹where it was˺!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,134,'Did they not see that it did not respond to them, nor could it protect or benefit them?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,134,'Aaron had already warned them beforehand, “O my people! You are only being tested by this, for indeed your ˹one true˺ Lord is the Most Compassionate. So follow me and obey my orders.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,134,'They replied, “We will not cease to worship it until Moses returns to us.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,134,'Moses scolded ˹his brother˺, “O Aaron! What prevented you, when you saw them going astray,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,134,'from following after me? How could you disobey my orders?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,134,'Aaron pleaded, “O son of my mother! Do not seize me by my beard or ˹the hair of˺ my head. I really feared that you would say, ‘You have caused division among the Children of Israel, and did not observe my word.’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,134,'Moses then asked, “What did you think you were doing, O Sâmiri?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,134,'He said, “I saw what they did not see, so I took a handful ˹of dust˺ from the hoof-prints of ˹the horse of˺ the messenger-angel ˹Gabriel˺ then cast it ˹on the moulded calf˺. This is what my lower-self tempted me into.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,134,'Moses said, “Go away then! And for ˹the rest of your˺ life you will surely be crying, ‘Do not touch ˹me˺!’ Then you will certainly have a fate that you cannot escape. Now look at your god to which you have been devoted: we will burn it up, then scatter it in the sea completely.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,134,'˹Then Moses addressed his people,˺ “Your only god is Allah, there is no god ˹worthy of worship˺ except Him. He encompasses everything in ˹His˺ knowledge.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,134,'This is how We relate to you ˹O Prophet˺ some of the stories of the past. And We have certainly granted you a Reminder from Us.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,2,134,'Whoever turns away from it will surely bear the burden ˹of sin˺ on the Day of Judgment,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,2,134,'suffering its consequences forever. What an evil burden they will carry on Judgment Day!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,2,134,'˹Beware of˺ the Day the Trumpet will be blown, and We will gather the wicked on that Day blue-faced ˹from horror and thirst˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,2,134,'They will whisper among themselves, “You stayed no more than ten days ˹on the earth˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,2,134,'We know best what they will say—the most reasonable of them will say, “You stayed no more than a day.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,2,134,'And ˹if˺ they ask you ˹O Prophet˺ about the mountains, ˹then˺ say, “My Lord will wipe them out completely,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,2,134,'leaving the earth level and bare,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,2,134,'with neither depressions nor elevations to be seen.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,2,134,'On that Day all will follow the caller ˹for assembly˺, ˹and˺ none will dare to deviate. All voices will be hushed before the Most Compassionate. Only whispers will be heard.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,2,134,'On that Day no intercession will be of any benefit, except by those granted permission by the Most Compassionate and whose words are agreeable to Him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,2,134,'He ˹fully˺ knows what is ahead of them and what is behind them, but they cannot encompass Him in ˹their˺ knowledge.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,2,134,'And all faces will be humbled before the Ever-Living, All-Sustaining. And those burdened with wrongdoing will be in loss.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,2,134,'But whoever does good and is a believer will have no fear of being wronged or denied ˹their reward˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,2,134,'And so We have sent it down as an Arabic Quran and varied the warnings in it, so perhaps they will shun evil or it may cause them to be mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,2,134,'Exalted is Allah, the True King! Do not rush to recite ˹a revelation of˺ the Quran ˹O Prophet˺ before it is ˹properly˺ conveyed to you, and pray, “My Lord! Increase me in knowledge.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,2,134,'And indeed, We once made a covenant with Adam, but he forgot, and ˹so˺ We did not find determination in him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,2,134,'And ˹remember˺ when We said to the angels, “Prostrate before Adam,” so they all did—but not Iblîs, who refused ˹arrogantly˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,2,134,'So We cautioned, “O Adam! This is surely an enemy to you and to your wife. So do not let him drive you both out of Paradise, for you ˹O Adam˺ would then suffer ˹hardship˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,2,134,'Here it is guaranteed that you will never go hungry or unclothed,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,2,134,'nor will you ˹ever˺ suffer from thirst or ˹the sun’s˺ heat.” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,2,134,'But Satan whispered to him, saying, “O Adam! Shall I show you the Tree of Immortality and a kingdom that does not fade away?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,2,134,'So they both ate from the tree and then their nakedness was exposed to them, prompting them to cover themselves with leaves from Paradise. So Adam disobeyed his Lord, and ˹so˺ lost his way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,2,134,'Then his Lord chose him ˹for His grace˺, accepted his repentance, and guided him ˹rightly˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,2,134,'Allah said, “Descend, both of you, from here together ˹with Satan˺ as enemies to each other. Then when guidance comes to you from Me, whoever follows My guidance will neither go astray ˹in this life˺ nor suffer ˹in the next˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,2,134,'But whoever turns away from My Reminder will certainly have a miserable life, then We will raise them up blind on the Day of Judgment.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,2,134,'They will cry, “My Lord! Why have you raised me up blind, although I used to see?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,2,134,'Allah will respond, “It is so, just as Our revelations came to you and you neglected them, so Today you are neglected.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,2,134,'This is how We reward whoever transgresses and does not believe in the revelations of their Lord. And the punishment of the Hereafter is far more severe and more lasting.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,2,134,'Is it not yet clear to them how many peoples We destroyed before them, whose ruins they still pass by? Surely in this are signs for people of sound judgment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,2,134,'Had it not been for a prior decree from your Lord ˹O Prophet˺ and a term already set, their ˹instant˺ doom would have been inevitable.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,2,134,'So be patient ˹O Prophet˺ with what they say. And glorify the praises of your Lord before sunrise and before sunset, and glorify Him in the hours of the night and at both ends of the day, so that you may be pleased ˹with the reward˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,2,134,'Do not let your eyes crave what We have allowed some of the disbelievers to enjoy; the ˹fleeting˺ splendour of this worldly life, which We test them with. But your Lord’s provision ˹in the Hereafter˺ is far better and more lasting.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,2,134,'Bid your people to pray, and be diligent in ˹observing˺ it. We do not ask you to provide. It is We Who provide for you. And the ultimate outcome is ˹only˺ for ˹the people of˺ righteousness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,2,134,'They demand, “If only he could bring us a sign from his Lord!” Have they not ˹already˺ received a confirmation of what is in earlier Scriptures?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,2,134,'Had We destroyed them with a torment before this ˹Prophet came˺, they would have surely argued, “Our Lord! If only You had sent us a messenger, we would have followed Your revelations before being humiliated and put to shame.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,2,134,'Say ˹to them, O Prophet˺, “Each ˹of us˺ is waiting, so keep waiting! You will soon know who is on the Straight Path and is ˹rightly˺ guided.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(135,21,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,135,'˹The time of˺ people’s judgment has drawn near, yet they are heedlessly turning away.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,135,'Whatever new reminder comes to them from their Lord, they only listen to it jokingly,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,135,'with their hearts ˹totally˺ distracted. The evildoers would converse secretly, ˹saying,˺ “Is this ˹one˺ not human like yourselves? Would you fall for ˹this˺ witchcraft, even though you can ˹clearly˺ see?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,135,'The Prophet responded, “My Lord ˹fully˺ knows every word spoken in the heavens and the earth. For He is the All-Hearing, All-Knowing.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,135,'Yet they say, “This ˹Quran˺ is a set of confused dreams! No, he has fabricated it! No, he must be a poet! So let him bring us a ˹tangible˺ sign like those ˹prophets˺ sent before.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,135,'Not a ˹single˺ society We destroyed before them ever believed ˹after receiving the signs˺. Will these ˹pagans˺ then believe?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,135,'We did not send ˹messengers˺ before you ˹O Prophet˺ except mere men inspired by Us. If you ˹polytheists˺ do not know ˹this already˺, then ask those who have knowledge ˹of the Scriptures˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,135,'We did not give those messengers ˹supernatural˺ bodies that did not need food, nor were they immortal.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,135,'Then We fulfilled Our promise to them, saving them along with whoever We willed and destroying the transgressors.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,135,'We have surely revealed to you a Book, in which there is glory for you. Will you not then understand?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,135,'˹Imagine˺ how many societies of wrongdoers We have destroyed, raising up other people after them!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,135,'When the wrongdoers sensed ˹the arrival of˺ Our torment, they started to run away from their cities.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,135,'˹They were told,˺ “Do not run away! Return to your luxuries and your homes, so you may be questioned ˹about your fate˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,135,'They cried, “Woe to us! We have surely been wrongdoers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,135,'They kept repeating their cry until We mowed them down, ˹leaving them˺ lifeless. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,135,'We did not create the heavens and the earth and everything in between for sport.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,135,'Had We intended to take ˹some˺ amusement, We could have found it in Our presence, if that had been Our Will.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,135,'In fact, We hurl the truth against falsehood, leaving it crushed, and it quickly vanishes. And woe be to you for what you claim!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,135,'To Him belong all those in the heavens and the earth. And those nearest to Him are not too proud to worship Him, nor do they tire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,135,'They glorify ˹Him˺ day and night, never wavering.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,135,'Or have they taken gods from the earth, who can raise the dead?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,135,'Had there been other gods besides Allah in the heavens or the earth, both ˹realms˺ would have surely been corrupted. So Glorified is Allah, Lord of the Throne, far above what they claim.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,135,'He cannot be questioned about what He does, but they will ˹all˺ be questioned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,135,'Or have they taken other gods besides Him? Say, ˹O Prophet,˺ “Show ˹me˺ your proof. Here is ˹the Quran,˺ the Reminder for those with me; along with ˹earlier Scriptures,˺ the Reminder for those before me.” But most of them do not know the truth, so they turn away.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,135,'We never sent a messenger before you ˹O Prophet˺ without revealing to him: “There is no god ˹worthy of worship˺ except Me, so worship Me ˹alone˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,135,'And they say, “The Most Compassionate has offspring!” Glory be to Him! In fact, those ˹angels˺ are only ˹His˺ honoured servants,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,135,'who do not speak until He has spoken, ˹only˺ acting at His command.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,135,'He ˹fully˺ knows what is ahead of them and what is behind them. They do not intercede except for whom He approves, and they tremble in awe of Him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,135,'Whoever of them were to say, “I am a god besides Him,” they would be rewarded with Hell by Us. This is how We reward the wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,135,'Do the disbelievers not realize that the heavens and earth were ˹once˺ one mass then We split them apart? And We created from water every living thing. Will they not then believe?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,135,'And We have placed firm mountains upon the earth so it does not shake with them, and made in it broad pathways so they may find their way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,135,'And We have made the sky a well-protected canopy, still they turn away from its signs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,135,'And He is the One Who created the day and the night, the sun and the moon—each travelling in an orbit.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,135,'We have not granted immortality to any human before you ˹O Prophet˺: so if you die, will they live forever?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,135,'Every soul will taste death. And We test you ˹O humanity˺ with good and evil as a trial, then to Us you will ˹all˺ be returned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,135,'When the disbelievers see you ˹O Prophet˺, they only make fun of you, ˹saying,˺ “Is this the one who speaks ˹ill˺ of your gods?” while they disbelieve at the mention of the Most Compassionate.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,135,'Humankind is made of haste. I will soon show you My signs, so do not ask Me to hasten them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,135,'They ask ˹the believers˺, “When will this threat come to pass if what you say is true?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,135,'If only the disbelievers knew that a time will come when they will not be able to keep the Fire off their faces or backs, nor will they be helped.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,135,'In fact, the Hour will take them by surprise, leaving them stunned. So they will not be able to avert it, nor will it be delayed from them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,135,'˹Other˺ messengers had already been ridiculed before you ˹O Prophet˺, but those who mocked them were overtaken by what they used to ridicule.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,135,'Ask ˹them, O Prophet,˺ “Who can defend you by day or by night against the Most Compassionate?” Still they turn away from the remembrance of their Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,135,'Or do they have gods—other than Us—that can protect them? They cannot ˹even˺ protect themselves, nor will they be aided against Us.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,135,'In fact, We have allowed enjoyment for these ˹Meccans˺ and their forefathers for such a long time ˹that they took it for granted˺. Do they not see that We gradually reduce ˹their˺ land from its borders? Is it they who will then prevail?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,135,'Say, ˹O Prophet,˺ “I warn you only by revelation.” But the deaf cannot hear the call when they are warned!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,135,'If they were touched by even a breath of your Lord’s torment, they would certainly cry, “Woe to us! We have really been wrongdoers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,135,'We will set up the scales of justice on the Day of Judgment, so no soul will be wronged in the least. And ˹even˺ if a deed is the weight of a mustard seed, We will bring it forth. And sufficient are We as a ˹vigilant˺ Reckoner.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,135,'Indeed, We granted Moses and Aaron the standard ˹to distinguish between right and wrong˺—a light and a reminder for the righteous,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,135,'who are in awe of their Lord without seeing Him, and are fearful of the Hour.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,135,'And this ˹Quran˺ is a blessed reminder which We have revealed. Will you ˹pagans˺ then deny it?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,135,'And indeed, We had granted Abraham sound judgment early on, for We knew him well ˹to be worthy of it˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,135,'˹Remember˺ when he questioned his father and his people, “What are these statues to which you are so devoted?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,135,'They replied, “We found our forefathers worshipping them.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,135,'He responded, “Indeed, you and your forefathers have been clearly astray.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,135,'They asked, “Have you come to us with the truth, or is this a joke?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,135,'He replied, “In fact, your Lord is the Lord of the heavens and the earth, Who created them ˹both˺. And to that I bear witness.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,135,'˹Then he said to himself,˺ “By Allah! I will surely plot against your idols after you have turned your backs and gone away.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,135,'So he smashed them into pieces, except the biggest of them, so they might turn to it ˹for answers˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,135,'They protested, “Who dared do this to our gods? It must be an evildoer!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,135,'Some said, “We heard a young man, called Abraham, speaking ˹ill˺ of them.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,135,'They demanded, “Bring him before the eyes of the people, so that they may witness ˹his trial˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,135,'They asked, “Was it you who did this to our gods, O Abraham?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,135,'He replied ˹sarcastically˺, “No, this one—the biggest of them—did it! So ask them, if they can talk!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,135,'So they came back to their senses, saying ˹to one another˺, “You yourselves are truly the wrongdoers!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,135,'Then they ˹quickly˺ regressed to their ˹original˺ mind-set, ˹arguing,˺ “You already know that those ˹idols˺ cannot talk.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,135,'He rebuked ˹them˺, “Do you then worship—instead of Allah—what can neither benefit nor harm you in any way?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,135,'Shame on you and whatever you worship instead of Allah! Do you not have any sense?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,135,'They concluded, “Burn him up to avenge your gods, if you must act.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,135,'We ordered, “O fire! Be cool and safe for Abraham!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,135,'They had sought to harm him, but We made them the worst losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,135,'Then We delivered him, along with Lot, to the land We had showered with blessings for all people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,135,'And We blessed him with Isaac ˹as a son˺ and Jacob ˹as a grandson˺, as an additional favour—making all of them righteous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,135,'We ˹also˺ made them leaders, guiding by Our command, and inspired them to do good deeds, establish prayer, and pay alms-tax. And they were devoted to Our worship.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,135,'And to Lot We gave wisdom and knowledge, and delivered him from the society engrossed in shameful practices. They were certainly an evil, rebellious people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,135,'And We admitted him into Our mercy, ˹for˺ he was truly one of the righteous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,135,'And ˹remember˺ when Noah had cried out to Us earlier, so We responded to him and delivered him and his family from the great distress.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,135,'And We made him prevail over those who had rejected Our signs. They were truly an evil people, so We drowned them all.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,135,'And ˹remember˺ when David and Solomon passed judgment regarding the crops ruined ˹at night˺ by someone’s sheep, and We were witness to their judgments.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,135,'We guided ˹young˺ Solomon to a fairer settlement, and granted each of them wisdom and knowledge. We subjected the mountains as well as the birds to hymn ˹Our praises˺ along with David. It is We Who did ˹it all˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,135,'We taught him the art of making body armour to protect you in battle. Will you then be grateful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,135,'And to Solomon We subjected the raging winds, blowing by his command to the land We had showered with blessings. It is We Who know everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,135,'And ˹We subjected˺ some jinn that dived for him, and performed other duties. It is We Who kept them in check.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,135,'And ˹remember˺ when Job cried out to his Lord, “I have been touched with adversity, and You are the Most Merciful of the merciful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,135,'So We answered his prayer and removed his adversity, and gave him back his family, twice as many, as a mercy from Us and a lesson for the ˹devoted˺ worshippers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,135,'And ˹remember˺ Ishmael, Enoch, and Ⱬul-Kifl. They were all steadfast.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,135,'We admitted them into Our mercy, for they were truly of the righteous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,135,'And ˹remember˺ when the Man of the Whale stormed off ˹from his city˺ in a rage, thinking We would not restrain him. Then in the ˹veils of˺ darkness he cried out, “There is no god ˹worthy of worship˺ except You. Glory be to You! I have certainly done wrong.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,135,'So We answered his prayer and rescued him from anguish. And so do We save the ˹true˺ believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,135,'And ˹remember˺ when Zachariah cried out to his Lord, “My Lord! Do not leave me childless, though You are the Best of Successors.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,135,'So We answered his prayer, granted him John, and made his wife fertile. Indeed, they used to race in doing good, and call upon Us with hope and fear, totally humbling themselves before Us.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,135,'And ˹remember˺ the one who guarded her chastity, so We breathed into her through Our angel, ˹Gabriel,˺ making her and her son a sign for all peoples.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,135,'˹O prophets!˺ Indeed, this religion of yours is ˹only˺ one, and I am your Lord, so worship Me ˹alone˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,135,'Yet the people have divided it into sects. But to Us they will all return.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,135,'So whoever does good and is a believer will never be denied ˹the reward for˺ their striving, for We are recording it all.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,135,'It is impossible for a society which We have destroyed to ever rise again,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,135,'until ˹after˺ Gog and Magog have broken loose ˹from the barrier˺, swarming down from every hill,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,135,'ushering in the True Promise. Then—behold!—the disbelievers will stare ˹in horror, crying,˺ “Oh, woe to us! We have truly been heedless of this. In fact, we have been wrongdoers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,135,'Certainly you ˹disbelievers˺ and whatever you worship instead of Allah will be the fuel of Hell. You are ˹all˺ bound to enter it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,135,'Had those idols been ˹true˺ gods, they would not have entered it. And they will be there forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,2,135,'In it they will groan, and will not be able to hear.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,2,135,'Surely those for whom We have destined the finest reward will be kept far away from Hell,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,2,135,'not even hearing the slightest hissing from it. And they will delight forever in what their souls desire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,2,135,'The Supreme Horror ˹of that Day˺ will not disturb them, and the angels will greet them, ˹saying,˺ “This is your Day, which you have been promised.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,2,135,'On that Day We will roll up the heavens like a scroll of writings. Just as We produced the first creation, ˹so˺ shall We reproduce it. That is a promise binding on Us. We truly uphold ˹Our promises˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,2,135,'Surely, following the ˹heavenly˺ Record, We decreed in the Scriptures: “My righteous servants shall inherit the land.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,2,135,'Surely this ˹Quran˺ is sufficient ˹as a reminder˺ for those devoted to worship.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,2,135,'We have sent you ˹O Prophet˺ only as a mercy for the whole world.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,2,135,'Say, “What has been revealed to me is this: ‘Your God is only One God.’ Will you then submit?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,2,135,'If they turn away, then say, “I have warned you all equally. I do not know if what you are threatened with is near or far.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,2,135,'Allah surely knows what you say openly and whatever you hide.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,2,135,'I do not know if this ˹delay˺ is possibly a test for you and an enjoyment for a while.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,2,135,'˹In the end,˺ the Prophet said, “My Lord! Judge ˹between us˺ in truth. And our Lord is the Most Compassionate, Whose help is sought against what you claim.” ');
+INSERT INTO chapters (id, number, quran_id) VALUES(136,22,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,136,'O humanity! Fear your Lord, for the ˹violent˺ quaking at the Hour is surely a dreadful thing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,136,'The Day you see it, every nursing mother will abandon what she is nursing, and every pregnant woman will deliver her burden ˹prematurely˺. And you will see people ˹as if they were˺ drunk, though they will not be drunk; but the torment of Allah is ˹terribly˺ severe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,136,'˹Still˺ there are some who dispute about Allah without knowledge, and follow every rebellious devil.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,136,'It has been decreed for such devils that whoever takes them as a guide will be misguided and led by them into the torment of the Blaze.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,136,'O humanity! If you are in doubt about the Resurrection, then ˹know that˺ We did create you from dust, then from a sperm-drop, then ˹developed you into˺ a clinging clot ˹of blood˺, then a lump of flesh—fully formed or unformed—in order to demonstrate ˹Our power˺ to you. ˹Then˺ We settle whatever ˹embryo˺ We will in the womb for an appointed term, then bring you forth as infants, so that you may reach your prime. Some of you ˹may˺ die ˹young˺, while others are left to reach the most feeble stage of life so that they may know nothing after having known much. And you see the earth lifeless, but as soon as We send down rain upon it, it begins to stir ˹to life˺ and swell, producing every type of pleasant plant.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,136,'That is because Allah ˹alone˺ is the Truth, He ˹alone˺ gives life to the dead, and He ˹alone˺ is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,136,'And certainly the Hour is coming, there is no doubt about it. And Allah will surely resurrect those in the graves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,136,'˹Still˺ there are some who dispute about Allah without knowledge, guidance, or an enlightening scripture,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,136,'turning away ˹in pride˺ to lead ˹others˺ astray from Allah’s Way. They will suffer disgrace in this world, and on the Day of Judgment We will make them taste the torment of burning.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,136,'˹They will be told,˺ “This is ˹the reward˺ for what your hands have done. And Allah is never unjust to ˹His˺ creation.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,136,'And there are some who worship Allah on the verge ˹of faith˺: if they are blessed with something good, they are content with it; but if they are afflicted with a trial, they relapse ˹into disbelief˺, losing this world and the Hereafter. That is ˹truly˺ the clearest loss.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,136,'They call besides Allah what can neither harm nor benefit them. That is ˹truly˺ the farthest one can stray.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,136,'They invoke those whose worship leads to harm, not benefit. What an evil patron and what an evil associate!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,136,'Indeed, Allah will admit those who believe and do good into Gardens, under which rivers flow. Surely Allah does what He wills.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,136,'Whoever thinks that Allah will not help His Prophet in this world and the Hereafter, let them stretch out a rope to the ceiling and strangle themselves, then let them see if this plan will do away with ˹the cause of˺ their rage. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,136,'And so We revealed this ˹Quran˺ as clear verses. And Allah certainly guides whoever He wills.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,136,'Indeed, the believers, Jews, Sabians, Christians, Magi, and the polytheists—Allah will judge between them ˹all˺ on Judgment Day. Surely Allah is a Witness over all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,136,'Do you not see that to Allah bow down ˹in submission˺ all those in the heavens and all those on the earth, as well as the sun, the moon, the stars, the mountains, the trees, and ˹all˺ living beings, as well as many humans, while many are deserving of punishment. And whoever Allah disgraces, none can honour. Surely Allah does what He wills.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,136,'These are two opposing groups that disagree about their Lord: as for the disbelievers, garments of Fire will be cut out for them and boiling water will be poured over their heads,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,136,'melting whatever is in their bellies, along with their skin.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,136,'And awaiting them are maces of iron.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,136,'Whenever they try to escape from Hell—out of anguish—they will be forced back into it, ˹and will be told,˺ “Taste the torment of burning!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,136,'˹But˺ Allah will surely admit those who believe and do good into Gardens, under which rivers flow, where they will be adorned with bracelets of gold and pearls, and their clothing will be silk,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,136,'for they have been guided to the best of speech, and they have been guided to the Commendable Path. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,136,'Indeed, those who persist in disbelief and hinder ˹others˺ from the Way of Allah and from the Sacred Mosque—which We have appointed for all people, residents and visitors alike—along with whoever intends to deviate by doing wrong in it, We will cause them to taste a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,136,'And ˹remember˺ when We assigned to Abraham the site of the House, ˹saying,˺ “Do not associate anything with Me ˹in worship˺ and purify My House for those who circle ˹the Ka’bah˺, stand ˹in prayer˺, and bow and prostrate themselves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,136,'Call ˹all˺ people to the pilgrimage. They will come to you on foot and on every lean camel from every distant path,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,136,'so they may obtain the benefits ˹in store˺ for them, and pronounce the Name of Allah on appointed days over the sacrificial animals He has provided for them. So eat from their meat and feed the desperately poor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,136,'Then let them groom themselves, fulfil their vows, and circle the Ancient House.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,136,'That is so. And whoever honours the rituals of Allah, it is best for them in the sight of their Lord. The ˹meat of˺ cattle has been made lawful for you, except what has ˹already˺ been recited to you. So shun the impurity of idolatry, and shun words of falsehood.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,136,'Be upright ˹in devotion˺ to Allah, associating none with Him ˹in worship˺. For whoever associates ˹others˺ with Allah is like someone who has fallen from the sky and is either snatched away by birds or swept by the wind to a remote place.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,136,'That is so. And whoever honours the symbols of Allah, it is certainly out of the piety of the heart.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,136,'You may benefit from sacrificial animals for an appointed term, then their place of sacrifice is at the Ancient House.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,136,'For every community We appointed a rite of sacrifice so that they may pronounce the Name of Allah over the sacrificial animals He has provided for them. For your God is only One God, so submit yourselves to Him ˹alone˺. And give good news ˹O Prophet˺ to the humble:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,136,'those whose hearts tremble at the remembrance of Allah, who patiently endure whatever may befall them, and who establish prayer and donate from what We have provided for them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,136,'We have made sacrificial camels ˹and cattle˺ among the symbols of Allah, in which there is ˹much˺ good for you. So pronounce the Name of Allah over them when they are lined up ˹for sacrifice˺. Once they have fallen ˹lifeless˺ on their sides, you may eat from their meat, and feed the needy—those who do not beg, and those who do. In this way We have subjected these ˹animals˺ to you so that you may be grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,136,'Neither their meat nor blood reaches Allah. Rather, it is your piety that reaches Him. This is how He has subjected them to you so that you may proclaim the greatness of Allah for what He has guided you to, and give good news to the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,136,'Indeed, Allah defends those who believe. Surely Allah does not like whoever is deceitful, ungrateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,136,'Permission ˹to fight back˺ is ˹hereby˺ granted to those being fought, for they have been wronged. And Allah is truly Most Capable of helping them ˹prevail˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,136,'˹They are˺ those who have been expelled from their homes for no reason other than proclaiming: “Our Lord is Allah.” Had Allah not repelled ˹the aggression of˺ some people by means of others, destruction would have surely claimed monasteries, churches, synagogues, and mosques in which Allah’s Name is often mentioned. Allah will certainly help those who stand up for Him. Allah is truly All-Powerful, Almighty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,136,'˹They are˺ those who, if established in the land by Us, would perform prayer, pay alms-tax, encourage what is good, and forbid what is evil. And with Allah rests the outcome of all affairs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,136,'If they deny you ˹O Prophet˺, so did the people of Noah before them, as well as ˹the tribes of˺ ’Ȃd and Thamûd,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,136,'the people of Abraham, the people of Lot,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,136,'and the residents of Midian. And Moses was denied ˹too˺. But I delayed ˹the fate of˺ the disbelievers ˹until their appointed time˺ then seized them. And how severe was My response!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,136,'Many are the societies We have destroyed for persisting in wrongdoing, leaving them in total ruin. ˹Many are˺ also the abandoned wells and lofty palaces!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,136,'Have they not travelled throughout the land so their hearts may reason, and their ears may listen? Indeed, it is not the eyes that are blind, but it is the hearts in the chests that grow blind.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,136,'They challenge you ˹O Prophet˺ to hasten the torment. And Allah will never fail in His promise. But a day with your Lord is indeed like a thousand years by your counting.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,136,'Many are the societies whose end We delayed while they did wrong, then seized them. And to Me is the final return.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,136,'Say, ˹O Prophet,˺ “O humanity! I am only sent to you with a clear warning.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,136,'So those who believe and do good will have forgiveness and an honourable provision.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,136,'But those who strive to discredit Our revelations, they will be the residents of the Hellfire.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,136,'Whenever We sent a messenger or a prophet before you ˹O Prophet˺ and he recited ˹Our revelations˺, Satan would influence ˹people’s understanding of˺ his recitation. But ˹eventually˺ Allah would eliminate Satan’s influence. Then Allah would ˹firmly˺ establish His revelations. And Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,136,'All that so He may make Satan’s influence a trial for those ˹hypocrites˺ whose hearts are sick and those ˹disbelievers˺ whose hearts are hardened. Surely the wrongdoers are totally engrossed in opposition.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,136,'˹This is˺ also so that those gifted with knowledge would know that this ˹revelation˺ is the truth from your Lord, so they have faith in it, and so their hearts would submit humbly to it. And Allah surely guides the believers to the Straight Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,136,'Yet the disbelievers will persist in doubt about this ˹revelation˺ until the Hour takes them by surprise, or the torment of a terminating Day comes to them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,136,'All authority on that Day is for Allah ˹alone˺. He will judge between them. So those who believe and do good will be in the Gardens of Bliss.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,136,'But those who disbelieve and deny Our revelations, it is they who will suffer a humiliating punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,136,'As for those who emigrate in the cause of Allah and then are martyred or die, Allah will indeed grant them a good provision. Surely Allah is the Best Provider.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,136,'He will certainly admit them into a place they will be pleased with. For Allah is truly All-Knowing, Most Forbearing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,136,'That is so. And whoever retaliates in equivalence to the injury they have received, and then are wronged ˹again˺, Allah will certainly help them. Surely Allah is Ever-Pardoning, All-Forgiving.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,136,'That is because Allah causes the night to merge into the day, and the day into the night. Indeed, Allah is All-Hearing, All-Seeing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,136,'That is because Allah ˹alone˺ is the Truth and what they invoke besides Him is falsehood, and Allah ˹alone˺ is truly the Most High, All-Great.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,136,'Do you not see that Allah sends down rain from the sky, then the earth becomes green? Surely Allah is Most Subtle, All-Aware.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,136,'To Him belongs whatever is in the heavens and whatever is on the earth. Allah ˹alone˺ is truly the Self-Sufficient, Praiseworthy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,136,'Do you not see that Allah has subjected to you whatever is in the earth as well as the ships ˹that˺ sail through the sea by His command? He keeps the sky from falling down on the earth except by His permission. Surely Allah is Ever Gracious and Most Merciful to humanity.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,136,'And He is the One Who gave you life, then will cause you to die, and then will bring you back to life. ˹But˺ surely humankind is ever ungrateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,136,'For every community We appointed a code of life to follow. So do not let them dispute with you ˹O Prophet˺ in this matter. And invite ˹all˺ to your Lord, for you are truly on the Right Guidance.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,136,'But if they argue with you, then say, “Allah knows best what you do.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,136,'Allah will judge between you ˹all˺ on Judgment Day regarding your differences.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,136,'Do you not know that Allah ˹fully˺ knows whatever is in the heavens and the earth? Surely it is all ˹written˺ in a Record. That is certainly easy for Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,136,'Yet they worship besides Allah that for which He has sent down no authority, and of which they have no knowledge. The wrongdoers will have no helper.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,136,'Whenever Our clear revelations are recited to them, you ˹O Prophet˺ recognize rage on the faces of the disbelievers, as if they are going to snap at those who recite Our revelations to them. Say, “Shall I inform you of something far more enraging than that? ˹It is˺ the Fire with which Allah has threatened those who disbelieve. What an evil destination!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,136,'O humanity! A lesson is set forth, so listen to it ˹carefully˺: those ˹idols˺ you invoke besides Allah can never create ˹so much as˺ a fly, even if they ˹all˺ were to come together for that. And if a fly were to snatch anything away from them, they cannot ˹even˺ retrieve it from the fly. How powerless are those who invoke and those invoked!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,136,'They have not shown Allah the reverence He deserves. Surely Allah is All-Powerful, Almighty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,136,'Allah selects messengers from both angels and people, for Allah is truly All-Hearing, All-Seeing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,136,'He knows what is ahead of them and what is behind them. And to Allah ˹all˺ matters will be returned ˹for judgment˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,136,'O believers! Bow down, prostrate yourselves, worship your Lord, and do ˹what is˺ good so that you may be successful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,136,'Strive for ˹the cause of˺ Allah in the way He deserves, for ˹it is˺ He ˹Who˺ has chosen you, and laid upon you no hardship in the religion—the way of your forefather Abraham. ˹It is Allah˺ Who named you ‘the ones who submit’ ˹in the˺ earlier ˹Scriptures˺ and in this ˹Quran˺, so that the Messenger may be a witness over you, and that you may be witnesses over humanity. So establish prayer, pay alms-tax, and hold fast to Allah. He ˹alone˺ is your Guardian. What an excellent Guardian, and what an excellent Helper!');
+INSERT INTO chapters (id, number, quran_id) VALUES(137,23,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,137,'Successful indeed are the believers:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,137,'those who humble themselves in prayer;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,137,'those who avoid idle talk;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,137,'those who pay alms-tax;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,137,'those who guard their chastity');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,137,'except with their wives or those ˹bondwomen˺ in their possession, for then they are free from blame,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,137,'but whoever seeks beyond that are the transgressors;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,137,'˹the believers are also˺ those who are true to their trusts and covenants;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,137,'and those who are ˹properly˺ observant of their prayers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,137,'These are the ones who will be awarded');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,137,'Paradise as their own. They will be there forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,137,'And indeed, We created humankind from an extract of clay,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,137,'then placed each ˹human˺ as a sperm-drop in a secure place,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,137,'then We developed the drop into a clinging clot ˹of blood˺, then developed the clot into a lump ˹of flesh˺, then developed the lump into bones, then clothed the bones with flesh, then We brought it into being as a new creation. So Blessed is Allah, the Best of Creators.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,137,'After that you will surely die,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,137,'then on the Day of Judgment you will be resurrected.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,137,'And indeed, We created above you seven levels ˹of heaven˺. We are never unmindful of ˹Our˺ creation.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,137,'We send down rain from the sky in perfect measure, causing it to soak into the earth. And We are surely able to take it away.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,137,'With it We produce for you gardens of palm trees and grapevines, in which there are abundant fruits, and from which you may eat,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,137,'as well as ˹olive˺ trees which grow at Mount Sinai, providing oil and a condiment to eat.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,137,'And there is certainly a lesson for you in cattle, from whose bellies We give you ˹milk˺ to drink, and in them are many other benefits for you, and from them you may eat.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,137,'And you are carried upon ˹some of˺ them and upon ships.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,137,'Indeed, We sent Noah to his people. He declared, “O my people! Worship Allah ˹alone˺. You have no god other than Him. Will you not then fear ˹Him˺?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,137,'But the disbelieving chiefs of his people said ˹to the masses˺, “This is only a human like you, who wants to be superior to you. Had Allah willed, He could have easily sent down angels ˹instead˺. We have never heard of this in ˹the history of˺ our forefathers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,137,'He is simply insane, so bear with him for a while.” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,137,'Noah prayed, “My Lord! Help me, because they have denied ˹me˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,137,'So We inspired him: “Build the Ark under Our ˹watchful˺ Eyes and directions. Then when Our command comes and the oven bursts ˹with water˺, take on board a pair from every species along with your family—except those against whom the decree ˹to drown˺ has already been passed. And do not plead with Me for those who have done wrong, for they will surely be drowned.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,137,'Then when you and those with you have settled in the Ark, say, “All praise is for Allah, Who saved us from the wrongdoing people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,137,'And pray, “My Lord! Allow me a blessed landing, for You are the best accommodator.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,137,'Surely in this are lessons. And We ˹always˺ put ˹people˺ to the test.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,137,'Then We raised another generation after them,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,137,'and sent to them a messenger from among themselves, ˹declaring,˺ “Worship Allah ˹alone˺. You have no god other than Him. Will you not then fear ˹Him˺?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,137,'But the chiefs of his people—who disbelieved, denied the meeting ˹with Allah˺ in the Hereafter, and were spoiled by the worldly luxuries We had provided for them—said ˹to the masses˺, “This is only a human like you. He eats what you eat, and drinks what you drink.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,137,'And if you ˹ever˺ obey a human like yourselves, then you would certainly be losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,137,'Does he promise you that once you are dead and reduced to dust and bones, you will be brought forth ˹alive˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,137,'Impossible, simply impossible is what you are promised!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,137,'There is nothing beyond our worldly life. We die, others are born, and none will be resurrected.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,137,'He is no more than a man who has fabricated a lie about Allah, and we will never believe in him.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,137,'The messenger prayed, “My Lord! Help me, because they have denied ˹me˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,137,'Allah responded, “Soon they will be truly regretful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,137,'Then the ˹mighty˺ blast overtook them with justice, and We reduced them to rubble. So away with the wrongdoing people!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,137,'Then We raised other generations after them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,137,'No people can advance their doom, nor can they delay it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,137,'Then We sent Our messengers in succession: whenever a messenger came to his people, they denied him. So We destroyed them, one after the other, reducing them to ˹cautionary˺ tales. So away with the people who refuse to believe!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,137,'Then We sent Moses and his brother Aaron with Our signs and compelling proof');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,137,'to Pharaoh and his chiefs, but they behaved arrogantly and were a tyrannical people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,137,'They argued, “Will we believe in two humans, like ourselves, whose people are slaves to us?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,137,'So they rejected them both, and ˹so˺ were among those destroyed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,137,'And We certainly gave Moses the Scripture, so perhaps his people would be ˹rightly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,137,'And We made the son of Mary and his mother a sign, and gave them refuge on high ground—a ˹suitable˺ place for rest with flowing water.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,137,'O messengers! Eat from what is good and lawful, and act righteously. Indeed, I fully know what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,137,'Surely this religion of yours is ˹only˺ one, and I am your Lord, so fear Me ˹alone˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,137,'Yet the people have divided it into different sects, each rejoicing in what they have.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,137,'So leave them ˹O Prophet˺ in their heedlessness for a while.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,137,'Do they think, since We provide them with wealth and children,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,137,'that We hasten to ˹honour˺ them ˹with˺ all kinds of good? No! They are not aware.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,137,'Surely those who tremble in awe of their Lord,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,137,'and who believe in the revelations of their Lord,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,137,'and who associate none with their Lord,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,137,'and who do whatever ˹good˺ they do with their hearts fearful, ˹knowing˺ that they will return to their Lord—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,137,'it is they who race to do good deeds, always taking the lead.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,137,'We never require of any soul more than what it can afford. And with Us is a record which speaks the truth. None will be wronged.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,137,'But the hearts of those ˹who disbelieve˺ are oblivious to ˹all of˺ this, and they have other ˹evil˺ deeds, opposite to this, in which they are engrossed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,137,'But as soon as We seize their elite with torment, they start to cry for help.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,137,'˹They will be told,˺ “Do not cry for help today. Surely you will never be saved from Us.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,137,'Indeed, My revelations were recited to you, but you used to back away ˹in disgust˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,137,'boasting of the Sacred House, and babbling ˹nonsense about the Quran˺ by night.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,137,'Is it because they have never contemplated the Word ˹of Allah˺? Or ˹because˺ there has come to them something that did not come to their forefathers?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,137,'Or ˹because˺ they failed to recognize their Messenger, and so they denied him?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,137,'Or ˹because˺ they say, “He is insane?” In fact, he has come to them with the truth, but most of them are resentful of the truth.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,137,'Had the truth followed their desires, the heavens, the earth, and all those in them would have certainly been corrupted. In fact, We have brought them ˹the means to˺ their glory, but they turn away from it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,137,'Or ˹is it because˺ you ˹O Prophet˺ are asking them for tribute? But the reward of your Lord is best, for He is the Best Provider.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,137,'And surely you are calling them to the Straight Path,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,137,'but those who disbelieve in the Hereafter are certainly deviating from that Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,137,'˹Even˺ if We had mercy on them and removed their affliction, they would still persist in their transgression, wandering blindly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,137,'And We have already seized them with torment, but they never humbled themselves to their Lord, nor did they ˹submissively˺ appeal ˹to Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,137,'But as soon as We open for them a gate of severe punishment, they will be utterly desperate.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,137,'He is the One Who created for you hearing, sight, and intellect. ˹Yet˺ you hardly give any thanks.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,137,'And He is the One Who has dispersed you ˹all˺ over the earth, and to Him you will ˹all˺ be gathered.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,137,'And He is the One Who gives life and causes death, and to Him belongs the alternation of the day and night. Will you not then understand?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,137,'But they ˹just˺ say what their predecessors said.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,137,'They said, “Once we are dead and reduced to dust and bones, will we really be resurrected?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,137,'We have already been promised this, as well as our forefathers earlier. This is nothing but ancient fables!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,137,'Ask ˹them, O Prophet˺, “To whom belong the earth and all those on it, if you ˹really˺ know?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,137,'They will reply, “To Allah!” Say, “Why are you not then mindful?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,137,'˹And˺ ask ˹them˺, “Who is the Lord of the seven heavens and the Lord of the Mighty Throne?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,137,'They will reply, “Allah.” Say, “Will you not then fear ˹Him˺?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,137,'Ask ˹them also,˺ “In Whose Hands is the authority over all things, protecting ˹all˺ while none can protect against Him, if you ˹really˺ know?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,137,'They will reply, “Allah.” Say, “How are you then so deluded?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,137,'In fact, We have brought them the truth, and they are certainly liars.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,137,'Allah has never had ˹any˺ offspring, nor is there any god besides Him. Otherwise, each god would have taken away what he created, and they would have tried to dominate one another. Glorified is Allah above what they claim!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,137,'˹He is the˺ Knower of the seen and unseen. Exalted is He above what they associate ˹with Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,137,'Say, ˹O Prophet,˺ “My Lord! Should You show me what they are threatened with,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,137,'then, my Lord, do not count me among the wrongdoing people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,137,'We are indeed able to show you what We have threatened them with.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,137,'Respond to evil with what is best. We know well what they claim.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,137,'And say, “My Lord! I seek refuge in You from the temptations of the devils.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,137,'And I seek refuge in You, my Lord, that they ˹even˺ come near me.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,137,'When death approaches any of them, they cry, “My Lord! Let me go back,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,2,137,'so I may do good in what I left behind.” Never! It is only a ˹useless˺ appeal they make. And there is a barrier behind them until the Day they are resurrected. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,2,137,'Then, when the Trumpet will be blown, there will be no kinship between them on that Day, nor will they ˹even care to˺ ask about one another. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,2,137,'As for those whose scale is heavy ˹with good deeds˺, it is they who will be successful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,2,137,'But those whose scale is light, they will have doomed themselves, staying in Hell forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,2,137,'The Fire will burn their faces, leaving them deformed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,2,137,'˹It will be said,˺ “Were My revelations not recited to you, but you used to deny them?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,2,137,'They will cry, “Our Lord! Our ill-fate took hold of us, so we became a misguided people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,2,137,'Our Lord! Take us out of this ˹Fire˺. Then if we ever return ˹to denial˺, we will truly be wrongdoers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,2,137,'Allah will respond, “Be despised in there! Do not ˹ever˺ plead with Me ˹again˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,2,137,'Indeed, there was a group of My servants who used to pray, ‘Our Lord! We have believed, so forgive us and have mercy on us, for You are the best of those who show mercy,’');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,2,137,'but you were ˹so busy˺ making fun of them that it made you forget My remembrance. And you used to laugh at them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,2,137,'Today I have indeed rewarded them for their perseverance: they are certainly the triumphant.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,2,137,'He will ask ˹them˺, “How many years did you remain on earth?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,2,137,'They will reply, “We remained ˹only˺ a day or part of a day. But ask those who kept count.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,2,137,'He will say, “You only remained for a little while, if only you knew.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,2,137,'Did you then think that We had created you without purpose, and that you would never be returned to Us?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,2,137,'Exalted is Allah, the True King! There is no god ˹worthy of worship˺ except Him, the Lord of the Honourable Throne.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,2,137,'Whoever invokes, besides Allah, another god—for which they can have no proof—they will surely find their penalty with their Lord. Indeed, the disbelievers will never succeed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,2,137,'Say, ˹O Prophet,˺ “My Lord! Forgive and have mercy, for You are the best of those who show mercy.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(138,24,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,138,'˹This is˺ a sûrah which We have revealed and made ˹its rulings˺ obligatory, and revealed in it clear commandments so that you may be mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,138,'As for female and male fornicators, give each of them one hundred lashes, and do not let pity for them make you lenient in ˹enforcing˺ the law of Allah, if you ˹truly˺ believe in Allah and the Last Day. And let a number of believers witness their punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,138,'A male fornicator would only marry a female fornicator or idolatress. And a female fornicator would only be married to a fornicator or idolater. This is ˹all˺ forbidden to the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,138,'Those who accuse chaste women ˹of adultery˺ and fail to produce four witnesses, give them eighty lashes ˹each˺. And do not ever accept any testimony from them—for they are indeed the rebellious—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,138,'except those who repent afterwards and mend their ways, then surely Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,138,'And those who accuse their wives ˹of adultery˺ but have no witness except themselves, the accuser must testify, swearing four times by Allah that he is telling the truth,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,138,'and a fifth oath that Allah may condemn him if he is lying.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,138,'For her to be spared the punishment, she must swear four times by Allah that he is telling a lie,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,138,'and a fifth oath that Allah may be displeased with her if he is telling the truth.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,138,'˹You would have suffered,˺ had it not been for Allah’s grace and mercy upon you, and had Allah not been Accepting of Repentance, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,138,'Indeed, those who came up with that ˹outrageous˺ slander are a group of you. Do not think this is bad for you. Rather, it is good for you. They will be punished, each according to their share of the sin. As for their mastermind, he will suffer a tremendous punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,138,'If only the believing men and women had thought well of one another, when you heard this ˹rumour˺, and said, “This is clearly ˹an outrageous˺ slander!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,138,'Why did they not produce four witnesses? Now, since they have failed to produce witnesses, they are ˹truly˺ liars in the sight of Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,138,'Had it not been for Allah’s grace and mercy upon you in this world and the Hereafter, you would have certainly been touched with a tremendous punishment for what you plunged into—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,138,'when you passed it from one tongue to the other, and said with your mouths what you had no knowledge of, taking it lightly while it is ˹extremely˺ serious in the sight of Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,138,'If only you had said upon hearing it, “How can we speak about such a thing! Glory be to You ˹O Lord˺! This is a heinous slander!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,138,'Allah forbids you from ever doing something like this again, if you are ˹true˺ believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,138,'And Allah makes ˹His˺ commandments clear to you, for Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,138,'Indeed, those who love to see indecency spread among the believers will suffer a painful punishment in this life and the Hereafter. Allah knows and you do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,138,'˹You would have suffered,˺ had it not been for Allah’s grace and mercy upon you, and had Allah not been Ever Gracious, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,138,'O believers! Do not follow the footsteps of Satan. Whoever follows Satan’s footsteps, then ˹let them know that˺ he surely bids ˹all to˺ immorality and wickedness. Had it not been for Allah’s grace and mercy upon you, none of you would have ever been purified. But Allah purifies whoever He wills. And Allah is All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,138,'Do not let the people of virtue and affluence among you swear to suspend donations to their relatives, the needy, and the emigrants in the cause of Allah. Let them pardon and forgive. Do you not love to be forgiven by Allah? And Allah is All-Forgiving, Most Merciful. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,138,'Surely those who accuse chaste, unsuspecting, believing women are cursed in this life and the Hereafter. And they will suffer a tremendous punishment');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,138,'on the Day their tongues, hands, and feet will testify against them for what they used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,138,'On that Day, Allah will give them their just penalty in full, and they will ˹come to˺ know that Allah ˹alone˺ is the Ultimate Truth.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,138,'Wicked women are for wicked men, and wicked men are for wicked women. And virtuous women are for virtuous men, and virtuous men are for virtuous women. The virtuous are innocent of what the wicked say. They will have forgiveness and an honourable provision. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,138,'O believers! Do not enter any house other than your own until you have asked for permission and greeted its occupants. This is best for you, so perhaps you will be mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,138,'If you find no one at home, do not enter it until you have been given permission. And if you are asked to leave, then leave. That is purer for you. And Allah has ˹perfect˺ knowledge of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,138,'There is no blame on you if you enter public places where there is something of benefit for you. And Allah knows what you reveal and what you conceal.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,138,'˹O Prophet!˺ Tell the believing men to lower their gaze and guard their chastity. That is purer for them. Surely Allah is All-Aware of what they do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,138,'And tell the believing women to lower their gaze and guard their chastity, and not to reveal their adornments except what normally appears. Let them draw their veils over their chests, and not reveal their ˹hidden˺ adornments except to their husbands, their fathers, their fathers-in-law, their sons, their stepsons, their brothers, their brothers’ sons or sisters’ sons, their fellow women, those ˹bondwomen˺ in their possession, male attendants with no desire, or children who are still unaware of women’s nakedness. Let them not stomp their feet, drawing attention to their hidden adornments. Turn to Allah in repentance all together, O believers, so that you may be successful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,138,'Marry off the ˹free˺ singles among you, as well as the righteous of your bondmen and bondwomen. If they are poor, Allah will enrich them out of His bounty. For Allah is All-Bountiful, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,138,'And let those who do not have the means to marry keep themselves chaste until Allah enriches them out of His bounty. And if any of those ˹bondspeople˺ in your possession desires a deed of emancipation, make it possible for them, if you find goodness in them. And give them some of Allah’s wealth which He has granted you. Do not force your ˹slave˺ girls into prostitution for your own worldly gains while they wish to remain chaste. And if someone coerces them, then after such a coercion Allah is certainly All-Forgiving, Most Merciful ˹to them˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,138,'Indeed, We have sent down to you clear revelations, along with examples of those who had gone before you, and a lesson to the God-fearing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,138,'Allah is the Light of the heavens and the earth. His light is like a niche in which there is a lamp, the lamp is in a crystal, the crystal is like a shining star, lit from ˹the oil of˺ a blessed olive tree, ˹located˺ neither to the east nor the west, whose oil would almost glow, even without being touched by fire. Light upon light! Allah guides whoever He wills to His light. And Allah sets forth parables for humanity. For Allah has ˹perfect˺ knowledge of all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,138,'˹That light shines˺ through houses ˹of worship˺ which Allah has ordered to be raised, and where His Name is mentioned. He is glorified there morning and evening');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,138,'by men who are not distracted—either by buying or selling—from Allah’s remembrance, or performing prayer, or paying alms-tax. They fear a Day when hearts and eyes will tremble,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,138,'˹hoping˺ that Allah may reward them according to the best of their deeds, and increase them out of His grace. And Allah provides for whoever He wills without limit.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,138,'As for the disbelievers, their deeds are like a mirage in a desert, which the thirsty perceive as water, but when they approach it, they find it to be nothing. Instead, they find Allah there ˹in the Hereafter, ready˺ to settle their account. And Allah is swift in reckoning.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,138,'Or ˹their deeds are˺ like the darkness in a deep sea, covered by waves upon waves, topped by ˹dark˺ clouds. Darkness upon darkness! If one stretches out their hand, they can hardly see it. And whoever Allah does not bless with light will have no light!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,138,'Do you not see that Allah is glorified by all those in the heavens and the earth, even the birds as they soar? Each ˹instinctively˺ knows their manner of prayer and glorification. And Allah has ˹perfect˺ knowledge of all they do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,138,'To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. And to Allah is the final return.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,138,'Do you not see that Allah gently drives the clouds, then joins them together, piling them up into masses, from which you see raindrops come forth? And He sends down from the sky mountains ˹of clouds˺ loaded with hail, pouring it on whoever He wills and averting it from whoever He wills. The flash of the clouds’ lightning nearly takes away eyesight.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,138,'Allah alternates the day and night. Surely in this is a lesson for people of insight.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,138,'And Allah has created from water every living creature. Some of them crawl on their bellies, some walk on two legs, and some walk on four. Allah creates whatever He wills. Surely Allah is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,138,'We have indeed sent down revelations clarifying ˹the truth˺. But Allah ˹only˺ guides whoever He wills to the Straight Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,138,'And the hypocrites say, “We believe in Allah and the Messenger, and we obey.” Then a group of them turns away soon after that. These are not ˹true˺ believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,138,'And as soon as they are called to Allah and His Messenger so he may judge between them, a group of them turns away.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,138,'But if the truth is in their favour, they come to him, fully submitting.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,138,'Is there a sickness in their hearts? Or are they in doubt? Or do they fear that Allah and His Messenger will be unjust to them? In fact, it is they who are the ˹true˺ wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,138,'The only response of the ˹true˺ believers, when they are called to Allah and His Messenger so he may judge between them, is to say, “We hear and obey.” It is they who will ˹truly˺ succeed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,138,'For whoever obeys Allah and His Messenger, and fears Allah and is mindful of Him, then it is they who will ˹truly˺ triumph.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,138,'They swear by Allah their most solemn oaths that if you ˹O Prophet˺ were to command them, they would certainly march forth ˹in Allah’s cause˺. Say, “˹You˺ do not ˹have to˺ swear; your obedience is well known!” Surely Allah is All-Aware of what you do.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,138,'Say, “Obey Allah and obey the Messenger. But if you turn away, then he is only responsible for his duty and you are responsible for yours. And if you obey him, you will be ˹rightly˺ guided. The Messenger’s duty is only to deliver ˹the message˺ clearly.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,138,'Allah has promised those of you who believe and do good that He will certainly make them successors in the land, as He did with those before them; and will surely establish for them their faith which He has chosen for them; and will indeed change their fear into security—˹provided that˺ they worship Me, associating nothing with Me. But whoever disbelieves after this ˹promise˺, it is they who will be the rebellious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,138,'Moreover, establish prayer, pay alms-tax, and obey the Messenger, so you may be shown mercy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,138,'Do not think ˹O Prophet˺ that the disbelievers can escape in the land. The Fire will be their home. Indeed, what an evil destination!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,138,'O believers! Let those ˹bondspeople˺ in your possession and those of you who are still under age ask for your permission ˹to come in˺ at three times: before dawn prayer, when you take off your ˹outer˺ clothes at noon, and after the late evening prayer. ˹These are˺ three times of privacy for you. Other than these times, there is no blame on you or them to move freely, attending to one another. This is how Allah makes the revelations clear to you, for Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,138,'And when your children reach the age of puberty, let them seek permission ˹to come in˺, as their seniors do. This is how Allah makes His revelations clear to you, for Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,138,'As for elderly women past the age of marriage, there is no blame on them if they take off their ˹outer˺ garments, without revealing their adornments. But it is better for them if they avoid this ˹altogether˺. And Allah is All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,138,'There is no restriction on the blind, or the disabled, or the sick. Nor on yourselves if you eat from your homes, or the homes of your fathers, or your mothers, or your brothers, or your sisters, or your paternal uncles, or your paternal aunts, or your maternal uncles, or your maternal aunts, or from the homes in your trust, or ˹the homes of˺ your friends. There is no blame on you eating together or separately. However, when you enter houses, greet one another with a greeting ˹of peace˺ from Allah, blessed and good. This is how Allah makes His revelations clear to you, so perhaps you will understand.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,138,'The ˹true˺ believers are only those who believe in Allah and His Messenger, and when they are with him on a public matter, they do not leave without his permission. Indeed, those who ask your permission ˹O Prophet˺ are the ones who ˹truly˺ believe in Allah and His Messenger. So when they ask your permission for a private matter, grant permission to whoever you wish and ask Allah’s forgiveness for them. Surely Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,138,'Do not treat the Messenger’s summons to you ˹as lightly˺ as your summons to one another. Allah certainly knows those of you who slip away, hiding behind others. So let those who disobey his orders beware, for an affliction may befall them, or a painful torment may overtake them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,138,'Surely to Allah belongs whatever is in the heavens and the earth. He knows well what you stand for. And ˹on˺ the Day all will be returned to Him, He will inform them of what they did. For Allah has ˹perfect˺ knowledge of all things.');
+INSERT INTO chapters (id, number, quran_id) VALUES(139,25,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,139,'Blessed is the One Who sent down the Standard to His servant, so that he may be a warner to the whole world.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,139,'˹Allah is˺ the One to Whom belongs the kingdom of the heavens and the earth, Who has never had ˹any˺ offspring, nor does He have a partner in ˹governing˺ the kingdom. He has created everything, ordaining it precisely.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,139,'Yet they have taken besides Him gods who cannot create anything but are themselves created. Nor can they protect or benefit themselves. Nor can they control life, death, or resurrection.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,139,'The disbelievers say, “This ˹Quran˺ is nothing but a fabrication which he made up with the help of others.” Their claim is totally unjustified and untrue!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,139,'And they say, “˹These revelations are only˺ ancient fables which he has had written down, and they are rehearsed to him morning and evening.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,139,'Say, ˹O Prophet,˺ “This ˹Quran˺ has been revealed by the One Who knows the secrets of the heavens and the earth. Surely He is All-Forgiving, Most Merciful.” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,139,'And they say ˹mockingly˺, “What kind of messenger is this who eats food and goes about in market-places ˹for a living˺? If only an angel had been sent down with him to be his co-warner,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,139,'or a treasure had been cast down to him, or he had had a garden from which he may eat!” And the wrongdoers say ˹to the believers˺, “You are only following a bewitched man.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,139,'See ˹O Prophet˺ how they call you names! So they have gone so ˹far˺ astray that they cannot find the ˹Right˺ Way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,139,'Blessed is the One Who—if He wills—can give you far better than ˹all˺ that: gardens under which rivers flow, and palaces as well.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,139,'In fact, they deny the Hour. And for the deniers of the Hour, We have prepared a blazing Fire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,139,'Once it sees them from a distance, they will hear it fuming and growling.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,139,'And when they are tossed into a narrow place inside ˹Hell˺, chained together, then and there they will cry out for ˹instant˺ destruction.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,139,'˹They will be told,˺ “Do not cry only once for destruction, but cry many times over!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,139,'Say, ˹O Prophet,˺ “Is this better or the Garden of Eternity which the righteous have been promised, as a reward and ˹an ultimate˺ destination?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,139,'There they will have whatever they wish for, forever. That is a promise ˹to be sought after˺, binding on your Lord.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,139,'˹Watch for˺ the Day He will gather them along with what they used to worship besides Allah, and ask ˹the objects of worship˺, “Was it you who misled these servants of Mine, or did they stray from the Way ˹on their own˺?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,139,'They will say, “Glory be to You! It was not right for ˹others like˺ us to take any lords besides You, but You allowed enjoyment for them and their forefathers ˹for so long˺ that they forgot ˹Your˺ remembrance and became a doomed people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,139,'˹The doomed will be told˺, “Your gods have clearly denied your claims. So now you can neither ward off ˹the punishment˺ nor get any help.” And whoever of you does wrong, We will make them taste a horrible punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,139,'We never sent any messenger before you ˹O Prophet˺, who did not eat food and go about in market-places. We have made some of you a trial for others. Will you ˹not then˺ be patient? And your Lord is All-Seeing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,139,'Those who do not expect to meet Us say, “If only the angels were sent down to us, or we could see our Lord!” They have certainly been carried away by their arrogance and have entirely exceeded all limits.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,139,'˹But˺ on the Day they will see the angels, there will be no good news for the wicked, who will cry, “Keep away! Away ˹from us˺!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,139,'Then We will turn to whatever ˹good˺ deeds they did, reducing them to scattered dust.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,139,'˹But˺ on that Day the residents of Paradise will have the best settlement and the finest place to rest.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,139,'˹Watch for˺ the Day the heavens will burst with clouds, and the angels will be sent down in successive ranks.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,139,'True authority on that Day will belong ˹only˺ to the Most Compassionate. And it will be a hard day for the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,139,'And ˹beware of˺ the Day the wrongdoer will bite his nails ˹in regret˺ and say, “Oh! I wish I had followed the Way along with the Messenger!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,139,'Woe to me! I wish I had never taken so-and-so as a close friend.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,139,'It was he who truly made me stray from the Reminder after it had reached me.” And Satan has always betrayed humanity.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,139,'The Messenger has cried, “O my Lord! My people have indeed received this Quran with neglect.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,139,'Similarly, We made enemies for every prophet from among the wicked, but sufficient is your Lord as a Guide and Helper.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,139,'The disbelievers say, “If only the Quran had been sent down to him all at once!” ˹We have sent it˺ as such ˹in stages˺ so We may reassure your heart with it. And We have revealed it at a deliberate pace.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,139,'Whenever they bring you an argument, We come to you with the right refutation and the best explanation.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,139,'Those who will be dragged into Hell on their faces will be in the worst place, and are ˹now˺ farthest from the ˹Right˺ Way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,139,'We certainly gave Moses the Book and appointed his brother Aaron as his helper.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,139,'We had ordered ˹them˺, “Go to the people who would deny Our signs.” Then We annihilated the deniers entirely.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,139,'And when the people of Noah rejected the messengers, We drowned them, making them an example to humanity. And We have prepared a painful punishment for the wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,139,'Also ˹We destroyed˺ ’Ȃd, Thamûd, and the people of the Water-pit, as well as many peoples in between.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,139,'For each We set forth ˹various˺ lessons, and We ultimately destroyed each.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,139,'They have certainly passed by the city ˹of Sodom˺, which had been showered with a dreadful rain ˹of stones˺. Have they not seen its ruins? But they do not expect to be resurrected.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,139,'When they see you ˹O Prophet˺, they only make fun of you, ˹saying,˺ “Is this the one that Allah has sent as a messenger?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,139,'He would have almost tricked us away from our gods, had we not been so devoted to them.” ˹But˺ soon they will know, when they face the punishment, who is far astray from the ˹Right˺ Way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,139,'Have you seen ˹O Prophet˺ the one who has taken their own desires as their god? Will you then be a keeper over them?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,139,'Or do you think that most of them listen or understand? They are only like cattle—no, more than that, they are astray from the ˹Right˺ Way! ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,139,'Have you not seen how your Lord extends the shade—He could have simply made it ˹remain˺ still if He so willed—then We make the sun its guide,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,139,'causing the shade to retreat gradually? ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,139,'He is the One Who has made the night for you as a cover, and ˹made˺ sleep for resting, and the day for rising.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,139,'And He is the One Who sends the winds ushering in His mercy, and We send down pure rain from the sky,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,139,'giving life to a lifeless land, and providing water for countless animals and humans of Our Own creation.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,139,'We certainly disperse it among them so they may be mindful, but most people persist in ungratefulness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,139,'Had We willed, We could have easily sent a warner to every society.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,139,'So do not yield to the disbelievers, but strive diligently against them with this ˹Quran˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,139,'And He is the One Who merges the two bodies of water: one fresh and palatable and the other salty and bitter, placing between them a barrier they cannot cross. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,139,'And He is the One Who creates human beings from a ˹humble˺ liquid, then establishes for them bonds of kinship and marriage. For your Lord is Most Capable.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,139,'Yet they worship besides Allah what can neither benefit nor harm them. And the disbeliever always collaborates against their Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,139,'And We have sent you ˹O Prophet˺ only as a deliverer of good news and a warner.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,139,'Say, “I do not ask you for any reward for this ˹message˺, but whoever wishes, let them pursue the Way to their Lord.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,139,'Put your trust in the Ever-Living, Who never dies, and glorify His praises. Sufficient is He as All-Aware of the sins of His servants.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,139,'˹He is˺ the One Who created the heavens and the earth and everything in between in six Days, then established Himself on the Throne. ˹He is˺ the Most Compassionate! Ask ˹none other than˺ the All-Knowledgeable about Himself.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,139,'When it is said to them, “Prostrate to the Most Compassionate,” they ask ˹in disgust˺, “What is ‘the Most Compassionate’? Will we prostrate to whatever you order us to?” And it only drives them farther away.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,139,'Blessed is the One Who has placed constellations in the sky, as well as a ˹radiant˺ lamp and a luminous moon.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,139,'And He is the One Who causes the day and the night to alternate, ˹as a sign˺ for whoever desires to be mindful or to be grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,139,'The ˹true˺ servants of the Most Compassionate are those who walk on the earth humbly, and when the foolish address them ˹improperly˺, they only respond with peace.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,139,'˹They are˺ those who spend ˹a good portion of˺ the night, prostrating themselves and standing before their Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,139,'˹They are˺ those who pray, “Our Lord! Keep the punishment of Hell away from us, for its punishment is indeed unrelenting.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,139,'It is certainly an evil place to settle and reside.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,139,'˹They are˺ those who spend neither wastefully nor stingily, but moderately in between.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,139,'˹They are˺ those who do not invoke any other god besides Allah, nor take a ˹human˺ life—made sacred by Allah—except with ˹legal˺ right, nor commit fornication. And whoever does ˹any of˺ this will face the penalty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,139,'Their punishment will be multiplied on the Day of Judgment, and they will remain in it forever, in disgrace.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,139,'As for those who repent, believe, and do good deeds, they are the ones whose evil deeds Allah will change into good deeds. For Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,139,'And whoever repents and does good has truly turned to Allah properly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,139,'˹They are˺ those who do not bear false witness, and when they come across falsehood, they pass ˹it˺ by with dignity.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,139,'˹They are˺ those who, when reminded of the revelation of their Lord, do not turn a blind eye or a deaf ear to it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,139,'˹They are˺ those who pray, “Our Lord! Bless us with ˹pious˺ spouses and offspring who will be the joy of our hearts, and make us models for the righteous.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,139,'It is they who will be rewarded with ˹elevated˺ mansions ˹in Paradise˺ for their perseverance, and will be received with salutations and ˹greetings of˺ peace,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,139,'staying there forever. What an excellent place to settle and reside!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,139,'Say, ˹O Prophet,˺ “You ˹all˺ would not ˹even˺ matter to my Lord were it not for your faith ˹in Him˺. But now you ˹disbelievers˺ have denied ˹the truth˺, so the torment is bound to come.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(140,26,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,140,'Ṭâ-Sĩn-Mĩm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,140,'These are the verses of the clear Book.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,140,'Perhaps you ˹O Prophet˺ will grieve yourself to death over their disbelief.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,140,'If We willed, We could send down upon them a ˹compelling˺ sign from the heavens, leaving their necks bent in ˹utter˺ submission to it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,140,'Whatever new reminder comes to them from the Most Compassionate, they always turn away from it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,140,'They have certainly denied ˹the truth˺, so they will soon face the consequences of their ridicule.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,140,'Have they failed to look at the earth, ˹to see˺ how many types of fine plants We have caused to grow in it?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,140,'Surely in this is a sign. Yet most of them would not believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,140,'And your Lord is certainly the Almighty, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,140,'˹Remember˺ when your Lord called out to Moses, “Go to the wrongdoing people—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,140,'the people of Pharaoh. Will they not fear ˹Allah˺?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,140,'He replied, “My Lord! I fear that they will reject me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,140,'And ˹so˺ my heart will be broken and my tongue will be tied. So send Aaron along ˹as a messenger˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,140,'Also, they have a charge against me, so I fear they may kill me.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,140,'Allah responded, “Certainly not! So go, both of you, with Our signs. We will be with you, listening.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,140,'Go to Pharaoh and say, ‘We are messengers from the Lord of all worlds,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,140,'˹commanded to say:˺ ‘Let the Children of Israel go with us.’’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,140,'Pharaoh protested, “Did we not raise you among us as a child, and you stayed several years of your life in our care?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,140,'Then you did what you did, being ˹utterly˺ ungrateful!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,140,'Moses replied, “I did it then, lacking guidance.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,140,'So I fled from you when I feared you. Then my Lord granted me wisdom and made me one of the messengers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,140,'How can that be a ‘favour,’ of which you remind me, when ˹it was only because˺ you ˹have˺ enslaved the Children of Israel?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,140,'Pharaoh asked, “And what is ‘the Lord of all worlds’?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,140,'Moses replied, “˹He is˺ the Lord of the heavens and the earth and everything in between, if only you had sure faith.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,140,'Pharaoh said to those around him, “Did you hear ˹what he said˺?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,140,'Moses added, “˹He is˺ your Lord and the Lord of your forefathers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,140,'Pharaoh said ˹mockingly˺, “Your messenger, who has been sent to you, must be insane.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,140,'Moses responded: “˹He is˺ the Lord of the east and west, and everything in between, if only you had any sense.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,140,'Pharaoh threatened, “If you take any other god besides me, I will certainly have you imprisoned.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,140,'Moses responded, “Even if I bring you a clear proof?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,140,'Pharaoh demanded, “Bring it then, if what you say is true.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,140,'So he threw down his staff and—behold!—it became a real snake.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,140,'Then he drew his hand ˹out of his collar˺ and it was ˹shining˺ white for all to see.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,140,'Pharaoh said to the chiefs around him, “He is indeed a skilled magician,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,140,'who seeks to drive you from your land by his magic. So what do you propose?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,140,'They replied, “Let him and his brother wait and dispatch mobilizers to all cities');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,140,'to bring you every skilled magician.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,140,'So the magicians were assembled at the set time on the appointed day.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,140,'And the people were asked, “Will you join the gathering,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,140,'so that we may follow the magicians if they prevail?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,140,'When the magicians came, they asked Pharaoh, “Shall we have a ˹suitable˺ reward if we prevail?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,140,'He replied, “Yes, and you will then certainly be among those closest to me.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,140,'Moses said to them, “Cast whatever you wish to cast.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,140,'So they cast down their ropes and staffs, saying, “By Pharaoh’s might, it is we who will surely prevail.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,140,'Then Moses threw down his staff, and—behold!—it devoured the objects of their illusion!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,140,'So the magicians fell down, prostrating.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,140,'They declared, “We ˹now˺ believe in the Lord of all worlds—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,140,'the Lord of Moses and Aaron.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,140,'Pharaoh threatened, “How dare you believe in him before I give you permission? He must be your master who taught you magic, but soon you will see. I will certainly cut off your hands and feet on opposite sides, then crucify you all.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,140,'They responded, “˹That would be˺ no harm! Surely to our Lord we will ˹all˺ return.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,140,'We really hope that our Lord will forgive our sins, as we are the first to believe.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,140,'And We inspired Moses, ˹saying,˺ “Leave with My servants at night, for you will surely be pursued.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,140,'Then Pharaoh sent mobilizers to all cities,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,140,'˹and said,˺ “These ˹outcasts˺ are just a handful of people,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,140,'who have really enraged us,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,140,'but we are all on the alert.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,140,'So We lured the tyrants out of ˹their˺ gardens, springs,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,140,'treasures, and splendid residences.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,140,'So it was. And We awarded it ˹all˺ to the Children of Israel.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,140,'And so they pursued them at sunrise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,140,'When the two groups came face to face, the companions of Moses cried out, “We are overtaken for sure.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,140,'Moses reassured ˹them˺, “Absolutely not! My Lord is certainly with me—He will guide me.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,140,'So We inspired Moses: “Strike the sea with your staff,” and the sea was split, each part was like a huge mountain.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,140,'We drew the pursuers to that place,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,140,'and delivered Moses and those with him all together.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,140,'Then We drowned the others.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,140,'Surely in this is a sign. Yet most of them would not believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,140,'And your Lord is certainly the Almighty, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,140,'Relate to them ˹O Prophet˺ the story of Abraham,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,140,'when he questioned his father and his people, “What is that you worship ˹besides Allah˺?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,140,'They replied, “We worship idols, to which we are fully devoted.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,140,'Abraham asked, “Can they hear you when you call upon them?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,140,'Or can they benefit or harm you?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,140,'They replied, “No! But we found our forefathers doing the same.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,140,'Abraham responded, “Have you ˹really˺ considered what you have been worshipping—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,140,'you and your ancestors?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,140,'They are ˹all˺ enemies to me, except the Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,140,'˹He is˺ the One Who created me, and He ˹alone˺ guides me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,140,'˹He is˺ the One Who provides me with food and drink.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,140,'And He ˹alone˺ heals me when I am sick.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,140,'And He ˹is the One Who˺ will cause me to die, and then bring me back to life.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,140,'And He is ˹the One˺ Who, I hope, will forgive my flaws on Judgment Day.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,140,'“My Lord! Grant me wisdom, and join me with the righteous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,140,'Bless me with honourable mention among later generations.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,140,'Make me one of those awarded the Garden of Bliss.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,140,'Forgive my father, for he is certainly one of the misguided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,140,'And do not disgrace me on the Day all will be resurrected—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,140,'the Day when neither wealth nor children will be of any benefit.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,140,'Only those who come before Allah with a pure heart ˹will be saved˺.” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,140,'˹On that Day˺ Paradise will be brought near to the God-fearing,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,140,'and the Hellfire will be displayed to the deviant.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,140,'And it will be said to them, “Where are those you used to worship');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,140,'besides Allah? Can they help you or even help themselves?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,140,'Then the idols will be hurled headlong into Hell, along with the deviant');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,140,'and the soldiers of Iblîs, all together.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,140,'There the deviant will cry while disputing with their idols,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,140,'“By Allah! We were clearly mistaken,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,140,'when we made you equal to the Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,140,'And none led us astray other than the wicked.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,2,140,'Now we have none to intercede for us,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,2,140,'nor a close friend.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,2,140,'If only we could have a second chance, then we would be believers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,2,140,'Surely in this is a sign. Yet most of them would not believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,2,140,'And your Lord is certainly the Almighty, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,2,140,'The people of Noah rejected the messengers');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,2,140,'when their brother Noah said to them, “Will you not fear ˹Allah˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,2,140,'I am truly a trustworthy messenger to you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,2,140,'So fear Allah, and obey me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,2,140,'I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,2,140,'So fear Allah, and obey me.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,2,140,'They argued, “How can we believe in you, when you are followed ˹only˺ by the lowest of the low?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,2,140,'He responded, “And what knowledge do I have of what they do?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,2,140,'Their judgment is with my Lord, if you had any sense!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,2,140,'I am not going to expel the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,2,140,'I am only sent with a clear warning.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,2,140,'They threatened, “If you do not desist, O Noah, you will surely be stoned ˹to death˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,2,140,'Noah prayed, “My Lord! My people have truly rejected me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,2,140,'So judge between me and them decisively, and save me and the believers with me.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,2,140,'So We saved him and those with him in the fully loaded Ark.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,2,140,'Then afterwards We drowned the rest.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,2,140,'Surely in this is a sign. Yet most of them would not believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,2,140,'And your Lord is certainly the Almighty, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,2,140,'The people of ’Âd rejected the messengers');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,2,140,'when their brother Hûd said to them, “Will you not fear ˹Allah˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,2,140,'I am truly a trustworthy messenger to you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,2,140,'So fear Allah, and obey me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,2,140,'I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,2,140,'˹Why˺ do you build a landmark on every high place in vanity,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,2,140,'and construct castles, as if you are going to live forever,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,2,140,'and act so viciously when you attack ˹others˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,2,140,'So fear Allah, and obey me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,2,140,'Fear the One Who has provided you with ˹the good˺ things you know:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,2,140,'He provided you with cattle, and children,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,2,140,'and gardens, and springs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,2,140,'I truly fear for you the torment of a tremendous day.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,2,140,'They responded, “It is all the same to us whether you warn ˹us˺ or not.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,2,140,'This is simply the tradition of our predecessors.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,2,140,'And we will never be punished.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,2,140,'So they rejected him, and ˹so˺ We destroyed them. Surely in this is a sign. Yet most of them would not believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,2,140,'And your Lord is certainly the Almighty, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,2,140,'The people of Thamûd rejected the messengers');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,2,140,'when their brother Ṣâliḥ said to them, “Will you not fear ˹Allah˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,2,140,'I am truly a trustworthy messenger to you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,2,140,'So fear Allah, and obey me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,2,140,'I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,2,140,'Do you think you will be ˹forever˺ left secure in what you have here:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,2,140,'amid gardens and springs,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,2,140,'and ˹various˺ crops, and palm trees ˹loaded˺ with tender fruit;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,2,140,'to carve homes in the mountains with great skill?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,2,140,'So fear Allah, and obey me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,2,140,'And do not follow the command of the transgressors,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,2,140,'who spread corruption throughout the land, never setting things right.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,2,140,'They replied, “You are simply bewitched!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,2,140,'You are only a human being like us, so bring forth a sign if what you say is true.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,2,140,'Ṣâliḥ said, “Here is a camel. She will have her turn to drink as you have yours, each on an appointed day.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,2,140,'And do not ever touch her with harm, or you will be overtaken by the torment of a tremendous day.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,2,140,'But they killed her, becoming regretful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,2,140,'So the punishment overtook them. Surely in this is a sign. Yet most of them would not believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,2,140,'And your Lord is certainly the Almighty, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,2,140,'The people of Lot rejected the messengers');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,2,140,'when their brother Lot said to them, “Will you not fear ˹Allah˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,2,140,'I am truly a trustworthy messenger to you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,2,140,'So fear Allah, and obey me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,2,140,'I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,2,140,'Why do you ˹men˺ lust after fellow men,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,2,140,'leaving the wives that your Lord has created for you? In fact, you are a transgressing people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,2,140,'They threatened, “If you do not desist, O Lot, you will surely be expelled.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,2,140,'Lot responded, “I am truly one of those who despise your ˹shameful˺ practice.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,2,140,'My Lord! Save me and my family from ˹the consequences of˺ what they do.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,2,140,'So We saved him and all of his family,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,2,140,'except an old woman, who was one of the doomed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,2,140,'Then We utterly destroyed the rest,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,2,140,'pouring upon them a rain ˹of brimstone˺. How evil was the rain of those who had been warned!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,2,140,'Surely in this is a sign. Yet most of them would not believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,2,140,'And your Lord is certainly the Almighty, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,2,140,'The residents of the Forest rejected the messengers');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,2,140,'when Shu’aib said to them, “Will you not fear ˹Allah˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,2,140,'I am truly a trustworthy messenger to you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,2,140,'So fear Allah, and obey me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,2,140,'I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,2,140,'Give full measure, and cause no loss ˹to others˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,2,140,'Weigh with an even balance,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(183,2,140,'and do not defraud people of their property. Nor go about spreading corruption in the land.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(184,2,140,'And fear the One Who created you and ˹all˺ earlier peoples.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(185,2,140,'They replied, “You are simply bewitched!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(186,2,140,'Also, you are only a human being like us, and we think you are indeed a liar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(187,2,140,'So cause ˹deadly˺ pieces of the sky to fall upon us, if what you say is true.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(188,2,140,'Shu’aib responded, “My Lord knows best whatever you do.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(189,2,140,'So they rejected him, and ˹so˺ were overtaken by the torment of the day of the ˹deadly˺ cloud. That was really a torment of a tremendous day.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(190,2,140,'Surely in this is a sign. Yet most of them would not believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(191,2,140,'And your Lord is certainly the Almighty, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(192,2,140,'This is certainly a revelation from the Lord of all worlds,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(193,2,140,'which the trustworthy spirit ˹Gabriel˺ brought down');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(194,2,140,'into your heart ˹O Prophet˺—so that you may be one of the warners—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(195,2,140,'in a clear Arabic tongue.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(196,2,140,'And it has indeed been ˹foretold˺ in the Scriptures of those before.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(197,2,140,'Was it not sufficient proof for the deniers that it has been recognized by the knowledgeable among the Children of Israel?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(198,2,140,'Had We revealed it to a non-Arab,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(199,2,140,'who would then recite it to the deniers ˹in fluent Arabic˺, still they would not have believed in it!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(200,2,140,'This is how We allow denial ˹to steep˺ into the hearts of the wicked.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(201,2,140,'They will not believe in it until they see the painful punishment,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(202,2,140,'which will take them by surprise when they least expect ˹it˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(203,2,140,'Then they will cry, “Can we be allowed more time?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(204,2,140,'Do they ˹really˺ seek to hasten Our torment?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(205,2,140,'Imagine ˹O Prophet˺ if We allowed them enjoyment for years,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(206,2,140,'then there came to them what they had been threatened with:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(207,2,140,'would that enjoyment be of any benefit to them ˹at all˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(208,2,140,'We have never destroyed a society without warners');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(209,2,140,'to remind ˹them˺, for We would never wrong ˹anyone˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(210,2,140,'It was not the devils who brought this ˹Quran˺ down:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(211,2,140,'it is not for them ˹to do so˺, nor can they,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(212,2,140,'for they are strictly barred from ˹even˺ overhearing ˹it˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(213,2,140,'So do not ever call upon any other god besides Allah, or you will be one of the punished.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(214,2,140,'And warn ˹all, starting with˺ your closest relatives,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(215,2,140,'and be gracious to the believers who follow you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(216,2,140,'But if they disobey you, say, “I am certainly free of what you do.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(217,2,140,'Put your trust in the Almighty, Most Merciful,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(218,2,140,'Who sees you when you rise ˹for prayer at night˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(219,2,140,'as well as your movements ˹in prayer˺ along with ˹fellow˺ worshippers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(220,2,140,'He ˹alone˺ is indeed the All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(221,2,140,'Shall I inform you of whom the devils ˹actually˺ descend upon?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(222,2,140,'They descend upon every sinful liar,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(223,2,140,'who gives an ˹attentive˺ ear ˹to half-truths˺, mostly passing on sheer lies. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(224,2,140,'As for poets, they are followed ˹merely˺ by deviants.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(225,2,140,'Do you not see how they rant in every field,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(226,2,140,'only saying what they never do?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(227,2,140,'Except those who believe, do good, remember Allah often, and ˹poetically˺ avenge ˹the believers˺ after being wrongfully slandered. The wrongdoers will come to know what ˹evil˺ end they will meet.');
+INSERT INTO chapters (id, number, quran_id) VALUES(141,27,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,141,'Ṭâ-Sĩn. These are the verses of the Quran; the clear Book.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,141,'˹It is˺ a guide and good news for the believers:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,141,'˹those˺ who establish prayer, pay alms-tax, and have sure faith in the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,141,'As for those who do not believe in the Hereafter, We have certainly made their ˹evil˺ deeds appealing to them, so they wander blindly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,141,'It is they who will suffer a dreadful torment, and in the Hereafter they will ˹truly˺ be the greatest losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,141,'And indeed, you ˹O Prophet˺ are receiving the Quran from the One ˹Who is˺ All-Wise, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,141,'˹Remember˺ when Moses said to his family, “I have spotted a fire. I will either bring you some directions from there, or a burning torch so you may warm yourselves.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,141,'But when he came to it, he was called ˹by Allah˺, “Blessed is the one at the fire, and whoever is around it! Glory be to Allah, the Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,141,'O Moses! It is truly I. I am Allah—the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,141,'Now, throw down your staff!” But when he saw it slithering like a snake, he ran away without looking back. ˹Allah reassured him,˺ “O Moses! Do not be afraid! Messengers should have no fear in My presence.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,141,'˹Fear is˺ only for those who do wrong. But if they later mend ˹their˺ evil ˹ways˺ with good, then I am certainly All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,141,'Now put your hand through ˹the opening of˺ your collar, it will come out ˹shining˺ white, unblemished. ˹These are two˺ of nine signs for Pharaoh and his people. They have truly been a rebellious people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,141,'But when Our enlightening signs came to them, they said, “This is pure magic.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,141,'And, although their hearts were convinced the signs were true, they still denied them wrongfully and arrogantly. See then what was the end of the corruptors!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,141,'Indeed, We granted knowledge to David and Solomon. And they said ˹in acknowledgment˺, “All praise is for Allah Who has privileged us over many of His faithful servants.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,141,'And David was succeeded by Solomon, who said, “O people! We have been taught the language of birds, and been given everything ˹we need˺. This is indeed a great privilege.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,141,'Solomon’s forces of jinn, humans, and birds were rallied for him, perfectly organized.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,141,'And when they came across a valley of ants, an ant warned, “O ants! Go quickly into your homes so Solomon and his armies do not crush you, unknowingly.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,141,'So Solomon smiled in amusement at her words, and prayed, “My Lord! Inspire me to ˹always˺ be thankful for Your favours which You have blessed me and my parents with, and to do good deeds that please you. Admit me, by Your mercy, into ˹the company of˺ Your righteous servants.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,141,'˹One day˺ he inspected the birds, and wondered, “Why is it that I cannot see the hoopoe? Or could he be absent?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,141,'I will surely subject him to a severe punishment, or ˹even˺ slaughter him, unless he brings me a compelling excuse.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,141,'It was not long before the bird came and said, “I have found out something you do not know. I have just come to you from Sheba with sure news.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,141,'Indeed, I found a woman ruling over them, who has been given everything ˹she needs˺, and who has a magnificent throne.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,141,'I found her and her people prostrating to the sun instead of Allah. For Satan has made their deeds appealing to them—hindering them from the ˹Right˺ Way and leaving them unguided—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,141,'so they do not prostrate to Allah, Who brings forth what is hidden in the heavens and the earth, and knows what you ˹all˺ conceal and what you reveal.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,141,'˹He is˺ Allah! There is no god ˹worthy of worship˺ except Him, the Lord of the Mighty Throne.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,141,'Solomon said, “We will see whether you are telling the truth or lying.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,141,'Go with this letter of mine and deliver it to them, then stand aside and see how they will respond.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,141,'The Queen ˹later˺ announced, “O chiefs! Indeed, a noble letter has been delivered to me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,141,'It is from Solomon, and it reads: ‘In the Name of Allah—the Most Compassionate, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,141,'Do not be arrogant with me, but come to me, fully submitting ˹to Allah˺.’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,141,'She said, “O chiefs! Advise me in this matter of mine, for I would never make any decision without you.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,141,'They responded, “We are a people of strength and great ˹military˺ might, but the decision is yours, so decide what you will command.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,141,'She reasoned, “Indeed, when kings invade a land, they ruin it and debase its nobles. They really do so!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,141,'But I will certainly send him a gift, and see what ˹response˺ my envoys will return with.” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,141,'When the chief-envoy came to him, Solomon said, “Do you offer me wealth? What Allah has granted me is far greater than what He has granted you. No! It is you who rejoice in ˹receiving˺ gifts.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,141,'Go back to them, for we will certainly mobilize against them forces which they can never resist, and we will drive them out from there in disgrace, fully humbled.” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,141,'Solomon asked, “O chiefs! Which of you can bring me her throne before they come to me in ˹full˺ submission?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,141,'One mighty jinn responded, “I can bring it to you before you rise from this council of yours. And I am quite strong and trustworthy for this ˹task˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,141,'But the one who had knowledge of the Scripture said, “I can bring it to you in the blink of an eye.” So when Solomon saw it placed before him, he exclaimed, “This is by the grace of my Lord to test me whether I am grateful or ungrateful. And whoever is grateful, it is only for their own good. But whoever is ungrateful, surely my Lord is Self-Sufficient, Most Generous.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,141,'˹Then˺ Solomon said, “Disguise her throne for her so we may see whether she will recognize ˹it˺ or she will not be able to.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,141,'So when she arrived, it was said ˹to her˺, “Is your throne like this?” She replied, “It looks to be the same. We have ˹already˺ received knowledge ˹of Solomon’s prophethood˺ before this ˹miracle˺, and have submitted ˹to Allah˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,141,'But she had been hindered by what she used to worship instead of Allah, for she was indeed from a disbelieving people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,141,'Then she was told, “Enter the palace.” But when she saw the hall, she thought it was a body of water, so she bared her legs. Solomon said. “It is just a palace paved with crystal.” ˹At last˺ she declared, “My Lord! I have certainly wronged my soul. Now I ˹fully˺ submit myself along with Solomon to Allah, the Lord of all worlds.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,141,'And We certainly sent to the people of Thamûd their brother Ṣâliḥ, proclaiming, “Worship Allah,” but they suddenly split into two opposing groups.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,141,'He urged ˹the disbelieving group˺, “O my people! Why do you ˹seek to˺ hasten the torment rather than grace? If only you sought Allah’s forgiveness so you may be shown mercy!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,141,'They replied, “You and your followers are a bad omen for us.” He responded, “Your omens are destined by Allah. In fact, you are ˹only˺ a people being tested.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,141,'And there were in the city nine ˹elite˺ men who spread corruption in the land, never doing what is right.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,141,'They vowed, “Let us swear by Allah that we will take him and his family down by night. Then we will certainly say to his ˹closest˺ heirs, ‘We did not witness the murder of his family. We are definitely telling the truth.’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,141,'And ˹so˺ they made a plan, but We too made a plan, while they were unaware.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,141,'See then what the consequences of their plan were: We ˹utterly˺ destroyed them and their people all together.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,141,'So their homes are there, ˹but completely˺ ruined because of their wrongdoing. Surely in this is a lesson for people of knowledge.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,141,'And We delivered those who were faithful and were mindful ˹of Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,141,'And ˹remember˺ Lot, when he rebuked ˹the men of˺ his people, “Do you commit that shameful deed while you can see ˹one another˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,141,'Do you really lust after men instead of women? In fact, you are ˹only˺ a people acting ignorantly.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,141,'But his people’s only response was to say, “Expel Lot’s followers from your land! They are a people who wish to remain chaste!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,141,'So We delivered him and his family, except his wife. We had destined her to be one of the doomed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,141,'And We poured upon them a rain ˹of brimstone˺. How evil was the rain of those who had been warned!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,141,'Say, ˹O Prophet,˺ “Praise be to Allah, and peace be upon the servants He has chosen.” ˹Ask the disbelievers,˺ “Which is better: Allah or whatever ˹gods˺ they associate ˹with Him˺?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,141,'Or ˹ask them,˺ “Who created the heavens and the earth, and sends down rain for you from the sky, by which We cause delightful gardens to grow? You could never cause their trees to grow. Was it another god besides Allah?” Absolutely not! But they are a people who set up equals ˹to Allah˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,141,'Or ˹ask them,˺ “Who made the earth a place of settlement, caused rivers to flow through it, placed firm mountains upon it, and set a barrier between ˹fresh and salt˺ bodies of water? Was it another god besides Allah?” Absolutely not! But most of them do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,141,'Or ˹ask them,˺ “Who responds to the distressed when they cry to Him, relieving ˹their˺ affliction, and ˹Who˺ makes you successors in the earth? Is it another god besides Allah? Yet you are hardly mindful!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,141,'Or ˹ask them,˺ “Who guides you in the darkness of the land and sea, and sends the winds ushering in His mercy? Is it another god besides Allah? Exalted is Allah above what they associate ˹with Him˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,141,'Or ˹ask them,˺ “Who originates the creation then resurrects it, and gives you provisions from the heavens and the earth? Is it another god besides Allah?” Say, ˹O Prophet,˺ “Show ˹me˺ your proof, if what you say is true.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,141,'Say, ˹O Prophet,˺ “None in the heavens and the earth has knowledge of the unseen except Allah. Nor do they know when they will be resurrected.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,141,'No! Their knowledge of the Hereafter amounts to ignorance. In fact, they are in doubt about it. In truth, they are ˹totally˺ blind to it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,141,'The disbelievers ask, “When we and our fathers are reduced to dust, will we really be brought forth ˹alive˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,141,'We have already been promised this, as well as our forefathers earlier. This is nothing but ancient fables!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,141,'Say, ˹O Prophet,˺ “Travel throughout the land and see the fate of the wicked.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,141,'Do not grieve for them, nor be distressed by their schemes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,141,'They ask ˹the believers˺, “When will this threat come to pass, if what you say is true?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,141,'Say, ˹O Prophet,˺ “Perhaps some of what you seek to hasten is close at hand.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,141,'Surely your Lord is ever Bountiful to humanity, but most of them are ungrateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,141,'And surely your Lord knows what their hearts conceal and what they reveal.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,141,'For there is nothing hidden in the heavens or the earth without being ˹written˺ in a perfect Record. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,141,'Indeed, this Quran clarifies for the Children of Israel most of what they differ over.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,141,'And it is truly a guide and mercy for the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,141,'Your Lord will certainly judge between them by His justice, for He is the Almighty, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,141,'So put your trust in Allah, for you are surely upon the ˹Path of˺ clear truth.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,141,'You certainly cannot make the dead hear ˹the truth˺. Nor can you make the deaf hear the call when they turn their backs and walk away.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,141,'Nor can you lead the blind out of their misguidance. You can make none hear ˹the truth˺ except those who believe in Our revelations, ˹fully˺ submitting ˹to Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,141,'And when the decree ˹of the Hour˺ comes to pass against them, We will bring forth for them a beast from the earth, telling them that the people had no sure faith in Our revelations.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,141,'˹Watch for˺ the Day We will gather from every faith-community a group of those who denied Our revelations, and they will be driven in ranks.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,141,'When they ˹finally˺ come before their Lord, He will ask ˹them˺, “Did you deny My revelations without ˹even˺ comprehending them? Or what ˹exactly˺ did you do?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,141,'And the decree ˹of torment˺ will be justified against them for their wrongdoing, leaving them speechless.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,141,'Do they not see that We made the night for them to rest in and the day bright? Surely in this are signs for those who believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,141,'And ˹beware of˺ the Day the Trumpet will be blown, and all those in the heavens and all those on the earth will be horrified ˹to the point of death˺, except those Allah wills ˹to spare˺. And all will come before Him, fully humbled.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,141,'Now you see the mountains, thinking they are firmly fixed, but they are travelling ˹just˺ like clouds. ˹That is˺ the design of Allah, Who has perfected everything. Surely He is All-Aware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,141,'Whoever comes with a good deed will be rewarded with what is better, and they will be secure from the horror on that Day.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,141,'And whoever comes with an evil deed will be hurled face-first into the Fire. Are you rewarded except for what you used to do?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,141,'Say, ˹O Prophet,˺ “I have only been commanded to worship the Lord of this city ˹of Mecca˺, Who has made it sacred, and to Him belongs everything. And I am commanded to be one of those who ˹fully˺ submit ˹to Him˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,141,'and to recite the Quran.” Then whoever chooses to be guided, it is only for their own good. But whoever chooses to stray, say, ˹O Prophet,˺ “I am only a warner.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,141,'And say, “All praise is for Allah! He will show you His signs, and you will recognize them. And your Lord is never unaware of what you do.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(142,28,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,142,'Ṭâ-Sĩn-Mĩm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,142,'These are the verses of the clear Book.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,142,'We narrate to you ˹O Prophet˺ part of the story of Moses and Pharaoh in truth for people who believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,142,'Indeed, Pharaoh ˹arrogantly˺ elevated himself in the land and divided its people into ˹subservient˺ groups, one of which he persecuted, slaughtering their sons and keeping their women. He was truly one of the corruptors.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,142,'But it was Our Will to favour those who were oppressed in the land, making them models ˹of faith˺ as well as successors;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,142,'and to establish them in the land; and through them show Pharaoh, Hamân, and their soldiers ˹the fulfilment of˺ what they feared. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,142,'We inspired the mother of Moses: “Nurse him, but when you fear for him, put him then into the river, and do not fear or grieve. We will certainly return him to you, and make him one of the messengers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,142,'And ˹it so happened that˺ Pharaoh’s people picked him up, only to become their enemy and source of grief. Surely Pharaoh, Hamân, and their soldiers were sinful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,142,'Pharaoh’s wife said ˹to him˺, “˹This baby is˺ a source of joy for me and you. Do not kill him. Perhaps he may be useful to us or we may adopt him as a son.” They were unaware ˹of what was to come˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,142,'And the heart of Moses’ mother ached so much that she almost gave away his identity, had We not reassured her heart in order for her to have faith ˹in Allah’s promise˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,142,'And she said to his sister, “Keep track of him!” So she watched him from a distance, while they were unaware.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,142,'And We had caused him to refuse all wet-nurses at first, so his sister suggested, “Shall I direct you to a family who will bring him up for you and take good care of him?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,142,'This is how We returned him to his mother so that her heart would be put at ease, and not grieve, and that she would know that Allah’s promise is ˹always˺ true. But most people do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,142,'And when he reached full strength and maturity, We gave him wisdom and knowledge. This is how We reward the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,142,'˹One day˺ he entered the city unnoticed by its people. There he found two men fighting: one of his own people, and the other of his enemies. The man from his people called to him for help against his foe. So Moses punched him, causing his death. Moses cried, “This is from Satan’s handiwork. He is certainly a sworn, misleading enemy.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,142,'He pleaded, “My Lord! I have definitely wronged my soul, so forgive me.” So He forgave him, ˹for˺ He is indeed the All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,142,'Moses pledged, “My Lord! For all Your favours upon me, I will never side with the wicked.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,142,'And so Moses became fearful, watching out in the city, when suddenly the one who sought his help the day before cried out to him again for help. Moses rebuked him, “Indeed, you are clearly a trouble-maker.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,142,'Then when Moses was about to lay his hands on their foe, the enemy said, “O Moses! Do you intend to kill me as you killed a man yesterday? You only want to be a tyrant in the land. You do not intend to make peace!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,142,'And there came a man, rushing from the farthest end of the city. He said, “O Moses! The chiefs are actually conspiring against you to put you to death, so leave ˹the city˺. I really advise you ˹to do so˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,142,'So Moses left the city in a state of fear and caution, praying, “My Lord! Deliver me from the wrongdoing people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,142,'And as he made his way towards Midian, he said, “I trust my Lord will guide me to the right way.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,142,'When he arrived at the well of Midian, he found a group of people watering ˹their herds˺. Apart from them, he noticed two women holding back ˹their herd˺. He asked ˹them˺, “What is the problem?” They replied, “We cannot water ˹our animals˺ until the ˹other˺ shepherds are done, for our father is a very old man.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,142,'So he watered ˹their herd˺ for them, then withdrew to the shade and prayed, “My Lord! I am truly in ˹desperate˺ need of whatever provision You may have in store for me.” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,142,'Then one of the two women came to him, walking bashfully. She said, “My father is inviting you so he may reward you for watering ˹our animals˺ for us.” When Moses came to him and told him his whole story, the old man said, “Have no fear! You are ˹now˺ safe from the wrongdoing people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,142,'One of the two daughters suggested, “O my dear father! Hire him. The best man for employment is definitely the strong and trustworthy ˹one˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,142,'The old man proposed, “I wish to marry one of these two daughters of mine to you, provided that you stay in my service for eight years. If you complete ten, it will be ˹a favour˺ from you, but I do not wish to make it difficult for you. Allah willing, you will find me an agreeable man.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,142,'Moses responded, “˹Then˺ it is ˹settled˺ between you and I. Whichever term I fulfill, there will be no ˹further˺ obligation on me. And Allah is a Witness to what we say.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,142,'When Moses had completed the term and was travelling with his family, he spotted a fire on the side of Mount Ṭûr. He said to his family, “Stay here, ˹for˺ I have spotted a fire. Perhaps from there I can bring you some directions or a torch from the fire so you may warm yourselves.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,142,'But when he came to it, he was called from the bush in the sacred ground to the right side of the valley: “O Moses! It is truly I. I am Allah—the Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,142,'Now, throw down your staff!” But when he saw it slithering like a snake, he ran away without looking back. ˹Allah reassured him,˺ “O Moses! Draw near, and have no fear. You are perfectly secure.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,142,'Now put your hand through ˹the opening of˺ your collar, it will come out ˹shining˺ white, unblemished. And cross your arms tightly to calm your fears. These are two proofs from your Lord to Pharaoh and his chiefs. They have truly been a rebellious people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,142,'Moses appealed, “My Lord! I have indeed killed a man from them, so I fear they may kill me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,142,'And my brother Aaron is more eloquent than I, so send him with me as a helper to support what I say, for I truly fear they may reject me.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,142,'Allah responded, “We will assist you with your brother and grant you both authority, so they cannot harm you. With Our signs, you and those who follow you will ˹certainly˺ prevail.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,142,'But when Moses came to them with Our clear signs, they said ˹arrogantly˺, “This is nothing but conjured magic ˹tricks˺. We have never heard of this in ˹the history of˺ our forefathers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,142,'Moses responded, “My Lord knows best who has come with ˹true˺ guidance from Him and will fare best in the end. Indeed, the wrongdoers will never succeed.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,142,'Pharaoh declared, “O chiefs! I know of no other god for you but myself. So bake bricks out of clay for me, O Hamân, and build a high tower so I may look at the God of Moses, although I am sure he is a liar.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,142,'And so he and his soldiers behaved arrogantly in the land with no right, thinking they would never be returned to Us.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,142,'So We seized him and his soldiers, casting them into the sea. See then what was the end of the wrongdoers!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,142,'We made them leaders inviting ˹others˺ to the Fire. And on the Day of Judgment they will not be helped.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,142,'We caused a curse to follow them in this world. And on the Day of Judgment they will be among the outcasts.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,142,'Indeed, We gave Moses the Scripture—after destroying earlier nations—as an insight for the people, a guide, and mercy so perhaps they would be mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,142,'You were not there ˹O Prophet˺ on the western side of the mountain when We entrusted the Commandments to Moses, nor were you present ˹in his time˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,142,'But We ˹later˺ raised ˹several˺ generations, and the ages took their toll on them. Nor were you living among the people of Midian, rehearsing Our revelations with them. But it is We Who have sent ˹this revelation to you˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,142,'And you were not at the side of Mount Ṭûr when We called out ˹to Moses˺. But ˹you have been sent˺ as a mercy from your Lord to warn a people to whom no warner has come before you, so perhaps they may be mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,142,'Also so they would not say, if struck by an affliction for what their hands have done: “Our Lord! If only You had sent us a messenger, we would have followed Your revelations and become believers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,142,'But when the truth came to them from Us, they said, “If only he was given the like of what Moses had been given.” Did they not deny what had been given to Moses earlier? They claimed, “Both ˹Scriptures˺ are works of magic, supporting each other!” Adding, “We truly deny both.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,142,'Say, ˹O Prophet,˺ “Bring then a scripture from Allah which is a better guide than these two so I may follow it, if your claim is true.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,142,'So if they fail to respond to you, then know that they only follow their desires. And who could be more astray than those who follow their desires with no guidance from Allah? Surely Allah does not guide the wrongdoing people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,142,'Indeed, We have steadily delivered the Word ˹of Allah˺ to the people so they may be mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,142,'˹As for˺ those ˹faithful˺ to whom We had given the Scripture before this ˹Quran˺, they do believe in it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,142,'When it is recited to them, they declare, “We believe in it. This is definitely the truth from our Lord. We had already submitted ˹even˺ before this.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,142,'These ˹believers˺ will be given a double reward for their perseverance, responding to evil with good, and for donating from what We have provided for them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,142,'When they hear slanderous talk, they turn away from it, saying, “We are accountable for our deeds and you for yours. Peace ˹is our only response˺ to you! We want nothing to do with those who act ignorantly.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,142,'You surely cannot guide whoever you like ˹O Prophet˺, but it is Allah Who guides whoever He wills, and He knows best who are ˹fit to be˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,142,'They say ˹to the Prophet˺, “If we were to follow ˹true˺ guidance with you, we would certainly be snatched away from our land.” Have We not established for them a safe haven ˹in Mecca˺ to which fruits of all kinds are brought as a provision from Us? But most of them do not know ˹this favour˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,142,'˹Imagine˺ how many societies We have destroyed that had been spoiled by their ˹comfortable˺ living! Those are their residences, never inhabited after them except passingly. And We ˹alone˺ were the Successor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,142,'Your Lord would never destroy a society until He had sent to its capital a messenger, reciting Our revelations to them. Nor would We ever destroy a society unless its people persisted in wrongdoing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,142,'Whatever ˹pleasure˺ you have been given is no more than ˹a fleeting˺ enjoyment and adornment of this worldly life. But what is with Allah is far better and more lasting. Will you not then understand?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,142,'Can those to whom We have made a fine promise—which they will see fulfilled—be like those who We have allowed to enjoy the pleasures of this worldly life, but on the Day of Judgment will be brought ˹for punishment˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,142,'˹Watch for˺ the Day He will call to them, “Where are those you claimed were My associate-gods?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,142,'Those ˹misleaders˺ against whom the decree ˹of torment˺ is justified will cry, “Our Lord! These ˹followers˺ are the ones we caused to deviate. We led them into deviance, for we ourselves were deviant. We disassociate ourselves ˹from them˺ before You. It was not us that they used to worship.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,142,'It will be said ˹to the disbelievers˺, “Call upon your associate-gods ˹for help˺.” So they will call them, but will receive no response. And they will face the punishment, wishing they had been ˹rightly˺ guided!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,142,'And ˹watch for˺ the Day He will call to them, asking, “What response did you give to the messengers?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,142,'They will be too dumbstruck on that Day to ask one another ˹for answers˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,142,'As for those who repent, believe, and do good ˹in this world˺, it is right to hope that they will be among the successful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,142,'Your Lord creates and chooses whatever He wills—the choice is not theirs. Glorified and Exalted is Allah above what they associate ˹with Him˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,142,'And your Lord knows what their hearts conceal and what they reveal.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,142,'He is Allah. There is no god ˹worthy of worship˺ except Him. All praise belongs to Him in this life and the next. All authority is His. And to Him you will ˹all˺ be returned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,142,'Ask ˹them, O Prophet˺, “Imagine if Allah were to make the night perpetual for you until the Day of Judgment, which god other than Allah could bring you sunlight? Will you not then listen?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,142,'Ask ˹them also˺, “Imagine if Allah were to make the day perpetual for you until the Day of Judgment, which god other than Allah could bring you night to rest in? Will you not then see?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,142,'It is out of His mercy that He has made for you the day and night so that you may rest ˹in the latter˺ and seek His bounty ˹in the former˺, and perhaps you will be grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,142,'And ˹watch for˺ the Day He will call to them, “Where are those you claimed were My associate-gods?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,142,'And We will bring forth a witness from every faith-community and ask ˹the polytheists˺, “Show ˹Us˺ your proof.” Then they will ˹come to˺ know that the truth is with Allah ˹alone˺. And whatever ˹gods˺ they fabricated will fail them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,142,'Indeed, Korah was from the people of Moses, but he behaved arrogantly towards them. We had granted him such treasures that even their keys would burden a group of strong men. ˹Some of˺ his people advised him, “Do not be prideful! Surely Allah does not like the prideful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,142,'Rather, seek the ˹reward˺ of the Hereafter by means of what Allah has granted you, without forgetting your share of this world. And be good ˹to others˺ as Allah has been good to you. Do not seek to spread corruption in the land, for Allah certainly does not like the corruptors.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,142,'He replied, “I have been granted all this because of some knowledge I have.” Did he not know that Allah had already destroyed some from the generations before him who were far superior to him in power and greater in accumulating ˹wealth˺? There will be no need for the wicked to be asked about their sins. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,142,'Then he came out before his people in all his glamour. Those who desired the life of this world wished, “If only we could have something like what Korah has been given. He is truly a man of great fortune!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,142,'But those gifted with knowledge said, “Shame on you! Allah’s reward is far better for those who believe and do good. But none will attain this except the steadfast.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,142,'Then We caused the earth to swallow him up, along with his home. There was no one to help him against Allah, nor could he even help himself.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,142,'And those who had craved his position the previous day began to say, “Ah! It is certainly Allah Who gives abundant or limited provisions to whoever He wills of His servants. Had it not been for the grace of Allah, He could have surely caused the earth to swallow us up! Oh, indeed! The disbelievers will never succeed.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,142,'That ˹eternal˺ Home in the Hereafter We reserve ˹only˺ for those who seek neither tyranny nor corruption on the earth. The ultimate outcome belongs ˹only˺ to the righteous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,142,'Whoever comes with a good deed will be rewarded with what is better. And whoever comes with an evil deed, then the evildoers will only be rewarded for what they used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,142,'Most certainly, the One Who has ordained the Quran for you will ˹ultimately˺ bring you back home ˹to Mecca˺. Say, “My Lord knows best who has come with ˹true˺ guidance and who is clearly astray.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,142,'You never expected this Book to be revealed to you, but ˹it came˺ only ˹as˺ a mercy from your Lord. So never side with the disbelievers ˹in their disbelief˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,142,'Do not let them turn you away from the revelations of Allah after they have been sent down to you. Rather, invite ˹all˺ to ˹the Way of˺ your Lord, and never be one of the polytheists.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,142,'And do not invoke any other god with Allah. There is no god ˹worthy of worship˺ except Him. Everything is bound to perish except He Himself. All authority belongs to Him. And to Him you will ˹all˺ be returned.');
+INSERT INTO chapters (id, number, quran_id) VALUES(143,29,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,143,'Alif-Lãm-Mĩm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,143,'Do people think once they say, “We believe,” that they will be left without being put to the test?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,143,'We certainly tested those before them. And ˹in this way˺ Allah will clearly distinguish between those who are truthful and those who are liars.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,143,'Or do the evildoers ˹simply˺ think that they will escape Us? How wrong is their judgment!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,143,'Whoever hopes for the meeting with Allah, ˹let them know that˺ Allah’s appointed time is sure to come. He is the All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,143,'And whoever strives ˹in Allah’s cause˺, only does so for their own good. Surely Allah is not in need of ˹any of˺ His creation.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,143,'As for those who believe and do good, We will certainly absolve them of their sins, and reward them according to the best of what they used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,143,'We have commanded people to honour their parents. But if they urge you to associate with Me what you have no knowledge of, then do not obey them. To Me you will ˹all˺ return, and then I will inform you of what you used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,143,'Those who believe and do good will surely be admitted by Us into ˹the company of˺ the righteous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,143,'There are some who say, “We believe in Allah,” but when they suffer in the cause of Allah, they mistake ˹this˺ persecution at the hands of people for the punishment of Allah. But when victory comes from your Lord, they surely say ˹to the believers˺, “We have always been with you.” Does Allah not know best what is in the hearts of all beings?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,143,'Allah will certainly distinguish between those who have ˹sure˺ faith and the hypocrites.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,143,'The disbelievers say to the believers, “˹Just˺ follow our way, and we will bear ˹the burden of˺ your sins.” But they would never ˹want to˺ bear any of the believers’ sins. They are simply lying.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,143,'Yet they will certainly ˹be made to˺ carry their own burdens, as well as other burdens along with their own. And they will surely be questioned on Judgment Day about what they used to fabricate.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,143,'Indeed, We sent Noah to his people, and he remained among them for a thousand years, less fifty. Then the Flood overtook them, while they persisted in wrongdoing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,143,'But We delivered him and those in the Ark, making it a sign for all people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,143,'And ˹remember˺ when Abraham said to his people, “Worship Allah, and fear Him. This is better for you, if only you knew.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,143,'You worship besides Allah nothing but idols, simply creating lies ˹about them˺. Those you worship besides Allah certainly cannot give you any provision. So seek provision from Allah ˹alone˺, worship Him, and be grateful to Him. To Him you will ˹all˺ be returned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,143,'If you ˹Meccans˺ persist in denial, so did ˹many˺ communities before you. The Messenger’s duty is only to deliver ˹the message˺ clearly.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,143,'Have they not seen how Allah originates the creation then resurrects it? That is certainly easy for Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,143,'Say, ˹O Prophet,˺ “Travel throughout the land and see how He originated the creation, then Allah will bring it into being one more time. Surely Allah is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,143,'He punishes whoever He wills, and shows mercy to whoever He wills. And you will ˹all˺ be returned to Him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,143,'And you cannot escape Him on earth or in heaven. Nor have you any protector or helper besides Allah.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,143,'As for those who disbelieve in Allah’s signs and the meeting with Him, it is they who will have no hope in His mercy. And it is they who will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,143,'But the only response of Abraham’s people was to say: “Kill him or burn him!” But Allah saved him from the fire. Surely in this are signs for people who believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,143,'He said ˹to his people˺, “You have taken idols ˹for worship˺ instead of Allah, only to keep ˹the bond of˺ harmony among yourselves in this worldly life. But on the Day of Judgment you will disown and curse one another. Your home will be the Fire, and you will have no helper!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,143,'So Lot believed in him. And Abraham said, “I am emigrating ˹in obedience˺ to my Lord. He ˹alone˺ is indeed the Almighty, All-Wise.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,143,'We blessed him with Isaac and ˹later˺ Jacob, and reserved prophethood and revelation for his descendants. We gave him his reward in this life, and in the Hereafter he will certainly be among the righteous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,143,'And ˹remember˺ when Lot rebuked ˹the men of˺ his people: “You certainly commit a shameful deed that no man has ever done before you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,143,'Do you really lust after ˹other˺ men, abuse the travellers, and practice immorality ˹openly˺ in your gatherings?” His people’s only response was to say ˹mockingly˺: “Bring Allah’s punishment upon us, if what you say is true.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,143,'Lot prayed, “My Lord! Help me against the people of corruption.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,143,'When Our messenger-angels came to Abraham with the good news ˹of the birth of Isaac˺, they said, “We are going to destroy the people of this city ˹of Sodom˺, for its people have persisted in wrongdoing.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,143,'He said, “But Lot is there!” They responded, “We know best who is there. We will certainly save him and his family—except his wife, who is one of the doomed.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,143,'And when Our messenger-angels came to Lot, he was distressed and worried by their arrival. They reassured ˹him˺, “Do not fear, nor grieve. We will surely deliver you and your family—except your wife, who is one of the doomed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,143,'We are certainly bringing down a punishment from heaven upon the people of this city for their rebelliousness.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,143,'And We did leave ˹some of˺ its ruins as a clear lesson for people of understanding.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,143,'And to the people of Midian ˹We sent˺ their brother Shu’aib. He said, “O my people! Worship Allah, and hope for ˹the reward of˺ the Last Day. And do not go about spreading corruption in the land.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,143,'But they rejected him, so an ˹overwhelming˺ earthquake struck them and they fell lifeless in their homes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,143,'And the people of ’Ȃd and Thamûd ˹met a similar fate˺, which must be clear to you ˹Meccans˺ from their ruins. Satan made their ˹evil˺ deeds appealing to them, hindering them from the ˹Right˺ Way, although they were capable of reasoning.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,143,'˹We˺ also ˹destroyed˺ Korah, Pharaoh, and Hamân. Indeed, Moses had come to them with clear proofs, but they behaved arrogantly in the land. Yet they could not escape ˹Us˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,143,'So We seized each ˹people˺ for their sin: against some of them We sent a storm of stones, some were overtaken by a ˹mighty˺ blast, some We caused the earth to swallow, and some We drowned. Allah would not have wronged them, but it was they who wronged themselves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,143,'The parable of those who take protectors other than Allah is that of a spider spinning a shelter. And the flimsiest of all shelters is certainly that of a spider, if only they knew.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,143,'Allah surely knows that whatever ˹gods˺ they invoke besides Him are ˹simply˺ nothing. For He is the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,143,'These are the parables We set forth for humanity, but none will understand them except the people of knowledge.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,143,'Allah created the heavens and the earth for a purpose. Surely in this is a sign for the people of faith.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,143,'Recite what has been revealed to you of the Book and establish prayer. Indeed, ˹genuine˺ prayer should deter ˹one˺ from indecency and wickedness. The remembrance of Allah is ˹an˺ even greater ˹deterrent˺. And Allah ˹fully˺ knows what you ˹all˺ do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,143,'Do not argue with the People of the Book unless gracefully, except with those of them who act wrongfully. And say, “We believe in what has been revealed to us and what was revealed to you. Our God and your God is ˹only˺ One. And to Him we ˹fully˺ submit.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,143,'Similarly ˹to earlier messengers˺, We have revealed to you a Book ˹O Prophet˺. ˹The faithful of˺ those to whom We gave the Scriptures believe in it, as do some of these ˹pagan Arabs˺. And none denies Our revelations except the ˹stubborn˺ disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,143,'You ˹O Prophet˺ could not read any writing ˹even˺ before this ˹revelation˺, nor could you write at all. Otherwise, the people of falsehood would have been suspicious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,143,'But this ˹Quran˺ is ˹a set of˺ clear revelations ˹preserved˺ in the hearts of those gifted with knowledge. And none denies Our revelations except the ˹stubborn˺ wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,143,'They say, “If only ˹some˺ signs had been sent down to him from his Lord!” Say, ˹O Prophet,˺ “Signs are only with Allah. And I am only sent with a clear warning.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,143,'Is it not enough for them that We have sent down to you the Book, ˹which is˺ recited to them. Surely in this ˹Quran˺ is a mercy and reminder for people who believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,143,'Say, ˹O Prophet,˺ “Sufficient is Allah as a Witness between me and you. He ˹fully˺ knows whatever is in the heavens and the earth. And those who believe in falsehood and disbelieve in Allah, it is they who are the ˹true˺ losers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,143,'They challenge you ˹O Prophet˺ to hasten the punishment. Had it not been for a time already set, the punishment would have certainly come to them ˹at once˺. But it will definitely take them by surprise when they least expect it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,143,'They urge you to hasten the punishment. And Hell will certainly encompass the disbelievers');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,143,'on the Day the punishment will overwhelm them from above them and from below their feet. And it will be said, “Reap what you sowed.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,143,'O My believing servants! My earth is truly spacious, so worship Me ˹alone˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,143,'Every soul will taste death, then to Us you will ˹all˺ be returned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,143,'˹As for˺ those who believe and do good, We will certainly house them in ˹elevated˺ mansions in Paradise, under which rivers flow, to stay there forever. How excellent is the reward for those who work ˹righteousness!˺—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,143,'those who patiently endure, and put their trust in their Lord!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,143,'How many are the creatures that cannot secure their provisions! ˹It is˺ Allah ˹Who˺ provides for them and you ˹as well˺. He is indeed the All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,143,'If you ask them ˹O Prophet˺ who created the heavens and the earth and subjected the sun and the moon ˹for your benefit˺, they will certainly say, “Allah!” How can they then be deluded ˹from the truth˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,143,'Allah gives abundant or limited provisions to whoever He wills of His servants. Surely Allah has ˹full˺ knowledge of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,143,'And if you ask them who sends down rain from the sky, giving life to the earth after its death, they will surely say, “Allah!” Say, “Praise be to Allah!” In fact, most of them do not understand.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,143,'This worldly life is no more than play and amusement. But the Hereafter is indeed the real life, if only they knew.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,143,'If they happen to be aboard a ship ˹caught in a storm˺, they cry out to Allah ˹alone˺ in sincere devotion. But as soon as He delivers them ˹safely˺ to shore, they associate ˹others with Him once again˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,143,'So let them be ungrateful for all We have given them, and ˹let them˺ enjoy themselves ˹for now˺! For they will soon know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,143,'Have they not seen how We have made ˹Mecca˺ a safe haven, whereas people ˹all˺ around them are snatched away? How can they then believe in falsehood and deny Allah’s favours?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,143,'And who does more wrong than those who fabricate lies against Allah or reject the truth after it has reached them? Is Hell not a ˹fitting˺ home for the disbelievers?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,143,'As for those who struggle in Our cause, We will surely guide them along Our Way. And Allah is certainly with the good-doers.');
+INSERT INTO chapters (id, number, quran_id) VALUES(144,30,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,144,'Alif-Lãm-Mĩm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,144,'The Romans have been defeated');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,144,'in a nearby land. Yet following their defeat, they will triumph');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,144,'within three to nine years. The ˹whole˺ matter rests with Allah before and after ˹victory˺. And on that day the believers will rejoice');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,144,'at the victory willed by Allah. He gives victory to whoever He wills. For He is the Almighty, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,144,'˹This is˺ the promise of Allah. ˹And˺ Allah never fails in His promise. But most people do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,144,'They ˹only˺ know the worldly affairs of this life, but are ˹totally˺ oblivious to the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,144,'Have they not reflected upon their own being? Allah only created the heavens and the earth and everything in between for a purpose and an appointed term. Yet most people are truly in denial of the meeting with their Lord!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,144,'Have they not travelled throughout the land to see what was the end of those ˹destroyed˺ before them? They were far superior in might; they cultivated the land and developed it more than these ˹Meccans˺ ever have. Their messengers came to them with clear proofs. Allah would have never wronged them, but it was they who wronged themselves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,144,'Then most evil was the end of the evildoers for denying and mocking the signs of Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,144,'It is Allah Who originates the creation, and will resurrect it. And then to Him you will ˹all˺ be returned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,144,'On the Day the Hour will arrive, the wicked will be dumbstruck.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,144,'There will be no intercessors for them from among their associate-gods, and they will ˹totally˺ deny their associate-gods.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,144,'And on the Day the Hour will arrive, the people will then be split ˹into two groups˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,144,'As for those who believed and did good, they will be rejoicing in a Garden.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,144,'And as for those who disbelieved, and denied Our signs and the meeting ˹with Allah˺ in the Hereafter, they will be confined in punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,144,'So glorify Allah in the evening and in the morning—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,144,'all praise is for Him in the heavens and the earth—as well as in the afternoon, and at noon. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,144,'He brings forth the living from the dead and the dead from the living. And He gives life to the earth after its death. And so will you be brought forth ˹from the grave˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,144,'One of His signs is that He created you from dust, then—behold!—you are human beings spreading over ˹the earth˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,144,'And one of His signs is that He created for you spouses from among yourselves so that you may find comfort in them. And He has placed between you compassion and mercy. Surely in this are signs for people who reflect.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,144,'And one of His signs is the creation of the heavens and the earth, and the diversity of your languages and colours. Surely in this are signs for those of ˹sound˺ knowledge.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,144,'And one of His signs is your sleep by night and by day ˹for rest˺ as well as your seeking His bounty ˹in both˺. Surely in this are signs for people who listen.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,144,'And one of His signs is that He shows you lightning, inspiring ˹you with˺ hope and fear. And He sends down rain from the sky, reviving the earth after its death. Surely in this are signs for people who understand.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,144,'And one of His signs is that the heavens and the earth persist by His command. Then when He calls you out of the earth just once, you will instantly come forth.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,144,'And to Him belong all those in the heavens and the earth—all are subject to His Will.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,144,'And He is the One Who originates the creation then will resurrect it—which is even easier for Him. To Him belong the finest attributes in the heavens and the earth. And He is the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,144,'He sets forth for you an example ˹drawn˺ from your own lives: would you allow some of those ˹bondspeople˺ in your possession to be your equal partners in whatever ˹wealth˺ We have provided you, keeping them in mind as you are mindful of your peers? This is how We make the signs clear for people who understand.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,144,'In fact, the wrongdoers merely follow their desires with no knowledge. Who then can guide those Allah has left to stray? They will have no helpers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,144,'So be steadfast in faith in all uprightness ˹O Prophet˺—the natural Way of Allah which He has instilled in ˹all˺ people. Let there be no change in this creation of Allah. That is the Straight Way, but most people do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,144,'˹O believers!˺ Always turn to Him ˹in repentance˺, be mindful of Him, and establish prayers. And do not be polytheists—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,144,'˹like˺ those who have divided their faith and split into sects, each rejoicing in what they have.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,144,'When people are touched with hardship, they cry out to their Lord, turning to Him ˹alone˺. But as soon as He gives them a taste of His mercy, a group of them associates ˹others˺ with their Lord ˹in worship˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,144,'becoming ungrateful for whatever ˹favours˺ We have given them. So enjoy yourselves, for soon you will know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,144,'Or have We sent down to them an authority which attests to what they associate ˹with Him˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,144,'If We give people a taste of mercy, they become prideful ˹because˺ of it. But if they are afflicted with an evil for what their hands have done, they instantly fall into despair.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,144,'Have they not seen that Allah gives abundant or limited provisions to whoever He wills? Surely in this are signs for people who believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,144,'So give your close relatives their due, as well as the poor and the ˹needy˺ traveller. That is best for those who seek the pleasure of Allah, and it is they who will be successful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,144,'Whatever loans you give, ˹only˺ seeking interest at the expense of people’s wealth will not increase with Allah. But whatever charity you give, ˹only˺ seeking the pleasure of Allah—it is they whose reward will be multiplied.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,144,'It is Allah Who created you, then gives you provisions, then will cause you to die, and then will bring you back to life. Can any of your associate-gods do any of this? Glorified and Exalted is He above what they associate with Him ˹in worship˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,144,'Corruption has spread on land and sea as a result of what people’s hands have done, so that Allah may cause them to taste ˹the consequences of˺ some of their deeds and perhaps they might return ˹to the Right Path˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,144,'Say, ˹O Prophet,˺ “Travel throughout the land and see what was the end of those ˹destroyed˺ before ˹you˺—most of them were polytheists.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,144,'So be steadfast in the Upright Faith ˹O Prophet˺, before the coming of a Day from Allah that cannot be averted. On that Day the people will be divided:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,144,'those who disbelieved will bear ˹the burden of˺ their own disbelief; and those who did good will have prepared for themselves ˹eternal homes˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,144,'so that He may ˹generously˺ reward those who believe and do good, out of His grace. He truly does not like the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,144,'And one of His signs is that He sends the winds, ushering in good news ˹of rain˺ so that He may give you a taste of His mercy, and that ships may sail by His command, and that you may seek His bounty, and perhaps you will be grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,144,'Indeed, We sent before you ˹O Prophet˺ messengers, each to their own people, and they came to them with clear proofs. Then We inflicted punishment upon those who persisted in wickedness. For it is Our duty to help the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,144,'It is Allah Who sends the winds, which then stir up ˹vapour, forming˺ clouds, which He then spreads out in the sky or piles up into masses as He wills, from which you see rain come forth. Then as soon as He causes it to fall on whoever He wills of His servants, they rejoice,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,144,'although they had utterly lost hope just before it was sent down to them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,144,'See then the impact of Allah’s mercy: how He gives life to the earth after its death! Surely That ˹same God˺ can raise the dead. For He is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,144,'Then if We send a ˹harsh˺ wind which they see withering ˹their˺ crops, they will definitely deny ˹old favours˺ right after.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,144,'So you ˹O Prophet˺ certainly cannot make the dead hear ˹the truth˺. Nor can you make the deaf hear the call when they turn their backs and walk away.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,144,'Nor can you lead the blind out of their misguidance. You can make none hear ˹the truth˺ except those who believe in Our revelations, ˹fully˺ submitting ˹to Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,144,'It is Allah Who created you in a state of weakness, then developed ˹your˺ weakness into strength, then developed ˹your˺ strength into weakness and old age. He creates whatever He wills. For He is the All-Knowing, Most Capable.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,144,'And on the Day the Hour will arrive, the wicked will swear that they did not stay ˹in this world˺ more than an hour. In this way they were always deluded ˹in the world˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,144,'But those gifted with knowledge and faith will say ˹to them˺, “You did actually stay—as destined by Allah—until the Day of Resurrection. So here is the Day of Resurrection ˹which you denied˺! But you did not know ˹it was true˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,144,'So on that Day the wrongdoers’ excuses will not benefit them, nor will they be allowed to appease ˹their Lord˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,144,'We have certainly set forth every ˹kind of˺ lesson for people in this Quran. And no matter what sign you bring to them ˹O Prophet˺, the disbelievers will definitely say ˹to the believers˺, “You are only a people of falsehood.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,144,'This is how Allah seals the hearts of those unwilling to know ˹the truth˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,144,'So be patient, for the promise of Allah certainly is true. And do not be disturbed by those who have no sure faith.');
+INSERT INTO chapters (id, number, quran_id) VALUES(145,31,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,145,'Alif-Lãm-Mĩm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,145,'These are the verses of the Book, rich in wisdom.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,145,'˹It is˺ a guide and mercy for the good-doers—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,145,'those who establish prayer, pay alms-tax, and have sure faith in the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,145,'It is they who are ˹truly˺ guided by their Lord, and it is they who will be successful. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,145,'But there are some who employ theatrics, only to lead others away from Allah’s Way—without any knowledge—and to make a mockery of it. They will suffer a humiliating punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,145,'Whenever Our revelations are recited to them, they turn away in arrogance as if they did not hear them, as if there is deafness in their ears. So give them good news ˹O Prophet˺ of a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,145,'Surely those who believe and do good will have the Gardens of Bliss,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,145,'staying there forever. Allah’s promise is true. And He is the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,145,'He created the heavens without pillars—as you can see—and placed firm mountains upon the earth so it does not shake with you, and scattered throughout it all types of creatures. And We send down rain from the sky, causing every type of fine plant to grow on earth.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,145,'This is Allah’s creation. Now show Me what those ˹gods˺ other than Him have created. In fact, the wrongdoers are clearly astray.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,145,'Indeed, We blessed Luqmân with wisdom, ˹saying˺, “Be grateful to Allah, for whoever is grateful, it is only for their own good. And whoever is ungrateful, then surely Allah is Self-Sufficient, Praiseworthy.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,145,'And ˹remember˺ when Luqmân said to his son, while advising him, “O my dear son! Never associate ˹anything˺ with Allah ˹in worship˺, for associating ˹others with Him˺ is truly the worst of all wrongs.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,145,'And We have commanded people to ˹honour˺ their parents. Their mothers bore them through hardship upon hardship, and their weaning takes two years. So be grateful to Me and your parents. To Me is the final return.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,145,'But if they pressure you to associate with Me what you have no knowledge of, do not obey them. Still keep their company in this world courteously, and follow the way of those who turn to Me ˹in devotion˺. Then to Me you will ˹all˺ return, and then I will inform you of what you used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,145,'˹Luqmân added,˺ “O my dear son! ˹Even˺ if a deed were the weight of a mustard seed—be it ˹hidden˺ in a rock or in the heavens or the earth—Allah will bring it forth. Surely Allah is Most Subtle, All-Aware.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,145,'“O my dear son! Establish prayer, encourage what is good and forbid what is evil, and endure patiently whatever befalls you. Surely this is a resolve to aspire to.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,145,'“And do not turn your nose up to people, nor walk pridefully upon the earth. Surely Allah does not like whoever is arrogant, boastful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,145,'Be moderate in your pace. And lower your voice, for the ugliest of all voices is certainly the braying of donkeys.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,145,'Have you not seen that Allah has subjected for you whatever is in the heavens and whatever is on the earth, and has lavished His favours upon you, both seen and unseen? ˹Still˺ there are some who dispute about Allah without knowledge, or guidance, or an enlightening scripture.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,145,'When it is said to them, “Follow what Allah has revealed,” they reply, “No! We ˹only˺ follow what we found our forefathers practicing.” ˹Would they still do so˺ even if Satan is inviting them to the torment of the Blaze?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,145,'Whoever fully submits themselves to Allah and is a good-doer, they have certainly grasped the firmest hand-hold. And with Allah rests the outcome of ˹all˺ affairs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,145,'But whoever disbelieves, do not let their disbelief grieve you ˹O Prophet˺. To Us is their return, and We will inform them of all they did. Surely Allah knows best what is ˹hidden˺ in the heart.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,145,'We allow them enjoyment for a little while, then ˹in time˺ We will force them into a harsh torment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,145,'And if you ask them who created the heavens and the earth, they will definitely say, “Allah!” Say, “Praise be to Allah!” In fact, most of them do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,145,'To Allah belongs whatever is in the heavens and the earth. Allah is truly the Self-Sufficient, Praiseworthy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,145,'If all the trees on earth were pens and the ocean ˹were ink˺, refilled by seven other oceans, the Words of Allah would not be exhausted. Surely Allah is Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,145,'The creation and resurrection of you ˹all˺ is as simple ˹for Him˺ as that of a single soul. Surely Allah is All-Hearing, All-Seeing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,145,'Do you not see that Allah causes the night to merge into the day and the day into the night, and has subjected the sun and the moon, each orbiting for an appointed term, and that Allah is All-Aware of what you do?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,145,'That is because Allah ˹alone˺ is the Truth and what they invoke besides Him is falsehood, and ˹because˺ Allah ˹alone˺ is the Most High, All-Great.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,145,'Do you not see that the ships sail ˹smoothly˺ through the sea by the grace of Allah so that He may show you some of His signs? Surely in this are signs for whoever is steadfast, grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,145,'And as soon as they are overwhelmed by waves like mountains, they cry out to Allah ˹alone˺ in sincere devotion. But when He delivers them ˹safely˺ to shore, only some become relatively grateful. And none rejects Our signs except whoever is deceitful, ungrateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,145,'O humanity! Be mindful of your Lord, and beware of a Day when no parent will be of any benefit to their child, nor will a child be of any benefit to their parent. Surely Allah’s promise is true. So do not let the life of this world deceive you, nor let the Chief Deceiver deceive you about Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,145,'Indeed, Allah ˹alone˺ has the knowledge of the Hour. He sends down the rain, and knows what is in the wombs. No soul knows what it will earn for tomorrow, and no soul knows in what land it will die. Surely Allah is All-Knowing, All-Aware.');
+INSERT INTO chapters (id, number, quran_id) VALUES(146,32,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,146,'Alif-Lãm-Mĩm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,146,'The revelation of this Book is—beyond doubt—from the Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,146,'Or do they say, “He has fabricated it!”? No! It is the truth from your Lord in order for you to warn a people to whom no warner has come before you, so they may be ˹rightly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,146,'It is Allah Who has created the heavens and the earth and everything in between in six Days, then established Himself on the Throne. You have no protector or intercessor besides Him. Will you not then be mindful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,146,'He conducts every affair from the heavens to the earth, then it all ascends to Him on a Day whose length is a thousand years by your counting.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,146,'That is the Knower of the seen and unseen—the Almighty, Most Merciful,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,146,'Who has perfected everything He created. And He originated the creation of humankind from clay.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,146,'Then He made his descendants from an extract of a humble fluid,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,146,'then He fashioned them and had a spirit of His Own ˹creation˺ breathed into them. And He gave you hearing, sight, and intellect. ˹Yet˺ you hardly give any thanks.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,146,'˹Still˺ they ask ˹mockingly˺, “When we are disintegrated into the earth, will we really be raised as a new creation?” In fact, they are in denial of the meeting with their Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,146,'Say, ˹O Prophet,˺ “Your soul will be taken by the Angel of Death, who is in charge of you. Then to your Lord you will ˹all˺ be returned.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,146,'If only you could see the wicked hanging their heads ˹in shame˺ before their Lord, ˹crying:˺ “Our Lord! We have now seen and heard, so send us back and we will do good. We truly have sure faith ˹now˺!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,146,'Had We willed, We could have easily imposed guidance on every soul. But My Word will come to pass: I will surely fill up Hell with jinn and humans all together.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,146,'So taste ˹the punishment˺ for neglecting the meeting of this Day of yours. We ˹too˺ will certainly neglect you. And taste the torment of eternity for what you used to do!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,146,'The only ˹true˺ believers in Our revelation are those who—when it is recited to them—fall into prostration and glorify the praises of their Lord and are not too proud.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,146,'They abandon their beds, invoking their Lord with hope and fear, and donate from what We have provided for them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,146,'No soul can imagine what delights are kept in store for them as a reward for what they used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,146,'Is the one who is a believer equal ˹before Allah˺ to the one who is rebellious? They are not equal!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,146,'As for those who believe and do good, they will have the Gardens of ˹Eternal˺ Residence—as an accommodation for what they used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,146,'But as for those who are rebellious, the Fire will be their home. Whenever they try to escape from it, they will be forced back into it, and will be told, “Taste the Fire’s torment, which you used to deny.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,146,'We will certainly make them taste some of the minor torment ˹in this life˺ before the major torment ˹of the Hereafter˺, so perhaps they will return ˹to the Right Path˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,146,'And who does more wrong than the one who is reminded of Allah’s revelations then turns away from them? We will surely inflict punishment upon the wicked.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,146,'Indeed, We gave the Scripture to Moses—so let there be no doubt ˹O Prophet˺ that you ˹too˺ are receiving revelations—and We made it a guide for the Children of Israel.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,146,'We raised from among them leaders, guiding by Our command, when they patiently endured and firmly believed in Our signs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,146,'Indeed, your Lord will decide between them on the Day of Judgment regarding their differences.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,146,'Is it not yet clear to them how many peoples We destroyed before them, whose ruins they still pass by? Surely in this are signs. Will they not then listen?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,146,'Do they not see how We drive rain to parched land, producing ˹various˺ crops from which they and their cattle eat? Will they not then see?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,146,'They ask ˹mockingly˺, “When is this ˹Day of final˺ Decision, if what you say is true?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,146,'Say, ˹O Prophet,˺ “On the Day of Decision it will not benefit the disbelievers to believe then, nor will they be delayed ˹from punishment˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,146,'So turn away from them, and wait! They too are waiting.');
+INSERT INTO chapters (id, number, quran_id) VALUES(147,33,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,147,'O Prophet! ˹Always˺ be mindful of Allah, and do not yield to the disbelievers and the hypocrites. Indeed, Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,147,'Follow what is revealed to you from your Lord. Surely Allah is All-Aware of what you ˹all˺ do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,147,'And put your trust in Allah, for Allah is sufficient as a Trustee of Affairs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,147,'Allah does not place two hearts in any person’s chest. Nor does He regard your wives as ˹unlawful for you like˺ your real mothers, ˹even˺ if you say they are. Nor does He regard your adopted children as your real children. These are only your baseless assertions. But Allah declares the truth, and He ˹alone˺ guides to the ˹Right˺ Way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,147,'Let your adopted children keep their family names. That is more just in the sight of Allah. But if you do not know their fathers, then they are ˹simply˺ your fellow believers and close associates. There is no blame on you for what you do by mistake, but ˹only˺ for what you do intentionally. And Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,147,'The Prophet has a stronger affinity to the believers than they do themselves. And his wives are their mothers. As ordained by Allah, blood relatives are more entitled ˹to inheritance˺ than ˹other˺ believers and immigrants, unless you ˹want to˺ show kindness to your ˹close˺ associates ˹through bequest˺. This is decreed in the Record. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,147,'And ˹remember˺ when We took a covenant from the prophets, as well as from you ˹O Prophet˺, and from Noah, Abraham, Moses, and Jesus, son of Mary. We did take a solemn covenant from ˹all of˺ them');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,147,'so that He may question these men of truth about their ˹delivery of the˺ truth. And He has prepared a painful punishment for the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,147,'O believers! Remember Allah’s favour upon you when ˹enemy˺ forces came to ˹besiege˺ you ˹in Medina˺, so We sent against them a ˹bitter˺ wind and forces you could not see. And Allah is All-Seeing of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,147,'˹Remember˺ when they came at you from east and west, when your eyes grew wild ˹in horror˺ and your hearts jumped into your throats, and you entertained ˹conflicting˺ thoughts about Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,147,'Then and there the believers were put to the test, and were violently shaken.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,147,'And ˹remember˺ when the hypocrites and those with sickness in their hearts said, “Allah and His Messenger have promised us nothing but delusion!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,147,'And ˹remember˺ when a group of them said, “O people of Yathrib! There is no point in you staying ˹here˺, so retreat!” Another group of them asked the Prophet’s permission ˹to leave˺, saying, “Our homes are vulnerable,” while ˹in fact˺ they were not vulnerable. They only wished to flee.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,147,'Had their city been sacked from all sides and they had been asked to abandon faith, they would have done so with little hesitation.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,147,'They had already pledged to Allah earlier never to turn their backs ˹in retreat˺. And a pledge to Allah must be answered for.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,147,'Say, ˹O Prophet,˺ “Fleeing will not benefit you if you ˹try to˺ escape a natural or violent death. ˹If it is not your time,˺ you will only be allowed enjoyment for a little while.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,147,'Ask ˹them, O Prophet˺, “Who can put you out of Allah’s reach if He intends to harm you or show you mercy?” They can never find any protector or helper besides Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,147,'Allah knows well those among you who discourage ˹others from fighting˺, saying ˹secretly˺ to their brothers, “Stay with us,” and who themselves hardly take part in fighting.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,147,'˹They are˺ totally unwilling to assist you. When danger comes, you see them staring at you with their eyes rolling like someone in the throes of death. But once the danger is over, they slash you with razor-sharp tongues, ravenous for ˹worldly˺ gains. Such people have not ˹truly˺ believed, so Allah has rendered their deeds void. And that is easy for Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,147,'They ˹still˺ think that the enemy alliance has not ˹yet˺ withdrawn. And if the allies were to come ˹again˺, the hypocrites would wish to be away in the desert among nomadic Arabs, ˹only˺ asking for news about you ˹believers˺. And if the hypocrites were in your midst, they would hardly take part in the fight.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,147,'Indeed, in the Messenger of Allah you have an excellent example for whoever has hope in Allah and the Last Day, and remembers Allah often.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,147,'When the believers saw the enemy alliance, they said, “This is what Allah and His Messenger had promised us. The promise of Allah and His Messenger has come true.” And this only increased them in faith and submission.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,147,'Among the believers are men who have proven true to what they pledged to Allah. Some of them have fulfilled their pledge ˹with their lives˺, others are waiting ˹their turn˺. They have never changed ˹their commitment˺ in the least.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,147,'˹It all happened˺ so Allah may reward the faithful for their faithfulness, and punish the hypocrites if He wills or turn to them ˹in mercy˺. Surely Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,147,'And Allah drove back the disbelievers in their rage, totally empty-handed. And Allah spared the believers from fighting. For Allah is All-Powerful, Almighty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,147,'And He brought down those from the People of the Book who supported the enemy alliance from their own strongholds, and cast horror into their hearts. You ˹believers˺ killed some, and took others captive.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,147,'He has also caused you to take over their lands, homes, and wealth, as well as lands you have not yet set foot on. And Allah is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,147,'O Prophet! Say to your wives, “If you desire the life of this world and its luxury, then come, I will give you a ˹suitable˺ compensation ˹for divorce˺ and let you go graciously.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,147,'But if you desire Allah and His Messenger and the ˹everlasting˺ Home of the Hereafter, then Surely Allah has prepared a great reward for those of you who do good.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,147,'O wives of the Prophet! If any of you were to commit a blatant misconduct, the punishment would be doubled for her. And that is easy for Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,147,'And whoever of you devoutly obeys Allah and His Messenger and does good, We will grant her double the reward, and We have prepared for her an honourable provision.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,147,'O wives of the Prophet! You are not like any other women: if you are mindful ˹of Allah˺, then do not be overly effeminate in speech ˹with men˺ or those with sickness in their hearts may be tempted, but speak in a moderate tone.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,147,'Settle in your homes, and do not display yourselves as women did in the days of ˹pre-Islamic˺ ignorance. Establish prayer, pay alms-tax, and obey Allah and His Messenger. Allah only intends to keep ˹the causes of˺ evil away from you and purify you completely, O members of the ˹Prophet’s˺ family!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,147,'˹Always˺ remember what is recited in your homes of Allah’s revelations and ˹prophetic˺ wisdom. Surely Allah is Most Subtle, All-Aware.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,147,'Surely ˹for˺ Muslim men and women, believing men and women, devout men and women, truthful men and women, patient men and women, humble men and women, charitable men and women, fasting men and women, men and women who guard their chastity, and men and women who remember Allah often—for ˹all of˺ them Allah has prepared forgiveness and a great reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,147,'It is not for a believing man or woman—when Allah and His Messenger decree a matter—to have any other choice in that matter. Indeed, whoever disobeys Allah and His Messenger has clearly gone ˹far˺ astray.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,147,'And ˹remember, O Prophet,˺ when you said to the one for whom Allah has done a favour and you ˹too˺ have done a favour, “Keep your wife and fear Allah,” while concealing within yourself what Allah was going to reveal. And ˹so˺ you were considering the people, whereas Allah was more worthy of your consideration. So when Zaid totally lost interest in ˹keeping˺ his wife, We gave her to you in marriage, so that there would be no blame on the believers for marrying the ex-wives of their adopted sons after their divorce. And Allah’s command is totally binding.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,147,'There is no blame on the Prophet for doing what Allah has ordained for him. That has been the way of Allah with those ˹prophets˺ who had gone before. And Allah’s command has been firmly decreed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,147,'˹That is His way with˺ those ˹prophets˺ who deliver the messages of Allah, and consider Him, and none but Allah. And sufficient is Allah as a ˹vigilant˺ Reckoner.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,147,'Muḥammad is not the father of any of your men, but is the Messenger of Allah and the seal of the prophets. And Allah has ˹perfect˺ knowledge of all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,147,'O believers! Always remember Allah often,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,147,'and glorify Him morning and evening.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,147,'He is the One Who showers His blessings upon you—and His angels pray for you—so that He may bring you out of darkness and into light. For He is ever Merciful to the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,147,'Their greeting on the Day they meet Him will be, “Peace!” And He has prepared for them an honourable reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,147,'O Prophet! We have sent you as a witness, and a deliverer of good news, and a warner,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,147,'and a caller to ˹the Way of˺ Allah by His command, and a beacon of light.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,147,'Give good news to the believers that they will have a great bounty from Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,147,'Do not yield to the disbelievers and the hypocrites. Overlook their annoyances, and put your trust in Allah. For Allah is sufficient as a Trustee of Affairs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,147,'O believers! If you marry believing women and then divorce them before you touch them, they will have no waiting period for you to count, so give them a ˹suitable˺ compensation, and let them go graciously.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,147,'O Prophet! We have made lawful for you your wives to whom you have paid their ˹full˺ dowries as well as those ˹bondwomen˺ in your possession, whom Allah has granted you. And ˹you are allowed to marry˺ the daughters of your paternal uncles and aunts, and the daughters of your maternal uncles and aunts, who have emigrated like you. Also ˹allowed for marriage is˺ a believing woman who offers herself to the Prophet ˹without dowry˺ if he is interested in marrying her—˹this is˺ exclusively for you, not for the rest of the believers. We know well what ˹rulings˺ We have ordained for the believers in relation to their wives and those ˹bondwomen˺ in their possession. As such, there would be no blame on you. And Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,147,'It is up to you ˹O Prophet˺ to delay or receive whoever you please of your wives. There is no blame on you if you call back any of those you have set aside. That is more likely that they will be content, not grieved, and satisfied with what you offer them all. Allah ˹fully˺ knows what is in your hearts. And Allah is All-Knowing, Most Forbearing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,147,'It is not lawful for you ˹O Prophet˺ to marry more women after this, nor can you replace any of your present wives with another, even if her beauty may attract you—except those ˹bondwomen˺ in your possession. And Allah is ever Watchful over all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,147,'O believers! Do not enter the homes of the Prophet without permission ˹and if invited˺ for a meal, do not ˹come too early and˺ linger until the meal is ready. But if you are invited, then enter ˹on time˺. Once you have eaten, then go on your way, and do not stay for casual talk. Such behaviour is truly annoying to the Prophet, yet he is too shy to ask you to leave. But Allah is never shy of the truth. And when you ˹believers˺ ask his wives for something, ask them from behind a barrier. This is purer for your hearts and theirs. And it is not right for you to annoy the Messenger of Allah, nor ever marry his wives after him. This would certainly be a major offence in the sight of Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,147,'Whether you reveal something or conceal it, surely Allah has ˹perfect˺ knowledge of all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,147,'There is no blame on the Prophet’s wives ˹if they appear unveiled˺ before their fathers, their sons, their brothers, their brothers’ sons, their sisters’ sons, their fellow ˹Muslim˺ women, and those ˹bondspeople˺ in their possession. And be mindful of Allah ˹O wives of the Prophet!˺ Surely Allah is a Witness over all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,147,'Indeed, Allah showers His blessings upon the Prophet, and His angels pray for him. O believers! Invoke Allah’s blessings upon him, and salute him with worthy greetings of peace.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,147,'Surely those who offend Allah and His Messenger are condemned by Allah in this world and the Hereafter. And He has prepared for them a humiliating punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,147,'As for those who abuse believing men and women unjustifiably, they will definitely bear the guilt of slander and blatant sin.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,147,'O Prophet! Ask your wives, daughters, and believing women to draw their cloaks over their bodies. In this way it is more likely that they will be recognized ˹as virtuous˺ and not be harassed. And Allah is All-Forgiving, Most Merciful. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,147,'If the hypocrites, and those with sickness in their hearts, and rumour-mongers in Medina do not desist, We will certainly incite you ˹O Prophet˺ against them, and then they will not be your neighbours there any longer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,147,'˹They deserve to be˺ condemned. ˹If they were to persist,˺ they would get themselves seized and killed relentlessly wherever they are found!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,147,'That was Allah’s way with those ˹hypocrites˺ who have gone before. And you will find no change in Allah’s way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,147,'People ask you ˹O Prophet˺ about the Hour. Say, “That knowledge is only with Allah. You never know, perhaps the Hour is near.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,147,'Surely Allah condemns the disbelievers, and has prepared for them a blazing Fire,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,147,'to stay there for ever and ever—never will they find any protector or helper.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,147,'On the Day their faces are ˹constantly˺ flipped in the Fire, they will cry, “Oh! If only we had obeyed Allah and obeyed the Messenger!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,147,'And they will say, “Our Lord! We obeyed our leaders and elite, but they led us astray from the ˹Right˺ Way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,147,'Our Lord! Give them double ˹our˺ punishment, and condemn them tremendously.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,147,'O believers! Do not be like those who slandered Moses, but Allah cleared him of what they said. And he was honourable in the sight of Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,147,'O believers! Be mindful of Allah, and say what is right.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,147,'He will bless your deeds for you, and forgive your sins. And whoever obeys Allah and His Messenger, has truly achieved a great triumph.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,147,'Indeed, We offered the trust to the heavens and the earth and the mountains, but they ˹all˺ declined to bear it, being fearful of it. But humanity assumed it, ˹for˺ they are truly wrongful ˹to themselves˺ and ignorant ˹of the consequences˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,147,'so that Allah will punish hypocrite men and women and polytheistic men and women, and Allah will turn in mercy to believing men and women. For Allah is All-Forgiving, Most Merciful. ');
+INSERT INTO chapters (id, number, quran_id) VALUES(148,34,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,148,'All praise is for Allah, to Whom belongs whatever is in the heavens and whatever is on the earth. And praise be to Him in the Hereafter. He is the All-Wise, All-Aware.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,148,'He knows whatever goes into the earth and whatever comes out of it, and whatever descends from the sky and whatever ascends into it. And He is the Most Merciful, All-Forgiving.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,148,'The disbelievers say, “The Hour will never come to us.” Say, ˹O Prophet,˺ “Yes—by my Lord, the Knower of the unseen—it will certainly come to you!” Not ˹even˺ an atom’s weight is hidden from Him in the heavens or the earth; nor anything smaller or larger than that, but is ˹written˺ in a perfect Record.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,148,'So He may reward those who believe and do good. It is they who will have forgiveness and an honourable provision.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,148,'As for those who strive to discredit Our revelations, it is they who will suffer the ˹worst˺ torment of agonizing pain.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,148,'Those gifted with knowledge ˹clearly˺ see that what has been revealed to you from your Lord ˹O Prophet˺ is the truth, and that it guides to the Path of the Almighty, the Praiseworthy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,148,'The disbelievers say ˹mockingly to one another˺, “Shall we show you a man who claims that when you have been utterly disintegrated you will be raised as a new creation?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,148,'Has he fabricated a lie against Allah or is he insane?” In fact, those who do not believe in the Hereafter are bound for torment and have strayed farthest ˹from the truth˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,148,'Have they not then seen all that surrounds them of the heavens and the earth? If We willed, We could cause the earth to swallow them up, or cause ˹deadly˺ pieces of the sky to fall upon them. Surely in this is a sign for every servant who turns ˹to Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,148,'Indeed, We granted David a ˹great˺ privilege from Us, ˹commanding:˺ “O mountains! Echo his hymns! And the birds as well.” We made iron mouldable for him,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,148,'instructing: “Make full-length armour, ˹perfectly˺ balancing the links. And work righteousness ˹O family of David!˺. Indeed, I am All-Seeing of what you do.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,148,'And to Solomon ˹We subjected˺ the wind: its morning stride was a month’s journey and so was its evening stride. And We caused a stream of molten copper to flow for him, and ˹We subjected˺ some of the jinn to work under him by his Lord’s Will. And whoever of them deviated from Our command, We made them taste the torment of the blaze.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,148,'They made for him whatever he desired of sanctuaries, statues, basins as large as reservoirs, and cooking pots fixed ˹into the ground˺. ˹We ordered:˺ “Work gratefully, O family of David!” ˹Only˺ a few of My servants are ˹truly˺ grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,148,'When We decreed Solomon’s death, nothing indicated to the ˹subjected˺ jinn that he was dead except the termites eating away his staff. So when he collapsed, the jinn realized that if they had ˹really˺ known the unseen, they would not have remained in ˹such˺ humiliating servitude.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,148,'Indeed, there was a sign for ˹the tribe of˺ Sheba in their homeland: two orchards—one to the right and the other to the left. ˹They were told:˺ “Eat from the provision of your Lord, and be grateful to Him. ˹Yours is˺ a good land and a forgiving Lord.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,148,'But they turned away. So We sent against them a devastating flood, and replaced their orchards with two others producing bitter fruit, fruitless bushes, and a few ˹sparse˺ thorny trees.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,148,'This is how We rewarded them for their ingratitude. Would We ever punish ˹anyone in such a way˺ except the ungrateful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,148,'We had also placed between them and the cities We showered with blessings ˹many small˺ towns within sight of one another. And We set moderate travel distances in between, ˹saying,˺ “Travel between them by day and night safely.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,148,'But they said, “Our Lord! Make ˹the distances of˺ our journeys longer,” wronging themselves. So We reduced them to ˹cautionary˺ tales, and scattered them utterly. Surely in this are lessons for whoever is steadfast, grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,148,'Indeed, Iblîs’ assumption about them has come true, so they ˹all˺ follow him, except a group of ˹true˺ believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,148,'He does not have any authority over them, but ˹Our Will is˺ only to distinguish those who believe in the Hereafter from those who are in doubt about it. And your Lord is a ˹vigilant˺ Keeper over all things.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,148,'Say, ˹O Prophet,˺ “Call upon those you claim ˹to be divine˺ besides Allah. They do not possess ˹even˺ an atom’s weight either in the heavens or the earth, nor do they have any share in ˹governing˺ them. Nor is any of them a helper to Him.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,148,'No intercession will be of any benefit with Him, except by those granted permission by Him. ˹At last,˺ when the dread ˹of Judgment Day˺ is relieved from their hearts ˹because they are permitted to intercede˺, they will ˹excitedly˺ ask ˹the angels˺, “What has your Lord ˹just˺ said?” The angels will reply, “The truth! And He is the Most High, All-Great.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,148,'Ask ˹them, O Prophet˺, “Who provides for you from the heavens and the earth?” Say, “Allah! Now, certainly one of our two groups is ˹rightly˺ guided; the other is clearly astray.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,148,'Say, “You will not be accountable for our misdeeds, nor will we be accountable for your deeds.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,148,'Say, “Our Lord will gather us together, then He will judge between us with the truth. For He is the All-Knowing Judge.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,148,'Say, “Show me those ˹idols˺ you have joined with Him as partners. No! In fact, He ˹alone˺ is Allah—the Almighty, All-Wise.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,148,'We have sent you ˹O Prophet˺ only as a deliverer of good news and a warner to all of humanity, but most people do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,148,'And they ask ˹the believers˺, “When will this threat come to pass, if what you say is true?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,148,'Say, ˹O Prophet,˺ “A Day has ˹already˺ been appointed for you, which you can neither delay nor advance by a ˹single˺ moment.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,148,'The disbelievers vow, “We will never believe in this Quran, nor in those ˹Scriptures˺ before it.” If only you could see when the wrongdoers will be detained before their Lord, throwing blame at each other! The lowly ˹followers˺ will say to the arrogant ˹leaders˺, “Had it not been for you, we would certainly have been believers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,148,'The arrogant will respond to the lowly, “Did we ever hinder you from guidance after it came to you? In fact, you were wicked ˹on your own˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,148,'The lowly will say to the arrogant, “No! It was your plotting by day and night—when you ordered us to disbelieve in Allah and to set up equals with Him.” They will ˹all˺ hide ˹their˺ remorse when they see the torment. And We will put shackles around the necks of the disbelievers. Will they be rewarded except for what they used to do?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,148,'Whenever We sent a warner to a society, its elite would say, “We truly reject what you have been sent with.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,148,'Adding, “We are far superior ˹to the believers˺ in wealth and children, and we will never be punished.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,148,'Say, ˹O Prophet,˺ “Surely ˹it is˺ my Lord ˹Who˺ gives abundant or limited provisions to whoever He wills. But most people do not know.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,148,'It is not your wealth or children that bring you closer to Us. But those who believe and do good—it is they who will have a multiplied reward for what they did, and they will be secure in ˹elevated˺ mansions.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,148,'As for those who strive to discredit Our revelations, it is they who will be confined in punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,148,'Say, ˹O Prophet,˺ “Surely ˹it is˺ my Lord ˹Who˺ gives abundant or limited provisions to whoever He wills of His servants. And whatever you spend in charity, He will compensate ˹you˺ for it. For He is the Best Provider.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,148,'And ˹consider˺ the Day He will gather them all together, and then ask the angels, “Was it you that these ˹polytheists˺ used to worship?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,148,'They will say, “Glory be to You! Our loyalty is to You, not them. In fact, they ˹only˺ followed the ˹temptations of evil˺ jinn, in whom most of them had faith.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,148,'So Today neither of you can benefit or protect each other. And We will say to the wrongdoers, “Taste the torment of the Fire, which you used to deny.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,148,'When Our clear revelations are recited to them, they say, “This is only a man who wishes to hinder you from what your forefathers used to worship.” They also say, “This ˹Quran˺ is no more than a fabricated lie.” And the disbelievers say of the truth when it has come to them, “This is nothing but pure magic.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,148,'˹They say so even though˺ We had never given them any scriptures to study, nor did We ever send them a warner before you ˹O Prophet˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,148,'Those ˹destroyed˺ before them denied as well—and these ˹Meccans˺ have not attained even one-tenth of what We had given their predecessors. Yet ˹when˺ they denied My messengers, how severe was My response!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,148,'Say, ˹O Prophet,˺ “I advise you to do ˹only˺ one thing: stand up for ˹the sake of˺ Allah—individually or in pairs—then reflect. Your fellow man is not insane. He is only a warner to you before ˹the coming of˺ a severe punishment.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,148,'Say, “If I had ever asked you for a reward, you could keep it. My reward is only from Allah. And He is a Witness over all things.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,148,'Say, “Surely my Lord hurls the truth ˹against falsehood˺. ˹He is˺ the Knower of all unseen.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,148,'Say, “The truth has come, and falsehood will vanish, never to return.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,148,'Say, “If I am astray, the loss is only mine. And if I am guided, it is ˹only˺ because of what my Lord reveals to me. He is indeed All-Hearing, Ever Near.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,148,'If only you could see when they will be horrified with no escape ˹on Judgment Day˺! And they will be seized from a nearby place.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,148,'They will ˹then˺ cry, “We do ˹now˺ believe in it ˹all˺.” But how could they ˹possibly˺ attain faith from a place so far-off ˹from the world˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,148,'while they had already rejected it before, guessing blindly from a place ˹equally˺ far-away ˹from the Hereafter˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,148,'They will be sealed off from whatever they desire, as was done to their counterparts before. Indeed, they were ˹all˺ in alarming doubt.');
+INSERT INTO chapters (id, number, quran_id) VALUES(149,35,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,149,'All praise is for Allah, the Originator of the heavens and the earth, Who made angels ˹as His˺ messengers with wings—two, three, or four. He increases in creation whatever He wills. Surely Allah is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,149,'Whatever mercy Allah opens up for people, none can withhold it. And whatever He withholds, none but Him can release it. For He is the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,149,'O humanity! Remember Allah’s favours upon you. Is there any creator other than Allah who provides for you from the heavens and the earth? There is no god ˹worthy of worship˺ except Him. How can you then be deluded ˹from the truth˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,149,'If you are rejected by them, so too were messengers before you. And to Allah ˹all˺ matters will be returned ˹for judgment˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,149,'O humanity! Indeed, Allah’s promise is true. So do not let the life of this world deceive you, nor let the Chief Deceiver deceive you about Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,149,'Surely Satan is an enemy to you, so take him as an enemy. He only invites his followers to become inmates of the Blaze.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,149,'Those who disbelieve will have a severe punishment. But those who believe and do good will have forgiveness and a great reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,149,'Are those whose evil-doing is made so appealing to them that they deem it good ˹like those who are rightly guided˺? ˹It is˺ certainly Allah ˹Who˺ leaves to stray whoever He wills, and guides whoever He wills. So do not grieve yourself to death over them ˹O Prophet˺. Surely Allah is All-Knowing of what they do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,149,'And it is Allah Who sends the winds, which then stir up ˹vapour, forming˺ clouds, and then We drive them to a lifeless land, giving life to the earth after its death. Similar is the Resurrection.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,149,'Whoever seeks honour and power, then ˹let them know that˺ all honour and power belongs to Allah. To Him ˹alone˺ good words ascend, and righteous deeds are raised up by Him. As for those who plot evil, they will suffer a severe punishment. And the plotting of such ˹people˺ is doomed ˹to fail˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,149,'And ˹it is˺ Allah ˹Who˺ created you from dust, then ˹developed you˺ from a sperm-drop, then made you into pairs. No female ever conceives or delivers without His knowledge. And no one’s life is made long or cut short but is ˹written˺ in a Record. That is certainly easy for Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,149,'The two bodies of water are not alike: one is fresh, palatable, and pleasant to drink and the other is salty and bitter. Yet from them both you eat tender seafood and extract ornaments to wear. And you see the ships ploughing their way through both, so you may seek His bounty and give thanks ˹to Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,149,'He merges the night into the day and the day into the night, and has subjected the sun and the moon, each orbiting for an appointed term. That is Allah—your Lord! All authority belongs to Him. But those ˹idols˺ you invoke besides Him do not possess even the skin of a date stone.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,149,'If you call upon them, they cannot hear your calls. And if they were to hear, they could not respond to you. On the Day of Judgment they will disown your worship ˹of them˺. And no one can inform you ˹O Prophet˺ like the All-Knowledgeable.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,149,'O humanity! It is you who stand in need of Allah, but Allah ˹alone˺ is the Self-Sufficient, Praiseworthy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,149,'If He willed, He could eliminate you and produce a new creation.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,149,'And that is not difficult for Allah ˹at all˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,149,'No soul burdened with sin will bear the burden of another. And if a sin-burdened soul cries for help with its burden, none of it will be carried—even by a close relative. You ˹O Prophet˺ can only warn those who stand in awe of their Lord without seeing Him and establish prayer. Whoever purifies themselves, they only do so for their own good. And to Allah is the final return.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,149,'Those blind ˹to the truth˺ and those who can see are not equal,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,149,'nor are the darkness and the light,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,149,'nor the ˹scorching˺ heat and the ˹cool˺ shade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,149,'Nor are the dead and the living equal. Indeed, Allah ˹alone˺ makes whoever He wills hear, but you ˹O Prophet˺ can never make those in the graves hear ˹your call˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,149,'You are only a warner.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,149,'We have surely sent you with the truth as a deliverer of good news and a warner. There is no community that has not had a warner.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,149,'If they deny you, so did those before them. Their messengers came to them with clear proofs, divine Books, and enlightening Scriptures.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,149,'Then I seized those who persisted in disbelief. How severe was My response!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,149,'Do you not see that Allah sends down rain from the sky with which We bring forth fruits of different colours? And in the mountains are streaks of varying shades of white, red, and raven black;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,149,'just as people, living beings, and cattle are of various colours as well. Of all of Allah’s servants, only the knowledgeable ˹of His might˺ are ˹truly˺ in awe of Him. Allah is indeed Almighty, All-Forgiving.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,149,'Surely those who recite the Book of Allah, establish prayer, and donate from what We have provided for them—secretly and openly—˹can˺ hope for an exchange that will never fail,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,149,'so that He will reward them in full and increase them out of His grace. He is truly All-Forgiving, Most Appreciative.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,149,'The Book We have revealed to you ˹O Prophet˺ is the truth, confirming what came before it. Surely Allah is All-Aware, All-Seeing of His servants.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,149,'Then We granted the Book to those We have chosen from Our servants. Some of them wrong themselves, some follow a middle course, and some are foremost in good deeds by Allah’s Will. That is ˹truly˺ the greatest bounty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,149,'They will enter the Gardens of Eternity, where they will be adorned with bracelets of gold and pearls, and their clothing will be silk.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,149,'And they will say, “Praise be to Allah, Who has kept away from us all ˹causes of˺ sorrow. Our Lord is indeed All-Forgiving, Most Appreciative.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,149,'˹He is the One˺ Who—out of His grace—has settled us in the Home of Everlasting Stay, where we will be touched by neither fatigue nor weariness.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,149,'As for the disbelievers, they will have the Fire of Hell, where they will not be ˹allowed to be˺ finished by death, nor will its torment be lightened for them. This is how We reward every ˹stubborn˺ disbeliever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,149,'There they will be ˹fervently˺ screaming, “Our Lord! Take us out ˹and send us back˺. We will do good, unlike what we used to do.” ˹They will be told,˺ “Did We not give you lives long enough so that whoever wanted to be mindful could have done so? And the warner came to you. So taste ˹the punishment˺, for the wrongdoers have no helper.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,149,'Indeed, Allah is the Knower of the unseen of the heavens and the earth. He surely knows best what is ˹hidden˺ in the heart.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,149,'He is the One Who has placed you as successors on earth. So whoever disbelieves will bear ˹the burden of˺ their own disbelief. The disbelievers’ denial only increases them in contempt in the sight of their Lord, and it will only contribute to their loss.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,149,'Ask ˹them, O Prophet˺, “Have you considered your associate-gods which you invoke besides Allah? Show me what they have created on earth! Or do they have a share in ˹the creation of˺ the heavens? Or have We given the polytheists a Book, which serves as a clear proof for them? In fact, the wrongdoers promise each other nothing but delusion.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,149,'Indeed, Allah ˹alone˺ keeps the heavens and the earth from falling apart. If they were to fall apart, none but Him could hold them up. He is truly Most Forbearing, All-Forgiving.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,149,'They swore by Allah their most solemn oaths that if a warner were to come to them, they would certainly be better guided than any other community. Yet when a warner did come to them, it only drove them farther away—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,149,'behaving arrogantly in the land and plotting evil. But evil plotting only backfires on those who plot. Are they awaiting anything but the fate of those ˹destroyed˺ before? You will find no change in the way of Allah, nor will you find it diverted ˹to someone else˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,149,'Have they not travelled throughout the land to see what was the end of those ˹destroyed˺ before them? They were far superior in might. But there is nothing that can escape Allah in the heavens or the earth. He is certainly All-Knowing, Most Capable.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,149,'If Allah were to punish people ˹immediately˺ for what they have committed, He would not have left a single living being on earth. But He delays them for an appointed term. And when their time arrives, then surely Allah is All-Seeing of His servants.');
+INSERT INTO chapters (id, number, quran_id) VALUES(150,36,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,150,'Yâ-Sĩn.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,150,'By the Quran, rich in wisdom!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,150,'You ˹O Prophet˺ are truly one of the messengers');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,150,'upon the Straight Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,150,'˹This is˺ a revelation from the Almighty, Most Merciful,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,150,'so that you may warn a people whose forefathers were not warned, and so are heedless.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,150,'The decree ˹of torment˺ has already been justified against most of them, for they will never believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,150,'˹It is as if˺ We have put shackles around their necks up to their chins, so their heads are forced up,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,150,'and have placed a barrier before them and a barrier behind them and covered them ˹all˺ up, so they fail to see ˹the truth˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,150,'It is the same whether you warn them or not—they will never believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,150,'You can only warn those who follow the Reminder and are in awe of the Most Compassionate without seeing Him. So give them good news of forgiveness and an honourable reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,150,'It is certainly We Who resurrect the dead, and write what they send forth and what they leave behind. Everything is listed by Us in a perfect Record. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,150,'Give them an example ˹O Prophet˺ of the residents of a town, when the messengers came to them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,150,'We sent them two messengers, but they rejected both. So We reinforced ˹the two˺ with a third, and they declared, “We have indeed been sent to you ˹as messengers˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,150,'The people replied, “You are only humans like us, and the Most Compassionate has not revealed anything. You are simply lying!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,150,'The messengers responded, “Our Lord knows that we have truly been sent to you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,150,'And our duty is only to deliver ˹the message˺ clearly.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,150,'The people replied, “We definitely see you as a bad omen for us. If you do not desist, we will certainly stone you ˹to death˺ and you will be touched with a painful punishment from us.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,150,'The messengers said, “Your bad omen lies within yourselves. Are you saying this because you are reminded ˹of the truth˺? In fact, you are a transgressing people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,150,'Then from the farthest end of the city a man came, rushing. He advised, “O my people! Follow the messengers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,150,'Follow those who ask no reward of you, and are ˹rightly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,150,'And why should I not worship the One Who has originated me, and to Whom you will be returned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,150,'How could I take besides Him other gods whose intercession would not be of any benefit to me, nor could they save me if the Most Compassionate intended to harm me?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,150,'Indeed, I would then be clearly astray.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,150,'I do believe in your Lord, so listen to me.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,150,'˹But they killed him, then˺ he was told ˹by the angels˺, “Enter Paradise!” He said, “If only my people knew');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,150,'of how my Lord has forgiven me, and made me one of the honourable.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,150,'We did not send any soldiers from the heavens against his people after his death, nor did We need to.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,150,'All it took was one ˹mighty˺ blast, and they were extinguished at once.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,150,'Oh pity, such beings! No messenger ever came to them without being mocked.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,150,'Have the deniers not considered how many peoples We destroyed before them who never came back to life again?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,150,'Yet they will all be brought before Us.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,150,'There is a sign for them in the dead earth: We give it life, producing grain from it for them to eat.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,150,'And We have placed in it gardens of palm trees and grapevines, and caused springs to gush forth in it,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,150,'so that they may eat from its fruit, which they had no hand in making. Will they not then give thanks?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,150,'Glory be to the One Who created all ˹things in˺ pairs—˹be it˺ what the earth produces, their genders, or what they do not know!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,150,'There is also a sign for them in the night: We strip from it daylight, then—behold!—they are in darkness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,150,'The sun travels for its fixed term. That is the design of the Almighty, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,150,'As for the moon, We have ordained ˹precise˺ phases for it, until it ends up like an old, curved palm stalk.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,150,'It is not for the sun to catch up with the moon, nor does the night outrun the day. Each is travelling in an orbit of their own.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,150,'Another sign for them is that We carried their ancestors ˹with Noah˺ in the fully loaded Ark,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,150,'and created for them similar things to ride in.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,150,'If We willed, We could drown them: then no one would respond to their cries, nor would they be rescued—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,150,'except by mercy from Us, allowing them enjoyment for a ˹little˺ while.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,150,'˹Still they turn away˺ when it is said to them, “Beware of what is ahead of you ˹in the Hereafter˺ and what is behind you ˹of destroyed nations˺ so you may be shown mercy.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,150,'Whenever a sign comes to them from their Lord, they turn away from it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,150,'And when it is said to them, “Donate from what Allah has provided for you,” the disbelievers say to the believers, “Why should we feed those whom Allah could have fed if He wanted to? You are clearly astray!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,150,'And they ask ˹the believers˺, “When will this threat come to pass, if what you say is true?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,150,'They must be awaiting a single Blast, which will seize them while they are ˹entrenched˺ in ˹worldly˺ disputes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,150,'Then they will not be able to make a ˹last˺ will, nor can they return to their own people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,150,'The Trumpet will be blown ˹a second time˺, then—behold!—they will rush from the graves to their Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,150,'They will cry, “Woe to us! Who has raised us up from our place of rest? This must be what the Most Compassionate warned us of; the messengers told the truth!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,150,'It will only take one Blast, then at once they will all be brought before Us.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,150,'On that Day no soul will be wronged in the least, nor will you be rewarded except for what you used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,150,'Indeed, on that Day the residents of Paradise will be busy enjoying themselves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,150,'They and their spouses will be in ˹cool˺ shade, reclining on ˹canopied˺ couches.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,150,'There they will have fruits and whatever they desire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,150,'And “Peace!” will be ˹their˺ greeting from the Merciful Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,150,'˹Then the disbelievers will be told,˺ “Step away ˹from the believers˺ this Day, O wicked ones!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,150,'Did I not command you, O Children of Adam, not to follow Satan, for he is truly your sworn enemy,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,150,'but to worship Me ˹alone˺? This is the Straight Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,150,'Yet he already misled great multitudes of you. Did you not have any sense?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,150,'This is the Hell you were warned of.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,150,'Burn in it Today for your disbelief.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,150,'On this Day We will seal their mouths, their hands will speak to Us, and their feet will testify to what they used to commit.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,150,'Had We willed, We could have easily blinded their eyes, so they would struggle to find their way. How then could they see?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,150,'And had We willed, We could have transfigured them on the spot, so they could neither progress forward nor turn back.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,150,'And whoever We grant a long life, We reverse them in development. Will they not then understand?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,150,'We have not taught him poetry, nor is it fitting for him. This ˹Book˺ is only a Reminder and a clear Quran');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,150,'to warn whoever is ˹truly˺ alive and fulfil the decree ˹of torment˺ against the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,150,'Do they not see that We singlehandedly created for them, among other things, cattle which are under their control?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,150,'And We have subjected these ˹animals˺ to them, so they may ride some and eat others.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,150,'And they derive from them other benefits and drinks. Will they not then give thanks?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,150,'Still they have taken other gods besides Allah, hoping to be helped ˹by them˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,150,'They cannot help the pagans, even though they serve the idols as dedicated guards.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,150,'So do not let their words grieve you ˹O Prophet˺. Indeed, We ˹fully˺ know what they conceal and what they reveal.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,150,'Do people not see that We have created them from a sperm-drop, then—behold!—they openly challenge ˹Us˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,150,'And they argue with Us—forgetting they were created—saying, “Who will give life to decayed bones?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,150,'Say, ˹O Prophet,˺ “They will be revived by the One Who produced them the first time, for He has ˹perfect˺ knowledge of every created being.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,150,'˹He is the One˺ Who gives you fire from green trees, and—behold!—you kindle ˹fire˺ from them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,150,'Can the One Who created the heavens and the earth not ˹easily˺ resurrect these ˹deniers˺?” Yes ˹He can˺! For He is the Master Creator, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,150,'All it takes, when He wills something ˹to be˺, is simply to say to it: “Be!” And it is!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,150,'So glory be to the One in Whose Hands is the authority over all things, and to Whom ˹alone˺ you will ˹all˺ be returned.');
+INSERT INTO chapters (id, number, quran_id) VALUES(151,37,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,151,'By those ˹angels˺ lined up in ranks,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,151,'and those who diligently drive ˹the clouds˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,151,'and those who recite the Reminder!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,151,'Surely your God is One!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,151,'˹He is˺ the Lord of the heavens and the earth and everything in between, and the Lord of all points of sunrise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,151,'Indeed, We have adorned the lowest heaven with the stars for decoration');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,151,'and ˹for˺ protection from every rebellious devil.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,151,'They cannot listen to the highest assembly ˹of angels˺ for they are pelted from every side,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,151,'˹fiercely˺ driven away. And they will suffer an everlasting torment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,151,'But whoever manages to stealthily eavesdrop is ˹instantly˺ pursued by a piercing flare.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,151,'So ask them ˹O Prophet˺, which is harder to create: them or other marvels of Our creation? Indeed, We created them from a sticky clay.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,151,'In fact, you are astonished ˹by their denial˺, while they ridicule ˹you˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,151,'When they are reminded, they are never mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,151,'And whenever they see a sign, they make fun of it,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,151,'saying, “This is nothing but pure magic.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,151,'When we are dead and reduced to dust and bones, will we really be resurrected?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,151,'And our forefathers as well?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,151,'Say, “Yes! And you will be fully humbled.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,151,'It will only take one Blast, then at once they will see ˹it all˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,151,'They will cry, “Oh, woe to us! This is the Day of Judgment!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,151,'˹They will be told,˺ “This is the Day of ˹Final˺ Decision which you used to deny.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,151,'˹Allah will say to the angels,˺ “Gather ˹all˺ the wrongdoers along with their peers, and whatever they used to worship');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,151,'instead of Allah, then lead them ˹all˺ to the path of Hell.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,151,'And detain them, for they must be questioned.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,151,'˹Then they will be asked,˺ “What is the matter with you that you can no longer help each other?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,151,'In fact, on that Day they will be ˹fully˺ submissive.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,151,'They will turn on each other, throwing blame.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,151,'The misled will say, “It was you who deluded us away from what is right.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,151,'The misleaders will reply, “No! You disbelieved on your own.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,151,'We had no authority over you. In fact, you yourselves were a transgressing people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,151,'The decree of our Lord has come to pass against us ˹all˺: we will certainly taste ˹the punishment˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,151,'We caused you to deviate, for we ourselves were deviant.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,151,'Surely on that Day they will ˹all˺ share in the punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,151,'That is certainly how We deal with the wicked.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,151,'For whenever it was said to them ˹in the world˺, “There is no god ˹worthy of worship˺ except Allah,” they acted arrogantly');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,151,'and argued, “Should we really abandon our gods for a mad poet?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,151,'In fact, he came with the truth, confirming ˹earlier˺ messengers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,151,'You will certainly taste the painful torment,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,151,'and will only be rewarded for what you used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,151,'But not the chosen servants of Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,151,'They will have a known provision:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,151,'fruits ˹of every type˺. And they will be honoured');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,151,'in the Gardens of Bliss,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,151,'facing each other on thrones.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,151,'A drink ˹of pure wine˺ will be passed around to them from a flowing stream:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,151,'crystal-white, delicious to drink.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,151,'It will neither harm ˹them˺, nor will they be intoxicated by it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,151,'And with them will be maidens of modest gaze and gorgeous eyes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,151,'as if they were pristine pearls. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,151,'Then they will turn to one another inquisitively.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,151,'One of them will say, “I once had a companion ˹in the world˺');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,151,'who used to ask ˹me˺, ‘Do you actually believe ˹in resurrection˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,151,'When we are dead and reduced to dust and bones, will we really be brought to judgment?’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,151,'He will ˹then˺ ask, “Would you care to see ˹his fate˺?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,151,'Then he ˹and the others˺ will look and spot him in the midst of the Hellfire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,151,'He will ˹then˺ say, “By Allah! You nearly ruined me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,151,'Had it not been for the grace of my Lord, I ˹too˺ would have certainly been among those brought ˹to Hell˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,151,'˹Then he will ask his fellow believers,˺ “Can you imagine that we will never die,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,151,'except our first death, nor be punished ˹like the others˺?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,151,'This is truly the ultimate triumph.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,151,'For such ˹honour˺ all should strive.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,151,'Is this ˹bliss˺ a better accommodation or the tree of Zaqqûm?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,151,'We have surely made it a test for the wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,151,'Indeed, it is a tree that grows in the depths of Hell,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,151,'bearing fruit like devils’ heads.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,151,'The evildoers will certainly ˹be left to˺ eat from it, filling up their bellies with it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,151,'Then on top of that they will be given a blend of boiling drink.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,151,'Then they will ultimately return to ˹their place in˺ Hell.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,151,'Indeed, they found their forefathers astray,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,151,'so they rushed in their footsteps!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,151,'And surely most of the earlier generations had strayed before them,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,151,'although We had certainly sent warners among them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,151,'See then what was the end of those who had been warned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,151,'But not the chosen servants of Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,151,'Indeed, Noah cried out to Us, and how excellent are We in responding!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,151,'We delivered him and his family from the great distress,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,151,'and made his descendants the sole survivors.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,151,'And We blessed him ˹with honourable mention˺ among later generations:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,151,'“Peace be upon Noah among all peoples.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,151,'Indeed, this is how We reward the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,151,'˹For˺ he was truly one of Our faithful servants.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,151,'Then We drowned the others.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,151,'And indeed, one of those who followed his way was Abraham.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,151,'˹Remember˺ when he came to his Lord with a pure heart,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,151,'and said to his father and his people, “What are you worshipping?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,151,'Is it false gods that you desire instead of Allah?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,151,'What then do you expect from the Lord of all worlds?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,151,'He later looked up to the stars ˹in contemplation˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,151,'then said, “I am really sick.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,151,'So they turned their backs on him and went away.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,151,'Then he ˹stealthily˺ advanced towards their gods, and said ˹mockingly˺, “Will you not eat ˹your offerings˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,151,'What is wrong with you that you cannot speak?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,151,'Then he swiftly turned on them, striking ˹them˺ with his right hand.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,151,'Later, his people came rushing towards him ˹furiously˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,151,'He argued, “How can you worship what you carve ˹with your own hands˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,151,'when it is Allah Who created you and whatever you do?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,2,151,'They said ˹to one another˺, “Build him a furnace and cast him into the blazing fire.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,2,151,'And so they sought to harm him, but We made them inferior.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,2,151,'He later said, “I am leaving ˹in obedience˺ to my Lord. He will guide me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,2,151,'My Lord! Bless me with righteous offspring.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,2,151,'So We gave him good news of a forbearing son.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,2,151,'Then when the boy reached the age to work with him, Abraham said, “O my dear son! I have seen in a dream that I ˹must˺ sacrifice you. So tell me what you think.” He replied, “O my dear father! Do as you are commanded. Allah willing, you will find me steadfast.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,2,151,'Then when they submitted ˹to Allah’s Will˺, and Abraham laid him on the side of his forehead ˹for sacrifice˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,2,151,'We called out to him, “O Abraham!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,2,151,'You have already fulfilled the vision.” Indeed, this is how We reward the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,2,151,'That was truly a revealing test.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,2,151,'And We ransomed his son with a great sacrifice,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,2,151,'and blessed Abraham ˹with honourable mention˺ among later generations:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,2,151,'“Peace be upon Abraham.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,2,151,'This is how We reward the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,2,151,'He was truly one of Our faithful servants.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,2,151,'We ˹later˺ gave him good news of Isaac—a prophet, and one of the righteous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,2,151,'We blessed him and Isaac as well. Some of their descendants did good, while others clearly wronged themselves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,2,151,'And We certainly showed favour to Moses and Aaron,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,2,151,'and delivered them and their people from the great distress.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,2,151,'We helped them so it was they who prevailed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,2,151,'We gave them the clear Scripture,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,2,151,'and guided them to the Straight Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,2,151,'And We blessed them ˹with honourable mention˺ among later generations:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,2,151,'“Peace be upon Moses and Aaron.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,2,151,'Indeed, this is how We reward the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,2,151,'They were truly ˹two˺ of Our faithful servants.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,2,151,'And Elias was indeed one of the messengers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,2,151,'˹Remember˺ when he said to his people, “Will you not fear ˹Allah˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,2,151,'Do you call upon ˹the idol of˺ Ba’l and abandon the Best of Creators—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,2,151,'Allah, your Lord and the Lord of your forefathers?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,2,151,'But they rejected him, so they will certainly be brought ˹for punishment˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,2,151,'But not the chosen servants of Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,2,151,'We blessed him ˹with honourable mention˺ among later generations:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,2,151,'“Peace be upon Elias.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,2,151,'Indeed, this is how We reward the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,2,151,'He was truly one of Our faithful servants.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,2,151,'And Lot was indeed one of the messengers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,2,151,'˹Remember˺ when We delivered him and all of his family,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,2,151,'except an old woman, who was one of the doomed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,2,151,'Then We ˹utterly˺ destroyed the rest.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,2,151,'You ˹Meccans˺ certainly pass by their ruins day');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,2,151,'and night. Will you not then understand?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,2,151,'And Jonah was indeed one of the messengers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,2,151,'˹Remember˺ when he fled to the overloaded ship.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,2,151,'Then ˹to save it from sinking,˺ he drew straws ˹with other passengers˺. He lost ˹and was thrown overboard˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,2,151,'Then the whale engulfed him while he was blameworthy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,2,151,'Had he not ˹constantly˺ glorified ˹Allah˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,2,151,'he would have certainly remained in its belly until the Day of Resurrection.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,2,151,'But We cast him onto the open ˹shore˺, ˹totally˺ worn out,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,2,151,'and caused a squash plant to grow over him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,2,151,'We ˹later˺ sent him ˹back˺ to ˹his city of˺ at least one hundred thousand people,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,2,151,'who then believed ˹in him˺, so We allowed them enjoyment for a while.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,2,151,'Ask them ˹O Prophet˺ if your Lord has daughters, while the pagans ˹prefer to˺ have sons.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,2,151,'Or ˹ask them˺ if We created the angels as females right before their eyes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,2,151,'Indeed, it is one of their ˹outrageous˺ fabrications to say,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,2,151,'“Allah has children.” They are simply liars.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,2,151,'Has He chosen daughters over sons?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,2,151,'What is the matter with you? How do you judge?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,2,151,'Will you not then be mindful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,2,151,'Or do you have ˹any˺ compelling proof?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,2,151,'Then bring ˹us˺ your scripture, if what you say is true!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,2,151,'They have also established a ˹marital˺ relationship between Him and the jinn. Yet the jinn ˹themselves˺ know well that such people will certainly be brought ˹for punishment˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,2,151,'Glorified is Allah far above what they claim!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,2,151,'But not the chosen servants of Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,2,151,'Surely you ˹pagans˺ and whatever ˹idols˺ you worship');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,2,151,'can never lure ˹anyone˺ away from Him');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,2,151,'except those ˹destined˺ to burn in Hell.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,2,151,'˹The angels respond,˺ “There is not one of us without an assigned station ˹of worship˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,2,151,'We are indeed the ones lined up in ranks ˹for Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,2,151,'And we are indeed the ones ˹constantly˺ glorifying ˹His praise˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,2,151,'They certainly used to say,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,2,151,'“If only we had a Reminder like ˹those of˺ earlier peoples,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,2,151,'we would have truly been Allah’s devoted servants.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,2,151,'But ˹now˺ they reject it, so they will soon know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,2,151,'Our Word has already gone forth to Our servants, the messengers,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,2,151,'that they would surely be helped,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,2,151,'and that Our forces will certainly prevail.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,2,151,'So turn away from the deniers for a while ˹O Prophet˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,2,151,'You will see ˹what will happen to˺ them, and they too will see!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,2,151,'Do they ˹really˺ wish to hasten Our punishment?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,2,151,'Yet when it descends upon them: how evil will that morning be for those who had been warned!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,2,151,'And turn away from them for a while.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,2,151,'You will see, and they too will see!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,2,151,'Glorified is your Lord—the Lord of Honour and Power—above what they claim!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,2,151,'Peace be upon the messengers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,2,151,'And praise be to Allah—Lord of all worlds.');
+INSERT INTO chapters (id, number, quran_id) VALUES(152,38,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,152,'Ṣãd. By the Quran, full of reminders!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,152,'˹This is the truth,˺ yet the disbelievers are ˹entrenched˺ in arrogance and opposition.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,152,'˹Imagine˺ how many peoples We destroyed before them, and they cried out when it was too late to escape.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,152,'Now, the pagans are astonished that a warner has come to them from among themselves. And the disbelievers say, “This is a magician, a total liar!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,152,'Has he reduced ˹all˺ the gods to One God? Indeed, this is something totally astonishing.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,152,'The chiefs among them went forth saying, “Carry on, and stand firm in devotion to your gods. Certainly this is just a scheme ˹for power˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,152,'We have never heard of this in the previous faith. This is nothing but a fabrication.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,152,'Has the Reminder been revealed ˹only˺ to him out of ˹all of˺ us?” In fact, they are ˹only˺ in doubt of My ˹revealed˺ Reminder. In fact, ˹they do so because˺ they have not yet tasted My punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,152,'Or ˹is it because˺ they possess the treasuries of the mercy of your Lord—the Almighty, the Giver ˹of all bounties˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,152,'Or ˹is it because˺ the kingdom of the heavens and the earth and everything in between belongs to them? Let them then climb their way ˹to heaven, if their claim is true˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,152,'This is just another ˹enemy˺ force bound for defeat out there.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,152,'Before them, the people of Noah denied ˹the truth˺, as did ’Âd, Pharaoh of the mighty structures,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,152,'Thamûd, the people of Lot, and the residents of the Forest. These were ˹all˺ enemy forces.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,152,'Each rejected their messenger, so My punishment was justified.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,152,'These ˹pagans˺ are awaiting nothing but a single Blast that cannot be stopped.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,152,'They say ˹mockingly˺, “Our Lord! Hasten for us our share ˹of the punishment˺ before the Day of Reckoning.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,152,'Be patient ˹O Prophet˺ with what they say. And remember Our servant, David, the man of strength. Indeed, he ˹constantly˺ turned ˹to Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,152,'We truly subjected the mountains to hymn ˹Our praises˺ along with him in the evening and after sunrise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,152,'And ˹We subjected˺ the birds, flocking together. All turned to him ˹echoing his hymns˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,152,'We strengthened his kingship, and gave him wisdom and sound judgment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,152,'Has the story of the two plaintiffs, who scaled the ˹wall of David’s˺ sanctuary, reached you ˹O Prophet˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,152,'When they came into David’s presence, he was startled by them. They said, “Have no fear. ˹We are merely˺ two in a dispute: one of us has wronged the other. So judge between us with truth—do not go beyond ˹it˺—and guide us to the right way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,152,'This is my brother. He has ninety-nine sheep while I have ˹only˺ one. ˹Still˺ he asked me to give it up to him, overwhelming me with ˹his˺ argument.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,152,'David ˹eventually˺ ruled, “He has definitely wronged you in demanding ˹to add˺ your sheep to his. And certainly many partners wrong each other, except those who believe and do good—but how few are they!” Then David realized that We had tested him so he asked for his Lord’s forgiveness, fell down in prostration, and turned ˹to Him in repentance˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,152,'So We forgave that for him. And he will indeed have ˹a status of˺ closeness to Us and an honourable destination!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,152,'˹We instructed him:˺ “O David! We have surely made you an authority in the land, so judge between people with truth. And do not follow ˹your˺ desires or they will lead you astray from Allah’s Way. Surely those who go astray from Allah’s Way will suffer a severe punishment for neglecting the Day of Reckoning.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,152,'We have not created the heavens and earth and everything in between without purpose—as the disbelievers think. So woe to the disbelievers because of the Fire!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,152,'Or should We treat those who believe and do good like those who make mischief throughout the land? Or should We treat the righteous like the wicked?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,152,'˹This is˺ a blessed Book which We have revealed to you ˹O Prophet˺ so that they may contemplate its verses, and people of reason may be mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,152,'And We blessed David with Solomon—what an excellent servant ˹he was˺! Indeed, he ˹constantly˺ turned ˹to Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,152,'˹Remember˺ when the well-trained, swift horses were paraded before him in the evening.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,152,'He then proclaimed, “I am truly in love with ˹these˺ fine things out of remembrance for Allah,” until they went out of sight.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,152,'˹He ordered,˺ “Bring them back to me!” Then he began to rub down their legs and necks. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,152,'And indeed, We tested Solomon, placing a ˹deformed˺ body on his throne, then he turned ˹to Allah in repentance˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,152,'He prayed, “My Lord! Forgive me, and grant me an authority that will never be matched by anyone after me. You are indeed the Giver ˹of all bounties˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,152,'So We subjected to him the wind, blowing gently at his command to wherever he pleased.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,152,'And ˹We subjected to him˺ every builder and diver of the jinn,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,152,'and others bound together in chains.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,152,'˹Allah said,˺ “This is Our gift, so give or withhold ˹as you wish˺, never to be called to account.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,152,'And he will indeed have ˹a status of˺ closeness to Us and an honourable destination!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,152,'And remember Our servant Job, when he cried out to his Lord, “Satan has afflicted me with distress and suffering.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,152,'˹We responded,˺ “Stomp your foot: ˹now˺ here is a cool ˹and refreshing˺ spring for washing and drinking.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,152,'And We gave him back his family, twice as many, as a mercy from Us and a lesson for people of reason.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,152,'˹And We said to him,˺ “Take in your hand a bundle of grass, and strike ˹your wife˺ with it, and do not break your oath.” We truly found him patient. What an excellent servant ˹he was˺! Indeed, he ˹constantly˺ turned ˹to Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,152,'And remember Our servants: Abraham, Isaac, and Jacob—the men of strength and insight.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,152,'We truly chose them for the honour of proclaiming the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,152,'And in Our sight they are truly among the chosen and the finest.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,152,'Also remember Ishmael, Elisha, and Ⱬul-Kifl. All are among the best.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,152,'This is ˹all˺ a reminder. And the righteous will certainly have an honourable destination:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,152,'the Gardens of Eternity, whose gates will be open for them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,152,'There they will recline, calling for abundant fruit and drink.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,152,'And with them will be maidens of modest gaze and equal age.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,152,'This is what you are promised for the Day of Reckoning.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,152,'This is indeed Our provision that will never end.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,152,'That is that. And the transgressors will certainly have the worst destination:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,152,'Hell, where they will burn. What an evil place to rest!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,152,'Let them then taste this: boiling water and ˹oozing˺ pus,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,152,'and other torments of the same sort!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,152,'˹The misleaders will say to one another,˺ “Here is a crowd ˹of followers˺ being thrown in with us. They are not welcome, ˹for˺ they ˹too˺ will burn in the Fire.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,152,'The followers will respond, “No! You are not welcome! You brought this upon us. What an evil place for settlement!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,152,'Adding, “Our Lord! Whoever brought this upon us, double their punishment in the Fire.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,152,'The tyrants will ask ˹one another˺, “But why do we not see those we considered to be lowly?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,152,'Were we wrong in mocking them ˹in the world˺? Or do our eyes ˹just˺ fail to see them ˹in the Fire˺?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,152,'This dispute between the residents of the Fire will certainly come to pass.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,152,'Say, ˹O Prophet,˺ “I am only a warner. And there is no god ˹worthy of worship˺ except Allah—the One, the Supreme.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,152,'˹He is the˺ Lord of the heavens and the earth and everything in between—the Almighty, Most Forgiving.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,152,'Say, “This ˹Quran˺ is momentous news,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,152,'from which you ˹pagans˺ are turning away.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,152,'˹And say,˺ “I had no knowledge of the highest assembly ˹in heaven˺ when they differed ˹concerning Adam˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,152,'What is revealed to me is that I am only sent with a clear warning.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,152,'˹Remember, O Prophet˺ when your Lord said to the angels, “I am going to create a human being from clay.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,152,'So when I have fashioned him and had a spirit of My Own ˹creation˺ breathed into him, fall down in prostration to him.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,152,'So the angels prostrated all together—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,152,'but not Iblîs, who acted arrogantly, becoming unfaithful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,152,'Allah asked, “O Iblîs! What prevented you from prostrating to what I created with My Own Hands? Did you ˹just˺ become proud? Or have you always been arrogant?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,152,'He replied, “I am better than he is: You created me from fire and him from clay.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,152,'Allah commanded, “Then get out of Paradise, for you are truly cursed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,152,'And surely upon you is My condemnation until the Day of Judgment.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,152,'Satan appealed, “My Lord! Then delay my end until the Day of their resurrection.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,152,'Allah said, “You will be delayed');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,152,'until the appointed Day.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,152,'Satan said, “By Your Glory! I will certainly mislead them all,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,152,'except Your chosen servants among them.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,152,'Allah concluded, “The truth is—and I ˹only˺ say the truth—:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,152,'I will surely fill up Hell with you and whoever follows you from among them, all together.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,152,'Say, ˹O Prophet,˺ “I do not ask you for any reward for this ˹Quran˺, nor do I pretend to be someone I am not.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,152,'It is only a reminder to the whole world.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,152,'And you will certainly know its truth before long.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(153,39,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,153,'The revelation of this Book is from Allah—the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,153,'Indeed, We have sent down the Book to you ˹O Prophet˺ in truth, so worship Allah ˹alone˺, being sincerely devoted to Him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,153,'Indeed, sincere devotion is due ˹only˺ to Allah. As for those who take other lords besides Him, ˹saying,˺ “We worship them only so they may bring us closer to Allah,” surely Allah will judge between all regarding what they differed about. Allah certainly does not guide whoever persists in lying and disbelief.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,153,'Had it been Allah’s Will to have offspring, He could have chosen whatever He willed of His creation. Glory be to Him! He is Allah—the One, the Supreme.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,153,'He created the heavens and the earth for a purpose. He wraps the night around the day, and wraps the day around the night. And He has subjected the sun and the moon, each orbiting for an appointed term. He is truly the Almighty, Most Forgiving.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,153,'He created you ˹all˺ from a single soul, then from it He made its mate. And He produced for you four pairs of cattle. He creates you in the wombs of your mothers ˹in stages˺, one development after another, in three layers of darkness. That is Allah—your Lord! All authority belongs to Him. There is no god ˹worthy of worship˺ except Him. How can you then be turned away?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,153,'If you disbelieve, then ˹know that˺ Allah is truly not in need of you, nor does He approve of disbelief from His servants. But if you become grateful ˹through faith˺, He will appreciate that from you. No soul burdened with sin will bear the burden of another. Then to your Lord is your return, and He will inform you of what you used to do. He certainly knows best what is ˹hidden˺ in the heart.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,153,'When one is touched with hardship, they cry out to their Lord, turning to Him ˹alone˺. But as soon as He showers them with blessings from Him, they ˹totally˺ forget the One they had cried to earlier, and set up equals to Allah to mislead ˹others˺ from His Way. Say, ˹O Prophet,˺ “Enjoy your disbelief for a little while! You will certainly be one of the inmates of the Fire.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,153,'˹Are they better˺ or those who worship ˹their Lord˺ devoutly in the hours of the night, prostrating and standing, fearing the Hereafter and hoping for the mercy of their Lord? Say, ˹O Prophet,˺ “Are those who know equal to those who do not know?” None will be mindful ˹of this˺ except people of reason.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,153,'Say ˹O Prophet, that Allah says˺, “O My servants who believe! Be mindful of your Lord. Those who do good in this world will have a good reward. And Allah’s earth is spacious. Only those who endure patiently will be given their reward without limit.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,153,'Say, “I am commanded to worship Allah, being sincerely devoted to Him ˹alone˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,153,'And I am commanded to be the first of those who submit ˹to His Will˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,153,'Say, “I truly fear—if I were to disobey my Lord—the torment of a tremendous Day.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,153,'Say, “It is ˹only˺ Allah that I worship, being sincere in my devotion to Him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,153,'Worship then whatever ˹gods˺ you want instead of Him.” Say, “The ˹true˺ losers are those who will lose themselves and their families on Judgment Day. That is indeed the clearest loss.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,153,'They will have layers of fire above and below them. That is what Allah warns His servants with. So fear Me, O My servants!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,153,'And those who shun the worship of false gods, turning to Allah ˹alone˺, will have good news. So give good news to My servants ˹O Prophet˺—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,153,'those who listen to what is said and follow the best of it. These are the ones ˹rightly˺ guided by Allah, and these are ˹truly˺ the people of reason.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,153,'What about those against whom the decree of torment has been justified? Is it you ˹O Prophet˺ who will then save those bound for the Fire?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,153,'But those mindful of their Lord will have ˹elevated˺ mansions, built one above the other, under which rivers flow. ˹That is˺ the promise of Allah. ˹And˺ Allah never fails in ˹His˺ promise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,153,'Do you not see that Allah sends down rain from the sky—channelling it through streams in the earth—then produces with it crops of various colours, then they dry up and you see them wither, and then He reduces them to chaff? Surely in this is a reminder for people of reason.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,153,'Can ˹the misguided be like˺ those whose hearts Allah has opened to Islam, so they are enlightened by their Lord? So woe to those whose hearts are hardened at the remembrance of Allah! It is they who are clearly astray.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,153,'˹It is˺ Allah ˹Who˺ has sent down the best message—a Book of perfect consistency and repeated lessons—which causes the skin ˹and hearts˺ of those who fear their Lord to tremble, then their skin and hearts soften at the mention of ˹the mercy of˺ Allah. That is the guidance of Allah, through which He guides whoever He wills. But whoever Allah leaves to stray will be left with no guide.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,153,'Are those who will only have their ˹bare˺ faces to shield themselves from the awful torment on Judgment Day ˹better than those in Paradise˺? It will ˹then˺ be said to the wrongdoers: “Reap what you sowed!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,153,'Those before them ˹also˺ rejected ˹the truth˺, then the torment came upon them from where they least expected.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,153,'So Allah made them taste humiliation in this worldly life, but far worse is the punishment of the Hereafter, if only they knew.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,153,'We have certainly set forth every ˹kind of˺ lesson for people in this Quran, so perhaps they will be mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,153,'˹It is˺ a Quran ˹revealed˺ in Arabic without any crookedness, so perhaps they will be conscious ˹of Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,153,'Allah sets forth the parable of a slave owned by several quarrelsome masters, and a slave owned by only one master. Are they equal in condition? Praise be to Allah! In fact, most of them do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,153,'You ˹O Prophet˺ will certainly die, and they will die too.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,153,'Then on the Day of Judgment you will ˹all settle your˺ dispute before your Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,153,'Who then does more wrong than those who lie about Allah and reject the truth after it has reached them? Is Hell not a ˹fitting˺ home for the disbelievers?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,153,'And the one who has brought the truth and those who embrace it—it is they who are the righteous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,153,'They will have whatever they desire with their Lord. That is the reward of the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,153,'As such, Allah will absolve them of ˹even˺ the worst of what they did and reward them according to the best of what they used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,153,'Is Allah not sufficient for His servant? Yet they threaten you with other ˹powerless˺ gods besides Him! Whoever Allah leaves to stray will be left with no guide.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,153,'And whoever Allah guides, none can lead astray. Is Allah not Almighty, capable of punishment?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,153,'If you ask them ˹O Prophet˺ who created the heavens and the earth, they will certainly say, “Allah!” Ask ˹them˺, “Consider then whatever ˹idols˺ you invoke besides Allah: if it was Allah’s Will to harm me, could they undo that harm? Or if He willed ˹some˺ mercy for me, could they withhold His mercy?” Say, “Allah is sufficient for me. In Him ˹alone˺ the faithful put their trust.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,153,'Say, ˹O Prophet,˺ “O my people! Persist in your ways, for I ˹too˺ will persist in mine. You will soon come to know');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,153,'who will be visited by a humiliating torment ˹in this life˺ and overwhelmed by an everlasting punishment ˹in the next˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,153,'Surely We have revealed to you the Book ˹O Prophet˺ with the truth for humanity. So whoever chooses to be guided, it is for their own good. And whoever chooses to stray, it is only to their own loss. You are not a keeper over them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,153,'˹It is˺ Allah ˹Who˺ calls back the souls ˹of people˺ upon their death as well as ˹the souls˺ of the living during their sleep. Then He keeps those for whom He has ordained death, and releases the others until ˹their˺ appointed time. Surely in this are signs for people who reflect.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,153,'Or have they taken others besides Allah as intercessors? Say, ˹O Prophet,˺ “˹Would they do so,˺ even though those ˹idols˺ have neither authority nor intelligence?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,153,'Say, “All intercession belongs to Allah ˹alone˺. To Him belongs the kingdom of the heavens and the earth. Then to Him you will ˹all˺ be returned.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,153,'Yet when Allah alone is mentioned, the hearts of those who disbelieve in the Hereafter are filled with disgust. But as soon as those ˹gods˺ other than Him are mentioned, they are filled with joy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,153,'Say, ˹O Prophet,˺ “O Allah—Originator of the heavens and the earth, Knower of the seen and unseen! You will judge between Your servants regarding their differences.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,153,'Even if the wrongdoers were to possess everything in the world twice over, they would certainly offer it to ransom themselves from the horrible punishment on Judgment Day, for they will see from Allah what they had never expected.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,153,'And the evil ˹consequences˺ of their deeds will unfold before them, and they will be overwhelmed by what they used to ridicule.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,153,'When one is touched with hardship, they cry out to Us ˹alone˺. Then when We shower Our blessings upon them, they say, “I have been granted all this only because of ˹my˺ knowledge.” Not at all! It is ˹no more than˺ a test. But most of them do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,153,'The same had already been said by those ˹destroyed˺ before them, but their ˹worldly˺ gains were of no benefit to them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,153,'So the evil ˹consequences˺ of their deeds overtook them. And the wrongdoers among these ˹pagans˺ will be overtaken by the evil ˹consequences˺ of their deeds. And they will have no escape.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,153,'Do they not know that Allah gives abundant or limited provisions to whoever He wills? Surely in this are signs for people who believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,153,'Say, ˹O Prophet, that Allah says,˺ “O My servants who have exceeded the limits against their souls! Do not lose hope in Allah’s mercy, for Allah certainly forgives all sins. He is indeed the All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,153,'Turn to your Lord ˹in repentance˺, and ˹fully˺ submit to Him before the punishment reaches you, ˹for˺ then you will not be helped.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,153,'Follow ˹the Quran,˺ the best of what has been revealed to you from your Lord, before the punishment takes you by surprise while you are unaware,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,153,'so that no ˹sinful˺ soul will say ˹on Judgment Day˺, ‘Woe to me for neglecting ˹my duties towards˺ Allah, while ridiculing ˹the truth˺.’');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,153,'Or ˹a soul will˺ say, ‘If only Allah had guided me, I would have certainly been one of the righteous.’');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,153,'Or say, upon seeing the torment, ‘If only I had a second chance, I would have been one of the good-doers.’');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,153,'Not at all! My revelations had already come to you, but you rejected them, acted arrogantly, and were one of the disbelievers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,153,'On the Day of Judgment you will see those who lied about Allah with their faces gloomy. Is Hell not a ˹fitting˺ home for the arrogant?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,153,'And Allah will deliver those who were mindful ˹of Him˺ to their place of ˹ultimate˺ triumph. No evil will touch them, nor will they grieve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,153,'Allah is the Creator of all things, and He is the Maintainer of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,153,'To Him belong the keys ˹of the treasuries˺ of the heavens and the earth. As for those who rejected the signs of Allah, it is they who will be the ˹true˺ losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,153,'Say, ˹O Prophet,˺ “Are you urging me to worship ˹anyone˺ other than Allah, O ignorant ones?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,153,'It has already been revealed to you—and to those ˹prophets˺ before you—that if you associate others ˹with Allah˺, your deeds will certainly be void and you will truly be one of the losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,153,'Rather, worship Allah ˹alone˺ and be one of the grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,153,'They have not shown Allah His proper reverence—when on the Day of Judgment the ˹whole˺ earth will be in His Grip, and the heavens will be rolled up in His Right Hand. Glorified and Exalted is He above what they associate ˹with Him˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,153,'The Trumpet will be blown and all those in the heavens and all those on the earth will fall dead, except those Allah wills ˹to spare˺. Then it will be blown again and they will rise up at once, looking on ˹in anticipation˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,153,'The earth will shine with the light of its Lord, the record ˹of deeds˺ will be laid ˹open˺, the prophets and the witnesses will be brought forward—and judgment will be passed on all with fairness. None will be wronged.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,153,'Every soul will be paid in full for its deeds, for Allah knows best what they have done.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,153,'Those who disbelieved will be driven to Hell in ˹successive˺ groups. When they arrive there, its gates will be opened and its keepers will ask them: “Did messengers not come to you from among yourselves, reciting to you the revelations of your Lord and warning you of the coming of this Day of yours?” The disbelievers will cry, “Yes ˹indeed˺! But the decree of torment has come to pass against the disbelievers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,153,'It will be said to them, “Enter the gates of Hell, to stay there forever.” What an evil home for the arrogant!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,153,'And those who were mindful of their Lord will be led to Paradise in ˹successive˺ groups. When they arrive at its ˹already˺ open gates, its keepers will say, “Peace be upon you! You have done well, so come in, to stay forever.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,153,'The righteous will say, “Praise be to Allah Who has fulfilled His promise to us, and made us inherit the ˹everlasting˺ land to settle in Paradise wherever we please.” How excellent is the reward of those who work ˹righteousness˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,153,'You will see the angels all around the Throne, glorifying the praises of their Lord, for judgment will have been passed on all with fairness. And it will be said, “Praise be to Allah—Lord of all worlds!”');
+INSERT INTO chapters (id, number, quran_id) VALUES(154,40,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,154,'Ḥâ-Mĩm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,154,'The revelation of this Book is from Allah—the Almighty, All-Knowing,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,154,'the Forgiver of sin and Accepter of repentance, the Severe in punishment, and Infinite in bounty. There is no god ˹worthy of worship˺ except Him. To Him ˹alone˺ is the final return.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,154,'None disputes the signs of Allah except the disbelievers, so do not be deceived by their prosperity throughout the land.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,154,'Before them, the people of Noah denied ˹the truth˺, as did ˹other˺ enemy forces afterwards. Every community plotted against its prophet to seize him, and argued in falsehood, ˹hoping˺ to discredit the truth with it. So I seized them. And how ˹horrible˺ was My punishment!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,154,'And so your Lord’s decree has been proven true against the disbelievers—that they will be the inmates of the Fire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,154,'Those ˹angels˺ who carry the Throne and those around it glorify the praises of their Lord, have faith in Him, and seek forgiveness for the believers, ˹praying:˺ “Our Lord! You encompass everything in ˹Your˺ mercy and knowledge. So forgive those who repent and follow Your Way, and protect them from the torment of the Hellfire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,154,'Our Lord! Admit them into the Gardens of Eternity which You have promised them, along with the righteous among their parents, spouses, and descendants. You ˹alone˺ are truly the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,154,'And protect them from ˹the consequences of their˺ evil deeds. For whoever You protect from the evil of their deeds on that Day will have been shown Your mercy. That is ˹truly˺ the ultimate triumph.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,154,'Indeed, it will be announced to the disbelievers, “Allah’s contempt for you—as you disbelieved when invited to belief—was far worse than your contempt for one another ˹Today˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,154,'They will plead, “Our Lord! You made us lifeless twice, and gave us life twice. Now we confess our sins. So is there any way out?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,154,'˹They will be told,˺ “˹No!˺ This is because when Allah alone was invoked, you ˹staunchly˺ disbelieved. But when others were associated with Him ˹in worship˺, you ˹readily˺ believed. So ˹Today˺ judgment belongs to Allah ˹alone˺—the Most High, All-Great.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,154,'He is the One Who shows you His signs and sends down ˹rain as˺ a provision for you from the sky. ˹But˺ none will be mindful except those who turn ˹to Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,154,'So call upon Allah with sincere devotion, even to the dismay of the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,154,'˹He is˺ Highly Exalted in rank, Lord of the Throne. He sends down the revelation by His command to whoever He wills of His servants to warn ˹all˺ of the Day of Meeting—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,154,'the Day all will appear ˹before Allah˺. Nothing about them will be hidden from Him. ˹He will ask,˺ “Who does all authority belong to this Day? To Allah—the One, the Supreme!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,154,'Today every soul will be rewarded for what it has done. No injustice Today! Surely Allah is swift in reckoning.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,154,'Warn them ˹O Prophet˺ of the approaching Day when the hearts will jump into the throats, suppressing distress. The wrongdoers will have neither a close friend nor intercessor to be heard.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,154,'Allah ˹even˺ knows the sly glances of the eyes and whatever the hearts conceal.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,154,'And Allah judges with the truth, while those ˹idols˺ they invoke besides Him cannot judge at all. Indeed, Allah ˹alone˺ is the All-Hearing, All-Seeing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,154,'Have they not travelled throughout the land to see what was the end of those ˹destroyed˺ before them? They were far superior in might and ˹richer in˺ monuments throughout the land. But Allah seized them for their sins, and they had no protector from Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,154,'That was because their messengers used to come to them with clear proofs, but they persisted in disbelief. So Allah seized them. Surely He is All-Powerful, severe in punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,154,'Indeed, We sent Moses with Our signs and compelling proof');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,154,'to Pharaoh, Hamân, and Korah. But they responded: “Magician! Total liar!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,154,'Then, when he came to them with the truth from Us, they said, “Kill the sons of those who believe with him and keep their women.” But the plotting of the disbelievers was only in vain.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,154,'And Pharaoh said, “Let me kill Moses, and let him call upon his Lord! I truly fear that he may change your traditions or cause mischief in the land.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,154,'Moses replied, “I seek refuge in my Lord and your Lord from every arrogant person who does not believe in the Day of Reckoning.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,154,'A believing man from Pharaoh’s people, who was hiding his faith, argued, “Will you kill a man ˹only˺ for saying: ‘My Lord is Allah,’ while he has in fact come to you with clear proofs from your Lord? If he is a liar, it will be to his own loss. But if he is truthful, then you will be afflicted with some of what he is threatening you with. Surely Allah does not guide whoever is a transgressor, a total liar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,154,'O my people! Authority belongs to you today, reigning supreme in the land. But who would help us against the torment of Allah, if it were to befall us?” Pharaoh assured ˹his people˺, “I am telling you only what I believe, and I am leading you only to the way of guidance.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,154,'And the man who believed cautioned, “O my people! I truly fear for you the doom of ˹earlier˺ enemy forces—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,154,'like the fate of the people of Noah, ’Ȃd, Thamûd, and those after them. For Allah would never will to wrong ˹His˺ servants.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,154,'O my people! I truly fear for you the Day all will be crying out ˹to each other˺—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,154,'the Day you will ˹try in vain to˺ turn your backs and run away, with no one to protect you from Allah. And whoever Allah leaves to stray will be left with no guide.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,154,'Joseph already came to you earlier with clear proofs, yet you never ceased to doubt what he came to you with. When he died you said, ‘Allah will never send a messenger after him.’ This is how Allah leaves every transgressor and doubter to stray—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,154,'those who dispute Allah’s signs with no proof given to them. How despicable is that for Allah and the believers! This is how Allah seals the heart of every arrogant tyrant.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,154,'Pharaoh ordered, “O Hamân! Build me a high tower so I may reach the pathways');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,154,'leading up to the heavens and look for the God of Moses, although I am sure he is a liar.” And so Pharaoh’s evil deeds were made so appealing to him that he was hindered from the ˹Right˺ Way. But the plotting of Pharaoh was only in vain.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,154,'And the man who believed urged, “O my people! Follow me, ˹and˺ I will lead you to the Way of Guidance.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,154,'O my people! This worldly life is only ˹a fleeting˺ enjoyment, whereas the Hereafter is truly the home of settlement.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,154,'Whoever does an evil deed will only be paid back with its equivalent. And whoever does good, whether male or female, and is a believer, they will enter Paradise, where they will be provided for without limit.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,154,'O my people! How is it that I invite you to salvation, while you invite me to the Fire!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,154,'You invite me to disbelieve in Allah and associate with Him what I have no knowledge of, while I invite you to the Almighty, Most Forgiving.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,154,'There is no doubt that whatever ˹idols˺ you invite me to ˹worship˺ are not worthy to be invoked either in this world or the Hereafter. ˹Undoubtedly,˺ our return is to Allah, and the transgressors will be the inmates of the Fire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,154,'You will remember what I say to you, and I entrust my affairs to Allah. Surely Allah is All-Seeing of all ˹His˺ servants.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,154,'So Allah protected him from the evil of their schemes. And Pharaoh’s people were overwhelmed by an evil punishment:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,154,'they are exposed to the Fire ˹in their graves˺ morning and evening. And on the Day the Hour will be established ˹it will be said˺, “Admit Pharaoh’s people into the harshest punishment ˹of Hell˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,154,'˹Consider the Day˺ when they will dispute in the Fire, and the lowly ˹followers˺ will appeal to the arrogant ˹leaders˺, “We were your ˹dedicated˺ followers, will you then shield us from a portion of the Fire?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,154,'The arrogant will say, “We are all in it! ˹For˺ Allah has already passed judgment over ˹His˺ servants.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,154,'And those in the Fire will cry out to the keepers of Hell, “Pray to your Lord to lighten the torment for us ˹even˺ for one day!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,154,'The keepers will reply, “Did your messengers not ˹constantly˺ come to you with clear proofs?” They will say, “Yes ˹they did˺.” The keepers will say, “Then pray! Though the prayer of the disbelievers is only in vain.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,154,'We certainly help Our messengers and the believers, ˹both˺ in this worldly life and on the Day the witnesses will stand forth ˹for testimony˺—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,154,'the Day the wrongdoers’ excuses will be of no benefit to them. They will be condemned, and will have the worst outcome. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,154,'And indeed, We gave Moses ˹true˺ guidance, and made the Children of Israel inherit the Scripture—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,154,'a guide and a reminder to people of reason.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,154,'So be patient ˹O Prophet˺, ˹for˺ Allah’s promise is certainly true. Seek forgiveness for your shortcomings. And glorify the praises of your Lord morning and evening.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,154,'Surely those who dispute Allah’s signs—with no proof given to them—have nothing in their hearts but greed for dominance, which they will never attain. So seek refuge in Allah. Indeed, He alone is the All-Hearing, All-Seeing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,154,'The creation of the heavens and the earth is certainly greater than the re-creation of humankind, but most people do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,154,'Those blind ˹to the truth˺ and those who can see are not equal, nor are those who believe and do good ˹equal˺ to those who do evil. Yet you are hardly mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,154,'The Hour is certainly coming, there is no doubt about it. But most people do not believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,154,'Your Lord has proclaimed, “Call upon Me, I will respond to you. Surely those who are too proud to worship Me will enter Hell, fully humbled.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,154,'It is Allah Who has made the night for you to rest in and the day bright. Surely Allah is ever Bountiful to humanity, but most people are ungrateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,154,'That is Allah, your Lord, the Creator of all things. There is no god ˹worthy of worship˺ except Him. How can you then be deluded ˹from the truth˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,154,'This is how those who used to reject Allah’s signs were ˹also˺ deluded.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,154,'It is Allah Who made the earth a place of settlement for you and the sky a canopy. He shaped you ˹in the womb˺, perfecting your form. And He has provided you with what is good and lawful. That is Allah—your Lord. So Blessed is Allah, Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,154,'He is the Ever-Living. There is no god ˹worthy of worship˺ except Him. So call upon Him with sincere devotion, ˹saying,˺ “All praise is for Allah—Lord of all worlds.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,154,'Say, ˹O Prophet,˺ “I have been forbidden to worship those ˹idols˺ you worship besides Allah, since clear proofs have come to me from my Lord. And I have been commanded to ˹fully˺ submit to the Lord of all worlds.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,154,'He is the One Who created you from dust, then from a sperm-drop, then ˹developed you into˺ a clinging clot ˹of blood˺, then He brings you forth as infants, so that you may reach your prime, and become old—though some of you ˹may˺ die sooner—reaching an appointed time, so perhaps you may understand ˹Allah’s power˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,154,'He is the One Who gives life and causes death. When He decrees a matter, He simply tells it, “Be!” And it is!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,154,'Have you not seen how those who dispute Allah’s signs are turned away?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,154,'˹They are˺ the ones who reject this Book and all ˹scriptures˺ We sent Our messengers with. So they will know ˹the consequences˺');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,154,'when shackles will be around their necks and chains ˹on their legs˺. They will be dragged');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,154,'through boiling water, then burned in the Fire ˹as fuel˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,154,'Then they will be asked, “Where are those ˹idols˺ you used to associate');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,154,'with Allah?” They will cry, “They have ˹all˺ failed us. In fact, we did not invoke anything ˹real˺ before.” This is how Allah leaves the disbelievers to stray.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,154,'˹They will be told,˺ “This ˹punishment˺ is for being prideful on earth unjustly and for acting arrogantly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,154,'Enter the gates of Hell, to stay there forever. What an evil home for the arrogant!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,154,'So be patient ˹O Prophet˺. Surely Allah’s promise is true. Whether We show you some of what We threaten them with, or cause you to die ˹before that˺, to Us they will ˹all˺ be returned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,154,'We already sent messengers before you. We have told you the stories of some of them, while others We have not. It was not for any messenger to bring a sign without Allah’s permission. But when Allah’s decree comes, judgment will be passed with fairness, and the people of falsehood will then be in ˹total˺ loss.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,154,'It is Allah Who made cattle for you so that you may ride some and eat others.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,154,'Also, you find in them ˹other˺ benefits. And by means of them you may reach destinations you desire. And you are carried upon ˹some of˺ them and upon ships.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,154,'And He shows you His signs. Now which of Allah’s signs will you deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,154,'Have they not travelled throughout the land to see what was the end of those who were ˹destroyed˺ before them? They were far superior in might and ˹richer in˺ monuments throughout the land, but their ˹worldly˺ gains were of no benefit to them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,154,'When their messengers came to them with clear proofs, they were prideful in whatever ˹worldly˺ knowledge they had, and were ˹ultimately˺ overwhelmed by what they used to ridicule.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,154,'When they saw Our punishment, they cried, “˹Now˺ we believe in Allah alone and reject what we had been associating with Him!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,154,'But their faith was of no benefit to them when they saw Our torment. This has ˹always˺ been Allah’s way ˹of dealing˺ with His ˹wicked˺ servants. Then and there the disbelievers were in ˹total˺ loss.');
+INSERT INTO chapters (id, number, quran_id) VALUES(155,41,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,155,'Ḥâ-Mĩm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,155,'˹This is˺ a revelation from the Most Compassionate, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,155,'˹It is˺ a Book whose verses are perfectly explained—a Quran in Arabic for people who know,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,155,'delivering good news and warning. Yet most of them turn away, so they do not hear.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,155,'They say, “Our hearts are veiled against what you are calling us to, there is deafness in our ears, and there is a barrier between us and you. So do ˹whatever you want˺ and so shall we!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,155,'Say, ˹O Prophet,˺ “I am only a man like you, ˹but˺ it has been revealed to me that your God is only One God. So take the Straight Way towards Him, and seek His forgiveness. And woe to the polytheists—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,155,'those who do not pay alms-tax and are in denial of the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,155,'˹But˺ those who believe and do good will certainly have a never-ending reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,155,'Ask ˹them, O Prophet˺, “How can you disbelieve in the One Who created the earth in two Days? And how can you set up equals with Him? That is the Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,155,'He placed on the earth firm mountains, standing high, showered His blessings upon it, and ordained ˹all˺ its means of sustenance—totaling four Days exactly—for all who ask.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,155,'Then He turned towards the heaven when it was ˹still like˺ smoke, saying to it and to the earth, ‘Submit, willingly or unwillingly.’ They both responded, ‘We submit willingly.’');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,155,'So He formed the heaven into seven heavens in two Days, assigning to each its mandate. And We adorned the lowest heaven with ˹stars like˺ lamps ˹for beauty˺ and for protection. That is the design of the Almighty, All-Knowing.” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,155,'If they turn away, then say, ˹O Prophet,˺ “I warn you of a ˹mighty˺ blast, like the one that befell ’Ȃd and Thamûd.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,155,'The messengers had come to them from all angles, ˹proclaiming,˺ “Worship none but Allah.” They responded, “Had our Lord willed, He could have easily sent down angels ˹instead˺. So we totally reject what you have been sent with.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,155,'As for ’Ȃd, they acted arrogantly throughout the land with no right, boasting, “Who is superior to us in might?” Did they not see that Allah ˹Himself˺, Who created them, was far superior to them in might? Still they persisted in denying Our signs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,155,'So We sent against them a furious wind, for ˹several˺ miserable days, to make them taste a humiliating punishment in this worldly life. But far more humiliating will be the punishment of the Hereafter. And they will not be helped.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,155,'As for Thamûd, We showed them guidance, but they preferred blindness over guidance. So the blast of a disgracing punishment overtook them for what they used to commit.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,155,'And We delivered those who were faithful and were mindful ˹of Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,155,'˹Consider˺ the Day ˹when˺ the enemies of Allah will be gathered for the Fire, all driven in ranks.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,155,'When they reach it, their ears, eyes, and skin will testify against what they used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,155,'They will ask their skin ˹furiously˺, “Why have you testified against us?” It will say, “We have been made to speak by Allah, Who causes all things to speak. He ˹is the One Who˺ created you the first time, and to Him you were bound to return.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,155,'You did not ˹bother to˺ hide yourselves from your ears, eyes, and skin to prevent them from testifying against you. Rather, you assumed that Allah did not know much of what you used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,155,'It was that ˹false˺ assumption you entertained about your Lord that has brought about your doom, so you have become losers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,155,'Even if they endure patiently, the Fire will ˹always˺ be their home. And if they ˹beg to˺ appease ˹their Lord˺, they will never be allowed to.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,155,'We placed at their disposal ˹evil˺ associates who made their past and future ˹misdeeds˺ appealing to them. ˹So˺ the fate of earlier communities of jinn and humans has been justified against them ˹as well˺, ˹for˺ they were truly losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,155,'The disbelievers advised ˹one another˺, “Do not listen to this Quran but drown it out so that you may prevail.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,155,'So We will certainly make the disbelievers taste a severe punishment, and We will surely repay them according to the worst of their deeds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,155,'That is the reward of Allah’s enemies: the Fire, which will be their eternal home—a ˹fitting˺ reward for their denial of Our revelations.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,155,'The disbelievers will ˹then˺ cry, “Our Lord! Show us those jinn and humans who led us astray: we will put them under our feet so that they will be among the lowest ˹in Hell˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,155,'Surely those who say, “Our Lord is Allah,” and then remain steadfast, the angels descend upon them, ˹saying,˺ “Do not fear, nor grieve. Rather, rejoice in the good news of Paradise, which you have been promised.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,155,'We are your supporters in this worldly life and in the Hereafter. There you will have whatever your souls desire, and there you will have whatever you ask for:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,155,'an accommodation from the All-Forgiving, Most Merciful ˹Lord˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,155,'And whose words are better than someone who calls ˹others˺ to Allah, does good, and says, “I am truly one of those who submit.”?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,155,'Good and evil cannot be equal. Respond ˹to evil˺ with what is best, then the one you are in a feud with will be like a close friend.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,155,'But this cannot be attained except by those who are patient and who are truly fortunate.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,155,'And if you are tempted by Satan, then seek refuge with Allah. Indeed, He ˹alone˺ is the All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,155,'Among His signs are the day and the night, the sun and the moon. Do not prostrate to the sun or the moon, but prostrate to Allah, Who created them ˹all˺, if you ˹truly˺ worship Him ˹alone˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,155,'But if the pagans are too proud, then ˹let them know that˺ those ˹angels˺ nearest to your Lord glorify Him day and night, and never grow weary.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,155,'And among His signs is that you see the earth devoid of life, but as soon as We send down rain upon it, it begins to stir ˹to life˺ and swell. Indeed, the One Who revives it can easily revive the dead. He is certainly Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,155,'Indeed, those who abuse Our revelations are not hidden from Us. Who is better: the one who will be cast into the Fire or the one who will be secure on Judgment Day? Do whatever you want. He is certainly All-Seeing of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,155,'Indeed, those who deny the Reminder after it has come to them ˹are doomed˺, for it is truly a mighty Book.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,155,'It cannot be proven false from any angle. ˹It is˺ a revelation from the ˹One Who is˺ All-Wise, Praiseworthy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,155,'˹O Prophet!˺ Nothing is said to you ˹by the deniers˺ except what was already said to the messengers before you. Surely your Lord is ˹the Lord˺ of forgiveness and painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,155,'Had We revealed it as a non-Arabic Quran, they would have certainly argued, “If only its verses were made clear ˹in our language˺. What! A non-Arabic revelation for an Arab audience!” Say, ˹O Prophet,˺ “It is a guide and a healing to the believers. As for those who disbelieve, there is deafness in their ears and blindness to it ˹in their hearts˺. It is as if they are being called from a faraway place.” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,155,'Indeed, We had given Moses the Scripture, but differences arose regarding it. Had it not been for a prior decree from your Lord, their differences would have been settled ˹at once˺. They are truly in alarming doubt about it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,155,'Whoever does good, it is to their own benefit. And whoever does evil, it is to their own loss. Your Lord is never unjust to ˹His˺ creation.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,155,'With Him ˹alone˺ is the knowledge of the Hour. No fruit comes out of its husk, nor does a female conceive or deliver without His knowledge. And ˹consider˺ the Day He will call to them, “Where are My ˹so-called˺ associate-gods?” They will cry, “We declare before you that none of us testifies to that ˹any longer˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,155,'Whatever ˹idols˺ they used to invoke besides Allah will fail them. And they will realize that they will have no escape.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,155,'One never tires of praying for good. And if touched with evil, they become desperate and hopeless.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,155,'And if We let them taste a mercy from Us after being touched with adversity, they will certainly say, “This is what I deserve. I do not think the Hour will ˹ever˺ come. And if in fact I am returned to my Lord, the finest reward with Him will definitely be mine.” But We will surely inform the disbelievers of what they used to do. And We will certainly make them taste a harsh torment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,155,'When We show favour to someone, they turn away, acting arrogantly. And when touched with evil, they make endless prayers ˹for good˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,155,'Ask ˹them, O Prophet˺, “Imagine if this ˹Quran˺ is ˹truly˺ from Allah and you deny it: who can be more astray than those who have gone too far in opposition ˹to the truth˺?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,155,'We will show them Our signs in the universe and within themselves until it becomes clear to them that this ˹Quran˺ is the truth. Is it not enough that your Lord is a Witness over all things?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,155,'They are truly in doubt of the meeting with their Lord! ˹But˺ He is indeed Fully Aware of everything.');
+INSERT INTO chapters (id, number, quran_id) VALUES(156,42,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,156,'Ḥâ-Mĩm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,156,'’Aĩn-Sĩn-Qãf.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,156,'And so you ˹O Prophet˺ are sent revelation, just like those before you, by Allah—the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,156,'To Him belongs whatever is in the heavens and whatever is on the earth. And He is the Most High, the Greatest.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,156,'The heavens nearly burst, one above the other, ˹in awe of Him˺. And the angels glorify the praises of their Lord, and seek forgiveness for those on earth. Surely Allah alone is the All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,156,'As for those who take other protectors besides Him, Allah is Watchful over them. And you ˹O Prophet˺ are not a keeper over them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,156,'And so We have revealed to you a Quran in Arabic, so you may warn the Mother of Cities and everyone around it, and warn of the Day of Gathering—about which there is no doubt—˹when˺ a group will be in Paradise and another in the Blaze.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,156,'Had Allah willed, He could have easily made all ˹humanity˺ into a single community ˹of believers˺. But He admits into His mercy whoever He wills. And the wrongdoers will have no protector or helper.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,156,'How can they take protectors besides Him? Allah alone is the Protector. He ˹alone˺ gives life to the dead. And He ˹alone˺ is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,156,'˹Say to the believers, O Prophet,˺ “Whatever you may differ about, its judgment rests with Allah. That is Allah—my Lord. In Him I put my trust, and to Him I ˹always˺ turn.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,156,'˹He is˺ the Originator of the heavens and the earth. He has made for you spouses from among yourselves, and ˹made˺ mates for cattle ˹as well˺—multiplying you ˹both˺. There is nothing like Him, for He ˹alone˺ is the All-Hearing, All-Seeing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,156,'To Him belong the keys ˹of the treasuries˺ of the heavens and the earth. He gives abundant or limited provisions to whoever He wills. Indeed, He has ˹perfect˺ knowledge of all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,156,'He has ordained for you ˹believers˺ the Way which He decreed for Noah, and what We have revealed to you ˹O Prophet˺ and what We decreed for Abraham, Moses, and Jesus, ˹commanding:˺ “Uphold the faith, and make no divisions in it.” What you call the polytheists to is unbearable for them. Allah chooses for Himself whoever He wills, and guides to Himself whoever turns ˹to Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,156,'They did not split ˹into sects˺ out of mutual envy until knowledge came to them. Had it not been for a prior decree from your Lord for an appointed term, the matter would have certainly been settled between them ˹at once˺. And surely those who were made to inherit the Scripture after them are truly in alarming doubt about this ˹Quran˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,156,'Because of that, you ˹O Prophet˺ will invite ˹all˺. Be steadfast as you are commanded, and do not follow their desires. And say, “I believe in every Scripture Allah has revealed. And I am commanded to judge fairly among you. Allah is our Lord and your Lord. We will be accountable for our deeds and you for yours. There is no ˹need for˺ contention between us. Allah will gather us together ˹for judgment˺. And to Him is the final return.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,156,'As for those who dispute about Allah after He is ˹already˺ acknowledged ˹by many˺, their argument is futile in the sight of their Lord. Upon them is wrath, and they will suffer a severe punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,156,'It is Allah Who has revealed the Book with the truth and the balance ˹of justice˺. You never know, perhaps the Hour is near.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,156,'Those who disbelieve in it ˹ask to˺ hasten it ˹mockingly˺. But the believers are fearful of it, knowing that it is the truth. Surely those who dispute about the Hour have gone far astray.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,156,'Allah is Ever Kind to His servants. He provides ˹abundantly˺ to whoever He wills. And He is the All-Powerful, Almighty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,156,'Whoever desires the harvest of the Hereafter, We will increase their harvest. And whoever desires ˹only˺ the harvest of this world, We will give them some of it, but they will have no share in the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,156,'Or do they have associate-gods who have ordained for them some ˹polytheistic˺ beliefs, which Allah has not authorized? Had it not been for ˹prior˺ decree on Judgment, the matter would have certainly been settled between them ˹at once˺. And surely the wrongdoers will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,156,'You will see the wrongdoers fearful ˹of the punishment˺ for what they committed but it will be inevitable for them, whereas those who believe and do good will be in the lush Gardens of Paradise. They will have whatever they desire from their Lord. That is ˹truly˺ the greatest bounty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,156,'That ˹reward˺ is the good news which Allah gives to His servants who believe and do good. Say, ˹O Prophet,˺ “I do not ask you for a reward for this ˹message˺—only honour for ˹our˺ kinship.” Whoever earns a good deed, We will increase it in goodness for them. Surely Allah is All-Forgiving, Most Appreciative.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,156,'Or do they say, “He has fabricated a lie about Allah!”? ˹If you had,˺ Allah would have sealed your heart, if He willed. And Allah wipes out falsehood and establishes the truth by His Words. He certainly knows best what is ˹hidden˺ in the heart.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,156,'He is the One Who accepts repentance from His servants and pardons ˹their˺ sins. And He knows whatever you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,156,'He responds to those who believe and do good, and increases their reward out of His grace. As for the disbelievers, they will suffer a severe punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,156,'Had Allah given abundant provisions to ˹all˺ His servants, they would have certainly transgressed throughout the land. But He sends down whatever He wills in perfect measure. He is truly All-Aware, All-Seeing of His servants.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,156,'He is the One Who sends down rain after people have given up hope, spreading out His mercy. He is the Guardian, the Praiseworthy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,156,'And among His signs is the creation of the heavens and the earth, and all living beings He dispersed throughout both. And He is Most Capable of bringing all together whenever He wills.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,156,'Whatever affliction befalls you is because of what your own hands have committed. And He pardons much.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,156,'You can never escape ˹Him˺ on earth, nor do you have any protector or helper besides Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,156,'And among His signs are the ships like mountains ˹sailing˺ in the sea.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,156,'If He wills, He can calm the wind, leaving the ships motionless on the water. Surely in this are signs for whoever is steadfast, grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,156,'Or He can wreck the ships for what the people have committed—though He forgives much—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,156,'so those who dispute about Our signs may know that they have no refuge.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,156,'Whatever ˹pleasure˺ you have been given is ˹no more than a fleeting˺ enjoyment of this worldly life. But what is with Allah is far better and more lasting for those who believe and put their trust in their Lord;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,156,'who avoid major sins and shameful deeds, and forgive when angered;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,156,'who respond to their Lord, establish prayer, conduct their affairs by mutual consultation, and donate from what We have provided for them;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,156,'and who enforce justice when wronged.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,156,'The reward of an evil deed is its equivalent. But whoever pardons and seeks reconciliation, then their reward is with Allah. He certainly does not like the wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,156,'There is no blame on those who enforce justice after being wronged.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,156,'Blame is only on those who wrong people and transgress in the land unjustly. It is they who will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,156,'And whoever endures patiently and forgives—surely this is a resolve to aspire to.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,156,'And whoever Allah leaves to stray will have no guide after Him. You will see the wrongdoers, when they face the torment, pleading, “Is there any way back ˹to the world˺?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,156,'And you will see them exposed to the Fire, fully humbled out of disgrace, stealing glances ˹at it˺. And the believers will say, “The ˹true˺ losers are those who have lost themselves and their families on Judgment Day.” The wrongdoers will certainly be in everlasting torment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,156,'They will have no protectors to help them against Allah. And whoever Allah leaves to stray, for them there is no way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,156,'Respond to your Lord before the coming of a Day from Allah that cannot be averted. There will be no refuge for you then, nor ˹grounds for˺ denial ˹of sins˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,156,'But if they turn away, We have not sent you ˹O Prophet˺ as a keeper over them. Your duty is only to deliver ˹the message˺. And indeed, when We let someone taste a mercy from Us, they become prideful ˹because˺ of it. But when afflicted with evil because of what their hands have done, then one becomes totally ungrateful. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,156,'To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. He creates whatever He wills. He blesses whoever He wills with daughters, and blesses whoever He wills with sons,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,156,'or grants both, sons and daughters, ˹to whoever He wills˺, and leaves whoever He wills infertile. He is indeed All-Knowing, Most Capable.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,156,'It is not ˹possible˺ for a human being to have Allah communicate with them, except through inspiration, or from behind a veil, or by sending a messenger-angel to reveal whatever He wills by His permission. He is surely Most High, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,156,'And so We have sent to you ˹O Prophet˺ a revelation by Our command. You did not know of ˹this˺ Book and faith ˹before˺. But We have made it a light, by which We guide whoever We will of Our servants. And you are truly leading ˹all˺ to the Straight Path—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,156,'the Path of Allah, to Whom belongs whatever is in the heavens and whatever is on the earth. Surely to Allah all matters will return ˹for judgment˺.');
+INSERT INTO chapters (id, number, quran_id) VALUES(157,43,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,157,'Ḥâ-Mĩm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,157,'By the clear Book!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,157,'Certainly, We have made it a Quran in Arabic so perhaps you will understand.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,157,'And indeed, it is—in the Master Record with Us—highly esteemed, rich in wisdom.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,157,'Should We then turn the ˹Quranic˺ Reminder away from you ˹simply˺ because you have been a transgressing people?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,157,'˹Imagine˺ how many prophets We sent to those ˹destroyed˺ before!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,157,'But no prophet ever came to them without being mocked.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,157,'So We destroyed those who were far mightier than these ˹Meccans˺. The examples of ˹their˺ predecessors have ˹already˺ been related. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,157,'If you ask them ˹O Prophet˺ who created the heavens and the earth, they will certainly say, “The Almighty, All-Knowing did.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,157,'˹He is the One˺ Who has laid out the earth for you, and set in it pathways for you so that you may find your way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,157,'And ˹He is the One˺ Who sends down rain from the sky in perfect measure, with which We give life to a lifeless land. And so will you be brought forth ˹from the grave˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,157,'And ˹He is the One˺ Who created all ˹things in˺ pairs, and made for you ships and animals to ride');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,157,'so that you may sit firmly on their backs, and remember your Lord’s blessings once you are settled on them, saying, “Glory be to the One Who has subjected these for us, for we could have never done so ˹on our own˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,157,'And surely to our Lord we will ˹all˺ return.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,157,'Still the pagans have made some of His creation out to be a part of Him. Indeed, humankind is clearly ungrateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,157,'Has He taken ˹angels as His˺ daughters from what He created, and favoured you ˹O pagans˺ with sons?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,157,'Whenever one of them is given the good news of what they attribute to the Most Compassionate, his face grows gloomy, as he suppresses his rage.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,157,'˹Do they attribute to Him˺ those who are brought up in fineries and are not commanding in disputes?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,157,'Still they have labelled the angels, who are servants of the Most Compassionate, as female. Did they witness their creation? Their statement will be recorded, and they will be questioned!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,157,'And they argue, “Had the Most Compassionate willed, we would have never worshipped them.” They have no knowledge ˹in support˺ of this ˹claim˺. They do nothing but lie.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,157,'Or have We given them a Book ˹for proof˺, before this ˹Quran˺, to which they are holding firm?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,157,'In fact, they say, “We found our forefathers following a ˹particular˺ way, and we are following in their footsteps.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,157,'Similarly, whenever We sent a warner to a society before you ˹O Prophet˺, its ˹spoiled˺ elite would say, “We found our forefathers following a ˹particular˺ way, and we are walking in their footsteps.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,157,'Each ˹warner˺ asked, “Even if what I brought you is better guidance than what you found your forefathers practicing?” They replied, “We totally reject whatever you have been sent with.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,157,'So We inflicted punishment upon them. See then what was the fate of the deniers!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,157,'˹Remember, O Prophet˺ when Abraham declared to his father and his people, “I am totally free of whatever ˹gods˺ you worship,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,157,'except the One Who originated me, and He will surely guide me.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,157,'And he left this enduring declaration among his descendants, so they may ˹always˺ turn back ˹to Allah˺. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,157,'In fact, I had allowed enjoyment for these ˹Meccans˺ and their forefathers, until the truth came to them along with a messenger making things clear.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,157,'˹But˺ when the truth came to them, they said, “This is magic, and we totally reject it.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,157,'And they exclaimed, “If only this Quran was revealed to a great man from ˹one of˺ the two cities!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,157,'Is it they who distribute your Lord’s mercy? We ˹alone˺ have distributed their ˹very˺ livelihood among them in this worldly life and raised some of them in rank above others so that some may employ others in service. ˹But˺ your Lord’s mercy is far better than whatever ˹wealth˺ they amass.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,157,'Were it not that people might ˹be tempted to˺ become one community ˹of disbelievers˺, We would have supplied the homes of ˹only˺ those who disbelieve in the Most Compassionate with silver roofs and ˹silver˺ stairways to ascend,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,157,'as well as ˹silver˺ gates and thrones to recline on,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,157,'and ornaments ˹of gold˺. Yet all this is no more than a ˹fleeting˺ enjoyment in this worldly life. ˹But˺ the Hereafter with your Lord is ˹only˺ for those mindful ˹of Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,157,'And whoever turns a blind eye to the Reminder of the Most Compassionate, We place at the disposal of each a devilish one as their close associate,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,157,'who will certainly hinder them from the ˹Right˺ Way while they think they are ˹rightly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,157,'But when such a person comes to Us, one will say ˹to their associate˺, “I wish you were as distant from me as the east is from the west! What an evil associate ˹you were˺!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,157,'˹It will be said to both,˺ “Since you all did wrong, sharing in the punishment will be of no benefit to you this Day.” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,157,'Can you make the deaf hear, or guide the blind or those clearly astray?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,157,'Even if We take you away ˹from this world˺, We will surely inflict punishment upon them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,157,'Or if We show you what We threaten them with, We certainly have full power over them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,157,'So hold firmly to what has been revealed to you ˹O Prophet˺. You are truly on the Straight Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,157,'Surely this ˹Quran˺ is a glory for you and your people. And you will ˹all˺ be questioned ˹about it˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,157,'Ask ˹the followers of˺ the messengers that We already sent before you if We ˹ever˺ appointed ˹other˺ gods to be worshipped besides the Most Compassionate.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,157,'Indeed, We sent Moses with Our signs to Pharaoh and his chiefs, and he said: “I am a messenger of the Lord of all worlds.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,157,'But as soon as he came to them with Our signs, they laughed at them,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,157,'although every sign We showed them was greater than the one before. Ultimately, We seized them with torments so that they might return ˹to the Right Path˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,157,'˹Then˺ they pleaded, “O ˹mighty˺ magician! Pray to your Lord on our behalf, by virtue of the covenant He made with you. We will certainly accept guidance.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,157,'But as soon as We removed the torments from them, they broke their promise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,157,'And Pharaoh called out to his people, boasting, “O my people! Am I not sovereign over Egypt as well as ˹all˺ these streams flowing at my feet? Can you not see?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,157,'Am I not better than this nobody who can hardly express himself?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,157,'Why then have no golden bracelets ˹of kingship˺ been granted to him or angels come with him as escorts!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,157,'And so he fooled his people, and they obeyed him. They were truly a rebellious people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,157,'So when they enraged Us, We inflicted punishment upon them, drowning them all.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,157,'And We made them an example and a lesson for those after them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,157,'When the son of Mary was cited as an example ˹in argument˺, your people ˹O Prophet˺ broke into ˹joyful˺ applause.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,157,'They exclaimed, “Which is better: our gods or Jesus?” They cite him only to argue. In fact, they are a people prone to dispute.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,157,'He was only a servant We showed favour to, and made as an example for the Children of Israel.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,157,'Had We willed, We could have easily replaced you ˹all˺ with angels, succeeding one another on earth.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,157,'And his ˹second˺ coming is truly a sign for the Hour. So have no doubt about it, and follow me. This is the Straight Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,157,'And do not let Satan hinder you, ˹for˺ he is certainly your sworn enemy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,157,'When Jesus came with clear proofs, he declared, “I have come to you with wisdom, and to clarify to you some of what you differ about. So fear Allah, and obey me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,157,'Surely Allah ˹alone˺ is my Lord and your Lord, so worship Him ˹alone˺. This is the Straight Path.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,157,'Yet their ˹various˺ groups have differed among themselves ˹about him˺, so woe to the wrongdoers when they face the torment of a painful Day!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,157,'Are they waiting for the Hour to take them by surprise when they least expect ˹it˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,157,'Close friends will be enemies to one another on that Day, except the righteous,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,157,'˹who will be told,˺ “O My servants! There is no fear for you Today, nor will you grieve—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,157,'˹those˺ who believed in Our signs and ˹fully˺ submitted ˹to Us˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,157,'Enter Paradise, you and your spouses, rejoicing.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,157,'Golden trays and cups will be passed around to them. There will be whatever the souls desire and the eyes delight in. And you will be there forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,157,'That is the Paradise which you will be awarded for what you used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,157,'There you will have abundant fruit to eat from.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,157,'Indeed, the wicked will be in the torment of Hell forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,157,'It will never be lightened for them, and there they will be overwhelmed with despair.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,157,'We did not wrong them, but it was they who were the wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,157,'They will cry, “O Mâlik! Let your Lord finish us off.” He will answer, “You are definitely here to stay.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,157,'We certainly brought the truth to you, but most of you were resentful of the truth.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,157,'Or have they mastered some ˹evil˺ plan? Then We ˹too˺ are surely planning.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,157,'Or do they think that We do not hear their ˹evil˺ thoughts and secret talks? Yes ˹We do˺! And Our messenger-angels are in their presence, recording ˹it all˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,157,'Say, ˹O Prophet,˺ “If the Most Compassionate ˹really˺ had offspring, I would be the first worshipper.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,157,'Glorified is the Lord of the heavens and the earth, the Lord of the Throne, far above what they claim.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,157,'So let them indulge ˹in falsehood˺ and amuse ˹themselves˺ until they face their Day, which they have been warned of.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,157,'It is He Who is ˹the only˺ God in the heavens and ˹the only˺ God on the earth. For He is the All-Wise, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,157,'And Blessed is the One to Whom belongs the kingdom of the heavens and the earth and everything in between! With Him ˹alone˺ is the knowledge of the Hour. And to Him you will ˹all˺ be returned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,157,'˹But˺ those ˹objects of worship˺ they invoke besides Him have no power to intercede, except those who testify to the truth knowingly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,157,'If you ask them ˹O Prophet˺ who created them, they will certainly say, “Allah!” How can they then be deluded ˹from the truth˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,157,'˹Allah is Aware of˺ the Prophet’s cry: “O my Lord! Indeed, these are a people who persist in disbelief.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,157,'So bear with them and respond with peace. They will soon come to know.');
+INSERT INTO chapters (id, number, quran_id) VALUES(158,44,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,158,'Ḥâ-Mĩm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,158,'By the clear Book!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,158,'Indeed, We sent it down on a blessed night, for We always warn ˹against evil˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,158,'On that night every matter of wisdom is ordained');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,158,'by a command from Us, for We have always sent ˹messengers˺');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,158,'as a mercy from your Lord. He ˹alone˺ is truly the All-Hearing, All-Knowing—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,158,'the Lord of the heavens and the earth and everything in between, if only you had sure faith.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,158,'There is no god ˹worthy of worship˺ except Him. He ˹alone˺ gives life and causes death. ˹He is˺ your Lord, and the Lord of your forefathers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,158,'In fact, they are in doubt, amusing themselves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,158,'Wait then ˹O Prophet˺ for the day ˹when˺ the sky will be veiled in haze, clearly visible,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,158,'overwhelming the people. ˹They will cry,˺ “This is a painful torment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,158,'Our Lord! Remove ˹this˺ torment from us, ˹and˺ we will certainly believe.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,158,'How can they be reminded when a messenger has already come to them, making things clear,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,158,'then they turned away from him, saying, “A madman, taught by others!”?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,158,'Indeed, We will remove ˹that˺ torment for a while, and you ˹Meccans˺ will return ˹to disbelief˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,158,'˹Then˺ on the Day We will deal ˹you˺ the fiercest blow, We will surely inflict punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,158,'Indeed, before them We tested Pharaoh’s people: a noble messenger came to them,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,158,'˹proclaiming,˺ “Hand over the servants of Allah to me. I am truly a trustworthy messenger to you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,158,'And do not be arrogant with Allah. I have certainly come to you with a compelling proof.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,158,'And indeed, I seek refuge with my Lord and your Lord so you do not stone me ˹to death˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,158,'˹But˺ if you do not believe me, then let me be.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,158,'Ultimately, he cried out to his Lord, “These are a wicked people!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,158,'˹Allah responded,˺ “Leave with My servants at night, for you will surely be pursued.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,158,'And leave the sea parted, for they are certainly an army bound to drown.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,158,'˹Imagine˺ how many gardens and springs the tyrants left behind,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,158,'as well as ˹various˺ crops and splendid residences,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,158,'and luxuries which they fully enjoyed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,158,'So it was. And We awarded it ˹all˺ to another people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,158,'Neither heaven nor earth wept over them, nor was their fate delayed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,158,'And We certainly delivered the Children of Israel from the humiliating torment');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,158,'of Pharaoh. He was truly a tyrant, a transgressor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,158,'And indeed, We chose the Israelites knowingly above the others.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,158,'And We showed them signs in which there was a clear test.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,158,'Indeed, these ˹Meccans˺ say,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,158,'“There is nothing beyond our first death, and we will never be resurrected.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,158,'Bring ˹back˺ our forefathers, if what you say is true.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,158,'Are they superior to the people of Tubba’ and those before them? We destroyed them ˹all˺, ˹for˺ they were truly wicked.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,158,'We did not create the heavens and the earth and everything in between for sport.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,158,'We only created them for a purpose, but most of these ˹pagans˺ do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,158,'Surely the Day of ˹Final˺ Decision is the time appointed for all—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,158,'the Day no kith or kin will be of benefit to another whatsoever, nor will they be helped,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,158,'except those shown mercy by Allah. He is truly the Almighty, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,158,'Surely ˹the fruit of˺ the tree of Zaqqûm');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,158,'will be the food of the evildoer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,158,'Like molten metal, it will boil in the bellies');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,158,'like the boiling of hot water.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,158,'˹It will be said,˺ “Seize them and drag them into the depths of the Hellfire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,158,'Then pour over their heads the torment of boiling water.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,158,'˹The wicked will be told,˺ “Taste this. You mighty, noble one!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,158,'This is truly what you ˹all˺ used to doubt.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,158,'Indeed, the righteous will be in a secure place,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,158,'amid Gardens and springs,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,158,'dressed in fine silk and rich brocade, facing one another.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,158,'So it will be. And We will pair them to maidens with gorgeous eyes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,158,'There they will call for every fruit in serenity.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,158,'There they will never taste death, beyond the first death. And He will protect them from the punishment of the Hellfire—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,158,'as ˹an act of˺ grace from your Lord. That is ˹truly˺ the ultimate triumph.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,158,'Indeed, We have made this ˹Quran˺ easy in your own language ˹O Prophet˺ so perhaps they will be mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,158,'Wait then! They too are certainly waiting.');
+INSERT INTO chapters (id, number, quran_id) VALUES(159,45,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,159,'Ḥâ-Mĩm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,159,'The revelation of this Book is from Allah—the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,159,'Surely in ˹the creation of˺ the heavens and the earth are signs for the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,159,'And in your own creation, and whatever living beings He dispersed, are signs for people of sure faith.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,159,'And ˹in˺ the alternation of the day and the night, the provision sent down from the skies by Allah—reviving the earth after its death—and the shifting of the winds, are signs for people of understanding.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,159,'These are Allah’s revelations which We recite to you ˹O Prophet˺ in truth. So what message will they believe in after ˹denying˺ Allah and His revelations?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,159,'Woe to every sinful liar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,159,'They hear Allah’s revelations recited to them, then persist ˹in denial˺ arrogantly as if they did not hear them. So give them good news of a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,159,'And whenever they learn anything of Our revelations, they make a mockery of it. It is they who will suffer a humiliating punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,159,'Awaiting them is Hell. Their ˹worldly˺ gains will not be of any benefit to them whatsoever, nor will those protectors they have taken besides Allah. And they will suffer a tremendous punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,159,'This ˹Quran˺ is ˹true˺ guidance. And those who deny their Lord’s revelations will suffer the ˹worst˺ torment of agonizing pain.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,159,'Allah is the One Who has subjected the sea for you so that ships may sail upon it by His command, and that you may seek His bounty, and that perhaps you will be grateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,159,'He ˹also˺ subjected for you whatever is in the heavens and whatever is on the earth—all by His grace. Surely in this are signs for people who reflect.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,159,'˹O Prophet!˺ Tell the believers to forgive those who do not fear Allah’s days ˹of torment˺, so that He will reward each group for what they used to commit.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,159,'Whoever does good, it is to their own benefit. And whoever does evil, it is to their own loss. Then to your Lord you will ˹all˺ be returned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,159,'Indeed, We gave the Children of Israel the Scripture, wisdom, and prophethood; granted them good, lawful provisions; and favoured them above the others.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,159,'We ˹also˺ gave them clear commandments regarding ˹their˺ faith. But it was not until knowledge came to them that they differed out of mutual envy. Surely your Lord will judge between them on the Day of Judgment regarding their differences.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,159,'Now We have set you ˹O Prophet˺ on the ˹clear˺ Way of faith. So follow it, and do not follow the desires of those who do not know ˹the truth˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,159,'They certainly can be of no benefit to you against Allah whatsoever. Surely the wrongdoers are patrons of each other, whereas Allah is the Patron of the righteous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,159,'This ˹Quran˺ is an insight for humanity—a guide and mercy for people of sure faith.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,159,'Or do those who commit evil deeds ˹simply˺ think that We will make them equal—in their life and after their death—to those who believe and do good? How wrong is their judgment!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,159,'For Allah created the heavens and the earth for a purpose, so that every soul may be paid back for what it has committed. And none will be wronged.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,159,'Have you seen ˹O Prophet˺ those who have taken their own desires as their god? ˹And so˺ Allah left them to stray knowingly, sealed their hearing and hearts, and placed a cover on their sight. Who then can guide them after Allah? Will you ˹all˺ not then be mindful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,159,'And they argue, “There is nothing beyond our worldly life. We die; others are born. And nothing destroys us but ˹the passage of˺ time.” Yet they have no knowledge ˹in support˺ of this ˹claim˺. They only speculate.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,159,'And whenever Our clear revelations are recited to them, their only argument is to say: “Bring our forefathers back, if what you say is true!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,159,'Say, ˹O Prophet,˺ “˹It is˺ Allah ˹Who˺ gives you life, then causes you to die, then will gather you ˹all˺ on the Day of Judgment, about which there is no doubt. But most people do not know.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,159,'To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. On the Day the Hour will be established, the people of falsehood will then be in ˹total˺ loss.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,159,'And you will see every faith-community on its knees. Every community will be summoned to its record ˹of deeds˺. ˹They all will be told,˺ “This Day you will be rewarded for what you used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,159,'This record of Ours speaks the truth about you. Indeed, We always had your deeds recorded ˹by the angels˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,159,'As for those who believed and did good, their Lord will admit them into His mercy. That is ˹truly˺ the absolute triumph.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,159,'And as for those who disbelieved, ˹they will be told,˺ “Were My revelations not recited to you, yet you acted arrogantly and were a wicked people?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,159,'And whenever it was said ˹to you˺, ‘Surely Allah’s promise ˹of judgment˺ is true and there is no doubt about the Hour,’ you said ˹mockingly˺, ‘We do not know what the Hour is! We think it is no more than speculation, and we are not convinced ˹that it will ever come˺.’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,159,'And the evil ˹consequences˺ of their deeds will unfold before them, and they will be overwhelmed by what they used to ridicule.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,159,'It will be said, “This Day We will neglect you as you neglected the meeting of this Day of yours! Your home will be the Fire, and you will have no helpers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,159,'This is because you made a mockery of Allah’s revelations, and were deluded by ˹your˺ worldly life.” So ˹from˺ that Day ˹on˺ they will not be taken out of the Fire, nor will they be allowed to appease ˹their Lord˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,159,'So all praise is for Allah—Lord of the heavens and Lord of the earth, Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,159,'To Him belongs ˹all˺ Majesty in the heavens and the earth. And He is the Almighty, All-Wise.');
+INSERT INTO chapters (id, number, quran_id) VALUES(160,46,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,160,'Ḥâ-Mĩm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,160,'The revelation of this Book is from Allah—the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,160,'We only created the heavens and the earth and everything in between for a purpose and an appointed term. Yet the disbelievers are turning away from what they have been warned about.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,160,'Ask ˹them, O Prophet˺, “Have you considered whatever ˹idols˺ you invoke besides Allah? Show me what they have created on earth! Or do they have a share in ˹the creation of˺ the heavens? Bring me a scripture ˹revealed˺ before this ˹Quran˺ or a shred of knowledge, if what you say is true.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,160,'And who could be more astray than those who call upon others besides Allah—˹others˺ that cannot respond to them until the Day of Judgment, and are ˹even˺ unaware of their calls?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,160,'And when ˹such˺ people will be gathered together, those ˹gods˺ will be their enemies and will disown their worship.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,160,'Whenever Our clear revelations are recited to them, the disbelievers say of the truth when it has come to them, “This is pure magic.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,160,'Or do they say, “He has fabricated this ˹Quran˺!”? Say, ˹O Prophet,˺ “If I have done so, then there is nothing whatsoever you can do to save me from Allah. He knows best what ˹slurs˺ you indulge about it. Sufficient is He as a Witness between you and me. And He is the All-Forgiving, Most Merciful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,160,'Say, “I am not the first messenger ever sent, nor do I know what will happen to me or you. I only follow what is revealed to me. And I am only sent with a clear warning.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,160,'Ask ˹them, O Prophet˺, “Consider if this ˹Quran˺ is ˹truly˺ from Allah and you deny it, and a witness from the Children of Israel attests to it and then believes, whereas you act arrogantly. Surely Allah does not guide the wrongdoing people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,160,'The disbelievers say of the believers, “Had it been ˹something˺ good, they would not have beaten us to it.” Now since they reject its guidance, they will say, “˹This is˺ an ancient fabrication!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,160,'And before this ˹Quran˺ the Book of Moses was ˹revealed as˺ a guide and mercy. And this Book is a confirmation, in the Arabic tongue, to warn those who do wrong, and as good news to those who do good.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,160,'Surely those who say, “Our Lord is Allah,” and then remain steadfast—there will be no fear for them, nor will they grieve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,160,'It is they who will be the residents of Paradise, staying there forever, as a reward for what they used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,160,'We have commanded people to honour their parents. Their mothers bore them in hardship and delivered them in hardship. Their ˹period of˺ bearing and weaning is thirty months. In time, when the child reaches their prime at the age of forty, they pray, “My Lord! Inspire me to ˹always˺ be thankful for Your favours which You blessed me and my parents with, and to do good deeds that please You. And instil righteousness in my offspring. I truly repent to You, and I truly submit ˹to Your Will˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,160,'It is from these ˹people˺ that We will accept the good they did, and overlook their misdeeds—along with the residents of Paradise, ˹in fulfilment of˺ the true promise they have been given.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,160,'But some scold their parents, “Enough with you! Are you warning me that I will be brought forth ˹from the grave˺, while many generations had already perished before me ˹for good˺?” The parents cry to Allah for help, ˹and warn their child,˺ “Pity you. Have faith! Surely Allah’s promise is true.” But the deniers insist, “This is nothing but ancient fables.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,160,'These are the ones against whom the fate of earlier communities of jinn and humans has been justified, ˹for˺ they were truly losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,160,'Each ˹of the two groups˺ will be ranked according to what they have done so He may fully reward all. And none will be wronged.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,160,'˹Watch for˺ the Day ˹when˺ the disbelievers will be exposed to the Fire. ˹They will be told,˺ “You ˹already˺ exhausted your ˹share of˺ pleasures during your worldly life, and ˹fully˺ enjoyed them. So Today you will be rewarded with the torment of disgrace for your arrogance throughout the land with no right, and for your rebelliousness.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,160,'And remember the brother of ’Ȃd, when he warned his people, who inhabited the sand-hills—there were certainly warners before and after him—˹saying,˺ “Worship none but Allah. I truly fear for you the torment of a tremendous day.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,160,'They argued, “Have you come to turn us away from our gods? Bring us then whatever you threaten us with, if what you say is true.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,160,'He responded, “The knowledge ˹of its time˺ is only with Allah. I only convey to you what I have been sent with. But I can see that you are a people acting ignorantly.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,160,'Then when they saw the torment as a ˹dense˺ cloud approaching their valleys, they said ˹happily˺, “This is a cloud bringing us rain.” ˹But Hûd replied,˺ “No, it is what you sought to hasten: a ˹fierce˺ wind carrying a painful punishment!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,160,'It destroyed everything by the command of its Lord, leaving nothing visible except their ruins. This is how We reward the wicked people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,160,'Indeed, We had established them in a way We have not established you ˹Meccans˺. And We gave them hearing, sight, and intellect. But neither their hearing, sight, nor intellect were of any benefit to them whatsoever, since they persisted in denying Allah’s signs. And ˹so˺ they were overwhelmed by what they used to ridicule.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,160,'We certainly destroyed the societies around you after having varied the signs so perhaps they would return ˹to the Right Path˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,160,'Why then did those ˹idols˺ they took as gods—hoping to get closer ˹to Him˺—not come to their aid? Instead, they failed them. That is ˹the result of˺ their lies and their fabrications.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,160,'˹Remember, O Prophet,˺ when We sent a group of jinn your way to listen to the Quran. Then, upon hearing it, they said ˹to one another˺, “Listen quietly!” Then when it was over, they returned to their fellow jinn as warners.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,160,'They declared, “O our fellow jinn! We have truly heard a scripture revealed after Moses, confirming what came before it. It guides to the truth and the Straight Way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,160,'O our fellow jinn! Respond to the caller of Allah and believe in him, He will forgive your sins and protect you from a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,160,'And whoever does not respond to the caller of Allah will have no escape on earth, nor will they have any protectors against Him. It is they who are clearly astray.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,160,'Do they not realize that Allah, Who created the heavens and the earth and did not tire in creating them, is able to give life to the dead? Yes ˹indeed˺! He is certainly Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,160,'And on the Day the disbelievers will be exposed to the Fire, ˹they will be asked,˺ “Is this ˹Hereafter˺ not the truth?” They will cry, “Absolutely, by our Lord!” It will be said, “Then taste the punishment for your disbelief.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,160,'So endure patiently, as did the Messengers of Firm Resolve. And do not ˹seek to˺ hasten ˹the torment˺ for the deniers. On the Day they see what they have been threatened with, it will be as if they had only stayed ˹in this world˺ for an hour of a day. ˹This is˺ a ˹sufficient˺ warning! Then, will anyone be destroyed except the rebellious people?');
+INSERT INTO chapters (id, number, quran_id) VALUES(161,47,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,161,'Those who disbelieve and hinder ˹others˺ from the Way of Allah, He will render their deeds void.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,161,'As for those who believe, do good, and have faith in what has been revealed to Muḥammad—which is the truth from their Lord—He will absolve them of their sins and improve their condition.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,161,'This is because the disbelievers follow falsehood, while the believers follow the truth from their Lord. This is how Allah shows people their true state ˹of faith˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,161,'So when you meet the disbelievers ˹in battle˺, strike ˹their˺ necks until you have thoroughly subdued them, then bind them firmly. Later ˹free them either as˺ an act of grace or by ransom until the war comes to an end. So will it be. Had Allah willed, He ˹Himself˺ could have inflicted punishment on them. But He does ˹this only to˺ test some of you by means of others. And those who are martyred in the cause of Allah, He will never render their deeds void.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,161,'He will guide them ˹to their reward˺, improve their condition,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,161,'and admit them into Paradise, having made it known to them. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,161,'O believers! If you stand up for Allah, He will help you and make your steps firm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,161,'As for the disbelievers, may they be doomed and may He render their deeds void.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,161,'That is because they detest what Allah has revealed, so He has rendered their deeds void.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,161,'Have they not travelled throughout the land to see what was the end of those before them? Allah annihilated them, and a similar fate awaits the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,161,'This is because Allah is the Patron of the believers while the disbelievers have no patron.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,161,'Surely Allah will admit those who believe and do good into Gardens under which rivers flow. As for the disbelievers, they enjoy themselves and feed like cattle. But the Fire will be their home.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,161,'˹Imagine, O Prophet,˺ how many societies We destroyed that were far superior in might than your society—which drove you out—and there was none to help them!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,161,'Can those ˹believers˺ who stand on clear proof from their Lord be like those whose evil deeds are made appealing to them and ˹only˺ follow their desires?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,161,'The description of the Paradise promised to the righteous is that in it are rivers of fresh water, rivers of milk that never changes in taste, rivers of wine delicious to drink, and rivers of pure honey. There they will ˹also˺ have all kinds of fruit, and forgiveness from their Lord. ˹Can they be˺ like those who will stay in the Fire forever, left to drink boiling water that will tear apart their insides?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,161,'There are some of them who listen to you ˹O Prophet˺, but when they depart from you, they say ˹mockingly˺ to those ˹believers˺ gifted with knowledge, “What did he just say?” These are the ones whose hearts Allah has sealed and who ˹only˺ follow their desires.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,161,'As for those who are ˹rightly˺ guided, He increases them in guidance and blesses them with righteousness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,161,'Are they only waiting for the Hour to take them by surprise? Yet ˹some of˺ its signs have already come. Once it actually befalls them, will it not be too late to be mindful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,161,'So, know ˹well, O Prophet,˺ that there is no god ˹worthy of worship˺ except Allah. And seek forgiveness for your shortcomings and for ˹the sins of˺ the believing men and women. For Allah ˹fully˺ knows your movements and places of rest ˹O people˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,161,'And the believers say, “If only a sûrah was revealed ˹allowing self-defence˺!” Yet when a precise sûrah is revealed, in which fighting is ˹explicitly˺ mentioned, you see those with sickness in their hearts staring at you like someone in the throes of death. It would have been better for them');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,161,'to obey and speak rightly. Then when fighting was ordained, it surely would have been better for them if they were true to Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,161,'Now if you ˹hypocrites˺ turn away, perhaps you would then spread corruption throughout the land and sever your ˹ties of˺ kinship!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,161,'These are the ones who Allah has condemned, deafening them and blinding their eyes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,161,'Do they not then reflect on the Quran? Or are there locks upon their hearts?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,161,'Indeed, those who relapse ˹into disbelief˺ after ˹true˺ guidance has become clear to them, ˹it is˺ Satan ˹that˺ has tempted them, luring them with false hopes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,161,'That is because they said ˹privately˺ to those who ˹also˺ detest what Allah has revealed, “We will obey you in some matters.” But Allah ˹fully˺ knows what they are hiding.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,161,'Then how ˹horrible˺ will it be when the angels take their souls, beating their faces and backs!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,161,'This is because they follow whatever displeases Allah and hate whatever pleases Him, so He has rendered their deeds void.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,161,'Or do those with sickness in their hearts think that Allah will not ˹be able to˺ expose their malice?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,161,'Had We willed, We could have truly shown them to you ˹O Prophet˺, and you would have certainly recognized them by their appearance. But you will surely recognize them by their tone of speech. And Allah ˹fully˺ knows your doings ˹O people˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,161,'We will certainly test you ˹believers˺ until We prove those of you who ˹truly˺ struggle ˹in Allah’s cause˺ and remain steadfast, and reveal how you conduct yourselves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,161,'Indeed, those who disbelieve, hinder ˹others˺ from the Way of Allah, and defy the Messenger after ˹true˺ guidance has become clear to them; they will not harm Allah in the least, but He will render their deeds void.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,161,'O believers! Obey Allah and obey the Messenger, and do not let your deeds be in vain.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,161,'Surely those who disbelieve, hinder ˹others˺ from the Way of Allah, and then die as disbelievers; Allah will never forgive them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,161,'So do not falter or cry for peace, for you will have the upper hand and Allah is with you. And He will never let your deeds go to waste.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,161,'This worldly life is no more than play and amusement. But if you are faithful and mindful ˹of Allah˺, He will grant you your ˹full˺ reward, and will not ask you ˹to donate all˺ your wealth.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,161,'If He were to do so and pressure you, you would withhold and He would bring out your resentment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,161,'Here you are, being invited to donate ˹a little˺ in the cause of Allah. Still some of you withhold. And whoever does so, it is only to their own loss. For Allah is the Self-Sufficient, whereas you stand in need ˹of Him˺. If you ˹still˺ turn away, He will replace you with another people. And they will not be like you.');
+INSERT INTO chapters (id, number, quran_id) VALUES(162,48,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,162,'Indeed, We have granted you a clear triumph ˹O Prophet˺');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,162,'so that Allah may forgive you for your past and future shortcomings, perfect His favour upon you, guide you along the Straight Path,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,162,'and so that Allah will help you tremendously.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,162,'He is the One Who sent down serenity upon the hearts of the believers so that they may increase even more in their faith. To Allah ˹alone˺ belong the forces of the heavens and the earth. And Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,162,'So He may admit believing men and women into Gardens under which rivers flow—to stay there forever—and absolve them of their sins. And that is a supreme achievement in the sight of Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,162,'Also ˹so that˺ He may punish hypocrite men and women and polytheistic men and women, who harbour evil thoughts of Allah. May ill-fate befall them! Allah is displeased with them. He has condemned them and prepared for them Hell. What an evil destination!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,162,'To Allah ˹alone˺ belong the forces of the heavens and the earth. And Allah is Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,162,'Indeed, ˹O Prophet,˺ We have sent you as a witness, a deliverer of good news, and a warner,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,162,'so that you ˹believers˺ may have faith in Allah and His Messenger, support and honour him, and glorify Allah morning and evening. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,162,'Surely those who pledge allegiance to you ˹O Prophet˺ are actually pledging allegiance to Allah. Allah’s Hand is over theirs. Whoever breaks their pledge, it will only be to their own loss. And whoever fulfils their pledge to Allah, He will grant them a great reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,162,'The nomadic Arabs, who stayed behind, will say to you ˹O Prophet˺, “We were preoccupied with our wealth and families, so ask for forgiveness for us.” They say with their tongues what is not in their hearts. Say, “Who then can stand between you and Allah in any way, if He intends harm or benefit for you? In fact, Allah is All-Aware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,162,'The truth is: you thought that the Messenger and the believers would never return to their families again. And that was made appealing in your hearts. You harboured evil thoughts ˹about Allah˺, and ˹so˺ became a doomed people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,162,'And whoever does not believe in Allah and His Messenger, then We surely have prepared for the disbelievers a blazing Fire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,162,'To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. He forgives whoever He wills, and punishes whoever He wills. And Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,162,'Those who stayed behind will say, when you ˹believers˺ set out to take the spoils of war, “Let us accompany you.” They wish to change Allah’s promise. Say, ˹O Prophet,˺ “You will not accompany us. This is what Allah has said before.” They will then say, “In fact, you are driven by jealousy against us!” The truth is: they can hardly comprehend.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,162,'Say to nomadic Arabs, who stayed behind, “You will be called ˹to fight˺ against a people of great might, who you will fight unless they submit. If you then obey, Allah will grant you a fine reward. But if you turn away as you did before, He will inflict upon you a painful punishment.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,162,'There is no blame on the blind, or the disabled, or the sick ˹for staying behind˺. And whoever obeys Allah and His Messenger will be admitted by Him into Gardens under which rivers flow. But whoever turns away will be subjected by Him to a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,162,'Indeed, Allah was pleased with the believers when they pledged allegiance to you ˹O Prophet˺ under the tree. He knew what was in their hearts, so He sent down serenity upon them and rewarded them with a victory at hand,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,162,'and many spoils of war they will gain. For Allah is Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,162,'Allah has promised you ˹believers˺ abundant spoils, which you will gain, so He hastened this ˹truce˺ for you. And He has held people’s hands back from ˹harming˺ you, so it may be a sign for the believers, and so He may guide you along the Straight Path.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,162,'And ˹there are˺ other gains which are beyond your reach that Allah is keeping in store ˹for you˺. For Allah is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,162,'If the disbelievers were to fight you, they would certainly flee. Then they would never find any protector or helper.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,162,'˹This is˺ Allah’s way, already long established ˹in the past˺. And you will find no change in Allah’s way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,162,'He is the One Who held back their hands from you and your hands from them in the valley of ˹Ḥudaibiyah, near˺ Mecca, after giving you the upper hand over ˹a group of˺ them. And Allah is All-Seeing of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,162,'They are the ones who persisted in disbelief and hindered you from the Sacred Mosque, preventing the sacrificial animals from reaching their destination. ˹We would have let you march through Mecca,˺ had there not been believing men and women, unknown to you. You might have trampled them underfoot, incurring guilt for ˹what you did to˺ them unknowingly. That was so Allah may admit into His mercy whoever He wills. Had those ˹unknown˺ believers stood apart, We would have certainly inflicted a painful punishment on the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,162,'˹Remember˺ when the disbelievers had filled their hearts with pride—the pride of ˹pre-Islamic˺ ignorance—then Allah sent down His serenity upon His Messenger and the believers, inspiring them to uphold the declaration of faith, for they were better entitled and more worthy of it. And Allah has ˹perfect˺ knowledge of all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,162,'Indeed, Allah will fulfil His Messenger’s vision in all truth: Allah willing, you will surely enter the Sacred Mosque, in security—˹some with˺ heads shaved and ˹others with˺ hair shortened—without fear. He knew what you did not know, so He first granted you the triumph at hand.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,162,'He is the One Who has sent His Messenger with ˹right˺ guidance and the religion of truth, making it prevail over all others. And sufficient is Allah as a Witness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,162,'Muḥammad is the Messenger of Allah. And those with him are firm with the disbelievers and compassionate with one another. You see them bowing and prostrating ˹in prayer˺, seeking Allah’s bounty and pleasure. The sign ˹of brightness can be seen˺ on their faces from the trace of prostrating ˹in prayer˺. This is their description in the Torah. And their parable in the Gospel is that of a seed that sprouts its ˹tiny˺ branches, making it strong. Then it becomes thick, standing firmly on its stem, to the delight of the planters—in this way Allah makes the believers a source of dismay for the disbelievers. To those of them who believe and do good, Allah has promised forgiveness and a great reward.');
+INSERT INTO chapters (id, number, quran_id) VALUES(163,49,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,163,'O believers! Do not proceed ˹in any matter˺ before ˹a decree from˺ Allah and His Messenger. And fear Allah. Surely Allah is All-Hearing, All-Knowing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,163,'O believers! Do not raise your voices above the voice of the Prophet, nor speak loudly to him as you do to one another, or your deeds will become void while you are unaware.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,163,'Indeed, those who lower their voices in the presence of Allah’s Messenger are the ones whose hearts Allah has refined for righteousness. They will have forgiveness and a great reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,163,'Indeed, most of those who call out to you ˹O Prophet˺ from outside ˹your˺ private quarters have no understanding ˹of manners˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,163,'Had they been patient until you could come out to them, it would have certainly been better for them. And Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,163,'O believers, if an evildoer brings you any news, verify ˹it˺ so you do not harm people unknowingly, becoming regretful for what you have done.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,163,'And keep in mind that Allah’s Messenger is ˹still˺ in your midst. If he were to yield to you in many matters, you would surely suffer ˹the consequences˺. But Allah has endeared faith to you, making it appealing in your hearts. And He has made disbelief, rebelliousness, and disobedience detestable to you. Those are the ones rightly guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,163,'˹This is˺ a bounty and a blessing from Allah. And Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,163,'And if two groups of believers fight each other, then make peace between them. But if one of them transgresses against the other, then fight against the transgressing group until they ˹are willing to˺ submit to the rule of Allah. If they do so, then make peace between both ˹groups˺ in all fairness and act justly. Surely Allah loves those who uphold justice.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,163,'The believers are but one brotherhood, so make peace between your brothers. And be mindful of Allah so you may be shown mercy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,163,'O believers! Do not let some ˹men˺ ridicule others, they may be better than them, nor let ˹some˺ women ridicule other women, they may be better than them. Do not defame one another, nor call each other by offensive nicknames. How evil it is to act rebelliously after having faith! And whoever does not repent, it is they who are the ˹true˺ wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,163,'O believers! Avoid many suspicions, ˹for˺ indeed, some suspicions are sinful. And do not spy, nor backbite one another. Would any of you like to eat the flesh of their dead brother? You would despise that! And fear Allah. Surely Allah is ˹the˺ Accepter of Repentance, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,163,'O humanity! Indeed, We created you from a male and a female, and made you into peoples and tribes so that you may ˹get to˺ know one another. Surely the most noble of you in the sight of Allah is the most righteous among you. Allah is truly All-Knowing, All-Aware. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,163,'˹Some of˺ the nomadic Arabs say, “We believe.” Say, ˹O Prophet,˺ “You have not believed. But say, ‘We have submitted,’ for faith has not yet entered your hearts. But if you obey Allah and His Messenger ˹wholeheartedly˺, He will not discount anything from ˹the reward of˺ your deeds. Allah is truly All-Forgiving, Most Merciful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,163,'The ˹true˺ believers are only those who believe in Allah and His Messenger—never doubting—and strive with their wealth and their lives in the cause of Allah. They are the ones true in faith.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,163,'Say, “Do you inform Allah of your faith, when Allah ˹already˺ knows whatever is in the heavens and whatever is on the earth? And Allah has ˹perfect˺ knowledge of all things.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,163,'They regard their acceptance of Islam as a favour to you. Tell ˹them, O Prophet˺, “Do not regard your Islam as a favour to me. Rather, it is Allah Who has done you a favour by guiding you to the faith, if ˹indeed˺ you are faithful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,163,'Surely Allah knows the unseen of the heavens and earth. And Allah is All-Seeing of what you do.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(164,50,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,164,'Qãf. By the glorious Quran!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,164,'˹All will be resurrected,˺ yet the deniers are astonished that a warner has come to them from among themselves ˹warning of resurrection˺. So the disbelievers say, “This is an astonishing thing!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,164,'˹Will we be returned to life,˺ when we are dead and reduced to dust? Such a return is impossible.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,164,'We certainly know what the earth consumes of them ˹after their death˺, and with us is a well-preserved Record.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,164,'In fact, they reject the truth when it has come to them, so they are in a confused state. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,164,'Have they not then looked at the sky above them: how We built it and adorned it ˹with stars˺, leaving it flawless?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,164,'As for the earth, We spread it out and placed upon it firm mountains, and produced in it every type of pleasant plant—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,164,'˹all as˺ an insight and a reminder to every servant who turns ˹to Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,164,'And We send down blessed rain from the sky, bringing forth gardens and grains for harvest,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,164,'and towering palm trees ˹loaded˺ with clustered fruit,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,164,'˹as˺ a provision for ˹Our˺ servants. And with this ˹rain˺ We revive a lifeless land. Similar is the emergence ˹from the graves˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,164,'Before them, the people of Noah denied ˹the truth,˺ as did the people of the Water-pit, Thamûd,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,164,'’Ȃd, Pharaoh, the kinfolk of Lot,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,164,'the residents of the Forest, and the people of Tubba’. Each rejected ˹their˺ messenger, so My warning was fulfilled.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,164,'Were We incapable of creating ˹them˺ the first time? In fact, they are in doubt about ˹their˺ re-creation.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,164,'Indeed, ˹it is˺ We ˹Who˺ created humankind and ˹fully˺ know what their souls whisper to them, and We are closer to them than ˹their˺ jugular vein.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,164,'As the two recording-angels—˹one˺ sitting to the right, and ˹the other to˺ the left—note ˹everything˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,164,'not a word does a person utter without having a ˹vigilant˺ observer ready ˹to write it down˺. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,164,'˹Ultimately,˺ with the throes of death will come the truth. This is what you were trying to escape!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,164,'And the Trumpet will be blown. This is the Day ˹you were˺ warned of.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,164,'Each soul will come forth with an angel to drive it and another to testify.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,164,'˹It will be said to the denier,˺ “You were totally heedless of this. Now We have lifted this veil of yours, so Today your sight is sharp!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,164,'And one’s accompanying-angel will say, “Here is the record ready with me.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,164,'˹It will be said to both angels,˺ “Throw into Hell every stubborn disbeliever,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,164,'withholder of good, transgressor, and doubter,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,164,'who set up another god with Allah. So cast them into the severe punishment.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,164,'One’s ˹devilish˺ associate will say, “Our Lord! I did not make them transgress. Rather, they were far astray ˹on their own˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,164,'Allah will respond, “Do not dispute in My presence, since I had already given you a warning.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,164,'My Word cannot be changed, nor am I unjust to ˹My˺ creation.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,164,'˹Beware of˺ the Day We will ask Hell, “Are you full ˹yet˺?” And it will respond, “Are there any more?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,164,'And Paradise will be brought near to the righteous, not far off.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,164,'˹And it will be said to them,˺ “This is what you were promised, for whoever ˹constantly˺ turned ˹to Allah˺ and kept up ˹His commandments˺—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,164,'who were in awe of the Most Compassionate without seeing ˹Him˺, and have come with a heart turning ˹only to Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,164,'Enter it in peace. This is the Day of eternal life!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,164,'There they will have whatever they desire, and with Us is ˹even˺ more. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,164,'˹Imagine˺ how many peoples We destroyed before them, who were far mightier than them. Then ˹when the torment came,˺ they ˹desperately˺ sought refuge in the land. ˹But˺ was there any escape?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,164,'Surely in this is a reminder for whoever has a ˹mindful˺ heart and lends an attentive ear.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,164,'Indeed, We created the heavens and the earth and everything in between in six Days, and We were not ˹even˺ touched with fatigue.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,164,'So be patient ˹O Prophet˺ with what they say. And glorify the praises of your Lord before sunrise and before sunset.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,164,'And glorify Him during part of the night and after the prayers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,164,'And listen! On the Day the caller will call out from a near place,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,164,'the Day all will hear the ˹mighty˺ Blast in ˹all˺ truth, that will be the Day of emergence ˹from the graves˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,164,'It is certainly We Who give life and cause death. And to Us is the final return.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,164,'˹Beware of˺ the Day the earth will split open, letting them rush forth. That will be an easy gathering for Us.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,164,'We know best what they say. And you ˹O Prophet˺ are not ˹there˺ to compel them ˹to believe˺. So remind with the Quran ˹only˺ those who fear My warning.');
+INSERT INTO chapters (id, number, quran_id) VALUES(165,51,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,165,'By the winds scattering ˹dust˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,165,'and ˹the clouds˺ loaded with rain,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,165,'and ˹the ships˺ gliding with ease,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,165,'and ˹the angels˺ administering affairs by ˹Allah’s˺ command!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,165,'Indeed, what you are promised is true.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,165,'And the Judgment will certainly come to pass.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,165,'˹And˺ by the heavens in their marvellous design!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,165,'Surely you are ˹lost˺ in conflicting views ˹regarding the truth˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,165,'Only those ˹destined to be˺ deluded are turned away from it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,165,'Condemned are the liars—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,165,'those who are ˹steeped˺ in ignorance, totally heedless.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,165,'They ask ˹mockingly˺, “When is this Day of Judgment?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,165,'˹It is˺ the Day they will be tormented over the Fire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,165,'˹They will be told,˺ “Taste your torment! This is what you sought to hasten.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,165,'Indeed, the righteous will be amid Gardens and springs,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,165,'˹joyfully˺ receiving what their Lord will grant them. Before this ˹reward˺ they were truly good-doers ˹in the world˺:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,165,'they used to sleep only little in the night,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,165,'and pray for forgiveness before dawn.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,165,'And in their wealth there was a rightful share ˹fulfilled˺ for the beggar and the poor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,165,'There are ˹countless˺ signs on earth for those with sure faith,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,165,'as there are within yourselves. Can you not see?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,165,'In heaven is your sustenance and whatever you are promised.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,165,'Then by the Lord of heaven and earth! ˹All˺ this is certainly as true as ˹the fact that˺ you can speak!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,165,'Has the story of Abraham’s honoured guests reached you ˹O Prophet˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,165,'˹Remember˺ when they entered his presence and greeted ˹him with˺, “Peace!” He replied, “Peace ˹be upon you˺!” ˹Then he said to himself,˺ “˹These are˺ an unfamiliar people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,165,'Then he slipped off to his family and brought a fat ˹roasted˺ calf,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,165,'and placed it before them, asking, “Will you not eat?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,165,'˹They did not eat,˺ so he grew fearful of them. They reassured ˹him˺, “Do not be afraid,” and gave him good news of a knowledgeable son.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,165,'Then his wife came forward with a cry, clasping her forehead ˹in astonishment˺, exclaiming, “˹A baby from˺ a barren, old woman!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,165,'They replied, “Such has your Lord decreed. He is truly the All-Wise, All-Knowing.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,165,'˹Later,˺ Abraham asked, “What is your mission, O messengers?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,165,'They replied, “We have actually been sent to a wicked people,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,165,'to send upon them stones of ˹baked˺ clay,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,165,'marked by your Lord for the transgressors.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,165,'Then ˹before the torment˺ We evacuated the believers from the city.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,165,'But We only found one family that had submitted ˹to Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,165,'And We have left a sign there ˹as a lesson˺ for those who fear the painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,165,'And in ˹the story of˺ Moses ˹was another lesson,˺ when We sent him to Pharaoh with compelling proof,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,165,'but Pharaoh was carried away by his power, saying ˹of Moses˺, “A magician or a madman!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,165,'So We seized him and his soldiers, casting them into the sea while he was blameworthy. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,165,'And in ˹the story of˺ ’Âd ˹was another lesson,˺ when We sent against them the devastating wind.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,165,'There was nothing it came upon that it did not reduce to ashes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,165,'And in ˹the story of˺ Thamûd ˹was another lesson,˺ when they were told, “Enjoy yourselves ˹only˺ for a ˹short˺ while.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,165,'Still they persisted in defying the commands of their Lord, so they were overtaken by a ˹mighty˺ blast while they were looking on.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,165,'Then they were not able to rise up, nor were they helped.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,165,'And the people of Noah ˹had also been destroyed˺ earlier. They were truly a rebellious people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,165,'We built the universe with ˹great˺ might, and We are certainly expanding ˹it˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,165,'As for the earth, We spread it out. How superbly did We smooth it out!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,165,'And We created pairs of all things so perhaps you would be mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,165,'So ˹proclaim, O Prophet˺: “Flee to Allah! I am truly sent by Him with a clear warning to you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,165,'And do not set up another god with Allah. I am truly sent by Him with a clear warning to you.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,165,'Similarly, no messenger came to those before them without being told: “A magician or a madman!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,165,'Have they passed this ˹cliché˺ down to one another? In fact, they have ˹all˺ been a transgressing people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,165,'So ˹now˺ turn away from them ˹O Prophet˺, for you will not be blamed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,165,'But ˹continue to˺ remind. For certainly reminders benefit the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,165,'I did not create jinn and humans except to worship Me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,165,'I seek no provision from them, nor do I need them to feed Me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,165,'Indeed, Allah ˹alone˺ is the Supreme Provider—Lord of all Power, Ever Mighty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,165,'The wrongdoers will certainly have a share ˹of the torment˺ like that of their predecessors. So do not let them ask Me to hasten ˹it˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,165,'Woe then to the disbelievers when they face their Day which they are warned of!');
+INSERT INTO chapters (id, number, quran_id) VALUES(166,52,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,166,'By Mount Ṭûr!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,166,'And by the Book written');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,166,'on open pages ˹for all to read˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,166,'And by the ˹Sacred˺ House frequently visited!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,166,'And by the canopy raised ˹high˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,166,'And by the seas set on fire!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,166,'Indeed, the punishment of your Lord will come to pass—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,166,'none will avert it—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,166,'on the Day the heavens will be shaken violently,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,166,'and the mountains will be blown away entirely.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,166,'Then woe on that Day to the deniers—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,166,'those who amuse themselves with falsehood!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,166,'˹It is˺ the Day they will be fiercely shoved into the Fire of Hell.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,166,'˹They will be told,˺ “This is the Fire which you used to deny.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,166,'Is this magic, or do you not see?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,166,'Burn in it! It is the same whether you endure ˹it˺ patiently or not. You are only rewarded for what you used to do.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,166,'Indeed, the righteous will be in Gardens and bliss,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,166,'enjoying whatever their Lord will have granted them. And their Lord will have protected them from the torment of the Hellfire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,166,'˹They will be told,˺ “Eat and drink happily for what you used to do.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,166,'They will be reclining on thrones, ˹neatly˺ lined up ˹facing each other˺. And We will pair them to maidens with gorgeous eyes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,166,'As for those who believe and whose descendants follow them in faith, We will elevate their descendants to their rank, never discounting anything ˹of the reward˺ of their deeds. Every person will reap only what they sowed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,166,'And We will ˹continually˺ provide them with whatever fruit or meat they desire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,166,'They will pass around to each other a drink ˹of pure wine,˺ which leads to no idle talk or sinfulness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,166,'And they will be waited on by their youthful servants like spotless pearls. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,166,'They will turn to one another inquisitively.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,166,'They will say, “Before ˹this reward˺ we used to be in awe ˹of Allah˺ in the midst of our people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,166,'So Allah has graced us and protected us from the torment of ˹Hell’s˺ scorching heat.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,166,'Indeed, we used to call upon Him ˹alone˺ before. He is truly the Most Kind, Most Merciful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,166,'So ˹continue to˺ remind ˹all, O Prophet˺. For you, by the grace of your Lord, are not a fortune-teller or a madman.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,166,'Or do they say, “˹He is˺ a poet, for whom we ˹eagerly˺ await an ill-fate!”?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,166,'Say, “Keep waiting! I too am waiting with you.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,166,'Or do their ˹intelligent˺ minds prompt them to this ˹paradox˺? Or are they ˹just˺ a transgressing people?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,166,'Or do they say, “He made this ˹Quran˺ up!”? In fact, they have no faith.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,166,'Let them then produce something like it, if what they say is true!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,166,'Or were they created by nothing, or are they ˹their own˺ creators?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,166,'Or did they create the heavens and the earth? In fact, they have no firm belief ˹in Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,166,'Or do they possess the treasuries of your Lord, or are they in control ˹of everything˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,166,'Or do they have a stairway, by which they eavesdrop ˹on the heavens˺? Then let those who do so bring a compelling proof.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,166,'Or does He have daughters ˹as you claim˺, while you ˹prefer to˺ have sons?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,166,'Or are you ˹O Prophet˺ asking them for a reward ˹for the message˺ so that they are overburdened by debt?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,166,'Or do they have access to ˹the Record in˺ the unseen, so they copy it ˹for all to see˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,166,'Or do they intend to scheme ˹against the Prophet˺? Then it is the disbelievers who will fall victim to ˹their˺ schemes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,166,'Or do they have a god other than Allah? Glorified is Allah far above what they associate ˹with Him˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,166,'If they were to see a ˹deadly˺ piece of the sky fall down ˹upon them˺, still they would say, “˹This is just˺ a pile of clouds.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,166,'So leave them until they face their Day in which they will be struck dead—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,166,'the Day their scheming will be of no benefit to them whatsoever, nor will they be helped.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,166,'Also, the wrongdoers will certainly have another torment before that ˹Day˺, but most of them do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,166,'So be patient with your Lord’s decree, for you are truly under Our ˹watchful˺ Eyes. And glorify the praises of your Lord when you rise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,166,'And glorify Him during part of the night and at the fading of the stars.');
+INSERT INTO chapters (id, number, quran_id) VALUES(167,53,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,167,'By the stars when they fade away!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,167,'Your fellow man is neither misguided nor astray.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,167,'Nor does he speak of his own whims.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,167,'It is only a revelation sent down ˹to him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,167,'He has been taught by one ˹angel˺ of mighty power');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,167,'and great perfection, who once rose to ˹his˺ true form');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,167,'while on the highest point above the horizon,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,167,'then he approached ˹the Prophet˺, coming so close');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,167,'that he was only two arms-lengths away or even less.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,167,'Then Allah revealed to His servant what He revealed ˹through Gabriel˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,167,'The ˹Prophet’s˺ heart did not doubt what he saw.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,167,'How can you ˹O pagans˺ then dispute with him regarding what he saw?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,167,'And he certainly saw that ˹angel descend˺ a second time');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,167,'at the Lote Tree of the most extreme limit ˹in the seventh heaven˺—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,167,'near which is the Garden of ˹Eternal˺ Residence—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,167,'while the Lote Tree was overwhelmed with ˹heavenly˺ splendours!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,167,'The ˹Prophet’s˺ sight never wandered, nor did it overreach.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,167,'He certainly saw some of his Lord’s greatest signs. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,167,'Now, have you considered ˹the idols of˺ Lât and ’Uzza,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,167,'and the third one, Manât, as well?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,167,'Do you ˹prefer to˺ have sons while ˹you attribute˺ to Him daughters?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,167,'Then this is ˹truly˺ a biased distribution!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,167,'These ˹idols˺ are mere names that you and your forefathers have made up—a practice Allah has never authorized. They follow nothing but ˹inherited˺ assumptions and whatever ˹their˺ souls desire, although ˹true˺ guidance has already come to them from their Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,167,'Or should every person ˹simply˺ have whatever ˹intercessors˺ they desire?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,167,'In fact, to Allah ˹alone˺ belongs this world and the next.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,167,'˹Imagine˺ how many ˹noble˺ angels are in the heavens! ˹Even˺ their intercession would be of no benefit whatsoever, until Allah gives permission to whoever He wills and ˹only for the people He˺ approves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,167,'Indeed, those who do not believe in the Hereafter label angels as female,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,167,'although they have no knowledge ˹in support˺ of this. They follow nothing but ˹inherited˺ assumptions. And surely assumptions can in no way replace the truth.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,167,'So turn away ˹O Prophet˺ from whoever has shunned Our Reminder, only seeking the ˹fleeting˺ life of this world.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,167,'This is the extent of their knowledge. Surely your Lord knows best who has strayed from His Way and who is ˹rightly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,167,'To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth so that He may reward the evildoers according to what they did, and reward the good-doers with the finest reward—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,167,'those who avoid major sins and shameful deeds, despite ˹stumbling on˺ minor sins. Surely your Lord is infinite in forgiveness. He knew well what would become of you as He created you from the earth and while you were ˹still˺ fetuses in the wombs of your mothers. So do not ˹falsely˺ elevate yourselves. He knows best who is ˹truly˺ righteous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,167,'Have you seen the one who turned away ˹from Islam,˺');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,167,'and ˹initially˺ paid a little ˹for his salvation˺, and then stopped?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,167,'Does he have the knowledge of the unseen so that he sees ˹the Hereafter˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,167,'Or has he not been informed of what is in the Scripture of Moses,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,167,'and ˹that of˺ Abraham, who ˹perfectly˺ fulfilled ˹his covenant˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,167,'˹They state˺ that no soul burdened with sin will bear the burden of another,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,167,'and that each person will only have what they endeavoured towards,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,167,'and that ˹the outcome of˺ their endeavours will be seen ˹in their record˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,167,'then they will be fully rewarded,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,167,'and that to your Lord ˹alone˺ is the ultimate return ˹of all things˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,167,'Moreover, He is the One Who brings about joy and sadness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,167,'And He is the One Who gives life and causes death.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,167,'And He created the pairs—males and females—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,167,'from a sperm-drop when it is emitted.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,167,'And it is upon Him to bring about re-creation.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,167,'And He is the One Who enriches and impoverishes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,167,'And He alone is the Lord of Sirius.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,167,'And He destroyed the first ˹people of˺ ’Ȃd,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,167,'and ˹then˺ Thamûd, sparing no one.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,167,'And before ˹that He destroyed˺ the people of Noah, who were truly far worse in wrongdoing and transgression.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,167,'And ˹it was˺ He ˹Who˺ turned the cities ˹of Sodom and Gomorrah˺ upside down.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,167,'How overwhelming was what covered ˹them˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,167,'Now, which of your Lord’s favours will you dispute?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,167,'This ˹Prophet˺ is a warner like earlier ones.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,167,'The approaching ˹Hour˺ has drawn near.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,167,'None but Allah can disclose it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,167,'Do you find this revelation astonishing,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,167,'laughing ˹at it˺ and not weeping ˹in awe˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,167,'while persisting in heedlessness?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,167,'Instead, prostrate to Allah and worship ˹Him alone˺!');
+INSERT INTO chapters (id, number, quran_id) VALUES(168,54,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,168,'The Hour has drawn near and the moon was split ˹in two˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,168,'Yet, whenever they see a sign, they turn away, saying, “Same old magic!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,168,'They rejected ˹the truth˺ and followed their own desires—and every matter will be settled—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,168,'even though the stories ˹of destroyed nations˺ that have already come to them are a sufficient deterrent.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,168,'˹This Quran is˺ profound ˹in˺ wisdom, but warnings are of no benefit ˹to them˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,168,'So turn away from them ˹O Prophet˺. ˹And wait for˺ the Day ˹when˺ the caller will summon ˹them˺ for something horrifying.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,168,'With eyes downcast, they will come forth from the graves as if they were swarming locusts,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,168,'rushing towards the caller. The disbelievers will cry, “This is a difficult Day!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,168,'Before them, the people of Noah denied ˹the truth˺ and rejected Our servant, calling ˹him˺ insane. And he was intimidated.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,168,'So he cried out to his Lord, “I am helpless, so help ˹me˺!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,168,'So We opened the gates of the sky with pouring rain,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,168,'and caused the earth to burst with springs, so the waters met for a fate already set.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,168,'We carried him on that ˹Ark made˺ of planks and nails,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,168,'sailing under Our ˹watchful˺ Eyes—a ˹fair˺ punishment on behalf of the one ˹they˺ denied.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,168,'We certainly left this as a sign. So is there anyone who will be mindful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,168,'Then how ˹dreadful˺ were My punishment and warnings!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,168,'And We have certainly made the Quran easy to remember. So is there anyone who will be mindful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,168,'’Ȃd ˹also˺ rejected ˹the truth˺. Then how ˹dreadful˺ were My punishment and warnings!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,168,'Indeed, We sent against them a furious wind, on a day of unrelenting misery,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,168,'that snatched people up, leaving them like trunks of uprooted palm trees.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,168,'Then how ˹dreadful˺ were My punishment and warnings!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,168,'And We have certainly made the Quran easy to remember. So is there anyone who will be mindful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,168,'Thamûd rejected the warnings ˹as well˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,168,'arguing, “How can we follow one ˹average˺ human being from among us? We would then truly be misguided and insane.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,168,'Has the revelation been sent down ˹only˺ to him out of ˹all of˺ us? In fact, he is a boastful liar.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,168,'˹It was revealed to Ṣâliḥ,˺ “They will soon know who the boastful liar is.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,168,'We are sending the she-camel as a test for them. So watch them ˹closely˺, and have patience.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,168,'And tell them that the ˹drinking˺ water must be divided between them ˹and her˺, each taking a turn to drink ˹every other day˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,168,'But they roused a companion of theirs, so he dared to kill ˹her˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,168,'Then how ˹dreadful˺ were My punishment and warnings!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,168,'Indeed, We sent against them ˹only˺ one ˹mighty˺ blast, leaving them like the twigs of fence-builders.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,168,'And We have certainly made the Quran easy to remember. So is there anyone who will be mindful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,168,'The people of Lot ˹also˺ rejected the warnings.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,168,'We unleashed upon them a storm of stones. As for ˹the believers of˺ Lot’s family, We delivered them before dawn');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,168,'as a blessing from Us. This is how We reward whoever gives thanks.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,168,'He had already warned them of Our ˹crushing˺ blow but they disputed the warnings.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,168,'And they even demanded his angel-guests from him, so We blinded their eyes. ˹And they were told,˺ “Taste then My punishment and warnings!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,168,'And indeed, by the early morning they were overwhelmed by an unrelenting torment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,168,'˹Again they were told,˺ “Taste now My punishment and warnings!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,168,'And We have certainly made the Quran easy to remember. So is there anyone who will be mindful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,168,'And indeed, the warnings ˹also˺ came to the people of Pharaoh.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,168,'˹But˺ they rejected all of Our signs, so We seized them with the ˹crushing˺ grip of the Almighty, Most Powerful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,168,'Now, are you ˹Meccan˺ disbelievers superior to those ˹destroyed peoples˺? Or have you ˹been granted˺ immunity ˹from punishment˺ in divine Books?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,168,'Or do they say, “We are all ˹a˺ united ˹front˺, bound to prevail.”?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,168,'˹Soon˺ their united front will be defeated and ˹forced to˺ flee.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,168,'Better yet, the Hour is their appointed time—and the Hour will be most catastrophic and most bitter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,168,'Indeed, the wicked are ˹entrenched˺ in misguidance, and ˹are bound for˺ blazes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,168,'On the Day they will be dragged into the Fire on their faces, ˹they will be told,˺ “Taste the touch of Hell!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,168,'Indeed, We have created everything, perfectly preordained.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,168,'Our command is but a single word, done in the blink of an eye.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,168,'We have already destroyed the likes of you. So will any ˹of you˺ be mindful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,168,'Everything they have done is ˹listed˺ in ˹their˺ records.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,168,'Every matter, small and large, is written ˹precisely˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,168,'Indeed, the righteous will be amid Gardens and rivers,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,168,'at the Seat of Honour in the presence of the Most Powerful Sovereign.');
+INSERT INTO chapters (id, number, quran_id) VALUES(169,55,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,169,'The Most Compassionate');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,169,'taught the Quran,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,169,'created humanity,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,169,'˹and˺ taught them speech.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,169,'The sun and the moon ˹travel˺ with precision.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,169,'The stars and the trees bow down ˹in submission˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,169,'As for the sky, He raised it ˹high˺, and set the balance ˹of justice˺');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,169,'so that you do not defraud the scales.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,169,'Weigh with justice, and do not give short measure.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,169,'He laid out the earth for all beings.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,169,'In it are fruit, palm trees with date stalks,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,169,'and grain with husks, and aromatic plants.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,169,'Then which of your Lord’s favours will you ˹humans and jinn˺ both deny? ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,169,'He created humankind from ˹sounding˺ clay like pottery,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,169,'and created jinn from a ˹smokeless˺ flame of fire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,169,'˹He is˺ Lord of the two easts and the two wests.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,169,'He merges the two bodies of ˹fresh and salt˺ water,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,169,'yet between them is a barrier they never cross.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,169,'Out of both ˹waters˺ come forth pearls and coral.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,169,'To Him belong the ships with raised sails, sailing through the seas like mountains.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,169,'Every being on earth is bound to perish.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,169,'Only your Lord Himself, full of Majesty and Honour, will remain ˹forever˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,169,'All those in the heavens and the earth are dependent on Him. Day in and day out He has something to bring about.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,169,'We will soon attend to you ˹for judgment˺, O two multitudes ˹of jinn and humans˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,169,'O assembly of jinn and humans! If you can penetrate beyond the realms of the heavens and the earth, then do so. ˹But˺ you cannot do that without ˹Our˺ authority.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,169,'Flames of fire and ˹molten˺ copper will be sent against you, and you will not be able to defend one another.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,169,'˹How horrible will it be˺ when the heavens will split apart, becoming rose-red like ˹burnt˺ oil!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,169,'On that Day there will be no need for any human or jinn to be asked about their sins.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,169,'The wicked will be recognized by their appearance, then will be seized by ˹their˺ forelocks and feet.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,169,'˹They will be told,˺ “This is the Hell which the wicked denied.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,169,'They will alternate between its flames and scalding water.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,169,'Then which of your Lord’s favours will you both deny? ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,169,'And whoever is in awe of standing before their Lord will have two Gardens.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,169,'˹Both will be˺ with lush branches.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,169,'In each ˹Garden˺ will be two flowing springs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,169,'In each will be two types of every fruit.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,169,'Those ˹believers˺ will recline on furnishings lined with rich brocade. And the fruit of both Gardens will hang within reach.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,169,'In both ˹Gardens˺ will be maidens of modest gaze, who no human or jinn has ever touched before.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,169,'Those ˹maidens˺ will be ˹as elegant˺ as rubies and coral.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,169,'Is there any reward for goodness except goodness?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,169,'And below these two ˹Gardens˺ will be two others.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,169,'Both will be dark green.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,169,'In each will be two gushing springs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,169,'In both will be fruit, palm trees, and pomegranates.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,169,'In all Gardens will be noble, pleasant mates.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,169,'˹They will be˺ maidens with gorgeous eyes, reserved in pavilions.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,169,'No human or jinn has ever touched these ˹maidens˺ before.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,169,'All ˹believers˺ will be reclining on green cushions and splendid carpets.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,169,'Then which of your Lord’s favours will you both deny?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,169,'Blessed is the Name of your Lord, full of Majesty and Honour.');
+INSERT INTO chapters (id, number, quran_id) VALUES(170,56,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,170,'When the Inevitable Event takes place,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,170,'then no one can deny it has come.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,170,'It will debase ˹some˺ and elevate ˹others˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,170,'When the earth will be violently shaken,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,170,'and the mountains will be crushed to pieces,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,170,'becoming scattered ˹particles of˺ dust,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,170,'you will ˹all˺ be ˹divided into˺ three groups:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,170,'the people of the right, how ˹blessed˺ will they be;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,170,'the people of the left, how ˹miserable˺ will they be;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,170,'and the foremost ˹in faith˺ will be the foremost ˹in Paradise˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,170,'They are the ones nearest ˹to Allah˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,170,'in the Gardens of Bliss.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,170,'˹They will be˺ a multitude from earlier generations');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,170,'and a few from later generations.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,170,'˹All will be˺ on jewelled thrones,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,170,'reclining face to face.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,170,'They will be waited on by eternal youths');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,170,'with cups, pitchers, and a drink ˹of pure wine˺ from a flowing stream,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,170,'that will cause them neither headache nor intoxication.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,170,'˹They will also be served˺ any fruit they choose');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,170,'and meat from any bird they desire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,170,'And ˹they will have˺ maidens with gorgeous eyes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,170,'like pristine pearls,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,170,'˹all˺ as a reward for what they used to do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,170,'There they will never hear any idle or sinful talk—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,170,'only good and virtuous speech. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,170,'And the people of the right—how ˹blessed˺ will they be!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,170,'˹They will be˺ amid thornless lote trees,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,170,'clusters of bananas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,170,'extended shade,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,170,'flowing water,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,170,'abundant fruit—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,170,'never out of season nor forbidden—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,170,'and elevated furnishings.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,170,'Indeed, We will have perfectly created their mates,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,170,'making them virgins,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,170,'loving and of equal age,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,170,'for the people of the right,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,170,'˹who will be˺ a multitude from earlier generations');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,170,'and a multitude from later generations.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,170,'And the people of the left—how ˹miserable˺ will they be!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,170,'˹They will be˺ in scorching heat and boiling water,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,170,'in the shade of black smoke,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,170,'neither cool nor refreshing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,170,'Indeed, before this ˹torment˺ they were spoiled by luxury,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,170,'and persisted in the worst of sin.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,170,'They used to ask ˹mockingly˺, “When we are dead and reduced to dust and bones, will we really be resurrected?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,170,'And our forefathers as well?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,170,'Say, ˹O Prophet,˺ “Most certainly, earlier and later generations');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,170,'will surely be gathered ˹together˺ for the appointed Day.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,170,'Then you, O misguided deniers,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,170,'will certainly eat from ˹the fruit of˺ the trees of Zaqqûm,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,170,'filling up ˹your˺ bellies with it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,170,'Then on top of that you will drink boiling water—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,170,'and you will drink ˹it˺ like thirsty camels do.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,170,'This will be their accommodation on the Day of Judgment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,2,170,'It is We Who created you. Will you not then believe ˹in resurrection˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,2,170,'Have you considered what you ejaculate?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,2,170,'Is it you who create ˹a child out of˺ it, or is it We Who do so?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,2,170,'We have ordained death for ˹all of˺ you, and We cannot be prevented');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,2,170,'from transforming and recreating you in forms unknown to you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,2,170,'You already know how you were first created. Will you not then be mindful?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,2,170,'Have you considered what you sow?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,2,170,'Is it you who cause it to grow, or is it We Who do so?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,2,170,'If We willed, We could simply reduce this ˹harvest˺ to chaff, leaving you to lament,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,2,170,'“We have truly suffered a ˹great˺ loss.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,2,170,'In fact, we have been deprived ˹of our livelihood˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,2,170,'Have you considered the water you drink?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,2,170,'Is it you who bring it down from the clouds, or is it We Who do so?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,2,170,'If We willed, We could make it salty. Will you not then give thanks?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,2,170,'Have you considered the fire you kindle?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,2,170,'Is it you who produce its trees, or is it We Who do so?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,2,170,'We have made it ˹as˺ a reminder ˹of the Hellfire˺ and a provision for the travellers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,2,170,'So glorify the Name of your Lord, the Greatest.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,2,170,'So I do swear by the positions of the stars—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,2,170,'and this, if only you knew, is indeed a great oath—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,2,170,'that this is truly a noble Quran,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,2,170,'in a well-preserved Record,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,2,170,'touched by none except the purified ˹angels˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,2,170,'˹It is˺ a revelation from the Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,2,170,'How can you then take this message lightly,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,2,170,'and repay ˹Allah for˺ your provisions with denial? ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,2,170,'Why then ˹are you helpless˺ when the soul ˹of a dying person˺ reaches ˹their˺ throat,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,2,170,'while you are looking on?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,2,170,'And We are nearer to such a person than you, but you cannot see.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,2,170,'Now, if you are not subject to Our Will ˹as you claim˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,2,170,'bring that soul back, if what you say is true.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,2,170,'So, if the deceased is one of those brought near ˹to Us˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,2,170,'then ˹such a person will have˺ serenity, fragrance, and a Garden of Bliss.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,2,170,'And if the deceased is one of the people of the right,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,2,170,'then ˹they will be told,˺ “Greetings to you from the people of the right.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,2,170,'But if such person is one of the misguided deniers,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,2,170,'then their accommodation will be boiling water ˹to drink˺');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,2,170,'and burning in Hellfire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,2,170,'Indeed, this is the absolute truth.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,2,170,'So glorify the Name of your Lord, the Greatest.');
+INSERT INTO chapters (id, number, quran_id) VALUES(171,57,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,171,'Whatever is in the heavens and the earth glorifies Allah, for He is the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,171,'To Him belongs the kingdom of the heavens and the earth. He gives life and causes death. And He is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,171,'He is the First and the Last, the Most High and Most Near, and He has ˹perfect˺ knowledge of all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,171,'He is the One Who created the heavens and the earth in six Days, then established Himself on the Throne. He knows whatever goes into the earth and whatever comes out of it, and whatever descends from the sky and whatever ascends into it. And He is with you wherever you are. For Allah is All-Seeing of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,171,'To Him belongs the kingdom of the heavens and the earth. And to Allah all matters are returned.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,171,'He merges the night into day and the day into night. And He knows best what is ˹hidden˺ in the heart.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,171,'Believe in Allah and His Messenger, and donate from what He has entrusted you with. So those of you who believe and donate will have a mighty reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,171,'Why do you not believe in Allah while the Messenger is inviting you to have faith in your Lord, although He has already taken your covenant, if you will ever believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,171,'He is the One Who sends down clear revelations to His servant to bring you out of darkness and into light. For indeed Allah is Ever Gracious and Most Merciful to you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,171,'And why should you not spend in the cause of Allah, while Allah is the ˹sole˺ inheritor of the heavens and the earth? Those of you who donated and fought before the victory ˹over Mecca˺ are unparalleled. They are far greater in rank than those who donated and fought afterwards. Yet Allah has promised each a fine reward. And Allah is All-Aware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,171,'Who is it that will lend to Allah a good loan which Allah will multiply ˹many times over˺ for them, and they will have an honourable reward?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,171,'On that Day you will see believing men and women with their light shining ahead of them and on their right. ˹They will be told,˺ “Today you have good news of Gardens, under which rivers flow, ˹for you˺ to stay in forever. This is ˹truly˺ the ultimate triumph.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,171,'On that Day hypocrite men and women will beg the believers, “Wait for us so that we may have some of your light.” It will be said ˹mockingly˺, “Go back ˹to the world˺ and seek a light ˹there˺!” Then a ˹separating˺ wall with a gate will be erected between them. On the near side will be grace and on the far side will be torment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,171,'The tormented will cry out to those graced, “Were we not with you?” They will reply, “Yes ˹you were˺. But you chose to be tempted ˹by hypocrisy˺, ˹eagerly˺ awaited ˹our demise˺, doubted ˹the truth˺, and were deluded by false hopes until Allah’s decree ˹of your death˺ came to pass. And ˹so˺ the Chief Deceiver deceived you about Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,171,'So Today no ransom will be accepted from you ˹hypocrites˺, nor from the disbelievers. Your home is the Fire—it is the ˹only˺ fitting place for you. What an evil destination!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,171,'Has the time not yet come for believers’ hearts to be humbled at the remembrance of Allah and what has been revealed of the truth, and not be like those given the Scripture before—˹those˺ who were spoiled for so long that their hearts became hardened. And many of them are ˹still˺ rebellious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,171,'Know that Allah revives the earth after its death. We have certainly made the signs clear for you so perhaps you will understand.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,171,'Indeed, those men and women who give in charity and lend to Allah a good loan will have it multiplied for them, and they will have an honourable reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,171,'˹As for˺ those who believe in Allah and His messengers, it is they who are ˹truly˺ the people of truth. And the martyrs, with their Lord, will have their reward and their light. But ˹as for˺ those who disbelieve and reject Our signs, it is they who will be the residents of the Hellfire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,171,'Know that this worldly life is no more than play, amusement, luxury, mutual boasting, and competition in wealth and children. This is like rain that causes plants to grow, to the delight of the planters. But later the plants dry up and you see them wither, then they are reduced to chaff. And in the Hereafter there will be either severe punishment or forgiveness and pleasure of Allah, whereas the life of this world is no more than the delusion of enjoyment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,171,'˹So˺ compete with one another for forgiveness from your Lord and a Paradise as vast as the heavens and the earth, prepared for those who believe in Allah and His messengers. This is the favour of Allah. He grants it to whoever He wills. And Allah is the Lord of infinite bounty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,171,'No calamity ˹or blessing˺ occurs on earth or in yourselves without being ˹written˺ in a Record before We bring it into being. This is certainly easy for Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,171,'˹We let you know this˺ so that you neither grieve over what you have missed nor boast over what He has granted you. For Allah does not like whoever is arrogant, boastful—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,171,'those who are stingy and promote stinginess among people. And whoever turns away ˹should know that˺ Allah ˹alone˺ is truly the Self-Sufficient, Praiseworthy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,171,'Indeed, We sent Our messengers with clear proofs, and with them We sent down the Scripture and the balance ˹of justice˺ so that people may administer justice. And We sent down iron with its great might, benefits for humanity, and means for Allah to prove who ˹is willing to˺ stand up for Him and His messengers without seeing Him. Surely Allah is All-Powerful, Almighty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,171,'And indeed, We sent Noah and Abraham and reserved prophethood and revelation for their descendants. Some of them are ˹rightly˺ guided, while most are rebellious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,171,'Then in the footsteps of these ˹prophets˺, We sent Our messengers, and ˹after them˺ We sent Jesus, son of Mary, and granted him the Gospel, and instilled compassion and mercy into the hearts of his followers. As for monasticism, they made it up—We never ordained it for them—only seeking to please Allah, yet they did not ˹even˺ observe it strictly. So We rewarded those of them who were faithful. But most of them are rebellious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,171,'O people of faith! Fear Allah and believe in His Messenger. ˹And˺ He will grant you a double share of His mercy, provide you with a light to walk in ˹on Judgment Day˺, and forgive you. For Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,171,'˹This is so˺ that the People of the Book ˹who deny the Prophet˺ may know that they do not have any control over Allah’s grace, and that all grace is in Allah’s Hands. He grants it to whoever He wills. For Allah is the Lord of infinite bounty.');
+INSERT INTO chapters (id, number, quran_id) VALUES(172,58,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,172,'Indeed, Allah has heard the argument of the woman who pleaded with you ˹O Prophet˺ concerning her husband, and appealed to Allah. Allah has heard your exchange. Surely Allah is All-Hearing, All-Seeing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,172,'Those of you who ˹sinfully˺ divorce their wives by comparing them to their mothers ˹should know that˺ their wives are in no way their mothers. None can be their mothers except those who gave birth to them. What they say is certainly detestable and false. Yet Allah is truly Ever-Pardoning, All-Forgiving.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,172,'Those who divorce their wives in this manner, then ˹wish to˺ retract what they said, must free a slave before they touch each other. This ˹penalty˺ is meant to deter you. And Allah is All-Aware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,172,'But if the husband cannot afford this, let him then fast two consecutive months before the couple touch each other. But if he is unable ˹to fast˺, then let him feed sixty poor people. This is to re-affirm your faith in Allah and His Messenger. These are the limits set by Allah. And the disbelievers will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,172,'Indeed, those who defy Allah and His Messenger will be debased, just like those before them. We have certainly sent down clear revelations. And the disbelievers will suffer a humiliating punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,172,'On the Day Allah resurrects them all together, He will then inform them of what they have done. Allah has kept account of it all, while they have forgotten it. For Allah is a Witness over all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,172,'Do you not see that Allah knows whatever is in the heavens and whatever is on the earth? If three converse privately, He is their fourth. If five, He is their sixth. Whether fewer or more, He is with them wherever they may be. Then, on the Day of Judgment, He will inform them of what they have done. Surely Allah has ˹perfect˺ knowledge of all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,172,'Have you not seen those who were forbidden from secret talks, yet they ˹always˺ return to what they were forbidden from, conspiring in sin, aggression, and disobedience to the Messenger? And when they come to you ˹O Prophet˺, they greet you not as Allah greets you, and say to one another, “Why does Allah not punish us for what we say?” Hell is enough for them—they will burn in it. And what an evil destination!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,172,'O believers! When you converse privately, let it not be for sin, aggression, or disobedience to the Messenger, but let it be for goodness and righteousness. And fear Allah, to Whom you will ˹all˺ be gathered.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,172,'Secret talks are only inspired by Satan to grieve the believers. Yet he cannot harm them whatsoever except by Allah’s Will. So in Allah let the believers put their trust.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,172,'O believers! When you are told to make room in gatherings, then do so. Allah will make room for you ˹in His grace˺. And if you are told to rise, then do so. Allah will elevate those of you who are faithful, and ˹raise˺ those gifted with knowledge in rank. And Allah is All-Aware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,172,'O believers! When you consult the Messenger privately, give something in charity before your consultation. That is better and purer for you. But if you lack the means, then Allah is truly All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,172,'Are you afraid of spending in charity before your private consultations ˹with him˺? Since you are unable to do so, and Allah has turned to you in mercy, then ˹continue to˺ establish prayer, pay alms-tax, and obey Allah and His Messenger. And Allah is All-Aware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,172,'Have you not seen those ˹hypocrites˺ who ally themselves with a people with whom Allah is displeased? They are neither with you nor with them. And they swear to lies knowingly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,172,'Allah has prepared for them a severe punishment. Evil indeed is what they do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,172,'They have made their ˹false˺ oaths as a shield, hindering ˹others˺ from the cause of Allah. So they will suffer a humiliating punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,172,'Neither their wealth nor children will be of any help to them against Allah whatsoever. It is they who will be the residents of the Fire. They will be there forever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,172,'On the Day Allah resurrects them all, they will ˹falsely˺ swear to Him as they swear to you, thinking they have something to stand on. Indeed, it is they who are the ˹total˺ liars.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,172,'Satan has taken hold of them, causing them to forget the remembrance of Allah. They are the party of Satan. Surely Satan’s party is bound to lose.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,172,'˹As for˺ those who defy Allah and His Messenger, they will definitely be among the most debased.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,172,'Allah has decreed, “I and My messengers will certainly prevail.” Surely Allah is All-Powerful, Almighty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,172,'You will never find a people who ˹truly˺ believe in Allah and the Last Day loyal to those who defy Allah and His Messenger, even if they were their parents, children, siblings, or extended family. For those ˹believers˺, Allah has instilled faith in their hearts and strengthened them with a spirit from Him. He will admit them into Gardens under which rivers flow, to stay there forever. Allah is pleased with them and they are pleased with Him. They are the party of Allah. Indeed, Allah’s party is bound to succeed.');
+INSERT INTO chapters (id, number, quran_id) VALUES(173,59,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,173,'Whatever is in the heavens and whatever is on the earth glorifies Allah. For He is the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,173,'He is the One Who expelled the disbelievers of the People of the Book from their homes for ˹their˺ first banishment ˹ever˺. You never thought they would go. And they thought their strongholds would put them out of Allah’s reach. But ˹the decree of˺ Allah came upon them from where they never expected. And He cast horror into their hearts so they destroyed their houses with their own hands and the hands of the believers. So take a lesson ˹from this˺, O people of insight!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,173,'Had Allah not decreed exile for them, He would have certainly punished them in this world. And in the Hereafter they will suffer the punishment of the Fire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,173,'This is because they defied Allah and His Messenger. And whoever defies Allah, then Allah is truly severe in punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,173,'Whatever palm trees you ˹believers˺ cut down or left standing intact, it was ˹all˺ by Allah’s Will, so that He might disgrace the rebellious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,173,'As for the gains Allah has turned over to His Messenger from them—you did not ˹even˺ spur on any horse or camel for such gains. But Allah gives authority to His messengers over whoever He wills. For Allah is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,173,'As for gains granted by Allah to His Messenger from the people of ˹other˺ lands, they are for Allah and the Messenger, his close relatives, orphans, the poor, and ˹needy˺ travellers so that wealth may not merely circulate among your rich. Whatever the Messenger gives you, take it. And whatever he forbids you from, leave it. And fear Allah. Surely Allah is severe in punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,173,'˹Some of the gains will be˺ for poor emigrants who were driven out of their homes and wealth, seeking Allah’s bounty and pleasure, and standing up for Allah and His Messenger. They are the ones true in faith.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,173,'As for those who had settled in the city and ˹embraced˺ the faith before ˹the arrival of˺ the emigrants, they love whoever immigrates to them, never having a desire in their hearts for whatever ˹of the gains˺ is given to the emigrants. They give ˹the emigrants˺ preference over themselves even though they may be in need. And whoever is saved from the selfishness of their own souls, it is they who are ˹truly˺ successful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,173,'And those who come after them will pray, “Our Lord! Forgive us and our fellow believers who preceded us in faith, and do not allow bitterness into our hearts towards those who believe. Our Lord! Indeed, You are Ever Gracious, Most Merciful.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,173,'Have you ˹O Prophet˺ not seen the hypocrites who say to their fellow disbelievers from the People of the Book, “If you are expelled, we will certainly leave with you, and We will never obey anyone against you. And if you are fought against, we will surely help you.”? But Allah bears witness that they are truly liars.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,173,'Indeed, if they are expelled, the hypocrites will never leave with them. And if they are fought against, the hypocrites will never help them. And even if the hypocrites did so, they would certainly flee, then the disbelievers would be left with no help.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,173,'Indeed, there is more fear in their hearts for you ˹believers˺ than for Allah. That is because they are a people who do not comprehend.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,173,'Even united, they would not ˹dare˺ fight against you except ˹from˺ within fortified strongholds or from behind walls. Their malice for each other is intense: you think they are united, yet their hearts are divided. That is because they are a people with no ˹real˺ understanding.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,173,'They are ˹both just˺ like those who recently went down before them: they tasted the evil consequences of their doings. And they will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,173,'˹They are˺ like Satan when he lures someone to disbelieve. Then after they have done so, he will say ˹on Judgment Day˺, “I have absolutely nothing to do with you. I truly fear Allah—the Lord of all worlds.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,173,'So they will both end up in the Fire, staying there forever. That is the reward of the wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,173,'O believers! Be mindful of Allah and let every soul look to what ˹deeds˺ it has sent forth for tomorrow. And fear Allah, ˹for˺ certainly Allah is All-Aware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,173,'And do not be like those who forgot Allah, so He made them forget themselves. It is they who are ˹truly˺ rebellious.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,173,'The residents of the Fire cannot be equal to the residents of Paradise. ˹Only˺ the residents of Paradise will be successful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,173,'Had We sent down this Quran upon a mountain, you would have certainly seen it humbled and torn apart in awe of Allah. We set forth such comparisons for people, ˹so˺ perhaps they may reflect.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,173,'He is Allah—there is no god ˹worthy of worship˺ except Him: Knower of the seen and unseen. He is the Most Compassionate, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,173,'He is Allah—there is no god except Him: the King, the Most Holy, the All-Perfect, the Source of Serenity, the Watcher ˹of all˺, the Almighty, the Supreme in Might, the Majestic. Glorified is Allah far above what they associate with Him ˹in worship˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,173,'He is Allah: the Creator, the Inventor, the Shaper. He ˹alone˺ has the Most Beautiful Names. Whatever is in the heavens and the earth ˹constantly˺ glorifies Him. And He is the Almighty, All-Wise.');
+INSERT INTO chapters (id, number, quran_id) VALUES(174,60,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,174,'O believers! Do not take My enemies and yours as trusted allies, showing them affection even though they deny what has come to you of the truth. They drove the Messenger and yourselves out ˹of Mecca˺, simply for your belief in Allah, your Lord. If you ˹truly˺ emigrated to struggle in My cause and seek My pleasure, ˹then do not take them as allies,˺ disclosing secrets ˹of the believers˺ to the pagans out of affection for them, when I know best whatever you conceal and whatever you reveal. And whoever of you does this has truly strayed from the Right Way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,174,'If they gain the upper hand over you, they would be your ˹open˺ enemies, unleashing their hands and tongues to harm you, and wishing that you would abandon faith.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,174,'Neither your relatives nor children will benefit you on Judgment Day—He will decide between you ˹all˺. For Allah is All-Seeing of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,174,'You already have an excellent example in Abraham and those with him, when they said to their people, “We totally dissociate ourselves from you and ˹shun˺ whatever ˹idols˺ you worship besides Allah. We reject you. The enmity and hatred that has arisen between us and you will last until you believe in Allah alone.” The only exception is when Abraham said to his father, “I will seek forgiveness for you,˹” adding, “but˺ I cannot protect you from Allah at all.” ˹The believers prayed,˺ “Our Lord! In You we trust. And to You we ˹always˺ turn. And to You is the final return.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,174,'Our Lord! Do not subject us to the persecution of the disbelievers. Forgive us, our Lord! You ˹alone˺ are truly the Almighty, All-Wise.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,174,'You certainly have an excellent example in them for whoever has hope in Allah and the Last Day. But whoever turns away, then surely Allah ˹alone˺ is the Self-Sufficient, Praiseworthy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,174,'˹In time,˺ Allah may bring about goodwill between you and those of them you ˹now˺ hold as enemies. For Allah is Most Capable. And Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,174,'Allah does not forbid you from dealing kindly and fairly with those who have neither fought nor driven you out of your homes. Surely Allah loves those who are fair.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,174,'Allah only forbids you from befriending those who have fought you for ˹your˺ faith, driven you out of your homes, or supported ˹others˺ in doing so. And whoever takes them as friends, then it is they who are the ˹true˺ wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,174,'O believers! When the believing women come to you as emigrants, test their intentions—their faith is best known to Allah—and if you find them to be believers, then do not send them back to the disbelievers. These ˹women˺ are not lawful ˹wives˺ for the disbelievers, nor are the disbelievers lawful ˹husbands˺ for them. ˹But˺ repay the disbelievers whatever ˹dowries˺ they had paid. And there is no blame on you if you marry these ˹women˺ as long as you pay them their dowries. And do not hold on to marriage with polytheistic women. ˹But˺ demand ˹repayment of˺ whatever ˹dowries˺ you had paid, and let the disbelievers do the same. That is the judgment of Allah—He judges between you. And Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,174,'And if any of your wives desert you to the disbelievers, and later you take spoils from them, then pay those whose wives have gone, the equivalent of whatever ˹dowry˺ they had paid. And be mindful of Allah, in Whom you believe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,174,'O Prophet! When the believing women come to you, pledging to you that they will neither associate anything with Allah ˹in worship˺, nor steal, nor fornicate, nor kill their children, nor falsely attribute ˹illegitimate˺ children to their husbands, nor disobey you in what is right, then accept their pledge, and ask Allah to forgive them. Surely Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,174,'O believers! Do not ally yourselves with a people Allah is displeased with. They already have no hope for the Hereafter, just like the disbelievers lying in ˹their˺ graves.');
+INSERT INTO chapters (id, number, quran_id) VALUES(175,61,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,175,'Whatever is in the heavens and whatever is on the earth glorifies Allah. For He ˹alone˺ is the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,175,'O believers! Why do you say what you do not do?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,175,'How despicable it is in the sight of Allah that you say what you do not do!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,175,'Surely Allah loves those who fight in His cause in ˹solid˺ ranks as if they were one concrete structure.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,175,'˹Remember, O Prophet,˺ when Moses said to his people, “O my people! Why do you hurt me when you already know I am Allah’s messenger to you?” So when they ˹persistently˺ deviated, Allah caused their hearts to deviate. For Allah does not guide the rebellious people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,175,'And ˹remember˺ when Jesus, son of Mary, said, “O children of Israel! I am truly Allah’s messenger to you, confirming the Torah which came before me, and giving good news of a messenger after me whose name will be Aḥmad.” Yet when the Prophet came to them with clear proofs, they said, “This is pure magic.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,175,'Who does more wrong than the one who fabricates lies about Allah when invited to submit ˹to Him˺? For Allah does not guide the wrongdoing people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,175,'They wish to extinguish Allah’s light with their mouths, but Allah will ˹certainly˺ perfect His light, even to the dismay of the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,175,'He is the One Who has sent His Messenger with ˹true˺ guidance and the religion of truth, making it prevail over all others, even to the dismay of the polytheists.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,175,'O believers! Shall I guide you to an exchange that will save you from a painful punishment?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,175,'˹It is to˺ have faith in Allah and His Messenger, and strive in the cause of Allah with your wealth and your lives. That is best for you, if only you knew.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,175,'He will forgive your sins, and admit you into Gardens under which rivers flow, and ˹house you in˺ splendid homes in the Gardens of Eternity. That is the ultimate triumph.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,175,'˹He will also give you˺ another favour that you long for: help from Allah and an imminent victory. ˹So˺ give good news ˹O Prophet˺ to the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,175,'O believers! Stand up for Allah, as Jesus, son of Mary, asked the disciples, “Who will stand up with me for Allah?” The disciples replied, “We will stand up for Allah.” Then a group from the Children of Israel believed while another disbelieved. We then supported the believers against their enemies, so they prevailed.');
+INSERT INTO chapters (id, number, quran_id) VALUES(176,62,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,176,'Whatever is in the heavens and whatever is on the earth ˹constantly˺ glorifies Allah—the King, the Most Holy, the Almighty, the All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,176,'He is the One Who raised for the illiterate ˹people˺ a messenger from among themselves—reciting to them His revelations, purifying them, and teaching them the Book and wisdom, for indeed they had previously been clearly astray—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,176,'along with others of them who have not yet joined them ˹in faith˺. For He is the Almighty, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,176,'This is the favour of Allah. He grants it to whoever He wills. And Allah is the Lord of infinite bounty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,176,'The example of those who were entrusted with ˹observing˺ the Torah but failed to do so, is that of a donkey carrying books. How evil is the example of those who reject Allah’s signs! For Allah does not guide the wrongdoing people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,176,'Say, ˹O Prophet,˺ “O Jews! If you claim to be Allah’s chosen ˹people˺ out of all humanity, then wish for death, if what you say is true.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,176,'But they will never wish for that because of what their hands have done. And Allah has ˹perfect˺ knowledge of the wrongdoers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,176,'Say, “The death you are running away from will inevitably come to you. Then you will be returned to the Knower of the seen and unseen, and He will inform you of what you used to do.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,176,'O believers! When the call to prayer is made on Friday, then proceed ˹diligently˺ to the remembrance of Allah and leave off ˹your˺ business. That is best for you, if only you knew.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,176,'Once the prayer is over, disperse throughout the land and seek the bounty of Allah. And remember Allah often so you may be successful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,176,'When they saw the fanfare along with the caravan, they ˹almost all˺ flocked to it, leaving you ˹O Prophet˺ standing ˹on the pulpit˺. Say, “What is with Allah is far better than amusement and merchandise. And Allah is the Best Provider.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(177,63,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,177,'When the hypocrites come to you ˹O Prophet˺, they say, “We bear witness that you are certainly the Messenger of Allah”—and surely Allah knows that you are His Messenger—but Allah bears witness that the hypocrites are truly liars.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,177,'They have made their ˹false˺ oaths as a shield, hindering ˹others˺ from the Way of Allah. Evil indeed is what they do!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,177,'This is because they believed and then abandoned faith. Therefore, their hearts have been sealed, so they do not comprehend.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,177,'When you see them, their appearance impresses you. And when they speak, you listen to their ˹impressive˺ speech. But they are ˹just˺ like ˹worthless˺ planks of wood leaned ˹against a wall˺. They think every cry is against them. They are the enemy, so beware of them. May Allah condemn them! How can they be deluded ˹from the truth˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,177,'When it is said to them, “Come! The Messenger of Allah will pray for you to be forgiven,” they turn their heads ˹in disgust˺, and you see them ˹O Prophet˺ turn away in arrogance.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,177,'It is the same whether you pray for their forgiveness or not, Allah will not forgive them. Surely Allah does not guide the rebellious people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,177,'They are the ones who say ˹to one another˺, “Do not spend ˹anything˺ on those ˹emigrants˺ with the Messenger of Allah so that they will break away ˹from him˺.” But to Allah ˹alone˺ belong the treasuries of the heavens and the earth, yet the hypocrites do not comprehend.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,177,'They say, “If we return to Medina, the honourable will definitely expel the inferior.” But all honour and power belongs to Allah, His Messenger, and the believers, yet the hypocrites do not know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,177,'O believers! Do not let your wealth or your children divert you from the remembrance of Allah. For whoever does so, it is they who are the ˹true˺ losers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,177,'And donate from what We have provided for you before death comes to one of you, and you cry, “My Lord! If only You delayed me for a short while, I would give in charity and be one of the righteous.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,177,'But Allah never delays a soul when its appointed time comes. And Allah is All-Aware of what you do.');
+INSERT INTO chapters (id, number, quran_id) VALUES(178,64,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,178,'Whatever is in the heavens and whatever is on the earth ˹constantly˺ glorifies Allah. The kingdom is His, and all praise is for Him. For He is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,178,'He is the One Who created you, yet some of you are disbelievers while some are believers. And Allah is All-Seeing of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,178,'He created the heavens and the earth for a purpose. He shaped you ˹in the womb˺, perfecting your form. And to Him is the final return.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,178,'He knows whatever is in the heavens and the earth. And He knows whatever you conceal and whatever you reveal. For Allah knows best what is ˹hidden˺ in the heart.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,178,'Have the stories of those who disbelieved before not reached you ˹pagans˺? They tasted the evil consequences of their doings, and they will suffer a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,178,'That was because their messengers used to come to them with clear proofs, but they said ˹mockingly˺, “How can humans be our guides?” So they persisted in disbelief and turned away. And Allah was not in need ˹of their faith˺. For Allah is Self-Sufficient, Praiseworthy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,178,'The disbelievers claim they will not be resurrected. Say, ˹O Prophet,˺ “Yes, by my Lord, you will surely be resurrected, then you will certainly be informed of what you have done. And that is easy for Allah.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,178,'So believe in Allah and His Messenger and in the Light We have revealed. And Allah is All-Aware of what you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,178,'˹Consider˺ the Day He will gather you ˹all˺ for the Day of Gathering—that will be the Day of mutual loss and gain. So whoever believes in Allah and does good, He will absolve them of their sins and admit them into Gardens under which rivers flow, to stay there for ever and ever. That is the ultimate triumph.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,178,'As for those who disbelieve and reject Our revelations, they will be the residents of the Fire, staying there forever. What an evil destination!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,178,'No calamity befalls ˹anyone˺ except by Allah’s Will. And whoever has faith in Allah, He will ˹rightly˺ guide their hearts ˹through adversity˺. And Allah has ˹perfect˺ knowledge of all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,178,'Obey Allah and obey the Messenger! But if you turn away, then Our Messenger’s duty is only to deliver ˹the message˺ clearly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,178,'Allah—there is no god ˹worthy of worship˺ except Him. So in Allah let the believers put their trust.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,178,'O believers! Indeed, some of your spouses and children are enemies to you, so beware of them. But if you pardon, overlook, and forgive ˹their faults˺, then Allah is truly All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,178,'Your wealth and children are only a test, but Allah ˹alone˺ has a great reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,178,'So be mindful of Allah to the best of your ability, hear and obey, and spend in charity—that will be best for you. And whoever is saved from the selfishness of their own souls, it is they who are ˹truly˺ successful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,178,'If you lend to Allah a good loan, He will multiply it for you and forgive you. For Allah is Most Appreciative, Most Forbearing.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,178,'˹He is the˺ Knower of the seen and unseen—the Almighty, All-Wise.');
+INSERT INTO chapters (id, number, quran_id) VALUES(179,65,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,179,'O Prophet! ˹Instruct the believers:˺ When you ˹intend to˺ divorce women, then divorce them with concern for their waiting period, and count it accurately. And fear Allah, your Lord. Do not force them out of their homes, nor should they leave—unless they commit a blatant misconduct. These are the limits set by Allah. And whoever transgresses Allah’s limits has truly wronged his own soul. You never know, perhaps Allah will bring about a change ˹of heart˺ later. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,179,'Then when they have ˹almost˺ reached the end of their waiting period, either retain them honourably or separate from them honourably. And call two of your reliable men to witness ˹either way˺—and ˹let the witnesses˺ bear true testimony for ˹the sake of˺ Allah. This is enjoined on whoever has faith in Allah and the Last Day. And whoever is mindful of Allah, He will make a way out for them,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,179,'and provide for them from sources they could never imagine. And whoever puts their trust in Allah, then He ˹alone˺ is sufficient for them. Certainly Allah achieves His Will. Allah has already set a destiny for everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,179,'As for your women past the age of menstruation, in case you do not know, their waiting period is three months, and those who have not menstruated as well. As for those who are pregnant, their waiting period ends with delivery. And whoever is mindful of Allah, He will make their matters easy for them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,179,'This is the commandment of Allah, which He has revealed to you. And whoever is mindful of Allah, He will absolve them of their sins and reward them immensely.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,179,'Let them live where you live ˹during their waiting period˺, according to your means. And do not harass them to make their stay unbearable. If they are pregnant, then maintain them until they deliver. And if they nurse your child, compensate them, and consult together courteously. But if you fail to reach an agreement, then another woman will nurse ˹the child˺ for the father.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,179,'Let the man of wealth provide according to his means. As for the one with limited resources, let him provide according to whatever Allah has given him. Allah does not require of any soul beyond what He has given it. After hardship, Allah will bring about ease.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,179,'˹Imagine˺ how many societies rebelled against the commandments of their Lord and His messengers, so We called each ˹society˺ to a severe account and subjected them to a horrible punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,179,'So they tasted the evil consequences of their doings, and the outcome of their doings was ˹total˺ loss.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,179,'Allah has ˹also˺ prepared for them a severe punishment. So fear Allah, O people of reason and faith. Allah has indeed revealed to you a Reminder,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,179,'˹and sent˺ a messenger reciting to you Allah’s revelations, making things clear so that He may bring those who believe and do good out of darkness and into light. And whoever believes in Allah and does good will be admitted by Him into Gardens under which rivers flow, to stay there for ever and ever. Allah will have indeed granted them an excellent provision.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,179,'Allah is the One Who created seven heavens ˹in layers˺, and likewise for the earth. The ˹divine˺ command descends between them so you may know that Allah is Most Capable of everything and that Allah certainly encompasses all things in ˹His˺ knowledge.');
+INSERT INTO chapters (id, number, quran_id) VALUES(180,66,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,180,'O Prophet! Why do you prohibit ˹yourself˺ from what Allah has made lawful to you, seeking to please your wives? And Allah is All-Forgiving, Most Merciful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,180,'Allah has already ordained for you ˹believers˺ the way to absolve yourselves from your oaths. For Allah is your Guardian. And He is the All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,180,'˹Remember˺ when the Prophet had ˹once˺ confided something to one of his wives, then when she disclosed it ˹to another wife˺ and Allah made it known to him, he presented ˹to her˺ part of what was disclosed and overlooked a part. So when he informed her of it, she exclaimed, “Who told you this?” He replied, “I was informed by the All-Knowing, All-Aware.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,180,'˹It will be better˺ if you ˹wives˺ both turn to Allah in repentance, for your hearts have certainly faltered. But if you ˹continue to˺ collaborate against him, then ˹know that˺ Allah Himself is his Guardian. And Gabriel, the righteous believers, and the angels are ˹all˺ his supporters as well.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,180,'Perhaps, if he were to divorce you ˹all˺, his Lord would replace you with better wives who are submissive ˹to Allah˺, faithful ˹to Him˺, devout, repentant, dedicated to worship and fasting—previously married or virgins.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,180,'O believers! Protect yourselves and your families from a Fire whose fuel is people and stones, overseen by formidable and severe angels, who never disobey whatever Allah orders—always doing as commanded.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,180,'˹The deniers will then be told,˺ “O disbelievers! Make no excuses this Day! You are only rewarded for what you used to do.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,180,'O believers! Turn to Allah in sincere repentance, so your Lord may absolve you of your sins and admit you into Gardens, under which rivers flow, on the Day Allah will not disgrace the Prophet or the believers with him. Their light will shine ahead of them and on their right. They will say, “Our Lord! Perfect our light for us, and forgive us. ˹For˺ You are truly Most Capable of everything.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,180,'O Prophet! Struggle against the disbelievers and the hypocrites, and be firm with them. Hell will be their home. What an evil destination!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,180,'Allah sets forth an example for the disbelievers: the wife of Noah and the wife of Lot. Each was married to one of Our righteous servants, yet betrayed them. So their husbands were of no benefit to them against Allah whatsoever. Both were told, “Enter the Fire, along with the others!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,180,'And Allah sets forth an example for the believers: the wife of Pharaoh, who prayed, “My Lord! Build me a house in Paradise near You, deliver me from Pharaoh and his ˹evil˺ doing, and save me from the wrongdoing people.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,180,'˹There is˺ also ˹the example of˺ Mary, the daughter of ’Imrân, who guarded her chastity, so We breathed into her ˹womb˺ through Our angel ˹Gabriel˺. She testified to the words of her Lord and His Scriptures, and was one of the ˹sincerely˺ devout.');
+INSERT INTO chapters (id, number, quran_id) VALUES(181,67,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,181,'Blessed is the One in Whose Hands rests all authority. And He is Most Capable of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,181,'˹He is the One˺ Who created death and life in order to test which of you is best in deeds. And He is the Almighty, All-Forgiving.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,181,'˹He is the One˺ Who created seven heavens, one above the other. You will never see any imperfection in the creation of the Most Compassionate. So look again: do you see any flaws?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,181,'Then look again and again—your sight will return frustrated and weary.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,181,'And indeed, We adorned the lowest heaven with ˹stars like˺ lamps, and made them ˹as missiles˺ for stoning ˹eavesdropping˺ devils, for whom We have also prepared the torment of the Blaze. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,181,'Those who disbelieve in their Lord will suffer the punishment of Hell. What an evil destination!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,181,'When they are tossed into it, they will hear its roaring as it boils over,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,181,'almost bursting in fury. Every time a group is cast into it, its keepers will ask them, “Did a warner not come to you?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,181,'They will reply, “Yes, a warner did come to us, but we denied and said, ‘Allah has revealed nothing. You are extremely astray.’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,181,'And they will lament, “If only we had listened and reasoned, we would not be among the residents of the Blaze!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,181,'And so they will confess their sins. So away with the residents of the Blaze!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,181,'Indeed, those in awe of their Lord without seeing Him will have forgiveness and a mighty reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,181,'Whether you speak secretly or openly—He surely knows best what is ˹hidden˺ in the heart.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,181,'How could He not know His Own creation? For He ˹alone˺ is the Most Subtle, All-Aware.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,181,'He is the One Who smoothed out the earth for you, so move about in its regions and eat from His provisions. And to Him is the resurrection ˹of all˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,181,'Do you feel secure that the One Who is in heaven will not cause the earth to swallow you up as it quakes violently?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,181,'Or do you feel secure that the One Who is in heaven will not unleash upon you a storm of stones. Only then would you know how ˹serious˺ My warning was!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,181,'And certainly those before them denied ˹as well˺, then how severe was My response!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,181,'Have they not seen the birds above them, spreading and folding their wings? None holds them up except the Most Compassionate. Indeed, He is All-Seeing of everything.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,181,'Also, which ˹powerless˺ force will come to your help instead of the Most Compassionate? Indeed, the disbelievers are only ˹lost˺ in delusion.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,181,'Or who is it that will provide for you if He withholds His provision? In fact, they persist in arrogance and aversion ˹to the truth˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,181,'Who is ˹rightly˺ guided: the one who crawls facedown or the one who walks upright on the Straight Path?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,181,'Say, ˹O Prophet,˺ “He is the One Who brought you into being and gave you hearing, sight, and intellect. ˹Yet˺ you hardly give any thanks.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,181,'˹Also˺ say, “He is the One Who has dispersed you ˹all˺ over the earth, and to Him you will ˹all˺ be gathered.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,181,'˹Still˺ they ask ˹the believers˺, “When will this threat come to pass, if what you say is true?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,181,'Say, ˹O Prophet,˺ “That knowledge is with Allah alone, and I am only sent with a clear warning.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,181,'Then when they see the torment drawing near, the faces of the disbelievers will become gloomy, and it will be said ˹to them˺, “This is what you claimed would never come.” ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,181,'Say, ˹O Prophet,˺ “Consider this: whether Allah causes me and those with me to die or shows us mercy, who will save the disbelievers from a painful punishment?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,181,'Say, “He is the Most Compassionate—in Him ˹alone˺ we believe, and in Him ˹alone˺ we trust. You will soon know who is clearly astray.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,181,'Say, “Consider this: if your water were to sink ˹into the earth˺, then who ˹else˺ could bring you flowing water?”');
+INSERT INTO chapters (id, number, quran_id) VALUES(182,68,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,182,'Nũn. By the pen and what everyone writes!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,182,'By the grace of your Lord, you ˹O Prophet˺ are not insane.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,182,'You will certainly have a never-ending reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,182,'And you are truly ˹a man˺ of outstanding character.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,182,'Soon you and the pagans will see,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,182,'which of you is mad.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,182,'Surely your Lord ˹alone˺ knows best who has strayed from His Way and who is ˹rightly˺ guided.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,182,'So do not give in to the deniers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,182,'They wish you would compromise so they would yield ˹to you˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,182,'And do not obey the despicable, vain oath-taker,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,182,'slanderer, gossip-monger,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,182,'withholder of good, transgressor, evildoer,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,182,'brute, and—on top of all that—an illegitimate child.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,182,'Now, ˹simply˺ because he has been blessed with ˹abundant˺ wealth and children,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,182,'whenever Our revelations are recited to him, he says, “Ancient fables!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,182,'We will soon mark his snout. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,182,'Indeed, We have tested those ˹Meccans˺ as We tested the owners of the garden—when they swore they would surely harvest ˹all˺ its fruit in the early morning,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,182,'leaving no thought for Allah’s Will.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,182,'Then it was struck by a torment from your Lord while they slept,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,182,'so it was reduced to ashes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,182,'Then by daybreak they called out to each other,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,182,'˹saying,˺ “Go early to your harvest, if you want to pick ˹all˺ the fruit.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,182,'So they went off, whispering to one another,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,182,'“Do not let any poor person enter your garden today.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,182,'And they proceeded early, totally fixated on their purpose.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,182,'But when they saw it ˹devastated˺, they cried, “We must have lost ˹our˺ way!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,182,'In fact, we have been deprived ˹of our livelihood˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,182,'The most sensible of them said, “Did I not urge you to say, ‘Allah willing.’?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,182,'They replied, “Glory be to our Lord! We have truly been wrongdoers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,182,'Then they turned on each other, throwing blame.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,182,'They said, “Woe to us! We have certainly been transgressors.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,182,'We trust our Lord will give us a better garden than this, ˹for˺ we are indeed turning to our Lord with hope.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,182,'That is the ˹way of Our˺ punishment ˹in this world˺. But the punishment of the Hereafter is certainly far worse, if only they knew. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,182,'Indeed, the righteous will have the Gardens of Bliss with their Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,182,'Should We then treat those who have submitted like the wicked?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,182,'What is the matter with you? How do you judge?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,182,'Or do you have a scripture, in which you read');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,182,'that you will have whatever you choose?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,182,'Or do you have oaths binding on Us until the Day of Judgment that you will have whatever you decide?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,182,'Ask them ˹O Prophet˺ which of them can guarantee all that.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,182,'Or do they have associate-gods ˹supporting this claim˺? Then let them bring forth their associate-gods, if what they say is true.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,182,'˹Beware of˺ the Day the Shin ˹of Allah˺ will be bared, and the wicked will be asked to prostrate, but they will not be able to do so,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,182,'with eyes downcast, totally covered with disgrace. For they were ˹always˺ called to prostrate ˹in the world˺ when they were fully capable ˹but they chose not to˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,182,'So leave to Me ˹O Prophet˺ those who reject this message. We will gradually draw them to destruction in ways they cannot comprehend.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,182,'I ˹only˺ delay their end for a while, but My planning is flawless.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,182,'Or are you asking them for a reward ˹for the message˺ so that they are overburdened by debt?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,182,'Or do they have access to ˹the Record in˺ the unseen, so they copy it ˹for all to see˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,182,'So be patient with your Lord’s decree, and do not be like ˹Jonah,˺ the Man of the Whale, who cried out ˹to Allah˺, in total distress.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,182,'Had he not been shown grace by his Lord, he would have certainly been cast onto the open ˹shore˺, still blameworthy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,182,'Then his Lord chose him, making him one of the righteous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,182,'The disbelievers would almost cut you down with their eyes when they hear ˹you recite˺ the Reminder, and say, “He is certainly a madman.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,182,'But it is simply a reminder to the whole world.');
+INSERT INTO chapters (id, number, quran_id) VALUES(183,69,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,183,'The Inevitable Hour!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,183,'What is the Inevitable Hour?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,183,'And what will make you realize what the Inevitable Hour is?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,183,'˹Both˺ Thamûd and ’Ȃd denied the Striking Disaster.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,183,'As for Thamûd, they were destroyed by an overwhelming blast.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,183,'And as for ’Ȃd, they were destroyed by a furious, bitter wind');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,183,'which Allah unleashed on them non-stop for seven nights and eight days, so that you would have seen its people lying dead like trunks of uprooted palm trees.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,183,'Do you see any of them left alive?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,183,'Also, Pharaoh and those before him, and ˹the people of˺ the overturned cities ˹of Lot˺ indulged in sin,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,183,'each disobeying their Lord’s messenger, so He seized them with a crushing grip.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,183,'Indeed, when the floodwater had overflowed, We carried you in the floating Ark ˹with Noah˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,183,'so that We may make this a reminder to you, and that attentive ears may grasp it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,183,'At last, when the Trumpet will be blown with one blast,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,183,'and the earth and mountains will be lifted up and crushed with one blow,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,183,'on that Day the Inevitable Event will have come to pass.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,183,'The sky will then be so torn that it will be frail,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,183,'with the angels on its sides. On that Day eight ˹mighty angels˺ will bear the Throne of your Lord above them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,183,'You will then be presented ˹before Him for judgment˺, and none of your secrets will stay hidden.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,183,'As for those given their records in their right hand, they will cry ˹happily˺, “Here ˹everyone˺! Read my record!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,183,'I surely knew I would face my reckoning.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,183,'They will be in a life of bliss,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,183,'in an elevated Garden,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,183,'whose fruit will hang within reach.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,183,'˹They will be told,˺ “Eat and drink joyfully for what you did in the days gone by.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,183,'And as for those given their record in their left hand, they will cry ˹bitterly˺, “I wish I had not been given my record,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,183,'nor known anything of my reckoning!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,183,'I wish death was the end!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,183,'My wealth has not benefited me!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,183,'My authority has been stripped from me.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,183,'˹It will be said,˺ “Seize and shackle them,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,183,'then burn them in Hell,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,183,'then tie them up with chains seventy arms long.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,183,'For they never had faith in Allah, the Greatest,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,183,'nor encouraged the feeding of the poor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,183,'So this Day they will have no close friend here,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,183,'nor any food except ˹oozing˺ pus,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,183,'which none will eat except the evildoers.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,183,'Now, I do swear by whatever you see,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,183,'and whatever you cannot see!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,183,'Indeed, this ˹Quran˺ is the recitation of a noble Messenger.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,183,'It is not the prose of a poet ˹as you claim˺, ˹yet˺ you hardly have any faith.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,183,'Nor is it the mumbling of a fortune-teller, ˹yet˺ you are hardly mindful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,183,'˹It is˺ a revelation from the Lord of all worlds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,183,'Had the Messenger made up something in Our Name,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,183,'We would have certainly seized him by his right hand,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,183,'then severed his aorta,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,183,'and none of you could have shielded him ˹from Us˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,183,'Indeed, this ˹Quran˺ is a reminder to those mindful ˹of Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,183,'And We certainly know that some of you will persist in denial,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,183,'and it will surely be a source of regret for the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,183,'And indeed, this ˹Quran˺ is the absolute truth.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,183,'So glorify the Name of your Lord, the Greatest.');
+INSERT INTO chapters (id, number, quran_id) VALUES(184,70,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,184,'A challenger has demanded a punishment bound to come');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,184,'for the disbelievers—to be averted by none—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,184,'from Allah, Lord of pathways of ˹heavenly˺ ascent,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,184,'˹through which˺ the angels and the ˹holy˺ spirit will ascend to Him on a Day fifty thousand years in length.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,184,'So endure ˹this denial, O Prophet,˺ with beautiful patience.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,184,'They truly see this ˹Day˺ as impossible,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,184,'but We see it as inevitable.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,184,'On that Day the sky will be like molten brass');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,184,'and the mountains like ˹tufts of˺ wool.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,184,'And no close friend will ask ˹about˺ their friends,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,184,'˹although˺ they will be made to see each other. The wicked will wish to ransom themselves from the punishment of that Day by their children,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,184,'their spouses, their siblings,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,184,'their clan that sheltered them,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,184,'and everyone on earth altogether, just to save themselves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,184,'But no! There will certainly be a raging Flame');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,184,'ripping off scalps.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,184,'It will summon whoever turned their backs ˹on Allah˺ and turned away ˹from the truth˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,184,'and gathered and hoarded ˹wealth˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,184,'Indeed, humankind was created impatient:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,184,'distressed when touched with evil,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,184,'and withholding when touched with good—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,184,'except those who pray,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,184,'consistently performing their prayers;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,184,'and who give the rightful share of their wealth');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,184,'to the beggar and the poor;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,184,'and who ˹firmly˺ believe in the Day of Judgment;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,184,'and those who fear the punishment of their Lord—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,184,'˹knowing that˺ none should feel secure from their Lord’s punishment—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,184,'and those who guard their chastity');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,184,'except with their wives or those ˹bondwomen˺ in their possession, for then they are free from blame,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,184,'but whoever seeks beyond that are the transgressors.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,184,'˹The faithful are˺ also those who are true to their trusts and covenants;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,184,'and who are honest in their testimony;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,184,'and who are ˹properly˺ observant of their prayers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,184,'These will be in Gardens, held in honour.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,184,'So what is the matter with the disbelievers that they rush ˹head-long˺ towards you ˹O Prophet˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,184,'from the right and the left, in groups ˹to mock you˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,184,'Does every one of them expect to be admitted into a Garden of Bliss?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,184,'But no! Indeed, they ˹already˺ know what We created them from.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,184,'So, I do swear by the Lord of ˹all˺ the points of sunrise and sunset that We are truly capable');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,184,'of replacing them with ˹others˺ better than them, and We cannot be prevented ˹from doing so˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,184,'So let them indulge ˹in falsehood˺ and amuse ˹themselves˺ until they face their Day, which they have been threatened with—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,184,'the Day they will come forth from the graves swiftly, as if racing to an idol ˹for a blessing˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,184,'with eyes downcast, utterly covered with disgrace. That is the Day they have ˹always˺ been warned of.');
+INSERT INTO chapters (id, number, quran_id) VALUES(185,71,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,185,'Indeed, We sent Noah to his people ˹saying to him˺, “Warn your people before a painful punishment comes to them.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,185,'Noah proclaimed, “O my people! I am truly sent to you with a clear warning:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,185,'worship Allah ˹alone˺, fear Him, and obey me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,185,'He will forgive your sins, and delay your end until the appointed time. Indeed, when the time set by Allah comes, it cannot be delayed, if only you knew!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,185,'He cried, “My Lord! I have surely called my people day and night,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,185,'but my calls only made them run farther away.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,185,'And whenever I invite them to be forgiven by You, they press their fingers into their ears, cover themselves with their clothes, persist ˹in denial˺, and act very arrogantly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,185,'Then I certainly called them openly,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,185,'then I surely preached to them publicly and privately,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,185,'saying, ‘Seek your Lord’s forgiveness, ˹for˺ He is truly Most Forgiving.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,185,'He will shower you with abundant rain,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,185,'supply you with wealth and children, and give you gardens as well as rivers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,185,'What is the matter with you that you are not in awe of the Majesty of Allah,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,185,'when He truly created you in stages ˹of development˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,185,'Do you not see how Allah created seven heavens, one above the other,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,185,'placing the moon within them as a ˹reflected˺ light, and the sun as a ˹radiant˺ lamp?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,185,'Allah ˹alone˺ caused you to grow from the earth like a plant.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,185,'Then He will return you to it, and then simply bring you forth ˹again˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,185,'And Allah ˹alone˺ spread out the earth for you');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,185,'to walk along its spacious pathways.’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,185,'˹Eventually,˺ Noah cried, “My Lord! They have certainly persisted in disobeying me, and followed ˹instead˺ those ˹elite˺ whose ˹abundant˺ wealth and children only increase them in loss,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,185,'and who have devised a tremendous plot,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,185,'urging ˹their followers˺, ‘Do not abandon your idols—especially Wadd, Suwâ’, Yaghûth, Ya’ûq, and Nasr.’');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,185,'Those ˹elite˺ have already led many astray. So ˹O Lord˺, only allow the wrongdoers to stray farther away.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,185,'So because of their sins, they were drowned, then admitted into the Fire. And they found none to help them against Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,185,'Noah had prayed, “My Lord! Do not leave a single disbeliever on earth.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,185,'For if You spare ˹any of˺ them, they will certainly mislead Your servants, and give birth only to ˹wicked˺ sinners, staunch disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,185,'My Lord! Forgive me, my parents, and whoever enters my house in faith, and ˹all˺ believing men and women. And increase the wrongdoers only in destruction.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(186,72,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,186,'Say, ˹O Prophet,˺ “It has been revealed to me that a group of jinn listened ˹to the Quran,˺ and said ˹to their fellow jinn˺: ‘Indeed, we have heard a wondrous recitation.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,186,'It leads to Right Guidance so we believed in it, and we will never associate anyone with our Lord ˹in worship˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,186,'˹Now, we believe that˺ our Lord—Exalted is His Majesty—has neither taken a mate nor offspring,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,186,'and that the foolish of us used to utter ˹outrageous˺ falsehoods about Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,186,'We certainly thought that humans and jinn would never speak lies about Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,186,'And some men used to seek refuge with some jinn—so they increased each other in wickedness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,186,'And those ˹humans˺ thought, just like you ˹jinn˺, that Allah would not resurrect anyone ˹for judgment˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,186,'˹Earlier˺ we tried to reach heaven ˹for news˺, only to find it filled with stern guards and shooting stars.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,186,'We used to take up positions there for eavesdropping, but whoever dares eavesdrop now will find a flare lying in wait for them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,186,'Now, we have no clue whether evil is intended for those on earth, or their Lord intends for them what is right.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,186,'Among us are those who are righteous and those who are less so. We have been of different factions.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,186,'˹Now,˺ we truly know that we cannot frustrate Allah on earth, nor can we escape from Him ˹into heaven˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,186,'When we heard the guidance ˹of the Quran˺, we ˹readily˺ believed in it. For whoever believes in their Lord will have no fear of being denied ˹a reward˺ or wronged.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,186,'And among us are those who have submitted ˹to Allah˺ and those who are deviant. So ˹as for˺ those who submitted, it is they who have attained Right Guidance.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,186,'And as for the deviant, they will be fuel for Hell.’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,186,'Had the deniers followed the Right Way, We would have certainly granted them abundant rain to drink—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,186,'as a test for them. And whoever turns away from the remembrance of their Lord will be admitted by Him into an overwhelming punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,186,'The places of worship are ˹only˺ for Allah, so do not invoke anyone besides Him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,186,'Yet when the servant of Allah stood up calling upon Him ˹alone˺, the pagans almost swarmed over him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,186,'Say, ˹O Prophet,˺ “I call only upon my Lord, associating none with Him ˹in worship˺.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,186,'Say, “It is not in my power to harm or benefit you.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,186,'Say, “No one can protect me from Allah ˹if I were to disobey Him˺, nor can I find any refuge other than Him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,186,'˹My duty is˺ only to convey ˹the truth˺ from Allah and ˹deliver˺ His messages.” And whoever disobeys Allah and His Messenger will certainly be in the Fire of Hell, to stay there for ever and ever.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,186,'Only when they see what they have been threatened with will they know who is weaker in helpers and inferior in manpower.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,186,'Say, “I do not know if what you are promised is near or my Lord has set a distant time for it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,186,'˹He is the˺ Knower of the unseen, disclosing none of it to anyone,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,186,'except messengers of His choice. Then He appoints angel-guards before and behind them');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,186,'to ensure that the messengers fully deliver the messages of their Lord—though He ˹already˺ knows all about them, and keeps account of everything.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(187,73,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,187,'O you wrapped ˹in your clothes˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,187,'Stand all night ˹in prayer˺ except a little—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,187,'˹pray˺ half the night, or a little less,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,187,'or a little more—and recite the Quran ˹properly˺ in a measured way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,187,'˹For˺ We will soon send upon you a weighty revelation.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,187,'Indeed, worship in the night is more impactful and suitable for recitation.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,187,'For during the day you are over-occupied ˹with worldly duties˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,187,'˹Always˺ remember the Name of your Lord, and devote yourself to Him wholeheartedly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,187,'˹He is the˺ Lord of the east and the west. There is no god ˹worthy of worship˺ except Him, so take Him ˹alone˺ as a Trustee of Affairs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,187,'Be patient ˹O Prophet˺ with what they say, and depart from them courteously.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,187,'And leave to Me the deniers—the people of luxury—and bear with them for a little while.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,187,'˹For˺ We certainly have shackles, a ˹raging˺ Fire,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,187,'choking food, and a painful punishment ˹in store for them˺');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,187,'on the Day the earth and mountains will shake ˹violently˺, and mountains will be ˹reduced to˺ dunes of shifting sand.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,187,'Indeed, We have sent to you a messenger as a witness over you, just as We sent a messenger to Pharaoh.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,187,'But Pharaoh disobeyed the messenger, so We seized him with a stern grip.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,187,'If you ˹pagans˺ persist in disbelief, then how will you guard yourselves against ˹the horrors of˺ a Day which will turn children’s hair grey?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,187,'It will ˹even˺ cause the sky to split apart. His promise ˹of judgment˺ must be fulfilled.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,187,'Surely this is a reminder. So let whoever wills take the ˹Right˺ Way to their Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,187,'Surely your Lord knows that you ˹O Prophet˺ stand ˹in prayer˺ for nearly two-thirds of the night, or ˹sometimes˺ half of it, or a third, as do some of those with you. Allah ˹alone˺ keeps a ˹precise˺ measure of the day and night. He knows that you ˹believers˺ are unable to endure this, and has turned to you in mercy. So recite ˹in prayer˺ whatever you can from the Quran. He knows that some of you will be sick, some will be travelling throughout the land seeking Allah’s bounty, and some fighting in the cause of Allah. So recite whatever you can from it. And ˹continue to˺ perform ˹regular˺ prayers, pay alms-tax, and lend to Allah a good loan. Whatever good you send forth for yourselves, you will find it with Allah far better and more rewarding. And seek Allah’s forgiveness. Surely Allah is All-Forgiving, Most Merciful.');
+INSERT INTO chapters (id, number, quran_id) VALUES(188,74,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,188,'O you covered up ˹in your clothes˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,188,'Arise and warn ˹all˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,188,'Revere your Lord ˹alone˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,188,'Purify your garments.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,188,'˹Continue to˺ shun idols.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,188,'Do not do a favour expecting more ˹in return˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,188,'And persevere for ˹the sake of˺ your Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,188,'˹For˺ when the Trumpet will be sounded,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,188,'that will ˹truly˺ be a difficult Day—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,188,'far from easy for the disbelievers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,188,'And leave to me ˹O Prophet˺ the one I created all by Myself,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,188,'and granted him abundant wealth,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,188,'and children always by his side,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,188,'and made life very easy for him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,188,'Yet he is hungry for more.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,188,'But no! ˹For˺ he has been truly stubborn with Our revelations.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,188,'I will make his fate unbearable,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,188,'for he contemplated and determined ˹a degrading label for the Quran˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,188,'May he be condemned! How evil was what he determined!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,188,'May he be condemned even more! How evil was what he determined!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,188,'Then he re-contemplated ˹in frustration˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,188,'then frowned and scowled,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,188,'then turned his back ˹on the truth˺ and acted arrogantly,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,188,'saying, “This ˹Quran˺ is nothing but magic from the ancients.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,188,'This is no more than the word of a man.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,188,'Soon I will burn him in Hell!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,188,'And what will make you realize what Hell is?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,188,'It does not let anyone live or die,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,188,'scorching the skin.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,188,'It is overseen by nineteen ˹keepers˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,188,'We have appointed only ˹stern˺ angels as wardens of the Fire. And We have made their number only as a test for the disbelievers, so that the People of the Book will be certain, and the believers will increase in faith, and neither the People of the Book nor the believers will have any doubts, and so that those ˹hypocrites˺ with sickness in their hearts and the disbelievers will argue, “What does Allah mean by such a number?” In this way Allah leaves whoever He wills to stray and guides whoever He wills. And none knows the forces of your Lord except He. And this ˹description of Hell˺ is only a reminder to humanity.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,188,'But no! By the moon,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,188,'and the night as it retreats,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,188,'and the day as it breaks!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,188,'Surely Hell is one of the mightiest catastrophes—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,188,'a warning to humankind,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,188,'to whichever of you chooses to take the lead or lag behind.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,188,'Every soul will be detained for what it has done,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,188,'except the people of the right,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,188,'who will be in Gardens, asking one another');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,188,'about the wicked ˹who will then be asked˺:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,188,'“What has landed you in Hell?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,188,'They will reply, “We were not of those who prayed,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,188,'nor did we feed the poor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,188,'We used to indulge ˹in falsehood˺ along with others,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,188,'and deny the Day of Judgment,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,188,'until the inevitable came to us.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,188,'So the pleas of intercessors will be of no benefit to them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,188,'Now, what is the matter with them that they are turning away from the reminder,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,188,'as if they were spooked zebras');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,2,188,'fleeing from a lion?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,2,188,'In fact, each one of them wishes to be given a ˹personal˺ letter ˹from Allah˺ for all ˹to read˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,2,188,'But no! In fact, they do not fear the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,2,188,'Enough! Surely this ˹Quran˺ is a reminder.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,2,188,'So let whoever wills be mindful of it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,2,188,'But they cannot do so unless Allah wills. He ˹alone˺ is worthy to be feared and entitled to forgive.');
+INSERT INTO chapters (id, number, quran_id) VALUES(189,75,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,189,'I do swear by the Day of Judgment!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,189,'And I do swear by the self-reproaching soul!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,189,'Do people think We cannot reassemble their bones?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,189,'Yes ˹indeed˺! We are ˹most˺ capable of restoring ˹even˺ their very fingertips.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,189,'Still people want to deny what is yet to come,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,189,'asking ˹mockingly˺, “When is this Day of Judgment?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,189,'But when the sight is stunned,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,189,'and the moon is dimmed,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,189,'and the sun and the moon are brought together,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,189,'on that Day one will cry, “Where is the escape?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,189,'But no! There will be no refuge.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,189,'On that Day all will end up before your Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,189,'All will then be informed of what they have sent forth and left behind.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,189,'In fact, people will testify against their own souls,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,189,'despite the excuses they come up with.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,189,'Do not rush your tongue trying to memorize ˹a revelation of˺ the Quran.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,189,'It is certainly upon Us to ˹make you˺ memorize and recite it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,189,'So once We have recited a revelation ˹through Gabriel˺, follow its recitation ˹closely˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,189,'Then it is surely upon Us to make it clear ˹to you˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,189,'But no! In fact, you love this fleeting world,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,189,'and neglect the Hereafter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,189,'On that Day ˹some˺ faces will be bright,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,189,'looking at their Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,189,'And ˹other˺ faces will be gloomy,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,189,'anticipating something devastating to befall them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,189,'But no! ˹Beware of the day˺ when the soul reaches the collar bone ˹as it leaves˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,189,'and it will be said, “Is there any healer ˹who can save this life˺?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,189,'And the dying person realizes it is ˹their˺ time to depart,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,189,'and ˹then˺ their feet are tied together ˹in a shroud˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,189,'On that day they will be driven to your Lord ˹alone˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,189,'This denier neither believed nor prayed,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,189,'but persisted in denial and turned away,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,189,'then went to their own people, walking boastfully.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,189,'Woe to you, and more woe!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,189,'Again, woe to you, and even more woe!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,189,'Do people think they will be left without purpose?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,189,'Were they not ˹once˺ a sperm-drop emitted?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,189,'Then they became a clinging clot ˹of blood˺, then He developed and perfected their form,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,189,'producing from it both sexes, male and female.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,189,'Is such ˹a Creator˺ unable to bring the dead back to life?');
+INSERT INTO chapters (id, number, quran_id) VALUES(190,76,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,190,'Is there not a period of time when each human is nothing yet worth mentioning?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,190,'˹For˺ indeed, We ˹alone˺ created humans from a drop of mixed fluids, ˹in order˺ to test them, so We made them hear and see.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,190,'We already showed them the Way, whether they ˹choose to˺ be grateful or ungrateful.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,190,'Indeed, We have prepared for the disbelievers chains, shackles, and a blazing Fire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,190,'Indeed, the virtuous will have a drink ˹of pure wine˺—flavoured with camphor—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,190,'˹from˺ a spring where Allah’s servants will drink, flowing at their will.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,190,'They ˹are those who˺ fulfil ˹their˺ vows and fear a Day of sweeping horror,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,190,'and give food—despite their desire for it—to the poor, the orphan, and the captive,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,190,'˹saying to themselves,˺ “We feed you only for the sake of Allah, seeking neither reward nor thanks from you.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,190,'We fear from our Lord a horribly distressful Day.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,190,'So Allah will deliver them from the horror of that Day, and grant them radiance and joy,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,190,'and reward them for their perseverance with a Garden ˹in Paradise˺ and ˹garments of˺ silk.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,190,'There they will be reclining on ˹canopied˺ couches, never seeing scorching heat or bitter cold.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,190,'The Garden’s shade will be right above them, and its fruit will be made very easy to reach.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,190,'They will be waited on with silver vessels and cups of crystal—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,190,'crystalline silver, filled precisely as desired.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,190,'And they will be given a drink ˹of pure wine˺ flavoured with ginger');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,190,'from a spring there, called Salsabîl.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,190,'They will be waited on by eternal youths. If you saw them, you would think they were scattered pearls.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,190,'And if you looked around, you would see ˹indescribable˺ bliss and a vast kingdom.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,190,'The virtuous will be ˹dressed˺ in garments of fine green silk and rich brocade, and adorned with bracelets of silver, and their Lord will give them a purifying drink.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,190,'˹And they will be told,˺ “All this is surely a reward for you. Your striving has been appreciated.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,190,'Indeed, it is We Who have revealed the Quran to you ˹O Prophet˺ in stages.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,190,'So be patient with your Lord’s decree, and do not yield to any evildoer or ˹staunch˺ disbeliever from among them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,190,'˹Always˺ remember the Name of your Lord morning and evening,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,190,'and prostrate before Him during part of the night, and glorify Him long at night. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,190,'Surely those ˹pagans˺ love this fleeting world, ˹totally˺ neglecting a weighty Day ahead of them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,190,'It is We Who created them and perfected their ˹physical˺ form. But if We will, We can easily replace them with others.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,190,'Surely this is a reminder. So let whoever wills take the ˹Right˺ Way to their Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,190,'But you cannot will ˹to do so˺ unless Allah wills. Indeed, Allah is All-Knowing, All-Wise.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,190,'He admits whoever He wills into His mercy. As for the wrongdoers, He has prepared for them a painful punishment');
+INSERT INTO chapters (id, number, quran_id) VALUES(191,77,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,191,'By those ˹winds˺ sent forth successively,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,191,'and those blowing violently,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,191,'and those scattering ˹rainclouds˺ widely!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,191,'And ˹by˺ those ˹angels˺ fully distinguishing ˹truth from falsehood˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,191,'and those delivering revelation,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,191,'ending excuses and giving warnings.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,191,'Surely, what you are promised will come to pass.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,191,'So when the stars are put out,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,191,'and the sky is torn apart,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,191,'and the mountains are blown away,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,191,'and the messengers’ time ˹to testify˺ comes up—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,191,'for which Day has all this been set?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,191,'For the Day of ˹Final˺ Decision!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,191,'And what will make you realize what the Day of Decision is?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,191,'Woe on that Day to the deniers!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,191,'Did We not destroy earlier disbelievers?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,191,'And We will make the later disbelievers follow them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,191,'This is how We deal with the wicked.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,191,'Woe on that Day to the deniers!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,191,'Did We not create you from a humble fluid,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,191,'placing it in a secure place');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,191,'until an appointed time?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,191,'We ˹perfectly˺ ordained ˹its development˺. How excellent are We in doing so!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,191,'Woe on that Day to the deniers!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,191,'Have We not made the earth a lodging');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,191,'for the living and the dead,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,191,'and placed upon it towering, firm mountains, and given you fresh water to drink?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,191,'Woe on that Day to the deniers!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,191,'˹The disbelievers will be told,˺ “Proceed into that ˹Fire˺ which you used to deny!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,191,'Proceed into the shade ˹of smoke˺ which rises in three columns,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,191,'providing neither coolness nor shelter from the flames.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,191,'Indeed, it hurls sparks ˹as big˺ as huge castles,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,191,'and ˹as dark˺ as black camels.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,191,'Woe on that Day to the deniers!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,191,'On that Day they will not ˹be in a position to˺ speak,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,191,'nor will they be permitted to offer excuses.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,191,'Woe on that Day to the deniers!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,191,'˹They will be told by Allah,˺ “This is the Day of ˹Final˺ Decision: We have gathered you along with earlier disbelievers ˹for punishment˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,191,'So if you have a scheme ˹to save yourselves˺, then use it against Me.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,191,'Woe on that Day to the deniers!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,191,'Indeed, the righteous will be amid ˹cool˺ shade and springs');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,191,'and any fruit they desire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,191,'˹They will be told,˺ “Eat and drink happily for what you used to do.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,191,'Surely this is how We reward the good-doers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,191,'˹But˺ woe on that Day to the deniers!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,191,'“Eat and enjoy yourselves for a little while, ˹for˺ you are truly wicked.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,2,191,'Woe on that Day to the deniers!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,2,191,'When it is said to them, “Bow down ˹before Allah,” they do not bow.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,2,191,'Woe on that Day to the deniers!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,2,191,'So what message after this ˹Quran˺ would they believe in?');
+INSERT INTO chapters (id, number, quran_id) VALUES(192,78,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,192,'What are they asking one another about?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,192,'About the momentous news,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,192,'over which they disagree.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,192,'But no! They will come to know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,192,'Again, no! They will come to know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,192,'Have We not smoothed out the earth ˹like a bed˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,192,'and ˹made˺ the mountains as ˹its˺ pegs,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,192,'and created you in pairs,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,192,'and made your sleep for rest,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,192,'and made the night as a cover,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,192,'and made the day for livelihood,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,192,'and built above you seven mighty ˹heavens˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,192,'and placed ˹in them˺ a shining lamp,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,192,'and sent down from rainclouds pouring water,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,192,'producing by it grain and ˹various˺ plants,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,192,'and dense orchards?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,192,'Indeed, the Day of ˹Final˺ Decision is an appointed time—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,192,'˹it is˺ the Day the Trumpet will be blown, and you will ˹all˺ come forth in crowds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,192,'The sky will be ˹split˺ open, becoming ˹many˺ gates,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,192,'and the mountains will be blown away, becoming ˹like˺ a mirage.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,192,'Indeed, Hell is lying in ambush');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,192,'as a home for the transgressors,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,192,'where they will remain for ˹endless˺ ages.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,192,'There they will not taste any coolness or drink,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,192,'except boiling water and ˹oozing˺ pus—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,192,'a fitting reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,192,'For they never expected any reckoning,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,192,'and totally rejected Our signs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,192,'And We have everything recorded precisely.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,192,'˹So the deniers will be told,˺ “Taste ˹the punishment˺, for all you will get from Us is more torment.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,192,'Indeed, the righteous will have salvation—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,192,'Gardens, vineyards,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,192,'and full-bosomed maidens of equal age,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,192,'and full cups ˹of pure wine˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,192,'never to hear any idle talk or lying therein—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,192,'a ˹fitting˺ reward as a generous gift from your Lord,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,192,'the Lord of the heavens and the earth and everything in between, the Most Compassionate. No one will dare speak to Him');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,192,'on the Day the ˹holy˺ spirit and the angels will stand in ranks. None will talk, except those granted permission by the Most Compassionate and whose words are true.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,192,'That Day is the ˹ultimate˺ truth. So let whoever wills take the path leading back to their Lord.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,192,'Indeed, We have warned you of an imminent punishment—the Day every person will see ˹the consequences of˺ what their hands have done, and the disbelievers will cry, “I wish I were dust.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(193,79,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,193,'By those ˹angels˺ stripping out ˹evil souls˺ harshly,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,193,'and those pulling out ˹good souls˺ gently,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,193,'and those gliding ˹through heavens˺ swiftly,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,193,'and those taking the lead vigorously,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,193,'and those conducting affairs ˹obediently˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,193,'˹Consider˺ the Day ˹when˺ the quaking Blast will come to pass,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,193,'followed by a second Blast.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,193,'˹The deniers’˺ hearts on that Day will be trembling ˹in horror˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,193,'with their eyes downcast.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,193,'˹But now˺ they ask ˹mockingly˺, “Will we really be restored to our former state,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,193,'even after we have been reduced to decayed bones?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,193,'Adding, “Then such a return would be a ˹total˺ loss ˹for us˺!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,193,'But indeed, it will take only one ˹mighty˺ Blast,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,193,'and at once they will be above ground.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,193,'Has the story of Moses reached you ˹O Prophet˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,193,'His Lord called him in the sacred valley of Ṭuwa,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,193,'˹commanding,˺ “Go to Pharaoh, for he has truly transgressed ˹all bounds˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,193,'And say, ‘Would you ˹be willing to˺ purify yourself,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,193,'and let me guide you to your Lord so that you will be in awe ˹of Him˺?’”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,193,'Then Moses showed him the great sign,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,193,'but he denied and disobeyed ˹Allah˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,193,'then turned his back, striving ˹against the truth˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,193,'Then he summoned ˹his people˺ and called out,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,193,'saying, “I am your lord, the most high!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,193,'So Allah overtook him, making him an example in this life and the next.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,193,'Surely in this is a lesson for whoever stands in awe of ˹Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,193,'Which is harder to create: you or the sky? He built it,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,193,'raising it high and forming it flawlessly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,193,'He dimmed its night, and brought forth its daylight.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,193,'As for the earth, He spread it out as well,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,193,'bringing forth its water and pastures');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,193,'and setting the mountains firmly ˹upon it˺—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,193,'all as ˹a means of˺ sustenance for you and your animals.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,193,'But, when the Supreme Disaster comes to pass—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,193,'the Day every person will remember all ˹their˺ striving,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,193,'and the Hellfire will be displayed for all to see—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,193,'then as for those who transgressed');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,193,'and preferred the ˹fleeting˺ life of this world,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,193,'the Hellfire will certainly be ˹their˺ home.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,193,'And as for those who were in awe of standing before their Lord and restrained themselves from ˹evil˺ desires,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,193,'Paradise will certainly be ˹their˺ home.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,193,'They ask you ˹O Prophet˺ regarding the Hour, “When will it be?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,2,193,'But it is not for you to tell its time.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,2,193,'That knowledge rests with your Lord ˹alone˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,2,193,'Your duty is only to warn whoever is in awe of it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,2,193,'On the Day they see it, it will be as if they had stayed ˹in the world˺ no more than one evening or its morning.');
+INSERT INTO chapters (id, number, quran_id) VALUES(194,80,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,194,'He frowned and turned ˹his attention˺ away,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,194,'˹simply˺ because the blind man came to him ˹interrupting˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,194,'You never know ˹O Prophet˺, perhaps he may be purified,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,194,'or he may be mindful, benefitting from the reminder.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,194,'As for the one who was indifferent,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,194,'you gave him your ˹undivided˺ attention,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,194,'even though you are not to blame if he would not be purified.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,194,'But as for the one who came to you, eager ˹to learn˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,194,'being in awe ˹of Allah˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,194,'you were inattentive to him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,194,'But no! This ˹revelation˺ is truly a reminder.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,194,'So let whoever wills be mindful of it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,194,'It is ˹written˺ on pages held in honour—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,194,'highly esteemed, purified—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,194,'by the hands of angel-scribes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,194,'honourable and virtuous.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,194,'Condemned are ˹disbelieving˺ humans! How ungrateful they are ˹to Allah˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,194,'From what substance did He create them?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,194,'He created them from a sperm-drop, and ordained their development.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,194,'Then He makes the way easy for them,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,194,'then causes them to die and be buried.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,194,'Then when He wills, He will resurrect them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,194,'But no! They have failed to comply with what He ordered.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,194,'Let people then consider their food:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,194,'how We pour down rain in abundance');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,194,'and meticulously split the earth open ˹for sprouts˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,194,'causing grain to grow in it,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,194,'as well as grapes and greens,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,194,'and olives and palm trees,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,194,'and dense orchards,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,194,'and fruit and fodder—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,194,'all as ˹a means of˺ sustenance for you and your animals.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,194,'Then, when the Deafening Blast comes to pass—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,194,'on that Day every person will flee from their own siblings,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,194,'and ˹even˺ their mother and father,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,194,'and ˹even˺ their spouse and children.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,2,194,'For then everyone will have enough concern of their own.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,2,194,'On that Day ˹some˺ faces will be bright,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,2,194,'laughing and rejoicing,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,2,194,'while ˹other˺ faces will be dusty,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,2,194,'cast in gloom—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,2,194,'those are the disbelievers, the ˹wicked˺ sinners.');
+INSERT INTO chapters (id, number, quran_id) VALUES(195,81,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,195,'When the sun is put out,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,195,'and when the stars fall down,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,195,'and when the mountains are blown away,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,195,'and when pregnant camels are left untended,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,195,'and when wild beasts are gathered together,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,195,'and when the seas are set on fire,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,195,'and when the souls ˹and their bodies˺ are paired ˹once more˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,195,'and when baby girls, buried alive, are asked');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,195,'for what crime they were put to death,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,195,'and when the records ˹of deeds˺ are laid open,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,195,'and when the sky is stripped away,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,195,'and when the Hellfire is fiercely flared up,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,195,'and when Paradise is brought near—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,195,'˹on that Day˺ each soul will know what ˹deeds˺ it has brought along.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,195,'I do swear by the receding stars');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,195,'which travel and hide,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,195,'and the night as it falls');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,195,'and the day as it breaks!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,195,'Indeed, this ˹Quran˺ is the Word of ˹Allah delivered by Gabriel,˺ a noble messenger-angel,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,195,'full of power, held in honour by the Lord of the Throne,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,195,'obeyed there ˹in heaven˺, and trustworthy.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,195,'And your fellow man is not insane.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,195,'And he did see that ˹angel˺ on the clear horizon,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,195,'and he does not withhold ˹what is revealed to him of˺ the unseen.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,195,'And this ˹Quran˺ is not the word of an outcast devil.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,195,'So what ˹other˺ path would you take?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,195,'Surely this ˹Quran˺ is only a reminder to the whole world—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,195,'to whoever of you wills to take the Straight Way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,195,'But you cannot will ˹to do so˺, except by the Will of Allah, the Lord of all worlds.');
+INSERT INTO chapters (id, number, quran_id) VALUES(196,82,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,196,'When the sky splits open,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,196,'and when the stars fall away,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,196,'and when the seas burst forth,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,196,'and when the graves spill out,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,196,'˹then˺ each soul will know what it has sent forth or left behind.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,196,'O humanity! What has emboldened you against your Lord, the Most Generous,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,196,'Who created you, fashioned you, and perfected your design,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,196,'moulding you in whatever form He willed?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,196,'But no! In fact, you deny the ˹final˺ Judgment,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,196,'while you are certainly observed by vigilant,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,196,'honourable angels, recording ˹everything˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,196,'They know whatever you do.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,196,'Indeed, the virtuous will be in bliss,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,196,'and the wicked will be in Hell,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,196,'burning in it on Judgment Day,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,196,'and they will have no escape from it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,196,'What will make you realize what Judgment Day is?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,196,'Again, what will make you realize what Judgment Day is?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,196,'˹It is˺ the Day no soul will be of ˹any˺ benefit to another whatsoever, for all authority on that Day belongs to Allah ˹entirely˺.');
+INSERT INTO chapters (id, number, quran_id) VALUES(197,83,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,197,'Woe to the defrauders!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,197,'Those who take full measure ˹when they buy˺ from people,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,197,'but give less when they measure or weigh for buyers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,197,'Do such people not think that they will be resurrected');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,197,'for a tremendous Day—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,197,'the Day ˹all˺ people will stand before the Lord of all worlds?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,197,'But no! The wicked are certainly bound for Sijjîn ˹in the depths of Hell˺—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,197,'and what will make you realize what Sijjîn is?—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,197,'a fate ˹already˺ sealed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,197,'Woe on that Day to the deniers—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,197,'those who deny Judgment Day!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,197,'None would deny it except every evildoing transgressor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,197,'Whenever Our revelations are recited to them, they say, “Ancient fables!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,197,'But no! In fact, their hearts have been stained by all ˹the evil˺ they used to commit!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,197,'Undoubtedly, they will be sealed off from their Lord on that Day.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,197,'Moreover, they will surely burn in Hell,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,197,'and then be told, “This is what you used to deny.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,197,'But no! The virtuous are certainly bound for ’Illiyûn ˹in elevated Gardens˺—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,197,'and what will make you realize what ’Illiyûn is?—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,197,'a fate ˹already˺ sealed,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,197,'witnessed by those nearest ˹to Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,197,'Surely the virtuous will be in bliss,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,197,'˹seated˺ on ˹canopied˺ couches, gazing around.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,197,'You will recognize on their faces the glow of delight.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,197,'They will be given a drink of sealed, pure wine,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,197,'whose last sip will smell like musk. So let whoever aspires to this strive ˹diligently˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,197,'And this drink’s flavour will come from Tasnîm—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,197,'a spring from which those nearest ˹to Allah˺ will drink.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,197,'Indeed, the wicked used to laugh at the believers,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,197,'wink to one another whenever they passed by,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,2,197,'and muse ˹over these exploits˺ upon returning to their own people.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,2,197,'And when they saw the faithful, they would say, “These ˹people˺ are truly astray,”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,2,197,'even though they were not sent as keepers over the believers.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,2,197,'But on that Day the believers will be laughing at the disbelievers,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,2,197,'as they sit on ˹canopied˺ couches, looking on.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,2,197,'˹The believers will be asked,˺ “Have the disbelievers ˹not˺ been paid back for what they used to do?”');
+INSERT INTO chapters (id, number, quran_id) VALUES(198,84,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,198,'When the sky bursts open,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,198,'obeying its Lord as it must,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,198,'and when the earth is flattened out,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,198,'and ejects ˹all˺ its contents and becomes empty,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,198,'obeying its Lord as it must, ˹surely you will all be judged˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,198,'O humanity! Indeed, you are labouring restlessly towards your Lord, and will ˹eventually˺ meet the consequences.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,198,'As for those who are given their record in their right hand,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,198,'they will have an easy reckoning,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,198,'and will return to their people joyfully.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,198,'And as for those who are given their record ˹in their left hand˺ from behind their backs,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,198,'they will cry for ˹instant˺ destruction,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,198,'and will burn in the blazing Fire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,198,'For they used to be prideful among their people,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,198,'thinking they would never return ˹to Allah˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,198,'Yes ˹they would˺! Surely their Lord has always been All-Seeing of them.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,198,'So, I do swear by the twilight!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,198,'And by the night and whatever it envelops!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,198,'And by the moon when it waxes full!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,198,'You will certainly pass from one state to another.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,198,'So what is the matter with them that they do not believe,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,198,'and when the Quran is recited to them, they do not bow down ˹in submission˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,198,'In fact, the disbelievers persist in denial.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,198,'But Allah knows best whatever they hide.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,198,'So give them good news of a painful punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,198,'But those who believe and do good will have a never-ending reward.');
+INSERT INTO chapters (id, number, quran_id) VALUES(199,85,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,199,'By the sky full of constellations,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,199,'and the promised Day ˹of Judgment˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,199,'and the witness and what is witnessed!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,199,'Condemned are the makers of the ditch—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,199,'the fire ˹pit˺, filled with fuel—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,199,'when they sat around it,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,199,'watching what they had ˹ordered to be˺ done to the believers,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,199,'who they resented for no reason other than belief in Allah—the Almighty, the Praiseworthy—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,199,'˹the One˺ to Whom belongs the kingdom of the heavens and earth. And Allah is a Witness over all things.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,199,'Those who persecute the believing men and women and then do not repent will certainly suffer the punishment of Hell and the torment of burning.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,199,'Surely those who believe and do good will have Gardens under which rivers flow. That is the greatest triumph.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,199,'Indeed, the ˹crushing˺ grip of your Lord is severe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,199,'˹For˺ He is certainly the One Who originates and resurrects ˹all˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,199,'And He is the All-Forgiving, All-Loving—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,199,'Lord of the Throne, the All-Glorious,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,199,'Doer of whatever He wills.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,199,'Has the story of the ˹destroyed˺ forces reached you ˹O Prophet˺—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,199,'˹the forces of˺ Pharaoh and Thamûd?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,199,'Yet the disbelievers ˹still˺ persist in denial.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,199,'But Allah encompasses them from all sides.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,199,'In fact, this is a glorious Quran,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,199,'˹recorded˺ in a Preserved Tablet.');
+INSERT INTO chapters (id, number, quran_id) VALUES(200,86,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,200,'By the heaven and the nightly star!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,200,'And what will make you realize what the nightly star is?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,200,'˹It is˺ the star of piercing brightness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,200,'There is no soul without a vigilant angel ˹recording everything˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,200,'Let people then consider what they were created from!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,200,'˹They were˺ created from a spurting fluid,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,200,'stemming from between the backbone and the ribcage.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,200,'Surely He is fully capable of bringing them back ˹to life˺');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,200,'on the Day all secrets will be disclosed.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,200,'Then one will have neither power nor ˹any˺ helper.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,200,'By the sky with its recurring cycles,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,200,'and the earth with its sprouting plants!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,200,'Surely this ˹Quran˺ is a decisive word,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,200,'and is not to be taken lightly.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,200,'They are certainly devising ˹evil˺ plans,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,200,'but I too am planning.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,200,'So bear with the disbelievers ˹O Prophet˺. Let them be for ˹just˺ a little while.');
+INSERT INTO chapters (id, number, quran_id) VALUES(201,87,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,201,'Glorify the Name of your Lord, the Most High,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,201,'Who created and ˹perfectly˺ fashioned ˹all˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,201,'and Who ordained precisely and inspired accordingly,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,201,'and Who brings forth ˹green˺ pasture,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,201,'then reduces it to withered chaff.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,201,'We will have you recite ˹the Quran, O Prophet,˺ so you will not forget ˹any of it˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,201,'unless Allah wills otherwise. He surely knows what is open and what is hidden.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,201,'We will facilitate for you the Way of Ease.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,201,'So ˹always˺ remind ˹with the Quran˺—˹even˺ if the reminder is beneficial ˹only to some˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,201,'Those in awe ˹of Allah˺ will be mindful ˹of it˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,201,'But it will be shunned by the most wretched,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,201,'who will burn in the greatest Fire,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,201,'where they will not ˹be able to˺ live or die.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,201,'Successful indeed are those who purify themselves,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,201,'remember the Name of their Lord, and pray.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,201,'But you ˹deniers only˺ prefer the life of this world,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,201,'even though the Hereafter is far better and more lasting.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,201,'This is certainly ˹mentioned˺ in the earlier Scriptures—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,201,'the Scriptures of Abraham and Moses.');
+INSERT INTO chapters (id, number, quran_id) VALUES(202,88,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,202,'Has the news of the Overwhelming Event reached you ˹O Prophet˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,202,'On that Day ˹some˺ faces will be downcast,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,202,'˹totally˺ overburdened, exhausted,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,202,'burning in a scorching Fire,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,202,'left to drink from a scalding spring.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,202,'They will have no food except a foul, thorny shrub,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,202,'neither nourishing nor satisfying hunger.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,202,'On that Day ˹other˺ faces will be glowing with bliss,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,202,'˹fully˺ pleased with their striving,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,202,'in an elevated Garden,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,202,'where no idle talk will be heard.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,202,'In it will be a running spring,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,202,'along with thrones raised high,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,202,'and cups set at hand,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,202,'and ˹fine˺ cushions lined up,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,202,'and ˹splendid˺ carpets spread out.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,202,'Do they not ever reflect on camels—how they were ˹masterfully˺ created;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,202,'and the sky—how it was raised ˹high˺;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,202,'and the mountains—how they were firmly set up;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,202,'and the earth—how it was levelled out?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,202,'So, ˹continue to˺ remind ˹all, O Prophet˺, for your duty is only to remind.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,202,'You are not ˹there˺ to compel them ˹to believe˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,202,'But whoever turns away, persisting in disbelief,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,202,'then Allah will inflict upon them the major punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,202,'Surely to Us is their return,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,202,'then surely with Us is their reckoning.');
+INSERT INTO chapters (id, number, quran_id) VALUES(203,89,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,203,'By the dawn,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,203,'and the ten nights,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,203,'and the even and the odd,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,203,'and the night when it passes!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,203,'Is all this ˹not˺ a sufficient oath for those who have sense?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,203,'Did you not see how your Lord dealt with ’Ȃd—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,203,'˹the people˺ of Iram—with ˹their˺ great stature,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,203,'unmatched in any other land;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,203,'and Thamûd who carved ˹their homes into˺ the rocks in the ˹Stone˺ Valley;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,203,'and the Pharaoh of mighty structures?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,203,'They all transgressed throughout the land,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,203,'spreading much corruption there.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,203,'So your Lord unleashed on them a scourge of punishment.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,203,'˹For˺ your Lord is truly vigilant.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,203,'Now, whenever a human being is tested by their Lord through ˹His˺ generosity and blessings, they boast, “My Lord has ˹deservedly˺ honoured me!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,203,'But when He tests them by limiting their provision, they protest, “My Lord has ˹undeservedly˺ humiliated me!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,203,'Absolutely not! In fact, you are not ˹even˺ gracious to the orphan,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,203,'nor do you urge one another to feed the poor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,203,'And you devour ˹others’˺ inheritance greedily,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,203,'and love wealth fervently.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,203,'Enough! When the earth is entirely crushed over and over,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,2,203,'and your Lord comes ˹to judge˺ with angels, rank upon rank,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,2,203,'and Hell is brought forth on that Day—this is when every ˹disbelieving˺ person will remember ˹their own sins˺. But what is the use of remembering then?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,2,203,'They will cry, “I wish I had sent forth ˹something good˺ for my ˹true˺ life.”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,2,203,'On that Day He will punish ˹them˺ severely, like no other,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,2,203,'and bind ˹them˺ tightly, like no other. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,2,203,'˹Allah will say to the righteous,˺ “O tranquil soul!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,2,203,'Return to your Lord, well pleased ˹with Him˺ and well pleasing ˹to Him˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,2,203,'So join My servants,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,2,203,'and enter My Paradise.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(204,90,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,204,'I do swear by this city ˹of Mecca˺—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,204,'even though you ˹O Prophet˺ are subject to abuse in this city—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,204,'and by every parent and ˹their˺ child!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,204,'Indeed, We have created humankind in ˹constant˺ struggle.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,204,'Do they think that no one has power over them,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,204,'boasting, “I have wasted enormous wealth!”?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,204,'Do they think that no one sees them?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,204,'Have We not given them two eyes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,204,'a tongue, and two lips;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,204,'and shown them the two ways ˹of right and wrong˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,204,'If only they had attempted the challenging path ˹of goodness instead˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,204,'And what will make you realize what ˹attempting˺ the challenging path is?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,204,'It is to free a slave,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,204,'or to give food in times of famine');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,204,'to an orphaned relative');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,204,'or to a poor person in distress,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,204,'and—above all—to be one of those who have faith and urge each other to perseverance and urge each other to compassion.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,204,'These are the people of the right.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,204,'As for those who deny Our signs, they are the people of the left.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,204,'The Fire will be sealed over them.');
+INSERT INTO chapters (id, number, quran_id) VALUES(205,91,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,205,'By the sun and its brightness,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,205,'and the moon as it follows it,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,205,'and the day as it unveils it,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,205,'and the night as it conceals it!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,205,'And by heaven and ˹the One˺ Who built it,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,205,'and the earth and ˹the One˺ Who spread it!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,205,'And by the soul and ˹the One˺ Who fashioned it,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,205,'then with ˹the knowledge of˺ right and wrong inspired it!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,205,'Successful indeed is the one who purifies their soul,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,205,'and doomed is the one who corrupts it!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,205,'Thamûd rejected ˹the truth˺ out of arrogance,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,205,'when the most wicked of them was roused ˹to kill the she-camel˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,205,'But the messenger of Allah warned them, “˹Do not disturb˺ Allah’s camel and her ˹turn to˺ drink!”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,205,'Still they defied him and slaughtered her. So their Lord crushed them for their crime, levelling all to the ground.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,205,'He has no fear of consequences.');
+INSERT INTO chapters (id, number, quran_id) VALUES(206,92,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,206,'By the night when it covers,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,206,'and the day when it shines!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,206,'And by ˹the One˺ Who created male and female!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,206,'Surely the ends you strive for are diverse.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,206,'As for the one who is charitable, mindful ˹of Allah˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,206,'and ˹firmly˺ believes in the finest reward,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,206,'We will facilitate for them the Way of Ease.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,206,'And as for the one who is stingy, indifferent ˹to Allah˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,206,'and ˹staunchly˺ denies the finest reward,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,206,'We will facilitate for them the path of hardship.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,206,'And their wealth will be of no benefit to them when they tumble ˹into Hell˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,206,'It is certainly upon Us ˹alone˺ to show ˹the way to˺ guidance.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,206,'And surely to Us ˹alone˺ belong this life and the next.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,206,'And so I have warned you of a raging Fire,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,206,'in which none will burn except the most wretched—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,206,'who deny and turn away.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,206,'But the righteous will be spared from it—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,206,'who donate ˹some of˺ their wealth only to purify themselves,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,206,'not in return for someone’s favours,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,2,206,'but seeking the pleasure of their Lord, the Most High.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,2,206,'They will certainly be pleased.');
+INSERT INTO chapters (id, number, quran_id) VALUES(207,93,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,207,'By the morning sunlight,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,207,'and the night when it falls still!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,207,'Your Lord ˹O Prophet˺ has not abandoned you, nor has He become hateful ˹of you˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,207,'And the next life is certainly far better for you than this one.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,207,'And ˹surely˺ your Lord will give so much to you that you will be pleased.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,207,'Did He not find you as an orphan then sheltered you?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,207,'Did He not find you unguided then guided you?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,207,'And did He not find you needy then satisfied your needs?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,207,'So do not oppress the orphan,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,207,'nor repulse the beggar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,207,'And proclaim the blessings of your Lord.');
+INSERT INTO chapters (id, number, quran_id) VALUES(208,94,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,208,'Have We not uplifted your heart for you ˹O Prophet˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,208,'relieved you of the burden');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,208,'which weighed so heavily on your back,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,208,'and elevated your renown for you?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,208,'So, surely with hardship comes ease.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,208,'Surely with ˹that˺ hardship comes ˹more˺ ease.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,208,'So once you have fulfilled ˹your duty˺, strive ˹in devotion˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,208,'turning to your Lord ˹alone˺ with hope.');
+INSERT INTO chapters (id, number, quran_id) VALUES(209,95,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,209,'By the fig and the olive ˹of Jerusalem˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,209,'and Mount Sinai,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,209,'and this secure city ˹of Mecca˺!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,209,'Indeed, We created humans in the best form.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,209,'But We will reduce them to the lowest of the low ˹in Hell˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,209,'except those who believe and do good—they will have a never-ending reward.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,209,'Now, what makes you deny the ˹final˺ Judgment?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,209,'Is Allah not the most just of all judges?');
+INSERT INTO chapters (id, number, quran_id) VALUES(210,96,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,210,'Read, ˹O Prophet,˺ in the Name of your Lord Who created—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,210,'created humans from a clinging clot.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,210,'Read! And your Lord is the Most Generous,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,210,'Who taught by the pen—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,210,'taught humanity what they knew not. ');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,210,'Most certainly, one exceeds all bounds');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,210,'once they think they are self-sufficient.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,210,'˹But˺ surely to your Lord is the return ˹of all˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,210,'Have you seen the man who prevents');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,210,'a servant ˹of Ours˺ from praying?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,210,'What if this ˹servant˺ is ˹rightly˺ guided,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,2,210,'or encourages righteousness?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,2,210,'What if that ˹man˺ persists in denial and turns away?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,2,210,'Does he not know that Allah sees ˹all˺?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,2,210,'But no! If he does not desist, We will certainly drag him by the forelock—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,2,210,'a lying, sinful forelock.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,2,210,'So let him call his associates.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,2,210,'We will call the wardens of Hell.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,2,210,'Again, no! Never obey him ˹O Prophet˺! Rather, ˹continue to˺ prostrate and draw near ˹to Allah˺.');
+INSERT INTO chapters (id, number, quran_id) VALUES(211,97,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,211,'Indeed, ˹it is˺ We ˹Who˺ sent this ˹Quran˺ down on the Night of Glory.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,211,'And what will make you realize what the Night of Glory is?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,211,'The Night of Glory is better than a thousand months.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,211,'That night the angels and the ˹holy˺ spirit descend, by the permission of their Lord, for every ˹decreed˺ matter.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,211,'It is all peace until the break of dawn.');
+INSERT INTO chapters (id, number, quran_id) VALUES(212,98,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,212,'The disbelievers from the People of the Book and the polytheists were not going to desist ˹from disbelief˺ until the clear proof came to them:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,212,'a messenger from Allah, reciting scrolls of ˹utmost˺ purity,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,212,'containing upright commandments.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,212,'It was not until this clear proof came to the People of the Book that they became divided ˹about his prophethood˺—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,212,'even though they were only commanded to worship Allah ˹alone˺ with sincere devotion to Him in all uprightness, establish prayer, and pay alms-tax. That is the upright Way.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,212,'Indeed, those who disbelieve from the People of the Book and the polytheists will be in the Fire of Hell, to stay there forever. They are the worst of ˹all˺ beings.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,212,'Indeed, those who believe and do good—they are the best of ˹all˺ beings.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,212,'Their reward with their Lord will be Gardens of Eternity, under which rivers flow, to stay there for ever and ever. Allah is pleased with them and they are pleased with Him. This is ˹only˺ for those in awe of their Lord.');
+INSERT INTO chapters (id, number, quran_id) VALUES(213,99,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,213,'When the earth is shaken ˹in˺ its ultimate quaking,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,213,'and when the earth throws out ˹all˺ its contents,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,213,'and humanity cries, “What is wrong with it?”—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,213,'on that Day the earth will recount everything,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,213,'having been inspired by your Lord ˹to do so˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,213,'On that Day people will proceed in separate groups to be shown ˹the consequences of˺ their deeds.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,213,'So whoever does an atom’s weight of good will see it.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,213,'And whoever does an atom’s weight of evil will see it.');
+INSERT INTO chapters (id, number, quran_id) VALUES(214,100,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,214,'’ By the galloping, panting horses,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,214,'striking sparks of fire ˹with their hoofs˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,214,'launching raids at dawn,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,214,'stirring up ˹clouds of˺ dust,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,214,'and penetrating into the heart of enemy lines!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,214,'Surely humankind is ungrateful to their Lord—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,214,'and they certainly attest to this—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,214,'and they are truly extreme in their love of ˹worldly˺ gains.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,214,'Do they not know that when the contents of the graves will be spilled out,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,214,'and the secrets of the hearts will be laid bare—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,214,'surely their Lord is All-Aware of them on that Day.');
+INSERT INTO chapters (id, number, quran_id) VALUES(215,101,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,215,'The Striking Disaster!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,215,'What is the Striking Disaster?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,215,'And what will make you realize what the Striking Disaster is?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,215,'˹It is˺ the Day people will be like scattered moths,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,215,'and the mountains will be like carded wool.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,215,'So as for those whose scale is heavy ˹with good deeds˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,215,'they will be in a life of bliss.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,215,'And as for those whose scale is light,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,215,'their home will be the abyss.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,2,215,'And what will make you realize what that is?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,2,215,'˹It is˺ a scorching Fire.');
+INSERT INTO chapters (id, number, quran_id) VALUES(216,102,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,216,'Competition for more ˹gains˺ diverts you ˹from Allah˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,216,'until you end up in ˹your˺ graves.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,216,'But no! You will soon come to know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,216,'Again, no! You will soon come to know.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,216,'Indeed, if you were to know ˹your fate˺ with certainty, ˹you would have acted differently˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,216,'˹But˺ you will surely see the Hellfire.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,216,'Again, you will surely see it with the eye of certainty.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,216,'Then, on that Day, you will definitely be questioned about ˹your worldly˺ pleasures.');
+INSERT INTO chapters (id, number, quran_id) VALUES(217,103,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,217,'By the ˹passage of˺ time!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,217,'Surely humanity is in ˹grave˺ loss,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,217,'except those who have faith, do good, and urge each other to the truth, and urge each other to perseverance.');
+INSERT INTO chapters (id, number, quran_id) VALUES(218,104,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,218,'Woe to every backbiter, slanderer,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,218,'who amasses wealth ˹greedily˺ and counts it ˹repeatedly˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,218,'thinking that their wealth will make them immortal!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,218,'Not at all! Such a person will certainly be tossed into the Crusher.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,218,'And what will make you realize what the Crusher is?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,218,'˹It is˺ Allah’s kindled Fire,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,218,'which rages over the hearts.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,2,218,'It will be sealed over them,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,2,218,'˹tightly secured˺ with long braces. ');
+INSERT INTO chapters (id, number, quran_id) VALUES(219,105,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,219,'Have you not seen ˹O Prophet˺ how your Lord dealt with the Army of the Elephant?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,219,'Did He not frustrate their scheme?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,219,'For He sent against them flocks of birds,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,219,'that pelted them with stones of baked clay,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,219,'leaving them like chewed up straw. ');
+INSERT INTO chapters (id, number, quran_id) VALUES(220,106,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,220,'˹At least˺ for ˹the favour of˺ making Quraysh habitually secure—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,220,'secure in their trading caravan ˹to Yemen˺ in the winter and ˹Syria˺ in the summer—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,220,'let them worship the Lord of this ˹Sacred˺ House,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,220,'Who has fed them against hunger and made them secure against fear. ');
+INSERT INTO chapters (id, number, quran_id) VALUES(221,107,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,221,'Have you seen the one who denies the ˹final˺ Judgment?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,221,'That is the one who repulses the orphan,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,221,'and does not encourage the feeding of the poor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,221,'So woe to those ˹hypocrites˺ who pray');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,221,'yet are unmindful of their prayers;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,221,'those who ˹only˺ show off,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,2,221,'and refuse to give ˹even the simplest˺ aid. ');
+INSERT INTO chapters (id, number, quran_id) VALUES(222,108,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,222,'Indeed, We have granted you ˹O Prophet˺ abundant goodness.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,222,'So pray and sacrifice to your Lord ˹alone˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,222,'Only the one who hates you is truly cut off ˹from any goodness˺.');
+INSERT INTO chapters (id, number, quran_id) VALUES(223,109,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,223,'Say, ˹O Prophet,˺ “O you disbelievers!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,223,'I do not worship what you worship,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,223,'nor do you worship what I worship.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,223,'I will never worship what you worship,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,223,'nor will you ever worship what I worship.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,223,'You have your way, and I have my Way.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(224,110,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,224,'When Allah’s ˹ultimate˺ help comes and the victory ˹over Mecca is achieved˺,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,224,'and you ˹O Prophet˺ see the people embracing Allah’s Way in crowds,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,224,'then glorify the praises of your Lord and seek His forgiveness, for certainly He is ever Accepting of Repentance.');
+INSERT INTO chapters (id, number, quran_id) VALUES(225,111,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,225,'May the hands of Abu Lahab perish, and he ˹himself˺ perish!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,225,'Neither his wealth nor ˹worldly˺ gains will benefit him.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,225,'He will burn in a flaming Fire,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,225,'and ˹so will˺ his wife, the carrier of ˹thorny˺ kindling,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,225,'around her neck will be a rope of palm-fibre.');
+INSERT INTO chapters (id, number, quran_id) VALUES(226,112,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,226,'Say, ˹O Prophet,˺ “He is Allah—One ˹and Indivisible˺;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,226,'Allah—the Sustainer ˹needed by all˺.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,226,'He has never had offspring, nor was He born.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,226,'And there is none comparable to Him.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(227,113,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,227,'Say, ˹O Prophet,˺ “I seek refuge in the Lord of the daybreak');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,227,'from the evil of whatever He has created,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,227,'and from the evil of the night when it grows dark,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,227,'and from the evil of those ˹witches casting spells by˺ blowing onto knots,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,227,'and from the evil of an envier when they envy.”');
+INSERT INTO chapters (id, number, quran_id) VALUES(228,114,2);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,2,228,'Say, ˹O Prophet,˺ “I seek refuge in the Lord of humankind,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,2,228,'the Master of humankind,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,2,228,'the God of humankind,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,2,228,'from the evil of the lurking whisperer—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,2,228,'who whispers into the hearts of humankind—');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,2,228,'from among jinn and humankind.”');
+INSERT INTO qurans (locale) VALUES('pt');
+INSERT INTO chapters (id, number, quran_id) VALUES(229,1,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,229,'Em nome de Allah, O Misericordioso, O Misericordiador');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,229,'Louvor a Allah, O Senhor dos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,229,'O Misericordioso, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,229,'O Soberano do Dia do Juízo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,229,'Só a Ti adoramos e só de Ti imploramos ajuda');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,229,'Guia-nos à senda reta');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,229,'À senda dos que agraciaste; não à dos incursos em Tua ira nem à dos descaminhados');
+INSERT INTO chapters (id, number, quran_id) VALUES(230,2,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,230,'Alif, Lām, Mīm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,230,'Esse é o Livro. Nele, não há dúvida alguma. É orientação para os piedosos');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,230,'Que crêem no Invisível e cumprem a oração e despendem, do que lhes damos por sustento');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,230,'E que crêem no que foi descido do céu, para ti e no que fora descido antes de ti, e se convencem da Derradeira Vida');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,230,'Esses estão em orientação de seu Senhor. E esses são os bem-aventurados');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,230,'Por certo, aos que renegam a Fé, é-lhes igual que os admoestes ou não os admoeste" não crerão');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,230,'Allah selou-lhes os corações e o ouvido e, sobre suas vistas, há névoa. E terão formidável castigo');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,230,'E, dentre os homens, há quem diga; "Cremos em Allah e no Derradeiro Dia", enquanto não são crentes');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,230,'Procuram enganar a Allah e aos que crêem, mas não enganam senão a si mesmos e não percebem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,230,'Em seus corações, há enfermidade; então, Allah acrescentou-lhes enfermidade. E terão doloroso castigo, porque mentiam');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,230,'E, quando se lhes diz: "Não semeeis a corrupção na terra", dizem: "Somos, apenas, reformadores"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,230,'Ora, por certo, são eles mesmos os corruptores, mas não percebem');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,230,'E, quando se lhes diz: "Crede como crêem as dignas pessoas", dizem: "Creremos como crêem os insensatos?" Ora, por certo, são eles mesmos os insensatos, mas não sabem');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,230,'E, quando deparam com os que crêem, dizem: "Cremos" e, quando estão a sós com seus demônios dizem: "Por certo, estamos convosco; somos, apenas, zombadores');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,230,'Allah zombará deles e lhes estenderá sua transgressão, continuando eles às cegas');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,230,'Esses são os que compraram o descaminho pelo preço da orientação. Então, seu comércio não lucrou, e eles não foram guiados');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,230,'Seu exemplo é como o daqueles que acenderam um fogo e, quando este iluminou o que havia ao seu redor, Allah foi-Se-lhes com a luz e deixou-os nas trevas, onde não enxergam');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,230,'São surdos, mudos, cegos: então, não retornam à Fé');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,230,'Ou como o daqueles que, sob intensa chuva do céu, em que há trevas e trovões e relâmpagos, tapam com os dedos os ouvidos, contra os raios ruidosos, para se precatarem da morte. - E Allah está sempre, abarcando os renegadores da Fé');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,230,'O relâmpago quase lhes arrebata as vistas. Cada vez que lhes ilumina o caminho, nele andam e, quando lhos entenebrece, detêm-se. E se Allah quisesse, ir-Se-lhes-ia com o ouvido e as vistas. Por certo, Allah, sobre todas as cousas, é Onipotente');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,230,'Ó humanos! Adorai vosso Senhor, Que vos criou e aos que foram antes de vós, na esperança de serdes piedosos');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,230,'É Ele Quem vos fez da terra leito e do céu, teto edificado; e fez descer do céu água com que fez sair, dos frutos, sustento para vós. Então, não façais semelhantes a Allah, enquanto sabeis');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,230,'E se estais em dúvida acerca do que fizemos descer sobre Nosso servo, fazei vir uma sura igual à dele, e convocai vossas testemunhas, em vez de Allah, se sois verídicos');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,230,'E se não o fizerdes - e não o fareis - guardai-vos do Fogo, cujo combustível são os homens e as pedras. O qual é preparado para os renegadores da Fé');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,230,'E alvissara, Muhammad, aos que crêem e fazem as boas obras que terão Jardins, abaixo dos quais correm os rios. Cada vez que forem sustentados por algo de seus frutos, dirão: "Eis o fruto pelo qual fomos sustentados antes". Enquanto o que lhes for concedido será, apenas, semelhante. E neles, terão esposas puras e neles serão eternos');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,230,'Por certo, Allah não se peja de propor um exemplo qualquer, seja de um mosquito ou de algo superior a este. Então, quanto aos que crêem, eles sabem que ele é a verdade de seu Senhor. E quanto aos que renegam a Fé dizem: "Que deseja Allah com este exemplo?" Com ele, Allah descaminha a muitos e com ele guia a muitos. E não descaminha com ele, senão os perversos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,230,'Que desfazem o pacto de Allah, após havê-lo firmado, e separam o que Allah ordena estar unido e semeiam a corrupção na terra. Esses são os perdedores');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,230,'Como podeis renegar a Allah, enquanto Ele vos deu a vida quando estáveis mortos? Em seguida, far-vos-á morrer; em seguida, dar-vos-á a vida; e finalmente, a Ele sereis retornados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,230,'Ele é Quem criou para vós tudo o que há na terra; em seguida, voltou-Se para o céu e dele formou sete céus. - E Ele, de todas as cousas, é Onisciente');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,230,'E quando teu Senhor disse aos anjos: "Por certo, farei na terra um califa", disseram: "Farás, nela, quem nela semeará a corrupção e derramará o sangue, enquanto nós Te glorificamos, com louvor, e Te sagramos?" Ele disse: "Por certo, sei o que não sabeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,230,'E Ele ensinou a Adão todos os nomes dos seres; em seguida, expô-los aos anjos e disse: "Informai-Me dos nomes desses se sois verídicos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,230,'Disseram: "Glorificado sejas! Não temos ciência outra senão a que nos ensinaste. Por certo, Tu, Tu és O Onisciente, O Sábio"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,230,'Ele disse: "Ó Adão! Informa-os de seus nomes." E, quando este os informou de seus nomes, Ele disse: "Não vos disse que, por certo, sei do Invisível dos céus e da terra e sei o que mostrais e o que ocultáveis?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,230,'E quando dissemos aos anjos: "Prosternai-vos diante de Adão" então, eles prosternaram-se, exceto Iblis. Ele recusou fazê-lo, e se ensoberbeceu
+e foi dos infiéis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,230,'E dissemos: "Ó Adão! Habita tu e tua mulher o Paraíso e dele comei fartamente, onde quiserdes, e não vos aproximeis desta árvore pois seríeis dos injustos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,230,'E Satã fê-los incorrer em erro por causa dela e fê-los sair de onde estavam. E dissemos: "Descei, sendo inimigos uns dos outros. E tereis na terra residência e gozo, até certo tempo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,230,'Então, Adão recebeu palavras de seu Senhor, e Ele Se voltou para ele, remindo-o. Por certo, Ele é O Remissório, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,230,'Dissemos: "Descei todos dele! Então, se vos chega de Mim orientação, por eles nada haverá que temer, e eles não se entristecerão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,230,'"E os que renegarem a Fé e desmentirem Nossos sinais, esses serão os companheiros do Fogo. Nele, serão eternos".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,230,'Ó filhos de Israel! Lembrai-vos de Minha graça, com que vos agraciei, e sede fiéis a Meu pacto, Eu serei Fiel a vosso pacto. E a Mim, então, venerai-Me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,230,'E crede no que fiz descer, confirmando o que está convosco; e não sejais os primeiros renegadores dele. E não vendais Meus sinais por ínfimo preço. E a Mim, então, temei-Me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,230,'E não confundais o verdadeiro com o falso e não oculteis a verdade, enquanto sabeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,230,'E cumpri a oração e concedei a-zakāh, e curvai-vos com os que se curvam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,230,'Ordenais a bondade às outras pessoas e vos esqueceis de vós mesmos, enquanto recitais o Livro? Então, não razoais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,230,'E implorai ajuda, com a paciência e a oração. E por certo, esta oração é bem penosa, exceto para os humildes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,230,'Que pensam que depararão com seu Senhor e que a Ele retornarão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,230,'Ó filhos de Israel! Lembrai-vos de Minha graça, com que vos agraciei, e de que vos preferi aos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,230,'E guardai-vos de um dia em que uma alma nada poderá quitar por outra alma, e não se lhe aceitará intercessão nem se lhe tomará resgate; e eles não serão socorridos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,230,'E lembrai-vos de quando vos salvamos do povo de Faraó, enquanto eles vos infligiam o pior castigo: degolavam vossos filhos e deixavam vivas vossas mulheres. E nisso, houve de vosso Senhor formidável prova.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,230,'E lembrai-vos de quando, por vós, separamos o mar; então salvamo-vos, e afogamos o povo de Faraó, enquanto olháveis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,230,'E lembrai-vos de quando fizemos promessa a Moisés durante quarenta noites; em seguida, depois dele tomastes o bezerro por divindade, e fostes injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,230,'Em seguida, indultamo-vos, depois disso, para serdes agradecidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,230,'E lembrai-vos de quando concedemos a Moisés o Livro e Al Furqān para vos guiardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,230,'E lembrai-vos de quando Moisés disse a seu povo: "Ó meu povo! Por certo, fostes injustos com vós mesmos tomando o bezerro por divindade. Então, voltai-vos arrependidos para vosso Criador, e matai-vos. Isso vos é melhor, junto de vosso Criador." Então, Ele voltou-Se para vós, remindo-vos. Por certo, Ele é O Remissório, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,230,'E lembrai-vos de quando dissestes: "Ó Moisés! Não creremos em ti, até que vejamos Allah, declaradamente." Então, o raio apanhou-vos, enquanto olháveis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,230,'Em seguida, ressuscitamo-vos após vossa morte, para serdes agradecidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,230,'E fizemos sombrear-vos as nuvens, e fizemos descer sobre vós o maná e as codornizes, e dissemos: "Comei das cousas benignas que vos damos por sustento." E eles não foram injustos coNosco, mas foram injustos com si mesmos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,230,'E lembrai-vos de quando dissemos: "Entrai nesta cidade e dela comei, fartamente, onde quiserdes; e entrai pela porta, prosternando-vos, e dizei:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,230,'Mas, os injustos trocaram, por outro dizer, o que lhes havia sido dito; então, fizemos descer sobre os injustos um tormento do céu, pela perversidade que cometiam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,230,'E lembrai-vos de quando Moisés pediu água para seu povo, e dissemos: "Bate na pedra com tua vara." - Então, dela emanaram doze olhos d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,230,'E lembrai-vos de quando dissestes: "Ó Moisés! Não suportaremos um só alimento; então, suplica por nós a teu Senhor nos faça sair algo do que a terra brota: de seus legumes e de seu pepino e de seu alho e de sua lentilha e de sua cebola. "Ele disse: "Trocareis o que é melhor pelo que é pior? Descei a uma metrópole e, por certo, tereis o que pedis!" E a vileza e a humilhação estenderam-se sobre eles, e incorreram em ira de Allah. Isso, porque renegavam os sinais de Allah e matavam, sem razão, os profetas. Isso, porque desobedeceram e cometiam agressão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,230,'Por certo, os crentes e os que praticam o judaísmo e os cristãos e os sabeus, qualquer dentre eles que creu em Allah e no Derradeiro Dia e fez o bem terá seu prêmio junto de seu Senhor; e nada haverá que temer por eles, e eles não se entristecerão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,230,'E lembrai-vos de quando firmamos aliança convosco e elevamos acima de vós o Monte, dizendo: "Tomai com firmeza o que vos concedemos e lembrai-vos do que há nele, na esperança de serdes piedosos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,230,'Em seguida, depois disso,voltastes as costas. E, não fora o favor de Allah para convosco e Sua Misericórdia, seríeis dos perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,230,'E, com efeito, sabeis os que de vós cometeram agressão no sábado, então, dissemo-lhes: "Sede símios repelidos!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,230,'E fizemos dessa punição tormento exemplar para o seu presente e para o seu futuro e exortação para os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,230,'E lembrai-vos de quando Moisés disse a seu povo: "Por certo, Allah ordena-vos que imoleis uma vaca". Disseram: "Toma-nos por objeto
+de zombaria?" Ele disse: "Allah me guarde de ser dos ignorantes!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,230,'Disseram: "Suplica por nós a teu Senhor torne evidente para nós como é ela." Disse: "Ele diz que, por certo, é uma vaca nem velha nem nova, meã, entre estas. Então, fazei o que vos é ordenado."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,230,'Disseram: "Suplica por nós a teu Senhor, torne evidente para nós qual é sua cor." Disse: "Ele diz que, por certo, é uma vaca amarela, de cor viva; alegra os olhadores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,230,'Disseram: "Suplica por nós a teu Senhor, torne evidente para nós como é ela. Por certo, para nós, todas as vacas se assemelham e, por certo, se Deus quiser seremos guiados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,230,'Disse: "Ele diz que, por certo, é uma vaca não dócil para lavrar a terra nem para regar o campo lavrado; sã, sem mancha alguma". Disseram: "Agora chegaste com a verdade." E imolaram-na; e quase não o fizeram.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,230,'E lembrai-vos de quando matastes um homem e disputastes sobre ele. E Allah estava desvendando o que ocultáveis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,230,'Então, dissemos: "Batei-lhe com parte dela". Assim, Allah dá a vida aos mortos e vos faz ver Seus sinais, para razoardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,230,'Em seguida, vossos corações se endureceram depois disso e se tornaram como as pedras, ou mais veementes na dureza. E, por certo, há dentre as pedras aquelas das quais os rios emanam. E, por certo, há dentre elas as que se fendem, e, delas a água sai. E, por certo, há dentre elas as que se baixam por receio de Deus. E Deus não está desatento ao que fazeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,230,'Então, aspirais a que eles creiam em vós, enquanto com efeito, um grupo deles ouvia as palavras de Deus, em seguida, após havê-las entendido, distorciam-nas enquanto sabiam?.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,230,'E quando eles deparam com os crentes, dizem: "Cremos"; e quando estão a sós, uns com os outros dizem: "Vós lhes contais o que Deus sentenciou para vós, a fim de argumentarem, com isso contra vós, diante de vosso Senhor? Então, não razoais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,230,'E não sabem eles que Deus sabe o de que guardam segredo e o que manifestam?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,230,'E dentre eles há iletrados que não sabem do Livro senão vãs esperanças, e nada fazem senão conjeturar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,230,'Então, ai dos que escrevem o Livro com as próprias mãos; e depois disso, dizem: "Isso é de Deus", para o venderem por ínfimo preço! Então, ai deles pelo que escrevem com as próprias mãos! E ai deles pelo que logram!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,230,'E dizem: "O Fogo não nos tocará senão por dias contados". Dize, Muhammad: "Firmastes pacto com Deus, então, Deus não faltará a Seu pacto? Ou dizeis de Deus o que não sabeis?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,230,'Sim! Aqueles que cometem um mal, e são abarcados por seus erros, esses são os companheiros do Fogo. Nele serão eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,230,'E os crentes e os que fazem as boas obras, esses são os companheiros do Paraíso. Nele, serão eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,230,'E lembra-lhes de quando firmamos a aliança com os filhos de Israel: Não adorareis senão a Allah; e tende benevolência para com os pais e os parentes e os órfãos e os necessitados; e dizei aos homens belas palavras e cumpri a oração e concedei az-zakāh; em seguida, exceto poucos de vós, voltastes as costas dando de ombros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,230,'E lembrai-vos de quando firmamos a aliança convosco; "Não derramareis vosso sangue e não vos fareis sair uns aos outros de vossos lares"; em seguida, reconheceste-lo, enquanto o testemunháveis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,230,'Em seguida, ei-vos que vos matais uns aos outros e fazeis sair de seus lares, um grupo de vós, auxiliando-vos contra eles com o pecado e a agressão; e se eles chegam a vós como cativos, resgatai-los, enquanto vos é proibido fazê-los sair. Credes então, numa parte do Livro e renegais a outra parte? E a recompensa de quem de vós faz isso não é senão a ignomínia na vida terrena, e no Dia da Ressurreição serão levados ao mais veemente castigo. E Allah não está desatento ao que fazeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,230,'Esses são os que compraram a vida terrena pela Derradeira Vida. Então, o castigo não se lhes aliviará, e não serão socorridos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,230,'E com efeito, concedemos a Moisés o Livro, e fizemos seguir depois dele, os Mensageiros. E concedemos a Jesus, Filho de Maria, as evidências e amparamo-lo com o Espírito Sagrado. E será que cada vez que um Mensageiro vos chegava com aquilo pelo que vossas almas não se apaixonavam, vós vos ensoberbecíeis? Então, a um grupo desmentíeis, e a um grupo matáveis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,230,'E dizem: "Nossos corações estão encobertos". Não. Mas Deus os amaldiçoou por sua renegação da Fé. Então, quão pouco crêem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,230,'E quando lhes chegou um Livro da parte de Deus confirmando
+o que estava com eles - e eles antes buscavam a vitória sobre os que renegavam a Fé - quando pois, lhes chegou o que já conheciam, renegaram-no. Então, que a maldição de Deus seja sobre os renegadores da Fé!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,230,'Que execrável o preço pelo qual venderam suas almas, ao renegarem o que Allah fez descer, movidos pela revolta de que Allah fizesse descer algo de Seu favor sobre quem Ele quisesse, dentre Seus servos. Então, incorreram em ira sobre ira. E haverá, para os renegadores da Fé, aviltante castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,230,'E, quando se lhes diz: "Crede no que Deus fez descer", dizem: "Cremos no que fora descido sobre nós." E renegam o que houve depois disso, enquanto isso é a Verdade que confirma o que está com eles. Dize: "Por que, então, matastes antes, os profetas de Deus, se sois crentes?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,230,'E com efeito, Moisés chegou-vos com as evidências; em seguida, tomastes o bezerro por divindade, depois dele, enquanto injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,230,'E lembrai-vos de quando firmamos a aliança convosco e elevamos acima de vós o Monte, dizendo: "Tomai com firmeza o que vos concedemos e ouvi." Disseram: "Ouvimos e desobedecemos." E por sua renegação da fé, seus corações foram imbuídos do amor ao bezerro. Dize: "Que execrável o que vossa fé vos ordena, se sois crentes!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,230,'Dize: "Se a Derradeira Morada junto de Deus vos é consagrada com exclusão de outras pessoas, anelai então, a morte se sois verídicos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,230,'E jamais a anelarão pelo que suas mãos anteciparam. E Allah dos injustos é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,230,'E em verdade, encontrá-los-ás os mais ávidos de vida, e mais ainda que os que idolatram. Cada um deles almeja viver mil anos. E a longevidade não o distanciará do castigo. E Allah, do que fazem, é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,230,'Dize, Muhammad: "Quem é inimigo de Gabriel, por certo, ele desceu sobre teu coração, com a permissão de Allah, para confirmar o que havia antes dele e para ser orientação e alvíssaras para os crentes"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,230,'Quem é inimigo de Allah e de Seus anjos e de Seus Mensageiros e de Gabriel e de Miguel, por certo, Allah é inimigo dos renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,230,'E com efeito, fizemos descer para ti versículos evidentes; e não os renegam senão os perversos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,3,230,'E será que cada vez que pactuam um pacto, um grupo deles haverá de rejeitá-lo? Mas a maioria deles não crê.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,3,230,'E quando lhes chegou um Mensageiro da parte de Deus, confirmando o que estava com eles, um grupo daqueles a quem fora concedido o Livro atirou para trás das costas o Livro de Allah, como se não soubessem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,3,230,'E seguiram o que os demônios recitavam acerca do reinado de Salomão. E Salomão não renegou a Fé, mas foram os demônios que a renegaram. Eles ensinaram aos homens a magia e o que fora descido sobre os dois anjos Hãrüt e Mãrüt, na Babilônia. E ambos a ninguém ensinaram, sem antes dizer: "Somos, apenas, tentação; então, não renegues a Fé." E os homens aprenderam de ambos o com que separavam a pessoa de sua mulher. E eles não estavam, com ela, prejudicando a ninguém senão com a permissão de Allah. E eles aprenderam o que os prejudicava e não os beneficiava. E, com efeito, sabiam que quem a adquirisse não teria, na Derradeira Vida, quinhão algum. E, em verdade, que execrável o preço pelo qual venderam suas almas! Se soubessem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,3,230,'E, se eles cressem e fossem piedosos, em verdade, uma boa retribuição de Allah lhes seria melhor. Se soubessem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,3,230,'Ó vós que credes! Não digais a Muhammad "raina", e dizei "unzurnã", e ouvi. E, para os renegadores da Fé, haverá doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,3,230,'Nem os que renegam a Fé, dentre os seguidores do Livro, nem os idólatras, almejariam que de vosso Senhor descesse algum bem sobre vós. E Allah privilegia, com Sua misericórdia, a quem quer. E Allah é Possuidor do magnífico favor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,3,230,'Qualquer versículo que anulemos ou façamos esquecer, faremos chegar um melhor ou igual a ele. Não sabes que Allah, sobre todas as cousas, é Onipotente?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,3,230,'Não sabes que de Allah é a soberania dos céus e da terra, e vós não tendes, além de Allah, nem protetor nem socorredor?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,3,230,'Ou quereis questionar vosso Mensageiro como antes foi questionado Moisés? E quem troca a Fé pela renegação da Fé, com efeito, se descaminhará do caminho certo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,3,230,'Muitos dos seguidores do Livro almejaram por inveja vinda de suas almas, - após haver-se tornado evidente para eles, a Verdade - tornar-vos renegadores da Fé, depois de haverdes crido. Então, indultai-os e tolerai-os, até que Allah faça chegar Sua ordem. Por certo, Allah, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,3,230,'E cumpri a oração e concedei az-zakah. E o que quer de bom que antecipeis a vossas almas, encontrá-lo-eis junto de Allah. Por certo, Allah, do que fazeis, é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,3,230,'E dizem: "Não entrará no Paraíso senão quem é judeu ou cristão." Essas são suas vãs esperanças. Dize: "Trazei vossas provanças, se sois verídicos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,3,230,'Sim! Quem entrega a face a Allah, enquanto benfeitor, terá seu prêmio junto de seu Senhor. E nada haverá que temer por eles, e eles não se entristecerão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,3,230,'E os judeus dizem: "Os cristãos não estão fundados sobre nada." E os cristãos dizem: "Os judeus não estão fundados sobre nada", enquanto eles recitam o Livro! Assim, os que nada sabem dizem algo igual a seu dito. E Allah julgará, entre eles, no Dia da Ressurreição, naquilo de que discrepavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,3,230,'E quem mais injusto que aquele que impede, nas mesquitas de Allah, se mencione Seu Nome, e se esforça em arruiná-las? A esses, não lhes é admissível nelas entrarem senão temerosos. Há para eles na vida terrena, ignomínia e haverá para eles na Derradeira Vida, formidável
+castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,3,230,'E de Allah é o Levante e o Poente. E, para onde quer que vos volteis, lá está a face de Allah. Por certo, Allah é Munificente, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,3,230,'E dizem eles: "Allah tomou para Si um filho!" Glorificado seja Ele! Nada tomou Ele. Mas d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,3,230,'Ele é O Criador Primordial dos céus e da terra, e, quando decreta algo, apenas, diz-lhe: "Sê", então, é.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,3,230,'E os que nada sabem dizem: "Que Allah nos fale ou que um sinal venha a nós!" Assim, os que foram antes deles disseram algo igual a seu dito. Seus corações se assemelham. Com efeito, tornamos evidentes os sinais, para um povo que deles se convence.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,3,230,'Por certo, Nós te enviamos, Muhammad, com a Verdade, como alvissareiro e admoestador. E não serás interrogado acerca dos companheiros do Inferno.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,3,230,'E nem os judeus nem os cristãos se agradarão de ti, até que sigas sua crença. Dize: "Por certo, a Orientação de Allah é a Verdadeira Orientação." Mas, se seguisses suas paixões, após o que te chegou da ciência, não terias, de Allah, nem protetor nem socorredor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,3,230,'Aqueles, a quem concedemos o Livro, recitam-no, como deve ser recitado. Esses crêem nele. E os que o renegam, esses são os perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,3,230,'Ó filhos de Israel! Lembrai-vos de Minha graça, com que vos agraciei, e de que vos preferi aos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,3,230,'E guardai-vos de um dia em que uma alma nada poderá quitar por outra alma, e não se lhe aceitará intercessão nem se lhe tomará resgate; e eles não serão socorridos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,3,230,'E lembrai-vos de quando Abraão foi posto à prova por seu Senhor, com certas palavras, e ele as cumpriu. O Senhor disse: "Por certo, farei de ti dirigente para os homens." Abraão disse: "E de minha descendência?" Allah disse: "Meu pacto não alcançará os injustos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,3,230,'E lembrai-vos de quando fizemos da Casa lugar de visita e segurança para os homens, e dissemos: "Tomai o Maqãm de Abraão por lugar de oração." E recomendamos a Abraão e a Ismael: "Purificai Minha Casa para os que a circundam e para os que estão em retiro e para os que se curvam e se prosternam".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,3,230,'E lembrai-vos de quando Abraão disse: "Senhor meu, faze desta uma cidade de segurança e dá dos frutos, por sustento, a seus habitantes, àqueles, dentre eles, que crêem em Allah e no Derradeiro Dia." AlIah disse: "E a quem renega a Fé, fá-lo-ei gozar, por algum tempo; em seguida, forçá-lo-ei ao castigo do Fogo. E que execrável destino!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,3,230,'E lembrai-vos de quando Abraão levantava os alicerces da Casa, e Ismael também, dizendo: "Senhor nosso! Aceita-a de nós. Por certo, Tu, Tu és O Oniouvinte, O Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,3,230,'"Senhor nosso! E faze de ambos de nós submissos para Ti, e faze de nossa descendência uma comunidade submissa para Ti; e ensina-nos nossos cultos e volta-Te para nós, remindo-nos. Por certo, Tu, Tu és O Remissório, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,3,230,'"Senhor nosso! E manda-Ihes um Mensageiro, vindo deles o qual recitará, para eles, Teus versículos e lhes ensinará o Livro e a Sabedoria e os dignificará. Por certo, Tu, Tu és O Todo-Poderoso, O Sábio!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,3,230,'E quem, pois, rejeita a crença de Abraão senão aquele cuja alma se perde na inépcia? E, com efeito, escolhemo-lo na vida terrena, e por certo, na Derradeira Vida será dos íntegros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,3,230,'Quando seu Senhor lhe disse: "Islamiza-te." Disse: "Islamizo-me, para O Senhor dos mundos".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,3,230,'E Abraão recomendou-a a seus filhos - e assim também, Jacó - dizendo: "Ó filhos meus! Por certo, Allah escolheu para vós a religião; então não morrais senão enquanto muçulmanos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,3,230,'Ou fostes vós testemunhas, quando a morte se apresentou a Jacó quando ele disse a seus filhos: "O que adorareis depois de mim?" Disseram: "Adoraremos a teu deus e ao deus de teus pais - Abraão e Ismael e Isaque - como um Deus Único. E para Ele seremos muçulmanos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,3,230,'Essa é uma nação que já passou. A ela, o que logrou, e a vós, o que lograstes, e não sereis interrogados acerca do que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,3,230,'E eles dizem: "Sede judeus ou cristãos, vós sereis guiados." Dize, Muhammad: "Não, mas seguimos a crença de Abraão, monoteísta sincero, e que não era dos idólatras."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,3,230,'Dizei: "Cremos em Allah e no que foi revelado para nós, e no que fora revelado para Abraão e Ismael e Isaque e Jacó e para as tribos; e no que fora concedido a Moisés e a Jesus, e no que fora concedido aos profetas, por seu Senhor. Não fazemos distinção entre nenhum deles. E para Ele somos muçulmanos".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,3,230,'Então, se eles crerem no mesmo em que vós credes, com efeito, guiar-se-ão; e se voltarem as costas, por certo, estarão em discórdia. Então, Allah te bastará contra eles. E Ele é O Oniouvinte, O Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,3,230,'"Nossa religião é a tintura de Allah e quem melhor que Allah, em tingir? E a Ele estamos adorando."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,3,230,'Dize: "Argumentais conosco sobre Allah, enquanto Ele é O nosso Senhor e vosso Senhor, e a nós, nossas obras, e a vós, vossas obras, e para com Ele somos sinceros?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,3,230,'"Ou dizeis que Abraão e Ismael e Isaque e Jacó e as tribos eram judeus ou cristãos?" Dize: "Sois vós mais sabedores, ou Allah? E quem mais injusto que aquele que oculta um testemunho que tem de Allah? E Allah não está desatento ao que fazeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,3,230,'Essa é uma nação que já passou. A ela, o que logrou, e a vós, o que lograstes, e não sereis interrogados acerca do que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,3,230,'Os insensatos, entre os homens, dirão: "O que os fez voltar as costas a sua direção Quiblah, para a qual estavam virados?" Dize, Muhammad: "É de Allah o Levante e o Poente. Ele guia a quem quer a uma senda reta."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,3,230,'E assim, fizemos de vós uma comunidade mediana para que sejais testemunhas dos homens e para que o Mensageiro seja testemunha de vós. E não fizemos a direção, para a qual tu, Muhammad, estavas virado, senão para saber distinguir quem segue o Mensageiro de quem torna atrás, virando os calcanhares. E, por certo, essa mudança é penosa, exceto para aqueles a quem Allah guia. E não é admissível que Allah vos faça perder as recompensas da Fé. Por certo, Allah, para com os homens, é Compassivo, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,3,230,'Com efeito, vemos o revirar de tua face para o céu. Então, Nós voltar-te-emos, em verdade, para uma direção, que te agrade. Volta, pois, a face rumo à Mesquita Sagrada. E onde quer que estejais, voltai as faces para o seu rumo. E, por certo, aqueles aos quais fora concedido o Livro sabem que isso é a verdade de seu Senhor. E Allah não está desatento ao que fazem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,3,230,'E em verdade, se fizeres vir todos sinais àqueles aos quais fora concedido o Livro eles não seguirão tua direção nem tu seguirás sua direção; e, entre eles, uns não seguirão a direção dos outros. E em verdade, se seguisses suas paixões, após o que te chegou da ciência, por certo, serias, nesse caso, dos injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,3,230,'Aqueles aos quais concedemos o Livro, conhecem-no como conhecem a seus filhos, e por certo, um grupo deles oculta a verdade, enquanto sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,3,230,'A Verdade vem de teu Senhor. Então, não sejas de modo algum, dos contestadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,3,230,'E para cada um há um rumo, para onde Ele o faz voltar-se. Então, emulai-vos, pelas boas ações. De onde quer que estejais, Allah vos fará vir a todos. Por certo, Allah, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,3,230,'E, para onde quer que saias, volta a face rumo à Mesquita Sagrada; e por certo, esta é a Verdade de teu Senhor. E Allah não está desatento ao que fazeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,3,230,'E para onde quer que saias, volta a face rumo à Mesquita Sagrada; e onde quer que estejais, voltai as faces para seu rumo a fim de que não haja, da parte das pessoas, argumentação contra vós, exceto dos injustos entre elas. Então, não os receeis, e receai-Me. -E isso, para que Eu complete Minha graça para convosco, e para vos guiardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,3,230,'Assim enviamo-vos um Mensageiro vindo de vós, que recita para vós Nossos versículos e vos dignifica e vos ensina o Livro e a Sabedoria, e vos ensina o que não sabíeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,3,230,'Então, lembrai-vos de Mim, Eu Me lembrarei de vós. E agradecei-
+Me e não Me renegueis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,3,230,'Ó vós que credes! Implorai ajuda com a paciência e a oração. Por certo, Allah é com os perseverantes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,3,230,'E não digais dos que são mortos no caminho de Allah: "Eles estão mortos." Ao contrário, estão vivos, mas vós não percebeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,3,230,'E em verdade, pomo-vos à prova com algo do medo e da fome e da escassez de riquezas e de pessoas e de frutos. E alvissara o Paraíso aos perseverantes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,3,230,'Àqueles que quando uma desgraça os alcança, dizem: "Por certo, somos de Allah e, por certo, a Ele retornaremos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,3,230,'Sobre esses são as bênçãos e a misericórdia de seu Senhor. E esses são os guiados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,3,230,'Por certo, As-Safa e Al Marwah estão entre os lugares sagrados de Allah. Então, quem quer que faça a peregrinação à Casa ou faça Al Umrah não haverá culpa sobre ele, ao fazer vai-vém entre ambos. E quem faz, voluntariamente uma boa ação, por certo, Allah é Agradecido, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,3,230,'Por certo, os que ocultam o que fizemos descer das evidências e da orientação depois de o havermos tornado evidente para os homens no Livro, a esses Allah os amaldiçoará, e também os amaldiçoarão os amaldiçoadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,3,230,'Exceto os que se voltam arrependidos e se emendam e evidenciam
+a verdade; então, para esses voltar-Me-ei, remindo-os. E Eu sou O Remissório, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,3,230,'Por certo, os que renegam a Fé e morrem enquanto renegadores da Fé, sobre esses será a maldição de Allah e dos anjos e de toda a humanidade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,3,230,'Nela, serão eternos. Não se lhes aliviará o castigo nem se lhes concederá dilação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,3,230,'E vosso Deus é Deus Único. Não existe divindade senão Ele, O Misericordioso, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,3,230,'Por certo, na criação dos céus e da terra e na alternância da noite e do dia e no barco que corre no mar, com o que beneficia a humanidade; e na água que Allah faz descer do céu, com a qual, vivifica a terra depois de morta e nela espalha todo tipo de ser animal, e na mudança dos ventos e das nuvens submetidos entre o céu e a terra, em verdade, nisso tudo, há sinais para um povo que razoa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,3,230,'E dentre os homens, há quem, em vez de Allah, tome semelhantes em adoração, amando-os como se ama a Allah. E os que crêem são mais veementes no amor de Allah. E se os injustos soubessem, quando virem o castigo, que toda a força é de Allah e que Allah é Veemente no castigo, não haveriam adorado os ídolos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,3,230,'Quando os que foram seguidos, ao verem o castigo, romperem
+com os que os seguiram e os laços entre eles se cortarem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,3,230,'E os seguidores dirão: "Se tivéssemos retorno à vida, romperíamos com eles, como eles romperam conosco." Assim, Allah os fará ver que suas obras são aflições para eles. E jamais sairão do Fogo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,3,230,'Ó humanos! Comei do que há na terra, sendo lícito e benigno; e não sigais os passos de Satã. Por certo, ele vos é inimigo declarado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,3,230,'Ele não vos ordena senão o mal e a obscenidade e que digais acerca de Allah o que não sabeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,3,230,'E quando se lhes diz: "Segui o que Allah fez descer", dizem: "Não, mas seguimos aquilo em que encontramos nossos pais." E ainda que seus pais nada razoassem nem se guiassem?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,3,230,'E o exemplo do admoestador para os que renegam a Fé é como o daquele que grita para o animal, que não ouve senão convocar e chamar. São surdos, mudos, cegos, então não razoam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,3,230,'Ó vós que credes! Comei das cousas benignas que vos damos por sustento, e agradecei a Allah, se só a Ele adorais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,3,230,'Ele vos proibiu apenas, a carne do animal morto e o sangue, e a carne de porco, e o que é imolado com a invocação de outro nome que Allah. E quem é impelido a alimentar-se disso, não sendo transgressor nem agressor não haverá pecado sobre ele. Por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,3,230,'Por certo, os que ocultam algo do Livro que Allah fez descer e o vendem por ínfimo preço, esses não devorarão para dentro de seus ventres senão o Fogo, e Allah não lhes falará, no Dia da Ressurreição, nem os dignificará; e terão doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,3,230,'Esses são os que compraram o descaminho pelo preço da orientação, e o castigo pelo perdão. E quanta paciência terão eles para suportar o Fogo!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,3,230,'Isso, porque Allah fez descer o Livro com a Verdade. E por certo, os que discrepam do Livro estão em profunda discórdia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,3,230,'A bondade não está em voltardes as faces para o Levante e para o Poente; mas a bondade é a de quem crê em Allah e no Derradeiro Dia e nos anjos e no Livro e nos profetas; e a de quem concede a riqueza, embora a ela apegado, aos parentes, e aos órfãos, e aos necessitados, e ao filho do caminho e aos mendigos, e aos escravos; e a de quem cumpre a oração e concede az-zakah; e a dos que são fiéis a seu pacto, quando o pactuam; e a dos que são perseverantes na adversidade e no infortúnio e em tempo de guerra. Esses são os que são verídicos e esses são os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,3,230,'Ó vós que credes! É-vos prescrito o talião para o homicídio: o livre pelo livre e o escravo pelo escravo e a mulher pela mulher; e aquele, a quem se isenta de algo do sangue de seu irmão, deverá seguir, convenientemente, o acordo e ressarci-lo, com benevolência. Isso é alívio e misericórdia de vosso Senhor. E quem comete agressão depois disso, terá doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,3,230,'E, no talião, há vida para vós ó dotados de discernimento, para serdes piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,3,230,'É-vos prescrito, quando a morte se apresentar a um de vós, Se deixar bens, fazer testamento aos pais e aos parentes, convenientemente. É dever que impende aos piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,3,230,'E quem o altera, após ouvi-lo, apenas, haverá pecado sobre os que o alteram. Por certo, Allah é Oniouvinte, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,3,230,'E quem teme, por parte do testador, parcialidade ou pecado, e faz reconciliação entre eles, sobre ele não haverá pecado. Por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(183,3,230,'Ó vós que credes! É-vos prescrito o jejum como foi prescrito aos que foram antes de vós, para serdes piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(184,3,230,'Durante dias contados. E quem de vós estiver enfermo ou em viagem, que jejue o mesmo número de outros dias. E impende aos que podem fazê-lo, mas com muita dificuldade, um resgate: alimentar um necessitado. E quem mais o faz, voluntariamente, visando ao bem, ser-lhe-á melhor. E jejuardes vos é melhor. Se soubésseis!.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(185,3,230,'Ramadan é o mês em que foi revelado o Alcorão, como orientação para a humanidade e como evidências da orientação e do critério de julgar. Então, quem de vós presenciar esse mês, que nele jejue; e quem estiver enfermo ou em viagem, que jejue o mesmo número de outros dias. Allah vos deseja a facilidade, e não vos deseja a dificuldade. E fê-lo para que inteireis o número prescrito, e para que magnifiqueis a Allah, porque vos guiou, e para serdes agradecidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(186,3,230,'E quando Meus servos te perguntarem por Mim, por certo, estou próximo, atendo a súplica do suplicante, quando Me suplica. Que eles Me atendam, então, e creiam em Mim, na esperança de serem assisados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(187,3,230,'É-vos lícita, na noite do jejum, a união carnal com vossas mulheres. Elas são para vós vestimentas e vós sois para elas vestimentas. Allah sabia que vos traíeis a vós mesmos a esse respeito, e Ele voltou-Se para vós e indultou-vos. Então, agora, juntai-vos a elas e buscai o que Allah vos prescreveu. E comei e bebei até que se torne evidente para vós, o fio branco do fio negro da aurora. Em seguida, completai o jejum até o anoitecer. E não vos junteis a elas, enquanto estiverdes em retiro nas mesquitas. Esses são os limites de Allah: então, não vos aproximeis deles. Assim, Allah torna evidentes Seus sinais, para os homens, a fim de serem piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(188,3,230,'E não devoreis, ilicitamente, vossas riquezas, entre vós, e não as entregueis em suborno aos juízes, para devorardes, pecaminosamente, parte das riquezas das pessoas, enquanto sabeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(189,3,230,'Perguntam-te pelas luas crescentes. Dize: "São marcas do tempo para a humanidade e também para a peregrinação." E a bondade não está em chegardes a vossas casas pelos fundos; mas, a bondade é a de quem é piedoso. E chegai a vossas casas por suas portas. E temei a Allah, na esperança de serdes bem-aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(190,3,230,'E combatei, no caminho de Allah os que vos combatem, e não cometais agressão. Por certo, Allah não ama os agressores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(191,3,230,'E matai-os, onde quer que os acheis, e fazei-os sair de onde quer que vos façam sair. E a sedição pela idolatria é pior que o morticínio. E não os combatais nas imediações da Mesquita Sagrada, até que eles vos combatam nela. Então, se eles vos combaterem, matai-os. Assim é a recompensa dos renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(192,3,230,'E, se eles se abstiverem, por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(193,3,230,'E combatei-os, até que não mais haja sedição pela idolatria e que a religião seja de Allah. Então, se se abstiverem, nada de agressão, exceto contra os injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(194,3,230,'O Mês Sagrado pelo Mês Sagrado e para as cousas sagradas, o talião. Então, a quem vos agredir, agredi-o de igual modo, como ele vos agrediu. E temei a Allah e sabei que Allah é com os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(195,3,230,'E despendei no caminho de Allah, e não lanceis vossas mãos à ruína. E bem-fazei. Por certo, Allah ama os benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(196,3,230,'E completai a peregrinação e al Umrah por Allah. E, se fordes impedidos de fazê-lo, impender-vos-á o que vos for acessível das oferendas. E não rapeis vossas cabeças, até que as oferendas atinjam seu local de imolação. E quem de vós estiver enfermo ou com moléstia no couro cabeludo, que o obrigue a rapar a cabeça, ímpender-lhe-á um resgate; jejum ou esmola ou sacrifício ritual. E, quando estiverdes em segurança, aquele de vós que cumprir al Umrah e usufruir o que lhe é permitido, até a peregrinação, impender-lhe-á o que lhe for acessível das oferendas. E quem o não encontrar, que jejue três dias, durante a peregrinação, e sete, quando retornardes. Serão dez dias inteiros. Isso para aquele cuja família não resida nas proximidades da Mesquita Sagrada. E temei a Allah e sabei que Allah é Veemente na punição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(197,3,230,'A peregrinação se faz em meses determinados. E quem neles se propõe a peregrinação, então, não haverá união carnal nem perversidade nem contenda, na peregrinação. E o que quer que façais de bom, Allah o sabe. E abastecei-vos; e por certo, o melhor abastecimento é a piedade. E temei-Me, ó dotados de discernimento!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(198,3,230,'Não há culpa sobre vós, ao buscardes favor de vosso Senhor em vossos negócios. E, quando prosseguirdes do monte Arafat, lembrai-vos de Allah junto do Símbolo Sagrado. E lembrai-vos bem d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(199,3,230,'Em seguida, prossegui de onde prosseguem os outros homens; e implorai perdão de Allah. Por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(200,3,230,'E, quando houverdes encerrado vossos ritos então, lembrai-vos de Allah, assim como vos lembráveis de vossos pais ou mais veementemente em lembrança. E, dentre os homens, há quem diga: "Senhor nosso! Concede-nos nosso quinhão na vida terrena." E não terão, na Derradeira Vida, quinhão algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(201,3,230,'E, dentre eles, há quem diga: "Senhor nosso! Concede-nos, na vida terrena, beneficio e na Derradeira Vida, benefício; e guarda-nos do castigo do Fogo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(202,3,230,'Esses terão porção do que lograram. E Allah é Destro no ajuste de contas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(203,3,230,'E invocai a Allah em dias contados. E, quem se apressa e o faz em dois dias, não haverá pecado sobre ele. E quem se atrasa, não haverá pecado sobre ele. Isso para quem é piedoso. E temei a Allah e sabei que a Ele sereis reunidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(204,3,230,'E dentre os homens, há aquele cujo dito, acerca da vida terrena, te admira, Muhammad, e que toma a Allah por testemunha do que há em seu coração, enquanto é o mais veemente inimigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(205,3,230,'E quando volta as costas, esforça-se na terra, em semear nela corrupção e em aniquilar os campos lavrados e os rebanhos. E Allah não ama a corrupção.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(206,3,230,'E quando se lhe diz: "Temei a Allah", a soberba o induz ao pecado. Então, basta-lhe a Geena. E que execrável leito!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(207,3,230,'E dentre os homens há quem se sacrifique em busca do agrado de Allah. E Allah é compassivo para com os servos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(208,3,230,'Ó vós que credes! Entrai na Paz, todos vós, e não sigais os passos de Satã. Por certo, ele vos é inimigo declarado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(209,3,230,'E se tropeçardes, após vos haverem chegado as evidências, sabei que Allah é Todo-Poderoso, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(210,3,230,'Não esperam eles senão que Allah chegue a eles, em dosséis de nuvens, e também os anjos, e que a determinação seja encerrada? E a Allah são retornadas as determinações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(211,3,230,'Pergunta, Muhammad, aos filhos de Israel, quantos sinais evidentes lhes concedemos! E quem troca a graça de Allah, após haver-lhe chegado, por certo, Allah é Veemente na punição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(212,3,230,'A vida terrena aformoseou-se, para os que renegam a Fé, e eles escarnecem dos que crêem. E os que são piedosos estarão acima deles, no Dia da Ressurreição. E Allah dá sustento, sem conta, a quem quer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(213,3,230,'A humanidade era uma só comunidade. Então, Allah enviou os profetas por alvissareiros e admoestadores. E por eles, fez descer o Livro com a Verdade, para julgar entre os homens no de que discrepavam. E não discreparam dele senão aqueles aos quais fora concedido o Livro, após lhes haverem chegado as evidências, movidos por rivalidade entre eles. Então, Allah guiou, com Sua permissão, os que creram para aquilo de que discrepavam da Verdade. E Allah guia a quem quer à senda reta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(214,3,230,'Ou supondes entrareis no Paraíso, enquanto ainda não chegaram a vós provações iguais às dos que foram antes de vós? A adversidade e o infortúnio tocaram-nos e foram estremecidos a tal ponto que o profeta e os que creram com ele disseram: "Quando chegará o socorro de Allah?" Ora, por certo, o socorro de Allah está próximo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(215,3,230,'Perguntam-te pelo que devem despender. Dize: "O que quer que despendais de bom é para os pais e os parentes e os órfãos e os necessitados e o filho do caminho. E o que quer que façais de bom, por certo, Allah é disso, Onisciente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(216,3,230,'É-vos prescrito o combate e ele vos é odioso. E quiçá, odieis algo que vos seja melhor. E quiçá, ameis algo que vos seja pior. E Allah sabe, e vós não sabeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(217,3,230,'Perguntam-te pelo combate no mês sagrado. Dize: "Combater nele é grande pecado. E pecado maior, perante Allah, é afastar os homens do caminho de Allah e renegá-LO, e afastá-los da Mesquita Sagrada e fazer sair dela seus habitantes." E a sedição pela idolatria é pecado maior que o morticínio. E eles não cessarão de combater-vos, até que vos façam apostatar de vossa religião, se eles o puderem. E quem de vós apóstata de sua religião e morre enquanto renegador da Fé, esses terão anuladas suas obras, na vida terrena e na Derradeira Vida. E esses são os companheiros do Fogo. Nele, serão eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(218,3,230,'Por certo, os que creram e os que emigraram e lutaram no caminho de Allah, esses esperam pela misericórdia de Allah. E Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(219,3,230,'Perguntam-te pelo vinho e pelo jogo de azar. Dize: "Há em ambos grande pecado e benefício para os homens e seu pecado é maior que seu benefício." E perguntam-te o que devem despender. Dize: "O sobejo." Assim, Allah torna evidentes para vós os sinais para refletirdes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(220,3,230,'Acerca da vida terrena e da Derradeira Vida. E perguntam-te pelos órfãos. Dize: "Emendar-lhes as condições de vida é o melhor. E se vos misturais a eles, são vossos irmãos." E Allah sabe distinguir o corruptor do emendador. E, se Allah quisesse, embaraçar-vos-ia. Por certo, Allah é Todo-Poderoso, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(221,3,230,'E não esposeis as idólatras, até se tornarem crentes. E em verdade, uma escrava crente é melhor que uma idólatra, ainda que a admireis. E não façais esposar vossas filhas com os idólatras, até se tornarem crentes. E em verdade, um escravo crente é melhor que um idólatra, ainda que o admireis. Estes convocam ao Fogo; enquanto Allah convoca, com Sua permissão, ao Paraíso e ao perdão. E Ele torna evidentes Seus sinais, para os homens, a fim de meditarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(222,3,230,'E perguntam-te pelo menstruo. Dize: "É moléstia". Então, apartai-vos das mulheres, durante o menstruo, e não vos unais a elas, até se purificarem. E, quando se houverem purificado, achegai-vos a elas, por onde Allah vos ordenou. Por certo, Allah ama os que se voltam para Ele, arrependidos,
+e ama os purificados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(223,3,230,'Vossas mulheres são para vós, campo lavrado. Então, achegai-vos a vosso campo lavrado, como e quando quiserdes. E antecipai boas obras, para vós mesmos. E temei a Allah, e sabei que deparareis com Ele. E alvissara, Muhammad, aos crentes o Paraíso!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(224,3,230,'E não façais do nome de Allah barreira a vossos juramentos de não serdes bondosos e piedosos reconciliadores, entre as pessoas. E Allah é Oniouvinte, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(225,3,230,'Allah não vos culpa pela frivolidade em vossos juramentos, mas vos culpa pelo que vossos corações logram. E Allah é Perdoador, Clemente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(226,3,230,'Para os que juram abster-se de estar com suas mulheres, há espera de quatro meses. E se retrocederem, por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(227,3,230,'E se decidirem pelo divórcio, por certo, Allah é Oniouvinte, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(228,3,230,'E que as divorciadas aguardem, elas mesmas, antes de novo casamento, três períodos menstruais e não lhes é lícito ocultarem o que Allah criou em suas matrizes se elas crêem em Allah e no Derradeiro Dia. E nesse ínterim, seus maridos têm prioridade em tê-las de volta, se desejam reconciliação. E elas têm direitos iguais às suas obrigações, convenientemente. E há para os homens um degrau acima delas. E Allah é Todo-Poderoso, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(229,3,230,'O divórcio é permitido por duas vezes. Então, ou reter a mulher convenientemente, ou libertá-la, com benevolência. E não vos é lícito retomardes nada do que lhes haveis concedido, exceto quando ambos temem não observar os limites de Allah. Então, se vós temeis que ambos não observem os limites de Allah, não haverá culpa sobre ambos por aquilo com que ela se resgatar. Esses são os limites de Allah: então, não os transgridais. E quem transgride os limites de Allah, esses são os injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(230,3,230,'E se ele se divorcia dela, pela terceira vez, ela lhe não será lícita novamente até esposar outro marido. E, se este se divorcia dela, não haverá culpa sobre ambos, ao retornarem um ao outro, se pensam observar os limites de Allah. E esses são os limites de Allah, que Ele torna evidentes, para um povo que sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(231,3,230,'E quando vos divorciardes das mulheres e elas atingirem seu prazo de espera retende-as convenientemente ou libertai-as, convenientemente. Mas não as retenhais, prejudicando-as para infligir-lhes agressões. E quem o faz, com efeito, é injusto com si mesmo. E não tomeis os versículos de Allah por objeto de zombaria. E lembrai-vos da graça de Allah para convosco e daquilo que Ele fez descer sobre vós: o Livro e a Sabedoria, com que Ele vos exorta. E temei a Allah e sabei que Allah, de todas as cousas, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(232,3,230,'E quando vos divorciardes das mulheres e elas atingirem seu prazo de espera, não as impeçais de esposarem seus maridos anteriores, quando concordarem entre eles, convenientemente. Com isso, é exortado aquele de vós que crê em Allah e no Derradeiro Dia. Isso vos é mais digno e mais puro. E Allah sabe, e vós não sabeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(233,3,230,'E as mães amamentam seus filhos por dois anos inteiros. Isso, para quem deseja completar a lactação. E impende ao pai o sustento e o vestir delas, convenientemente. A nenhuma alma é imposto senão o que é de sua capacidade. Que nenhuma mãe seja prejudicada por causa de seu filho nem o pai, por causa de seu filho. E impende ao herdeiro fazer o mesmo. E se ambos desejam desmama, de comum acordo e mútua consulta, não haverá culpa sobre ambos. E se desejais amamentar vossos filhos com amas, não haverá culpa sobre vós, quando entregardes, convenientemente, o que prometestes conceder-Ihes. E temei a Allah e sabei que Allah, do que fazeis, é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(234,3,230,'E os que, dentre vós, morrerem e deixarem mulheres, essas aguardem quatro meses e dez dias. Então, quando atingirem seu prazo de espera, não haverá culpa sobre vós, pelo que fizerem com si mesmas convenientemente. E Allah, do que fazeis, é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(235,3,230,'E não há culpa sobre vós em insinuardes às mulheres propostas de casamento, ou em ocultardes essa intenção em vossas almas. Allah sabe que vos estareis lembrando delas; mas não vos comprometais, secretamente com elas, exceto se lhes disserdes dito conveniente. E não decidais consumar os laços matrimoniais até que a prescrição atinja seu termo. E sabei que Allah sabe o que há em vossas almas: então, precatai-vos dEle. E sabei que Allah é Perdoador, Clemente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(236,3,230,'Não há culpa sobre vós se vos divorciais das mulheres, desde que não as hajais tocado ou não hajais proposto faridah(mahr). E mimoseai-as - o próspero, conforme suas posses e o carecente, conforme suas posses - com mimo conveniente. É dever que impende aos benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(237,3,230,'E se vos divorciais delas antes de havê-las tocado, e após haver-lhes proposto faridah, caber-Ihes-á a metade do que houverdes proposto exceto se abrem mão disso, ou o faz aquele em cujas mãos estão os laços matrimoniais. E abrirdes mão disso é mais próximo da piedade. E não vos esqueçais do favor entre vós. Por certo, Allah, do que fazeis, é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(238,3,230,'Custodiai as orações e em particular a oração mediana, e levantai-vos sendo devotos a Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(239,3,230,'Mas se temeis um inimigo, orai andando ou montados. E quando estiverdes em segurança, invocai a Allah e cumpri a oração, como Ele vos ensinou o que não sabíeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(240,3,230,'E os que, entre vós, morrerem e deixarem mulheres, devem deixar testamento a suas mulheres, legando-lhes provisão por um ano, sem fazê-las sair de suas casas. E se elas saírem, não haverá culpa sobre vós pelo que elas fizerem de conveniente com si mesmas. E Allah é Todo-Poderoso, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(241,3,230,'E as divorciadas têm direito de mimo conveniente. É dever que impende aos piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(242,3,230,'Assim, Allah torna evidentes, para vós, Seus versículos, para razoardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(243,3,230,'Não viste, Muhammad, os que saíram de seus lares aos milhares para se precatarem da morte? Então, Allah lhes disse: "Morreis"! Em seguida, Ele deu-lhes a vida. Por certo, Allah é Obsequioso para com os homens. Mas a maioria dos homens não agradece.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(244,3,230,'E combatei no caminho de Allah e sabei que Allah é Oniouvinte, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(245,3,230,'Quem empresta um bom empréstimo a Allah, Ele lho multiplicará muitas vezes. E Allah restringe e prodigaliza sua graça. E a Ele sereis retornados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(246,3,230,'Não viste os dignitários dos Filhos de Israel, depois de Moisés? Quando disseram a um de seus profetas: "Envia-nos um rei, nós combateremos no caminho de Allah", o profeta disse: "Quiçá, não combatêsseis, se vos fosse prescrito o combate?" Disseram: "E por que razão não combateríamos no caminho de Allah, enquanto, com efeito, nos fizeram sair de nossos lares e nos separaram de nossos filhos?" Então, quando lhes foi prescrito o combate, eles, exceto alguns poucos, voltaram as costas. E Allah, dos injustos, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(247,3,230,'E seu profeta lhes disse: "Por certo, Allah, com efeito, enviou-vos Talut por rei." Disseram: "Como ele pode ter a soberania sobre nós, enquanto temos prioridade sobre ele, na soberania, e a ele não foi concedida abundância de riquezas?" O profeta disse: "Por certo, Allah escolheu-o sobre vós, e acrescentou-lhe grandeza em ciência e em força física." E Allah concede Sua soberania a quem quer. E Allah é Munificente, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(248,3,230,'E seu profeta lhes disse: "Por certo, o sinal de sua soberania é que vos chegará a Arca, nela há Serenidade de vosso Senhor e relíquias, das que deixou a família de Moisés e a família de Aarão, os anjos a carregarão. Por certo, há nisso um sinal para vós, se sois crentes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(249,3,230,'E, quando Talut partiu com o exército, disse: "Por certo, Allah vos estará pondo à prova, com um rio. Então, quem dele beber não será mais dos meus, e quem não o provar será dos meus, exceto aquele que apanhar, com a mão, um pouco de água". Então, dele beberam, exceto poucos, dentre eles. E, quando Talut o atravessou, com os que criam com ele, os demais disseram: "Não temos força hoje para combater Golias e seu exército." Os que pensavam que deparariam com Allah, disseram: "Que de vezes, um pequeno grupo venceu um grande grupo, com a permissão de Allah! E Allah é com os perseverantes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(250,3,230,'E, quando saíram ao encontro de Golias e seu exército, disseram: "Senhor nosso! Verte sobre nós paciência e torna firmes nossos passos e socorre-nos, contra o povo renegador da Fé."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(251,3,230,'Então, derrotaram-nos com a permissão de Allah. E Davi matou a Golias, e Allah concedeu-lhe a soberania e ensinou-lhe algo do que Ele quis. E, se Allah não detivesse os homens, uns por outros, a terra corromper-se-ia. Mas Allah é Obsequioso para com os mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(252,3,230,'Esses são os versículos de Allah: recitamo-los, para ti, Muhammad, com a verdade. E, por certo, tu és dos Mensageiros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(253,3,230,'Desses Mensageiros, preferimos uns a outros. Dentre eles, há aquele a quem Allah falou; e a algum deles Ele elevou em escalões e concedemos a Jesus, Filho de Maria, as evidências e amparamo-lo com o Espírito Sagrado. E se Allah quisesse, não se haveriam entrematado os que foram depois deles, após lhes haverem chegado as evidências. Mas discreparam. Então, dentre eles, houve quem cresse e dentre eles, houve quem renegasse a Fé. E, se Allah quisesse, não se haveriam entrematado. Mas Allah faz o que deseja.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(254,3,230,'Ó vós que credes! Despendei do que vos damos por sustento, antes que chegue um dia, em que não haverá venda nem amizade nem intercessão; e os renegadores da Fé, são eles os injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(255,3,230,'Allah, não existe deus senão Ele, O Vivente, Aquele que subsiste por Si mesmo. Não O tomam nem sonolência nem sono. DEle é o que há nos céus e o que há na terra. Quem intercederá junto dEle senão com Sua permissão? Ele sabe seu passado e seu futuro, e nada abarcam de Sua ciência senão aquilo que Ele quer. Seu Trono abrange os céus e a terra e não O afadiga custodiá-los. E Ele é O Altíssimo, O Magnífico.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(256,3,230,'Não há compulsão na religião! Com efeito, distingue-se a retidão da depravação. Então, quem renega os ídolos e crê em Allah, com efeito, ater-se-á a firme alça irrompível. E Allah é Oniouvinte, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(257,3,230,'Allah é O Protetor dos que crêem: fá-los sair das trevas para a luz. E quanto aos que renegam a Fé, seus protetores são os ídolos; fazem-nos sair da luz para as trevas. Esses são os companheiros do Fogo. Nele, serão eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(258,3,230,'Não viste aquele que, porque Allah lhe concedera a soberania, argumentou com Abraão, sobre seu Senhor? Quando Abraão disse: "Meu Senhor é Aquele Que dá a vida e dá a morte", o outro disse: "Eu, também, dou a vida e dou a morte." Abraão disse: "E, por certo, Allah faz vir o sol do Levante; faze-o, pois, vir do Poente." Então, ficou atônito quem renegou a Fé. E Allah não guia o povo injusto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(259,3,230,'Ou aquele que passou por uma aldeia, enquanto deitada abaixo sobre seus tetos? Disse: "Como Allah dará a vida a esta, depois de morta?" Então, Allah fê-lo morrer por cem anos; em seguida, ressuscitou-o. Disse Ele: "Quanto tempo permaneceste morto?" Disse: "Permaneci um dia ou parte de um dia." Allah disse: "Não, mas permaneceste cem anos; então, olha para teu alimento e para tua bebida, nada se alterou. E olha para teu asno - e isso, para que façamos de ti um sinal para a humanidade - e olha para os ossos de teu asno, como os erguemos para recompô-los; em seguida, revestimo-los de carne." E quando isso se tornou evidente, para ele, disse: "Sei que Allah, sobre todas as cousas, é Onipotente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(260,3,230,'E quando Abraão disse: "Senhor meu! Faze-me ver como dás a vida aos mortos." Allah disse: "E não crês ainda?" Abraão disse: "Sim, mas é para que meu coração se tranqüilize." Allah disse: "Então, toma quatro pássaros e aproxima-os de ti, e corta-os; em seguida, coloca parte deles sobre cada montanha; depois, convoca-os: eles chegarão depressa a ti. E sabe que Allah é Todo-Poderoso, Sábio."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(261,3,230,'O exemplo dos que despendem suas riquezas no caminho de Allah é como o de um grão que germina sete espigas; em cada espiga, há cem grãos. E Allah multiplica a recompensa a quem quer. E Allah é Munificente, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(262,3,230,'Os que despendem suas riquezas no caminho de Allah, em seguida, não fazem seguir o que despenderam nem de alarde nem de moléstia, terão seu prêmio junto de seu Senhor. E nada haverá que temer por eles e eles não se entristecerão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(263,3,230,'Dito conveniente e perdão são melhores que esmola seguida de moléstia. E Allah é Bastante a Si mesmo, Clemente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(264,3,230,'Ó vós que credes! Não derrogueis vossas esmolas com o alarde e a moléstia, como quem despende sua riqueza por ostentação, para ser visto pelos homens, e não crê em Allah e no Derradeiro Dia. E seu exemplo é como o de uma rocha, sobre a qual há pó; então, uma chuva intensa a alcança e a deixa lisa. Tais homens não poderão beneficiar-se em nada, do que lograram. E Allah não guia o povo renegador da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(265,3,230,'E o exemplo dos que despendem suas riquezas em busca do agrado de Allah e com a firmeza de suas almas, é como o de um jardim em um outeiro: uma chuva intensa alcançou-o; então, deu em dobro seu fruto. E se chuva intensa não o alcançasse, haveria orvalho. E Allah, do que fazeis, é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(266,3,230,'Acaso, algum de vós almejaria ter um jardim de tamareiras e videiras, abaixo do qual os rios correm, e no qual há toda a espécie de frutos, e que a velhice o alcançasse, enquanto tem indefesa descendência, então, uma tempestade, continente de fogo alcançasse seu jardim e o queimasse? Assim, Allah torna evidentes, para vós os sinais, para refletirdes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(267,3,230,'Ó vós que credes! Despendei das cousas boas que haveis logrado e do que Nós vos fizemos sair da terra. E não recorrais ao que é vil, para dele despenderdes, sendo que o não tomaríeis, a não ser que a ele fechásseis os olhos. E sabei que Allah é Bastante a Si mesmo, Louvável.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(268,3,230,'Satã promete-vos a pobreza e ordena-vos a obscenidade, e Allah promete-vos perdão dEle e favor. E Allah é Munificente, Onisciente');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(269,3,230,'Ele concede a sabedoria a quem quer. E àquele a quem é concedida a sabedoria, com efeito, é-lhe concedido um bem abundante. E não meditam senão os dotados de discernimento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(270,3,230,'E o que quer que despendais ou voteis, em votos, Allah, por certo, o sabe. E não há para os injustos socorredores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(271,3,230,'Se mostrais as esmolas, quão excelente é! Mas se as escondeis e as concedeis aos pobres, é-vos melhor. E Ele vos remirá algo de vossas más obras. E Allah, do que fazeis, é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(272,3,230,'Não te impende, Muhammad, guiá-los para o bom caminho, mas Allah guia a quem quer. E o que quer que despendais de bom é para vós mesmos. E não deveis despender senão para buscar a face de Allah. E o que quer que despendais de bom vos será compensado e não sofrereis injustiça.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(273,3,230,'Dai vossas esmolas aos pobres que, impedidos pelo combate no caminho de Allah, não podem percorrer a terra para ganhar seu sustento. O ignorante supõe-nos ricos, por suas maneiras recatadas. Tu os reconheces por seu semblante; não pedem esmolas aos outros, insistentemente. E o que quer que despendais de bom, por certo, Allah é, disso, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(274,3,230,'Os que despendem suas riquezas, quer de noite quer de dia, secreta e manifestamente, terão seu prêmio junto de seu Senhor e nada haverá que temer por eles e eles não se entristecerão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(275,3,230,'Os que devoram a usura não se levantam senão como se levanta aquele que Satã enfurece com a loucura. Isto porque dizem: "A venda é como a usura". Ao passo que Allah tornou lícita a venda e proibiu a usura. Então, aquele a quem chega exortação de seu Senhor e se abstém da usura, a ele pertencerá o que se consumou e sua questão será entregue a Allah. E quem reincide, esses são os companheiros do Fogo. Nele, serão eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(276,3,230,'Allah extermina a usura e faz crescer as esmolas. E Allah não ama a nenhum ingrato pecador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(277,3,230,'Por certo, os que crêem e fazem as boas obras e cumprem a oração e concedem as esmolas, terão seu prêmio junto de seu Senhor; e nada haverá que temer por eles, e eles não se entristecerão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(278,3,230,'Ó vós que credes! Temei a Allah e deixai o que resta da usura, se sois crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(279,3,230,'E se o não fazerdes, certificai-vos de uma guerra de Allah e de Seu Mensageiro; e se vos voltardes para Allah arrependidos, tereis vosso capital. Não estareis cometendo injustiça nem sofrendo injustiça.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(280,3,230,'E se um devedor estiver em dificuldade, concedei-lhe espera, até que tenha facilidade. E fazerdes caridade vos é melhor. Se soubésseis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(281,3,230,'E guardai-vos de um dia, em que sereis retornados a Allah. Em seguida, cada alma será compensada com o que logrou e eles não sofrerão injustiça.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(282,3,230,'Ó vós que credes! Se contrairdes, uns com os outros, dívida por termo designado, escrevei-a. E que um escrivão vo-lo escreva, entre vós, com a justiça. E que nenhum escrivão se recuse a escrever conforme o que Allah lhe ensinou. Então, que ele escreva e que o devedor dite a dívida e que tema a Allah, seu Senhor, e que dela nada subtraia. E se o devedor for inepto ou indefeso ou incapaz, ele mesmo de ditar, então, que seu tutor dite com a justiça. E tomai duas testemunhas dentre vossos homens. E se não houver dois homens, então um homem e duas mulheres dentre quem vós aceitais por testemunhas, pois, se uma delas se descaminha da lembrança de algo, a outra a fará lembrar. E que as testemunhas não se recusem, quando convocadas para testemunhar. E não vos enfadeis de escrevê-la, pequena ou grande, até seu termo. Isso vos é mais eqüitativo diante de Allah, e mais reto para o testemunho, e mais adequado para que não duvideis; exceto se há mercadoria presente, negociada entre vós: então, não há culpa sobre vós em a não escreverdes. E tomai as testemunhas, se comerciais, e que se não prejudiquem nem escrivão nem testemunha. E se o fizerdes, haverá perversidade em vós. E temei a Allah, e Allah vos ensinará. E Allah, de todas as cousas, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(283,3,230,'E se estais em viagem e não encontrais escrivão, que haja um penhor entregue em mão. E se algum de vós confia a outrem um depósito, então, aquele a quem foi confiado este, restitua seu depósito, e que tema a Allah, seu Senhor. E não oculteis o testemunho. E quem o oculta, por certo, seu coração será pecador. E Allah, do que fazeis, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(284,3,230,'De Allah é o que há nos céus e o que há na terra. E se mostrardes o que há em vossas almas ou o esconderdes, Allah vos pedirá conta disso. Então, Ele perdoa a quem quer e castiga a quem quer. E Allah, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(285,3,230,'O Mensageiro crê no que foi descido para ele de seu Senhor, e, assim também os crentes. Todos crêem em Allah e em Seus anjos e em Seus Livros e em Seus Mensageiros. E dizem: "Não fazemos distinção entre nenhum de Seus Mensageiros." E dizem: "Ouvimos e obedecemos. Rogamos Teu perdão. Senhor nosso! E a Ti será o destino."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(286,3,230,'Allah não impõe a alma alguma senão o que é de sua capacidade. A ela, o que logrou de bom e, contra ela, o que cometeu de mau E dizem: "Senhor nosso! Não nos culpes, se esquecemos ou erramos. Senhor nosso! E não nos carregues de pesados fardos como deles carregaste aos que foram antes de nós. Senhor nosso! E não nos carregues daquilo para o que não temos força. E indulta-nos e perdoa-nos e tem misericórdia de nós. Tu és nosso Protetor; então, socorre-nos contra o povo renegador da Fé."');
+INSERT INTO chapters (id, number, quran_id) VALUES(231,3,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,231,'Alif, Lām, Mīm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,231,'Allah, não existe deus senão Ele, O Vivente, Aquele que subsiste por Si mesmo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,231,'Ele fez descer sobre ti o Livro, com a verdade, para confirmar o que havia antes dele. E fizera descer a Torá e o Evangelho,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,231,'Antes, como orientação para a humanidade; e fez descer Al Furqan. Por certo, os que renegam os sinais de Allah terão veemente castigo. E Allah é Todo-Poderoso, Possuidor de vindita.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,231,'Por certo, de Allah nada se esconde, na terra nem no céu.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,231,'Ele é Quem vos configura, nas matrizes, como quer. Não existe deus senão Ele, O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,231,'Ele é Quem fez descer sobre ti, Muhammad, o Livro, em que há versículos precisos: são eles o fundamento do Livro; e, outros, ambíguos. Então, quanto àqueles em cujos corações há deslize, eles seguem o que há de ambíguo nele em busca da sedição e em busca de sua interpretação, conforme seus intentos. E ninguém sabe sua interpretação senão Allah. E os de ciência arraigada dizem: "Cremos nele. Tudo vem de nosso Senhor." - E não meditam senão os dotados de discernimento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,231,'Senhor nosso! Não nos desvies os corações do caminho reto, após nos haveres guiado; e dadiva-nos, de Tua parte, com misericórdia. Por certo, Tu, Tu és O Dadivoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,231,'"Senhor nosso! Por certo, és Tu Quem juntarás a humanidade em um dia indubitável." Por certo, Allah não falta à promessa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,231,'Por certo, aos que renegam a Fé, de nada lhes valerão as riquezas e os filhos diante de Allah. E esses serão combustível do Fogo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,231,'Seu proceder é como o do povo de Faraó e dos que foram antes deles. Desmentiram Nossos sinais; então, Allah apanhou-os, por seus delitos. E Allah é Veemente na punição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,231,'Dize, Muhammad, aos que renegam a Fé: "Sereis vencidos e reunidos na Geena." E que execrável leito!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,231,'Com efeito, houve para vós, um sinal em duas hostes que se depararam; uma hoste combatia no caminho de Allah, e outra, renegadora da Fé, via-os em dobro, com os próprios olhos. E Allah ampara, com Seu socorro, a quem quer. Por certo, há nisso lição para os dotados de visão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,231,'Aformoseou-se para os homens o amor dos haveres apetitosos: as mulheres e os filhos e os quintais acumulados de ouro e prata e os cavalos assinalados e os rebanhos e os campos lavrados. Isso é o gozo da vida terrena. Mas junto de Allah está o aprazível retorno.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,231,'Dize: "Informar-vos-ei de algo melhor que isso tudo? Para os piedosos, haverá junto ao seu Senhor, Jardins abaixo dos quais correm os rios; nesses, serão eternos e terão mulheres puras e agrado de Allah." E Allah, dos servos, é Onividente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,231,'Os quais dizem: "Senhor nosso! Por certo, cremos: perdoa-nos os delitos e guarda-nos do castigo do Fogo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,231,'Esses são os perseverantes, e os verídicos e os devotos, e os caritativos e os que imploram perdão nas madrugadas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,231,'Allah testemunha - e assim também, os anjos e os dotados de ciência - que não existe deus senão Ele, Que tudo mantém com eqüidade. Não existe deus senão Ele, O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,231,'Por certo, a religião perante Allah é o Islam. E aqueles, aos quais fora concedido o Livro, não discreparam senão após a ciência haver-lhes chegado, movidos por agressividade entre eles. E quem renega os sinais de Allah, por certo, Allah é Destro no ajuste de contas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,231,'E se eles argumentarem contigo, Muhammad, dize: "Entreguei minha face a Allah, e também quem me segue." E dize àqueles aos quais fora concedido o Livro e aos iletrados: "Quereis islamizar-vos?" Então, se se islamizarem, com efeito, guiar-se-ão; e se voltarem as costas, impender-te-á apenas, a transmissão da Mensagem. E Allah, dos servos, é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,231,'Por certo, aos que renegam os sinais de Allah e matam, sem razão, os profetas e matam os que, dentre os homens, ordenam a eqüidade, alvissara-lhes doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,231,'Esses são aqueles cujas obras se anulam na vida terrena e na Derradeira Vida. E não terão socorredores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,231,'Não viste aqueles aos quais fora concedida uma porção do Livro enquanto convocados ao Livro de Allah, para que julgasse, entre eles. Em seguida, um grupo deles voltou as costas, dando-lhe de ombros?.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,231,'Isso porque eles disseram: "O Fogo não nos tocará senão por dias contados." E iludiu-os aquilo que forjaram em sua religião.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,231,'Então, como estarão, quando os juntarmos, em um dia indubitável,
+e cada alma for compensada com o que logrou? E eles não sofrerão injustiça.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,231,'Dize: "Ó Allah, Soberano da soberania! Tu concedes a soberania a quem queres e tiras a soberania a quem queres. E dás o poder a quem queres e envileces a quem queres. O bem está em Tua mão. Por certo, Tu, sobre todas as cousas, és Onipotente".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,231,'"Inseres a noite no dia e inseres o dia na noite, e fazes sair o vivo do morto e fazes sair o morto do vivo, e dás sustento, sem conta, a quem queres."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,231,'Que os crentes não tomem por aliados os renegadores da Fé, ao invés dos crentes. E quem o fizer não terá relação com Allah, exceto se quereis guardar-vos de algo da parte deles. E Allah vos adverte dEle. E a Allah será o destino.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,231,'Dize, Muhammad: "Se escondeis o que há em vossos peitos ou o mostrais, Allah o sabe. E sabe o que há nos céus e o que há na terra. E Allah, sobre todas as cousas, é Onipotente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,231,'Um dia, cada alma encontrará presente o que fez de bem e o que fez de mal; ela almejará que haja longínquo termo entre ela e ele. E Allah vos adverte dEle. E Allah, para com os servos, é Compassivo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,231,'Dize: "Se amais a Allah, segui-me, Allah vos amará e vos perdoará os delitos." E Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,231,'Dize: "Obedecei a Allah e ao Mensageiro." E, se voltarem as costas, por certo, Allah não ama os renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,231,'Por certo, Allah escolheu Adão e Noé, e a família de Abraão, e a família de Imrãn, sobre os mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,231,'São descendentes, uns dos outros. E Allah é Oniouvinte, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,231,'Lembra-lhes de quando a mulher de Imrãn disse: "Senhor meu! Voto-Te o que há em meu ventre, consagrado a Ti; então, aceita-o de mim. Por certo, Tu, Tu és O Oniouvinte, O Onisciente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,231,'E quando deu à luz a ela, disse: "Senhor meu! Por certo, dei à luz uma varoa. E Allah era bem Sabedor de quem ela dera à luz "E o varão não é igual à varoa. E por certo, chamei-lhe Maria. E por certo, entrego-a e sua descendência, à Tua proteção, contra o maldito Satã."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,231,'Então, seu Senhor acolheu-a com bela acolhida, e fe-la crescer belo crescimento. E deixou-a aos cuidados de Zacarias. Cada vez que Zacarias entrava no santuário encontrava junto dela sustento. Ele disse: "Ó Maria! De onde te provém isso?" Ela disse: "De Allah." Por certo, Allah dá sustento, sem conta, a quem quer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,231,'Ali, Zacarias suplicou a seu Senhor. Ele disse: "Senhor meu, dadiva-me, de Tua parte, com descendência primorosa. Por certo, Tu és O Ouvidor da súplica."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,231,'Então, os anjos chamaram-no enquanto orava, de pé no santuário: "Allah alvissara-te o nascimento de Yahia, João, confirmador de um Verbo de Allah; e será senhor e casto, e profeta entre os íntegros."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,231,'Ele disse: "Senhor meu! Como hei de ter um filho, enquanto, com efeito, a velhice me atingiu e minha mulher é estéril?" Ele disse: "Assim é! Allah faz o que quer."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,231,'Zacarias disse: "Senhor meu! Faze-me um sinal." Allah disse: "Teu sinal será que não falarás a ninguém durante três dias, a não ser por gestos. E lembra-te amiúde de teu Senhor e glorifica-O ao anoitecer e ao alvorecer."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,231,'E lembra-lhes, Muhammad, de quando os anjos disseram: "Ó Maria! Por certo, Allah te escolheu e te purificou, e te escolheu sobre as mulheres dos mundos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,231,'"Ó Maria! Sê devota a teu Senhor e prosterna-te e curva-te com os que se curvam."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,231,'Esses são alguns informes do Invisível, que Nós te revelamos. E não estavas junto deles quando lançavam seus cálamos, para saber quem deles cuidaria de Maria. E não estavas junto deles, quando disputavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,231,'Lembra-lhes de quando os anjos disseram: "Ó Maria! Por certo, Allah te alvissara um Verbo, vindo dEle; seu nome é O Messias, Jesus, Filho de Maria, sendo honorável na vida terrena e na Derradeira Vida, e dos achegados a Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,231,'"E falará aos homens, no berço e na maturidade, e será dos íntegros."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,231,'Ela disse: "Senhor meu! Como hei de ter um filho, enquanto nenhum homem me tocou?" Ele disse: "Assim é! Allah cria o que quer. Quando decreta algo, apenas diz-lhe:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,231,'"E ensinar-lhe-á a Escritura e a sabedoria, e a Torá e o Evangelho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,231,'"E fá-lo-á Mensageiro para os filhos de Israel, aos quais dirá:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,231,'');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,231,'');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,231,'E quando Jesus lhes sentiu a renegação da Fé, disse: "Quem são meus socorredores, no caminho para Allah?" Os discípulos disseram: "Nós somos os socorredores de Allah; cremos nEle, e testemunha tu que somos muçulmanos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,231,'"Senhor nosso! Cremos no que fizeste descer e seguimos o Mensageiro. Então, inscreve-nos entre as testemunhas."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,231,'E eles usaram de estratagemas contra Jesus; e Allah usou de estratagemas. E Allah é O Melhor em estratagemas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,231,'Lembra-lhes, Muhammad, de quando Allah disse: "Ó Jesus! Por certo, findarei teus dias na terra e ascender-te-ei até Mim e apartar-te-ei dos que renegam a Fé e farei estar os que te seguiram acima dos que renegam a Fé até o Dia da Ressurreição. Em seguida, a Mim será vosso retorno. E julgarei entre vós, naquilo de que discrepáveis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,231,'Então, quanto aos que renegam a Fé, castigá-los-ei com veemente castigo na vida terrena e na Derradeira Vida. E não terão socorredores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,231,'E quanto aos que crêem e fazem as boas obras, Ele os compensará com seus prêmios. E Allah não ama os injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,231,'Isto, recitamo-lo para ti, dos versículos e da sábia Mensagem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,231,'Por certo, o exemplo de Jesus, perante Allah, é como o de Adão. Ele o criou de pó; em seguida, disse-lhe: "Sê", então foi.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,231,'A Verdade vem de teu Senhor. Então, não sejas de modo algum, dos contestadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,231,'E a quem argumentar contigo, sobre ele depois do que te chegou da ciência, dize: "Vinde, nós convocaremos nossos filhos e vossos filhos, e nossas mulheres e vossas mulheres, e a nós mesmos e a vós mesmos; em seguida, imprecaremos e faremos ser a maldição de Allah sobre os mentirosos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,231,'Por certo, esta é a verdadeira narrativa. E não há deus senão Allah. E por certo, Allah é O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,231,'E se eles voltarem as costas, por certo, Allah é Onisciente dos semeadores da corrupção.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,231,'Dize: "Ó seguidores do Livro! Vinde a uma palavra igual entre nós e vós: não adoremos senão a Allah, e nada Lhe associemos e não tomemos uns aos outros por senhores, além de Allah." E, se voltarem as costas, dizei: "Testemunhai que somos muçulmanos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,231,'Ó seguidores do Livro! Por que argumentais, sobre Abraão, enquanto a Torá e o Evangelho não foram descidos senão depois dele? Então, não razoais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,231,'Ei-vos que argumentais sobre aquilo de que tendes ciência. Então, por que argumentais, sobre aquilo de que não tendes ciência? E Allah sabe, e vós não sabeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,231,'Abraão não era nem judeu nem cristão, mas monoteísta sincero, muslim. E não era dos idólatras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,231,'Por certo, os homens mais dignos de serem achegados a Abraão são os que o seguiram, e este Profeta e os que crêem. E Allah é O Protetor dos crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,231,'Uma facção dos seguidores do Livro almeja descaminhar-vos. E não descaminham senão a si mesmos e não percebem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,231,'Ó seguidores do Livro! Por que renegais os versículos de Allah, enquanto testemunhais que são verdadeiros?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,231,'Ó seguidores do Livro! Por que confundis o verdadeiro com o falso, e ocultais a verdade, enquanto sabeis?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,231,'E uma facção dos seguidores do Livro disse: "Crede no que foi descido sobre os que crêem, no inicio do dia, e renegai-o, no fim dele, na esperança de eles retornarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,231,'"E não confieis a ninguém, exceto a quem segue vossa religião" - dize, Muhammad:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,231,'Ele privilegia, com Sua misericórdia, a quem quer. E Allah é Possuidor do magnífico favor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,231,'E, dentre os seguidores do Livro há quem, se lhe confiares um quintal de ouro, restituir-to-á, e dentre eles, há quem se lhe confiares um dinar, não to restituirá, a menos que permaneças ao pé dele. Isso, porque dizem: "Não há repreensão alguma contra nós, no que concerne aos iletrados." E dizem mentiras acerca de Allah, enquanto sabem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,231,'Sim! Quem é fiel a seu pacto e é piedoso, por certo, Allah ama os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,231,'Por certo, os que vendem o pacto de Allah e seus juramentos por ínfimo preço, esses não terão quinhão algum na Derradeira Vida, nem lhes falará Allah, nem os olhará no Dia da Ressurreição, nem os dignificará; e terão doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,231,'E por certo, há dentre eles um grupo que deturpa, com as próprias línguas, o Livro a fim de que vós o suponhais do Livro, enquanto não é do Livro. E dizem que isso vem de Allah, enquanto não vem de Allah. E dizem mentiras acerca de Allah, enquanto sabem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,231,'Não é admissível que um ser humano, a quem Allah concedeu o Livro e a sabedoria e a profecia diga, em seguida, aos homens: "Sede meus adoradores, em vez de Allah", mas que diga: "Sede mestres devotos, por haverdes ensinado o Livro, e o haverdes estudado."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,231,'E também não é admissível que ele vos ordene tomar os anjos e os profetas por senhores. Ordenar-vos-ia a renegação da Fé, após vos haverdes tornado muçulmanos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,231,'E quando Allah firmou a aliança com os profetas: "Seja o que for que Eu vos haja concedido, de Livro e de Sabedoria, se em seguida, vos chegar um Mensageiro, confirmador do que está convosco, deveis nele crer e deveis o socorrer." Ele disse: "Reconheceis e firmais Meu compromisso com isso?" Disseram: "Reconhecemos." Ele disse: "Então, testemunhai, e sou convosco, entre as testemunhas."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,231,'E quem, depois disso, volta as costas, esses são os perversos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,231,'E acaso, buscam eles religião outra que a de Allah, enquanto, para Ele, se islamizaquem está nos céus e na terra, de bom ou de mau grado, e a Ele serão retornados?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,231,'Dize: "Cremos em Allah e no que foi revelado para nós, e no que fora revelado para Abraão e Ismael e Isaque e Jacó e para as tribos; e no que fora concedido a Moisés e a Jesus, e no que fora concedido aos profetas, por seu Senhor. Não fazemos distinção entre nenhum deles. E para Ele somos muçulmanos".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,231,'E quem busca outra religião que o Islam, ela não lhe será aceita e ele na Derradeira Vida, será dos perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,231,'Como Allah guiará a um povo que renega a Fé, após haver sido crente e haver testemunhado que o Mensageiro é verdadeiro, e lhe haverem chegado as evidências? E Allah não guia o povo injusto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,231,'Esses, sua recompensa será estar, sobre eles, a maldição de Allah e dos anjos e de toda a humanidade');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,231,'Nela, serão eternos. Não se lhes aliviará o castigo nem se lhes concederá dilação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,231,'Exceto os que, depois disso, se voltam arrependidos e se emendam; então, por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,231,'Por certo, aos que renegam a Fé, após haverem sido crentes, em seguida, acrescentam a si mesmos a renegação da Fé não se lhes aceitará o arrependimento; e esses são os descaminhados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,231,'Por certo, os que renegam a Fé e morrem enquanto renegadores da Fé, de nenhum deles se aceitará o conteúdo da terra em ouro, ainda que queira com isso resgatar-se. Esses terão doloroso castigo e não terão socorredores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,231,'Não alcançareis a bondade, até que despendais daquilo que amais. E o que quer que despendais, por certo, Allah é, disso, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,231,'Todo o alimento era lícito aos filhos de Israel, exceto o que Israel proibira a si mesmo antes que a Torá fosse descida. Dize, Muhammad: "Fazei vir, então, a Torá e recitai-a, se sois verídicos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,231,'E os que, depois disso, forjam mentiras acerca de Allah, esses são os injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,231,'Dize: "Allah disse a verdade. Então, segui a crença de Abraão, monoteísta sincero, e que não era dos idólatras"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,231,'Por certo, a primeira Casa de Allah, edificada para os homens, é a que está em Bakkah -Makkah- é abençoada e serve de orientação para os mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,231,'Nela, há sinais evidentes, entre os quais o maqãm de Abraão. E quem nela entra estará em segurança. E por Allah, impende aos homens a peregrinação à Casa, a quem até ela possa chegar. E quem renega isso, saiba que, por certo, Allah é Bastante a Si mesmo, prescindindo dos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,231,'Dize: "Ó seguidores do Livro! Por que renegais os versículos de Allah, enquanto Allah é Testemunha do que fazeis?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,231,'Dize: "Ó seguidores do Livro! Por que afastais os que crêem do caminho de Allah, buscando torná-lo tortuoso, enquanto sois testemunhas de que esse é o caminho certo?" E Allah não está desatento ao que fazeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,3,231,'Ó vós que credes! Se obedeceis a um grupo daqueles, aos quais fora concedido o Livro, eles vos tornarão renegadores da Fé, após haverdes crido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,3,231,'E como podeis renegar a Fé, enquanto se recitam para vós, os versículos de Allah, e enquanto, dentre vós, está Seu Mensageiro? E quem se agarra a Allah, com efeito, será guiado a uma senda reta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,3,231,'Ó vós que credes! Temei a Allah como se deve temê-LO, e não morrais senão enquanto muçulmanos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,3,231,'E agarrai-vos todos à corda de Allah e não vos separeis. E lembrai-vos da graça de Allah para convosco, quando éreis inimigos e Ele vos pôs harmonia entre os corações, e vos tornastes irmãos, por Sua graça. E estáveis a beira do abismo do fogo e Ele, deste, vos salvou. Assim, Allah torna evidentes, para vós Seus sinais, para vos guiardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,3,231,'E que seja formada de vós uma comunidade, que convoque ao bem, e ordene o conveniente, e coíba o reprovável. E esses são os bem-aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,3,231,'E não sejais como os que se separaram e discreparam, após lhes haverem chegado as evidências. E esses terão formidável castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,3,231,'Num dia em que certas faces resplandecerão e outras faces enegrecerão. Então, quanto àqueles, cujas faces enegrecerem, dír-se-lhes-á: "Renegastes a Fé, após haverdes sido crentes? Experimentai, pois, o castigo, porque a renegáveis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,3,231,'E quanto àqueles cujas faces resplandecerem, estarão na misericórdia de Allah. Nela, serão eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,3,231,'Esses são os versículos de Allah: recitamo-los, para ti, com a verdade. E Allah não deseja injustiça para os mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,3,231,'E de Allah é o que há nos céus e o que há na terra, e a Allah são retornadas as determinações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,3,231,'Sois a melhor comunidade que se fez sair, para a humanidade:
+ordenais o conveniente e coibís o reprovável e credes em Allah. E se os seguidores do Livro, cressem, ser-lhes-ia melhor. Dentre eles, há os crentes, mas sua maioria é perversa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,3,231,'Eles não vos prejudicarão senão com moléstia. E se eles vos combaterem, voltar-vos-ão as costas; em seguida, não serão socorridos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,3,231,'A vileza estende-se sobre eles, onde quer que se achem, exceto se estão com proteção de Allah e proteção dos homens. E incorrem em ira de Allah. E sobre eles estende-se a humilhação. Isso porque renegavam os sinais de Allah e matavam sem razão, os profetas. Isso, porque desobedeciam e cometiam agressão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,3,231,'Eles não são todos iguais. Dentre os seguidores do Livro, há uma comunidade reta, que recita os versículos de Allah, nas horas da noite, enquanto se prosterna.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,3,231,'Eles crêem em Allah e no Derradeiro Dia, e ordenam o conveniente e coíbem o reprovável e se apressam para as boas ações. E esses são dos íntegros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,3,231,'E o que quer que façam de bom não lhes será negado. E Allah, dos piedosos, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,3,231,'Por certo, aos que renegam a Fé, de nada lhes valerão as riquezas e os filhos diante de Allah. E esses são os companheiros do Fogo. Nele serão eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,3,231,'O exemplo do que eles despendem nesta vida terrena, é como o de um vento glacial: alcançou um campo lavrado de um povo injusto com si mesmo e aniquilou-o. E Allah não foi injusto com eles, mas eles foram injustos com eles mesmos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,3,231,'Ó vós que credes! Não tomeis por confidentes outros além dos vossos: eles não vos pouparão desventura alguma; almejarão vosso embaraço. De fato, a aversão manifesta-se nas suas bocas, e o que seus peitos escondem é ainda maior. Com efeito, tornamos evidentes, para vós, os sinais. Se razoásseis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,3,231,'Ei-vos que os amais, enquanto eles não vos amam; e vós credes em todo o Livro. E quando eles deparam convosco, dizem: "Cremos". E quando a sós, mordem as pontas dos dedos de rancor contra vós. Dize, Muhammad: "Morrei com vosso rancor!" Por certo, Allah do íntimo dos peitos, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,3,231,'Se algo de bom vos toca, isto os aflige. E se algo de mal vos alcança, com isso jubilam. E se pacientardes e fordes piedosos, sua insídia, em nada vos prejudicará. Por certo, Allah está sempre abarcando o que fazem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,3,231,'E lembra-te de quando, ao amanhecer, deixaste tua família para dispor os crentes em posição de combate. - E Allah é Oniouvinte, Onisciente -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,3,231,'E de quando duas de vossas facções intentaram acovardar-se, enquanto Allah era seu Protetor. E que os crentes, então, confiem em Allah!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,3,231,'E com efeito, Allah socorreu-vos em Badr, enquanto éreis humilhados. Então, temei a Allah, na esperança de serdes agradecidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,3,231,'E de quando disseste aos crentes: "Não vos basta que vosso Senhor vos auxilia com três mil anjos descidos do céu?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,3,231,'Sim, se pacientais e sois piedosos, e os inimigos vos chegam, de imediato, vosso Senhor auxiliar-vos-á com cinco mil anjos assinalados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,3,231,'E Allah não o fez senão como alvíssaras para vós e para que vossos corações se tranquilizassem com isso. E o socorro não vem senão de Allah, O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,3,231,'E socorreu-vos, para cortar uma facção dos que renegaram a Fé, ou para desbaratá-los: então, tornariam malogrados;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,3,231,'Nada da determinação divina te pertence, Muhammad - para Ele voltar-se para eles, remindo-os, ou para castigá-los, pois eles, por certo, são injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,3,231,'E de Allah é o que há nos céus e o que há na terra. Ele perdoa a quem quer e castiga a quem quer. E Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,3,231,'Ó vós que credes! Não devoreis a usura, muitas vezes duplicada; e temei a Allah, na esperança de serdes bem-aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,3,231,'E guardai-vos do Fogo, que é preparado para os renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,3,231,'E obedecei a Allah e ao Mensageiro, na esperança de obterdes misericórdia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,3,231,'E apressai-vos para um perdão de vosso Senhor e para um Paraíso, cuja amplidão é a dos céus e da terra, preparado para os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,3,231,'Que despendem, na prosperidade e na adversidade, e que contêm o rancor, e indultam as outras pessoas e Allah ama os benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,3,231,'E que, quando cometem obscenidade, ou são injustos com eles mesmos, lembram-se de Allah e imploram perdão de seus delitos - e quem perdoa os delitos senão Allah? - e não se obstinam no que fizeram, enquanto sabem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,3,231,'Esses, sua recompensa será o perdão de seu Senhor e Jardins, abaixo dos quais correm os rios; nesses, serão eternos. E que excelente o prêmio dos laboriosos!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,3,231,'Com efeito passaram, antes de vós, procedimentos exemplares de castigo. Então, caminhai na terra, e olhai como foi o fim dos desmentidores!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,3,231,'Este é um esclarecimento, para os homens, e orientação e exortação para os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,3,231,'E não vos desanimeis nem vos entristeçais enquanto sois os superiores se sois crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,3,231,'Se um sofrimento vos tocar, pacientai, pois, com efeito, sofrimento igual havia tocado o povo inimigo. E esses dias alternamo-los entre os homens. E isso, para que Allah conheça os que crêem e escolha de vós mártires - e Allah não ama os injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,3,231,'E para que purgue os que crêem e para que extermine os renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,3,231,'Ou supondes entrareis no Paraíso, enquanto, ainda, não fizestes saber a Allah quais, dentre vós, lutareis, e não O fizestes saber quais os perseverantes?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,3,231,'E com efeito, aneláveis a morte, antes de a deparardes; e, com efeito, viste-la, enquanto olháveis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,3,231,'E Muhammad não é senão Mensageiro; de fato, outros Mensageiros passaram, antes dele. Então, se ele morrer ou for morto, tornareis atrás, virando os calcanhares? E quem torna atrás, virando os calcanhares, em nada prejudicará a Allah. E Allah recompensará os agradecidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,3,231,'E não é admissível que uma pessoa morra senão com a permissão de Allah. É prescrição fixa. E a quem deseja a retribuição da vida terrena, conceder-lhe-emos algo desta; e a quem deseja a retribuição da Derradeira Vida, conceder-lhe-emos algo desta. E recompensaremos
+os agradecidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,3,231,'E quantos profetas houve, junto dos quais numerosos devotos combateram! E não se desanimaram, pelo que os alcançara, no caminho de Allah, nem fraquejaram nem se humilharam. E Allah ama os perseverantes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,3,231,'E seu dito não foi senão dizerem: "Senhor nosso! Perdoa-nos os delitos e os excessos em nossa conduta. E torna-nos firmes os passos e socorre-nos contra o povo renegador da Fé"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,3,231,'Então, Allah concedeu-lhes a retribuição da vida terrena e a aprazível retribuição da Derradeira Vida. E Allah ama os benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,3,231,'Ó vós que credes! Se obedeceis aos que renegam a Fé, eles vos farão tornar atrás, virando os calcanhares: então, tornar-vos-eis perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,3,231,'Mas Allah é vosso Protetor. E Ele é O Melhor dos socorredores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,3,231,'Lançaremos o terror no coração dos que renegam a Fé, por haverem associado a Allah o de que Ele não fez descer comprovação alguma. E sua morada será o Fogo. E que execrável a moradia dos injustos!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,3,231,'E, com efeito, Allah confirmou Sua promessa para convosco, quando, com Sua permissão, vós os trucidastes. Assim foi, até que quando vos acovardastes e disputastes acerca da ordem e desobedecestes, depois de Ele vos fazer ver o que amáveis, fostes derrotados. Houve, dentre vós quem desejasse a vida terrena e houve, dentre vós, quem desejasse a Derradeira Vida. Em seguida, Ele desviou-vos deles para pôr-vos à prova. E, com efeito, Ele vos indultou. E Allah é Obsequioso para com os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,3,231,'Lembrai-vos de quando vos afastáveis, fugindo, sem atentardes para ninguém, enquanto o Mensageiro vos convocava por trás de vós; então, Ele vos retribuiu angústia por angústia, pelo que causastes ao Profeta, e para que vos não entristecêsseis com o que havíeis perdido nem com o que vos havia alcançado. E Allah, do que fazíeis, é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,3,231,'Em seguida, Ele fez descer sobre vós, após a angústia, segurança: um sono que encobriu uma facção de vós, enquanto uma outra facção, com efeito, se preocupava com si mesma, conjeturando, inveridicamente, acerca de Allah, conjeturas do tempo da ignorância. Diziam: "Temos nós algo da determinação?" Dize, Muhammad: "Por certo, toda determinação é de Allah." Eles escondem, nas almas, o que te não manifestam. Dizem: "Se tivéssemos algo da determinação, não haveríamos sido mortos aqui." Dize: "Se estivésseis em vossas casas, em verdade, aqueles, a quem foi prescrita a morte, em combate, haveriam saído ao encontro de seu local de morte." E isso, para que Allah pusesse à prova o que havia em vossos peitos e para que vos purgasse o que havia nos corações. E Allah, do íntimo dos peitos, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,3,231,'Por certo, aqueles dentre vós que voltaram as costas, no dia em que se depararam as duas hostes, é Satã, apenas, que fê-los incorrer em erro por algo que cometeram. E, com efeito, Allah indultou-os. Por certo, Allah é Perdoador, Clemente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,3,231,'Ó vós que credes! Não sejais como os que renegam a Fé e dizem de
+seus irmãos, quando percorrem a terra ou são mortos, em combate:
+"Se houvessem ficado conosco, não haveriam morrido nem haveriam
+sido mortos". Allah fez disso um motivo de aflição nos seus corações. E Allah dá a vida e dá a morte. E Allah, do que fazeis, é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,3,231,'E em verdade, se fordes mortos no caminho de Allah, ou se morrerdes, perdão e misericórdia de Allah serão melhores
+que tudo quanto eles juntarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,3,231,'E em verdade, se morrerdes ou fordes mortos em combate, a Allah sereis reunidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,3,231,'E por uma misericórdia de Allah, tu, Muhammad, te tornaste dócil para eles. E se houvesses sido ríspido e duro de coração, eles se haveriam debandado de teu redor. Então, indulta-os e implora perdão para eles e consulta-os sobre a decisão. E, se decidires algo, confia em Allah. Por certo, Allah ama os confiantes nEle.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,3,231,'Se Allah vos socorre, não tereis sobre vós vencedor algum. E se Ele vos desampara, quem após Ele vos socorrerá? E que em Allah, então, confiem os crentes!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,3,231,'E não é admissível que um profeta defraude algo. E quem defrauda virá, no Dia da Ressurreição, com o que defraudou. Em seguida, cada alma será compensada com o que logrou: e eles não sofrerão injustiça.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,3,231,'Então, será que quem segue o agrado de Allah é como quem incorre em ira de Allah? E a morada deste será a Geena; e que execrável destino!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,3,231,'Eles estão em escalões junto de Allah. E Allah, do que fazem, é Onividente');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,3,231,'Com efeito, Allah fez mercê aos crentes, quando lhes enviou um Mensageiro vindo deles, o qual recita Seus versículos para eles, e os dignifica e lhes ensina o Livro e a Sabedoria. E por certo, antes, estavam em evidente descaminho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,3,231,'Que cousa! Quando uma desgraça vos alcançou, e que, com efeito, vos infligistes, em dobro, ao inimigo, dissestes: "De onde vem isso?" Dize: "Isso vem de vós mesmos!" Por certo, Allah, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,3,231,'E o que vos alcançou, no dia em que se depararam as duas hostes, foi com a permissão de Allah, e para que Ele soubesse dos crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,3,231,'E para que Ele soubesse dos hipócritas. E a estes foi dito: "Vinde combater no caminho de Allah ou defender-nos do inimigo."
+Disseram: "Se soubéssemos que haveria combate, seguir-vos-iamos."
+Eles estavam, nesse dia, mais próximos da renegação da Fé que da crença. Eles dizem com as bocas o que não há nos corações. E Allah é bem Sabedor do que ocultam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,3,231,'São aqueles que, ausentando-se do combate, disseram de seus irmãos mártires: "Se eles nos houvessem obedecido, não haveriam sido mortos." Dize, Muhammad: "Afastai, então, de vós a morte, se sois verídicos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,3,231,'E não suponhas que os que foram mortos no caminho de Allah estejam mortos; ao contrário, estão vivos, junto de seu Senhor, e por Ele sustentados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,3,231,'Jubilosos com o que Allah lhes concedeu de Seu favor. E exultam pelos que, deixados atrás deles, ainda se lhes não ajuntaram: exultam, ainda, por nada haver que temer por eles, e eles não se entristecerão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,3,231,'Exultam por graça de Allah e por Seu favor, e porque Allah não faz perder o prêmio dos crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,3,231,'Daqueles que atenderam a Allah e ao Mensageiro, após o sofrimento que os alcançara, há para os que, dentre eles, bem fizeram e foram piedosos magnífico prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,3,231,'Daqueles aos quais alguns homens disseram: "Por certo, o povo inimigo, com efeito, reuniu hostes contra vós. Então, receai-os."E isso acrescentou-lhes fé, e disseram: "Basta-nos Allah! E que Excelente Patrono!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,3,231,'Então, tornaram, com graça de Allah e favor, não os tocando mal algum; e seguiram o agrado de Allah. E Allah é Possuidor de magnífico favor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,3,231,'Eis Satã: apenas ele vos faz temer seus aliados. Então, não os temais, e temei-Me, se sois crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,3,231,'E que te não entristeçam, Muhammad, os que se apressam para a renegação da Fé. Por certo, eles em nada prejudicarão a Allah. Allah deseja não fazer-lhes quinhão algum, na Derradeira Vida. E terão formidável castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,3,231,'Por certo, os que compraram a renegação da Fé pelo preço da Fé em nada prejudicarão a Allah. E terão doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,3,231,'E que os que renegam a Fé não suponham que o prazo que lhes concedermos seja um bem para eles mesmos. Apenas, concedemo-Ihes prazo, para se acrescentarem em pecado. E terão aviltante castigo!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,3,231,'Não é admissível que Allah deixe os crentes no estado em que estais, até que Ele distinga o mau do bom. E não é admissível que Allah vos faça avistar o Invisível. Mas Allah elege, dentre Seus Mensageiros, a quem quer. Então crede em Allah e em Seus Mensageiros: e, se crerdes e fordes piedosos, tereis magnífico prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,3,231,'E que os que são ávaros com o que Allah lhes concedeu de Seu favor não suponham que isso lhes seja um bem; ao contrário, isso lhes é um mal. No Dia da Ressurreição, estarão cingidos ao pescoço, por aquilo a que se apegarem com avareza. E de Allah é a herança dos céus e da terra. E Allah, do que fazeis, é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,3,231,'Com efeito, Allah ouviu o dito dos que disseram: "Por certo, Allah é pobre, e nós somos ricos!" Inscreveremos o que disseram, e também sua desarrazoada matança de profetas. E diremos: "Experimentai o castigo da Queima!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,3,231,'"Isso, pelo que vossas mãos anteciparam!" E porque Allah não é injusto com os servos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(183,3,231,'São eles os que disseram: "Por certo, Allah recomendou-nos que não crêssemos em Mensageiro algum, até que este nos fizesse vir uma oferenda que fosse consumida pelo fogo." Dize, Muhammad: "Mensageiros, antes de mim, com efeito, chegaram-vos com as evidências e com o que havíeis dito. Então, por que os matastes, se sois verídicos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(184,3,231,'E se eles te desmentem, outros Mensageiros, antes de ti, com efeito, foram desmentidos. Eles chegaram com as evidências e com os Salmos e com o Livro Luminoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(185,3,231,'Cada alma experimentará a morte. E apenas no Dia da Ressurreição, sereis compensados com vossos prêmios. Então, quem for distanciado do Fogo e introduzido no Paraíso, com efeito, triunfará. E a vida terrena não é senão gozo falaz.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(186,3,231,'Em verdade, sereis postos à prova em vossas riquezas e em vós mesmos; e em verdade, ouvireis muitas moléstias daqueles aos quais antes de vós fora concedido o Livro e dos que idolatram. E se pacientardes e fordes piedosos, por certo, isso é da firmeza indispensável em todas as resoluções.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(187,3,231,'E quando Allah firmou aliança com aqueles a quem fora concedido o Livro: "Que vós o torneis evidente, para o povo e não o oculteis"; então, atiraram-no para trás das costas e venderam-no por ínfimo preço. E que execrável o preço pelo qual o venderam!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(188,3,231,'Não suponhas que os que jubilam com o que cometem e amam ser louvados com o que não fizeram, não os suponhas, pois, salvos do castigo. E terão doloroso castigo!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(189,3,231,'E de Allah é a soberania dos céus e da terra. E Allah, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(190,3,231,'Por certo, na criação dos céus e da terra, e na alternância da noite e do dia, há sinais para os dotados de discernimento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(191,3,231,'Que se lembram de Allah, estando de pé e assentados e deitados , e refletem na criação dos céus e da terra e dizem: "Senhor nosso! Não criaste tudo isto em vão. Glorificado sejas! Então, guarda-nos do castigo do Fogo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(192,3,231,'"Senhor nosso! Por certo, àquele que Tu fazes entrar no Fogo, Tu, com efeito, o ignominias. E não há para os injustos socorredores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(193,3,231,'"Senhor nosso! Por certo, ouvimos um pregador que pregava a Fé, dizendo:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(194,3,231,'Senhor nosso! E concede-nos o que nos prometeste por meio de Teus Mensageiros, e não nos ignominies, no Dia da Ressurreição. Por certo, Tu não faltas à promessa."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(195,3,231,'Então, Seu senhor atendeu-os, dizendo: "Por certo, não faço perder o labor de um laborioso, entre vós, seja varão ou varoa: procedeis uns dos outros. Então, aos que emigraram e foram expulsos de seus lares e foram molestados em Meu caminho e combateram e foram mortos em combate remir-Ihes-ei as más obras, e fá-los-ei entrar em Jardins, abaixo dos quais correm os rios, como retribuição de Allah. E junto de Allah está a aprazível retribuição."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(196,3,231,'Não te iluda, Muhammad, a prosperidade nas terras dos que renegam a Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(197,3,231,'É gozo efêmero. Em seguida, sua morada será a Geena. E que execrável leito!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(198,3,231,'Mas os que temem a seu Senhor terão Jardins, abaixo dos quais correm os rios; nesses, serão eternos, como hospedagem de Allah. E o que há junto de Allah é melhor para os virtuosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(199,3,231,'E, por certo, há, dentre os seguidores do Livro, os que crêem em Allah, e no que foi descido para vós, e no que fora descido para eles, sendo humildes para com Allah, não vendendo os sinais de Allah por ínfimo preço. Esses terão seu prêmio junto de seu Senhor. Por certo, Allah é Destro no ajuste de contas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(200,3,231,'Ó vós que credes! Pacientai e perseverai na paciência; e sede constantes na vigilância e temei a Allah, na esperança de serdes bem-aventurados.');
+INSERT INTO chapters (id, number, quran_id) VALUES(232,4,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,232,'Ó homens! Temei a vosso Senhor, Que vos criou de uma só pessoa e desta criou sua mulher e de ambos espalhou pela terra numerosos homens e mulheres. E temei a Allah, em nome de Quem vos solicitais mutuamente, e respeitai os laços consanguíneos. Por certo, Allah, de vós, é Observante.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,232,'E concedei aos órfãos suas riquezas e não troqueis o maligno pelo benigno, e não devoreis suas riquezas, junto com vossas riquezas. Por certo, isso é grande crueldade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,232,'E se temeis não ser eqüitativos para com os órfãos, esposai as que vos aprazam das mulheres sejam duas, três ou quatro. E se temeis não serdes justos, esposai uma só, ou contentai-vos com as escravas que possuís. Isso é mais adequado para que não cometais injustiça.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,232,'E concedei às mulheres no casamento, seus dotes, como dádiva. E, se elas vos cedem voluntariamente algo destes, desfrutai-o, com deleite e proveito.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,232,'E não concedais aos ineptos vossas riquezas que Deus vos fez por arrimo, e dai-lhes sustento delas, e vesti-os, e dizei-lhes palavras bondosas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,232,'E ponde à prova os órfãos, até que atinjam o matrimônio; então se percebeis neles maturidade, entregai-lhes suas riquezas e não as devoreis com dissipação e presteza, antes de eles alcançarem a maioridade. E quem é rico, que se abstenha dessas riquezas. E quem é pobre, que delas desfrute algo convenientemente. E quando lhes entregardes as riquezas, fazei-o perante testemunhas. E basta Deus por Ajustador de contas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,232,'Há para os homens porção do que deixam os pais e os parentes. E há para as mulheres porção do que deixam os pais e os parentes, seja pouco ou muito. É porção preceituada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,232,'E, se os parentes não herdeiros e os órfãos e os necessitados presenciam a divisão da herança dai-lhes algo dela, e dizei-lhes palavras bondosas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,232,'E que receiem pelos órfãos os que se deixarem atrás de si, descendência indefesa, com ela se preocupam. Então que temam a Allah e que digam dito apropriado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,232,'Por certo, os que devoram as riquezas dos órfãos injustamente, apenas devoram fogo, para dentro de seus ventres. E queimar-se-ão em Fogo ardente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,232,'Allah recomenda-vos acerca da herança de vossos filhos: ao homem, cota igual à de duas mulheres. Então se forem mulheres, duas ou acima de duas, terão dois terços do que deixar o falecido. E, se for uma, terá a metade. E aos pais, a cada um deles, o sexto do que deixar o falecido, se este tiver filho. E, se não tiver filho, e seus pais o herdarem, à mãe, o terço. E, se tiver irmãos, à mãe, o sexto. Isso, depois de executado o testamento que houver feito, ou de pagas as dívidas. Entre vossos pais e vossos filhos, não vos inteirais de quais deles vos são mais próximos em benefício. É preceito de Allah. Por certo, Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,232,'E tereis a metade do que vossas mulheres deixarem, se estas não tiverem filho. E se tiverem filho, a vós o quarto do que deixarem. Isso, depois de executado o testamento que houverem feito, ou de pagas as dívidas. E terão elas o quarto do que deixardes, se não tiverdes filho. E, se tiverdes filho, a elas, o oitavo do que deixardes. Isso, depois de executado o testamento que houverdes feito, ou de pagas as dívidas. E, se houver homem ou mulher com herança e em estado de -kalalah - (a pessoa que não tem nenhum filho ou pais para herdar) e tiver um irmão ou uma irmã, a cada um deles o sexto. E, se forem mais que isso, serão sócios no terço, depois de executado o testamento que houver sido feito, ou de pagas as dívidas, sem prejuízo de ninguém. É recomendação de Allah. E Allah é Onisciente, Clemente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,232,'Esses são os limites de Allah. E a quem obedece a Allah e ao Seu Mensageiro, Ele os fará entrar em Jardins, abaixo dos quais correm
+os rios; nesses, serão eternos. E esse é o magnífico triunfo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,232,'E a quem desobedece a Allah e ao Seu Mensageiro e transgride Seus limites, Ele o fará entrar em Fogo; nele será eterno. E terá aviltante castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,232,'E aquelas de vossas mulheres que cometerem obscenidade, então, fazei testemunhar contra elas quatro de vós. E se o testemunharem, retende-as nas casas até que a morte lhes leve a alma, ou que Allah lhes trace um caminho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,232,'E àqueles dois dentre vós, que a cometerem, então, molestai-os. E se ambos se voltarem arrependidos e se emendarem, dai-Ihes de ombros. Por certo, Allah é Remissório, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,232,'Impende a Allah a remissão, apenas, para os que fazem o mal por ignorância, em seguida, logo se voltam arrependidos; então, a esses Allah remitirá. E Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,232,'E a remissão não é para os que fazem más obras até que, no momento em que a morte se apresenta a um deles, diz: "Volto-me arrependido, agora"; nem para os que morrem, enquanto renegadores da Fé. Para esses, preparamos doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,232,'Ó vós que credes! Não vos é lícito herdar às mulheres, contra a vontade delas. E não as impeçais de se casarem de novo, a fim de que vos vades com algo que já lhes havíeis concedido, exceto se elas cometem evidente obscenidade. E convivei com elas, convenientemente. E, se as odiais, pacientai: quiçá, odieis algo, em que Allah faz existir um bem abundante.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,232,'E, se desejais substituir uma esposa em lugar de outra, e haveis concedido a uma delas um quintal de ouro, nada tomeis deste. Tomá-lo-íeis, em sendo infâmia e evidente pecado?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,232,'E como o tomaríeis, enquanto com efeito vos unistes um com o outro, intimamente, e elas firmaram convosco sólida aliança?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,232,'E não esposeis as mulheres que vossos pais esposaram, exceto se isso já se consumou. Por certo, isso é obscenidade e abominação. E que vil caminho!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,232,'É-vos proibido esposardes vossas mães, e vossas filhas, e vossas irmãs, e vossas tias paternas e vossas tias maternas, e as filhas do irmão e as filhas da irmã, e vossas amas-de-leite, e vossas irmãs-de-leite, e as mães de vossas mulheres, e vossas enteadas, que estão em vossa proteção, filhas de vossas mulheres, com as quais consumais o casamento - e, se não haveis consumado com elas, não há culpa sobre vós - e as mulheres de vossos filhos, procriados por vós; e vos é proibido vos juntardes, em matrimônio, a duas irmãs, exceto se isso já se consumou. Por certo, Allah é Perdoador,
+Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,232,'E vos é proibido esposardes as mulheres casadas, exceto as escravas que possuís. É prescrição de Allah para vós. E vos é lícito, além disso, buscardes mulheres com vossas riquezas, para as esposardes, e não para cometerdes adultério. E àquelas com as quais vos deleitardes, concedei-lhes seu dote como direito preceituado. E não há culpa sobre vós, pelo que acordais, mutuamente, depois do preceituado. Por certo, Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,232,'E quem de vós não pode, pelas posses, esposar as crentes livres, que ele tome mulher dentre as jovens crentes que possuís. E Allah é bem Sabedor de vossa fé. Procedeis uns dos outros. Então, esposai-as com a permissão de seus amos, e concedei-lhes seu dote convenientemente, sendo elas castas, não adúlteras e não tendo amantes. E, quando casadas, se então, cometem obscenidade, caber-lhes-á a metade do castigo das mulheres livres. Isso, para quem de vós recear o embaraço do adultério. E pacientardes vos é melhor. E Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,232,'Allah deseja tornar evidente, para vós, o que não sabeis, e guiar-vos aos procedimentos dos que foram antes de vós, e voltar-se para vós. E Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,232,'E Allah deseja perdoar-vos; e os que seguem a lascívia desejam que vos desvieis, com formidável desviar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,232,'Allah deseja aliviar-vos as difículdades. E foi criado frágil o ser humano.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,232,'Ó vós que credes! Não devoreis, ilicitamente, vossas riquezas, entre vós, mas é lícito existir comércio de comum acordo entre vós. E não vos mateis. Por certo, Allah, para convosco, é Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,232,'E a quem o faz, com agressão e injustiça, fá-lo-emos entrar no Fogo. E isso, para Allah é fácil.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,232,'Se evitais os grandes pecados, de que sois coibidos, remir-vos-emos as más obras e far-vos-emos entrar em entrada nobre.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,232,'E não aneleis aquilo por que Allah preferiu alguns de vós a outros. Há, para os homens, porção do que logram, e há para as mulheres, porção do que logram. E pedi a Allah algo de Seu favor. Por certo, Allah, de todas as cousas, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,232,'E para cada um, fizemos herdeiros do que os pais e os parentes deixam. E aqueles com quem firmastes pacto, concedei-Ihes sua porção. Por certo, Allah, de todas as cousas, é Testemunha.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,232,'Os homens têm autoridade sobre as mulheres, pelo que Allah preferiu alguns a outros e pelo que despendem de suas riquezas. Então, as íntegras são devotas, custódias da honra, na ausência dos maridos, pelo que Allah as custodiou. E àquelas de quem temeis a desobediência, exortai-as, pois, e abandonai-as no leito, e batei-lhes. Então, se elas vos obedecem, não busqueis meio de importuná-las. Por certo, Allah é Altíssimo, Grande.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,232,'E se temeis discórdia entre ambos, enviai-lhes um árbitro da família dele e um árbitro da família dela: se ambos desejam reconciliação, Allah estabelecerá a concórdia entre eles. Por certo, Allah é Onisciente, Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,232,'E adorai a Allah e nada Lhe associeis. E tende benevolência para com os pais e os parentes e os órfãos e os necessitados e o vizinho aparentado e o vizinho estranho e o companheiro achegado e o filho do caminho e os escravos que possuís. Por certo, Allah não ama quem é presunçoso, arrogante.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,232,'Os que são ávaros e ordenam a avareza aos outros, e ocultam o que Allah lhes concedeu de Seu favor. E preparamos, para os renegadores da Fé, aviltante castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,232,'E Allah não ama os que despendem suas riquezas, por ostentação para serem vistos pelos outros, e não crêem em Allah nem no Derradeiro Dia. E quem tem Satã por acompanhante, que vil acompanhante tem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,232,'E que lhes impenderia, se cressem em Allah e no Derradeiro Dia e despendessem do que Allah lhes deu por sustento? E Allah deles é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,232,'Por certo, Allah não faz injustiça nem mesmo do peso de um átomo. E se este é uma boa ação, multiplicá-la-á, e concederá, de Sua parte, magnífico prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,232,'Então, como estarão, quando trouxermos de cada comunidade uma testemunha, e te trouxermos, Muhammad, por testemunha contra esses?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,232,'Nesse dia, os que renegam a Fé e desobedecem ao Mensageiro almejarão ser tragados pela terra. E não poderão ocultar de Allah conversação alguma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,232,'Ó vós que credes! Não vos aproximeis da oração, enquanto ébrios, até que saibais o que dizeis, nem mesmo enquanto junub - (impuros após a relação) exceto quando em viagem - até que vos banheis completamente. E, se estais enfermos ou em viagem, ou se um de vós chega de onde se fazem as necessidades, ou se haveis tocado as mulheres e não encontrais água, dirigi-vos a uma superfície pura, tocai-a com as mãos e roçai as faces e os braços, à guisa de ablução. Por certo, Allah é Indulgente, Perdoador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,232,'Não viste, Muhammad, aqueles aos quais fora concedida porção do Livro? Eles compram o descaminho e desejam que vos descaminheis do caminho reto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,232,'E Allah é bem Sabedor de vossos inimigos. E basta Allah por Protetor, e basta Allah por Socorredor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,232,'Dentre os que praticam o judaísmo, há os que alteram o sentido das palavras do Livro e dizem: "Ouvimos e desobedecemos" e "Ouve, oxalá não ouças." E dizem: -Raina- deturpando a verdade, com suas línguas, e difamando a religião. E, se eles dissessem: "Ouvimos e obedecemos" e " Ouve" e "Olha-nos", ser-Ihes-ia melhor e mais reto. Mas Allah os amaldiçoou por sua renegação da Fé. E não crerão, exceto poucos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,232,'Ó vós a quem foi concedido o Livro! Crede no que fizemos descer, confirmando o que está convosco, antes que apaguemos as faces e as reduzamos a nucas ou os amaldiçoemos como amaldiçoamos as pessoas transgressoras do sábado. E a ordem de Allah deve ser cumprida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,232,'Por certo, Allah não perdoa que Lhe associem outra divindade, e perdoa tudo o que for, afora isso, a quem quer. E quem associa a Allah, com efeito, forjará formidável pecado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,232,'Não viste, Muhammad, os que se pretendem dignos? Mas Allah é Quem dignifica a quem quer; e eles não sofrerão injustiça, nem a mínima que seja.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,232,'Olha como forjam mentiras acerca de Allah. E basta isso por evidente pecado!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,232,'Não viste aqueles a quem fora concedida porção do Livro. Crêem em estátuas e ídolos e dizem dos que renegam a Fé: "Esses são os mais bem guiados, no caminho, que os que crêem?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,232,'Esses são os que Allah amaldiçoou. E para quem Allah amaldiçoa, não lhe encontrarás socorredor algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,232,'Têm eles porção de soberania? Então, nesse caso, dela não concederiam aos outros homens um mínimo que fosse.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,232,'Ou invejam eles os homens pelo que Allah lhes concedeu de Seu favor? E, com efeito, concedêramos o Livro e a Sabedoria à família de Abraão; e concedêra-mo-Ihes magnífica soberania.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,232,'Então, dentre eles há quem nele creia e, dentre eles, há quem dele se afaste. E basta a Geena por fogo ardente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,232,'Por certo, aos que renegam Nossos sinais, fá-los-emos entrar em Fogo. Cada vez que suas peles se consumirem, trocá-las-emos por outras peles, para que experimentem o castigo. Por certo, Allah é Todo-Poderoso, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,232,'E aos que crêem e fazem as boas obras, fá-los-emos entrar em Jardins, abaixo dos quais correm os rios; nesses, serão eternos, para todo o sempre. Nesses, terão mulheres puras. E fá-los-emos entrar em sombra sombrosa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,232,'Por certo, Allah vos ordena que restituais os depósitos a seus donos. E quando julgardes entre os homens, que julgueis com justiça. Por certo, quão excelente é isso, a que Allah vos exorta! Por certo, Allah é Oniouvinte, Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,232,'Ó vós que credes! Obedecei a Allah e obedecei ao Mensageiro e às autoridades dentre vós. E se disputais por algo, levai-o a Allah e ao Mensageiro, se sois crentes em Allah e no Derradeiro Dia. Isso é melhor e mais belo, em interpretação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,232,'Não viste, Muhammad, aqueles que pretendem crer no que foi descido para ti, e no que fora descido antes de ti? Desejam percorrer ao julgamento de Al-Taghut(ídolos) enquanto, com efeito, foram ordenados a renegá-lo. E Satã deseja descaminhá-los, com profundo descaminho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,232,'E quando se lhes diz: "Vinde ao que Allah fez descer, e ao Mensageiro", tu vês os hipócritas se afastarem de ti, decididamente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,232,'Então, como estarão, quando uma desgraça os alcançar, pelo que suas mãos anteciparam? Em seguida, chegarão a ti, jurando por Allah: "Não desejamos senão benevolência e concórdia"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,232,'Esses, Allah sabe o que há em seus corações; então, dá-lhes de ombros, mas exorta-os e dize-Ihes às almas dito convincente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,232,'E não enviamos Mensageiro algum senão para ser obedecido, com a permissão de Allah. E se eles, quando foram injustos consigo mesmos, chegassem a ti e implorassem perdão a Allah, e se o Mensageiro implorasse perdão para eles, haveriam encontrado a Allah Remissório, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,232,'Então, por teu Senhor! Não crerão; até que te tomem por árbitro das dissensões entre eles, em seguida, não encontrem, em si mesmos, constrangimento no que julgaste, e até que se submetam, completamente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,232,'E se Nós lhes houvéssemos prescrito:"Matai-vos" ou "Saí de vossos lares", não o haveriam feito, exceto poucos deles. E, se houvessem feito aquilo a que foram exortados, haver-lhes-ia sido melhor e tornar-se-lhes-ia mais firme a crença.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,232,'E, nesse caso, haver-lhes-ía-mos concedido, de Nossa parte, magnífico prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,232,'E havê-los-íamos guiado a uma senda reta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,232,'E quem obedece a Allah e ao Mensageiro, esses estarão com os que Allah agracia: os Profetas e os veracíssimos e os mártires e os íntegros. E que belos companheiros esses!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,232,'Esse é o favor de Allah, e basta Allah por Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,232,'Ó vós que credes! Tomai vossas precauções e saí a campo, em pequenos grupos ou saí todos juntos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,232,'E, por certo, há, dentre vós, quem procrastine o combate. Então, se uma desgraça vos alcança, diz: "Com efeito, Allah agraciou-me por não haver estado com eles presente".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,232,'E se um favor de Allah vos alcança, diz, como se não houvesse afeição entre vós e ele: "Quem dera houvesse estado com eles, então, haveria eu triunfado, com magnífico triunfo!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,232,'Então, que combatam no caminho de Allah os que vendem a vida terrena pela Derradeira Vida. E a quem combate no caminho de Allah, e é morto ou vence, conceder-Ihe-emos magnífico prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,232,'E por que razão não combateis no caminho de Allah e pela salvação dos indefesos, dentre os homens e as mulheres e as crianças, os quais dizem: "Senhor nosso! Faze-nos sair desta cidade, cujos habitantes são injustos e faze-nos, de Tua parte, um protetor e faze-nos, de Tua parte, um socorredor"?.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,232,'Os que crêem combatem no caminho de Allah, e os que renegam a Fé combatem no caminho dos ídolos. Então, combatei os aliados de Satã. Por certo, a insídia de Satã é frágil.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,232,'Não viste, Muhammad, aqueles aos quais foi dito: "Detende vossas mãos e cumpri a oração concedei az-zakah?" Então, quando lhes foi prescrito o combate, eis um grupo deles que receou os homens com o mesmo receio que de Allah, ou com mais veemente receio, e disseram: "Senhor nosso! Por que nos prescreveste o combate? Que, antes, nos houvesses concedido prazo, até um termo próximo." Dize: "O gozo da vida terrena é ínfimo. E a Derradeira Vida é melhor, para quem é piedoso, e não sofrereis injustiça, nem a mínima que seja ".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,232,'Onde quer que estejais, a morte atingir-vos-á, ainda que estejais em elevadas torres. E se algo de bom os alcança, dizem: "Isso é da parte de Allah"; e, se algo de mau os alcança, dizem: "Isso é de ti." Dize: "Tudo é de Allah." Mas por que razão este povo quase não entende conversação alguma?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,232,'O que quer de bom que te alcance é de Allah, e o que quer de mau que te alcance é de ti mesmo. E te enviamos, Muhammad, como Mensageiro para a humanidade. E basta Allah por Testemunha.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,232,'Quem obedece ao Mensageiro, com efeito, obedece a Allah. E quem volta as costas, não te enviamos, sobre eles, por custódio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,232,'E dizem: "Obediência!", e quando se retiram de tua presença, uma facção deles maquina, à noite, outra cousa que o que disseste. Mas Allah escreve o que maquinam. Então, dá-lhes de ombros e confia em Allah. E basta Allah por Patrono.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,232,'E não ponderam eles o Alcorão? E, fosse vindo de outro que Allah, encontrariam nele muitas discrepâncias.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,232,'E quando algum assunto de segurança ou medo lhes chega, divulgam-no. E se eles o levassem ao Mensageiro e às autoridades entre eles, os que o desvendam, por meio desses sabê-lo-iam. E não fora o favor de Allah para convosco e Sua misericórdia, haveríeis, exceto poucos, seguido a Satã.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,232,'Então, combate no caminho de Allah; tu não és responsável senão por ti mesmo. E incita os crentes ao combate. Quiçá, Allah detenha a fúria dos que renegam a Fé. E Allah é mais Veemente na fúria e mais Veemente no tormento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,232,'Quem intercede, com boa intercessão, terá porção dela. E quem intercede, com má intercessão, terá partilha dela. E Allah, sobre todas as cousas, é Preponderante.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,232,'E se fordes saudados com uma saudação, saudai com outra melhor, ou retribuí-a. Por certo, Allah, de todas as cousas, é Ajustador de contas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,232,'Allah, não existe deus senão Ele! Em verdade, Ele vos juntará no indubitável Dia da Ressurreição. E quem mais verídico que Allah em dizê-lo?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,232,'E por que razão vos dividis em dois grupos, no tocante aos hipócritas, enquanto Allah os fez decair pelo que cometeram? Desejais guiar a quem Allah descaminhou? E para quem Allah descaminha, jamais encontrarás caminho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,232,'Eles almejam que renegueis a Fé como eles a renegam, e assim, sereis iguais. Então, não tomeis, dentre eles, aliados, até que emigrem, no caminho de Allah. E se voltarem as costas, apanhai-os e matai-os, onde quer que os encontreis. E não tomeis, dentre eles, aliado nem socorredor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,232,'Exceto os que se vincularem com um povo entre o qual e vós exista aliança, ou os que chegarem a vós com os peitos constritos por combater-vos ou por combater seu povo. E, se Allah quisesse, haver-Ihes-ia dado poder sobre vós, e eles vos haveriam combatido. Então, se se apartarem de vós e não mais vos combaterem e vos lançarem a paz, Allah não vos fará caminho algum contra eles.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,232,'Encontrareis outros que desejam estar em segurança, em relação a vós, e em segurança, em relação a seu povo. Cada vez que forem levados à sedição pela idolatria, nela, fá-los-ão decair. Então, se não se apartam de vós, nem vos lançam a paz, nem detêm as próprias mãos, apanhai-os e matai-os, onde quer que os acheis. E, contra esses, damo-vos evidente autoridade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,232,'E não é admissível que um crente mate a outro crente, exceto se por engano. E quem mata um crente por engano, então, que ele se alforrie um escravo crente e entregue indenização a sua família a menos que esta a dispense, por caridade. E se a vítima é de um povo inimigo de vós, e é crente, que se alforrie um escravo crente. E se é de um povo, entre o qual e vós exista aliança, que se entregue à sua família indenização e se alforrie um escravo crente. E quem não encontra recursos, que jejue, por dois meses seguidos, como volta arrependida para Allah. E Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,232,'E quem mata um crente intencionalmente, sua recompensa será a Geena; nela será eterno, e Allah irar-Se-á contra ele, e amaldiçoá-lo-á e preparar-lhe-á formidável castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,232,'Ó vós que credes! Quando percorrerdes o caminho de Allah certificai-vos da situação, e não digais àquele que vos dirige a saudação do Islam: "Não é crente", buscando com isso, os efêmeros bens da vida terrena pois, junto de Allah, há muitos ganhos. Assim éreis antes, e Allah fez-vos mercê do Islam. Então, certificai-vos. Por certo, Allah, do que fazeis, é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,232,'Não se igualam os ausentes do combate, dentre os crentes não inválidos, e os lutadores no caminho de Allah, com suas riquezas e com si mesmos. Allah prefere os lutadores, com suas riquezas e consigo mesmos, aos ausentes, dando-lhes um escalão acima destes. E a ambos Allah promete a mais bela recompensa. E Allah prefere os lutadores aos ausentes, dando-lhes magnífico prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,232,'Escalões concedidos por Ele, e perdão e misericórdia. E Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,232,'Por certo, àqueles que foram injustos consigo mesmo, os anjos lhes levarão as almas, dizendo: "Em que situação estáveis?" dirão: "Estávamos indefesos na terra." Os anjos dirão: "A terra de Allah não era bastante ampla, para nela emigrardes?" Então, a morada desses será a Geena. E que vil destino!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,232,'Exceto os indefesos, dentre os homens e as mulheres e as crianças, que não têm meios de emigrar e não se guiam a caminho algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,232,'Então, a esses, quiçá, Allah os indulte. E Allah é Indulgente, Perdoador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,3,232,'E quem emigra, no caminho de Allah, encontrará na terra, bastante abrigo - aviltante para o inimigo - e prosperidade. E quem sai de sua casa, emigrando para Allah e seu Mensageiro em seguida a morte atinge-o, com efeito, impenderá a Allah seu prêmio. E Allah é Pedoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,3,232,'E, quando percorrerdes a terra, não haverá culpa sobre vós, em abreviardes as orações, se temeis que os que renegam a Fé vos provem. Por certo, os renegadores da Fé são-vos inimigos declarados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,3,232,'E quando estiveres, Muhammad, com eles e lhes celebrares a oração, que uma facção deles ore contigo e tome suas armas; então, ao terminar a prosternação, que a outra facção esteja atrás de vós. E que esta outra facção que não orou, venha e ore contigo e que tome suas precauções e suas armas. Os que renegam a Fé almejariam que desatentásseis de vossas armas e de vossos pertences; então, atacar-vos-iam de uma só vez. E não haverá culpa sobre vós, em deixardes de lado vossas armas, se sois molestados pela chuva ou estais enfermos. E tomai vossas precauções. Por certo, Allah preparou para os renegadores da Fé aviltante castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,3,232,'E, quando houverdes encerrado a oração, lembrai-vos de Allah, estando de pé ou assentados ou deitados. E, quando estiverdes em segurança, cumpri a oração. Por certo, a oração, para os crentes, é prescrição com tempos marcados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,3,232,'E não vos desanimeis, na busca do povo inimigo; se estais sofrendo, eles também sofrem como vós sofreis, enquanto vós esperais de Allah o que eles não esperam. E Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,3,232,'Por certo, fizemos descer para ti, Muhammad, o Livro com a Verdade, a fim de que julgues entre os homens conforme o que Allah te fez ver. E não sejas defensor dos traidores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,3,232,'E implora perdão a Allah. Por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,3,232,'E não discutas acerca dos que se traem a si mesmos. Por certo, Allah não ama quem é traidor, pecador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,3,232,'Eles se escondem dos homens, e não se escondem de Allah, enquanto Ele está em sua companhia quando maquinam, à noite, o que Lhe não agrada do dito. E Allah está, sempre, abarcando o que fazem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,3,232,'Ei-vos que discutis acerca deles na vida terrena, mas quem discutirá com Allah, acerca deles no Dia da Ressurreição, ou quem será sobre eles patrono?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,3,232,'E quem faz um mal ou é injusto consigo mesmo, em seguida, implora perdão a Allah, encontrará a Allah Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,3,232,'E quem comete um pecado, o cometerá apenas em prejuízo de si mesmo. E Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,3,232,'E quem comete erro ou pecado, em seguida, o atira sobre um inocente, com efeito, carregar-se-á de infâmia e evidente pecado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,3,232,'E, não fora o favor de Allah para contigo, e Sua misericórdia, haveria uma facção deles intentando descaminhar-te. Mas não descaminhariam senão a si mesmos e em nada te prejudicariam. E Allah fez descer, sobre ti, o Livro e a Sabedoria e ensinou-te o que não sabias. E o favor de Allah para contigo é imenso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,3,232,'Nada de bem há em muitas de suas confidências, exceto nas de quem ordena a caridade ou algo conveniente ou a reconciliação entre as pessoas. E a quem o faz, em busca de agrado de Allah, Nós conceder-Ihe-emos magnífico prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,3,232,'E a quem discorda do Mensageiro, após haver-se tornado evidente, para ele a direita direção, e segue caminho outro que o dos crentes, abandoná-lo-emos no caminho que escolheu e fá-lo-emos entrar na Geena. E que vil destino!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,3,232,'Por certo, Allah não perdoa que Lhe associem outra divindade, e perdoa tudo o que for afora isso, a quem quer. E quem associa a Allah, com efeito, se descaminhará com profundo descaminhar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,3,232,'Não invocam, além dEle, senão divindades femininas, e não invocam senão um rebelde Satã!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,3,232,'Allah amaldiçoou-o. E ele disse: "Certamente, tomarei uma porção preceituada de Teus servos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,3,232,'"E certamente descaminhá-los-ei e fá-los-ei nutrir vãs esperanças e ordenar-lhes-ei que cortem as orelhas dos animais de rebanho e ordenar-lhes-ei que desfigurem a criação de Allah." E quem toma Satã por aliado, em vez de Allah, com efeito, se perderá com evidente perdição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,3,232,'Ele lhes faz promessas e fá-los nutrir vãs esperanças. E Satã não lhes promete senão falácias.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,3,232,'Esses, sua morada será a Geena, e eles não encontrarão desta fugida alguma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,3,232,'E aos que crêem e fazem as boas obras, fá-los-emos entrar em Jardins, abaixo dos quais correm os rios; nesses, serão eternos, para todo o sempre. Essa é a promessa de Allah. E quem mais verídico que Allah em dito?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,3,232,'A recompensa não depende de vossos desejos nem dos desejos dos seguidores do Livro. Quem faz mal com ele será recompensado e não encontrará para si, além de Allah, protetor nem socorredor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,3,232,'E quem faz as boas obras, varão ou varoa, enquanto crente, esses entrarão no Paraíso e não sofrerão injustiça, a mínima que seja.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,3,232,'E quem melhor em religião que aquele que entrega sua face a Allah enquanto benfeitor, e segue a crença de Abraão, monoteísta sincero? E Allah tomou Abraão por amigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,3,232,'E de Allah é o que há nos céus e o que há na terra. E Allah está sempre abarcando todas as cousas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,3,232,'E consultam-te, Muhammad, sobre as mulheres. Dize: "Allah vos instrui a respeito delas - e lembrai-vos do que se recita para vós no Livro, sobre as mulheres órfãs às quais não concedeis o que lhes é preceito, enquanto tencionais esposá-las - e a respeito das crianças indefesas; e vos ordena cuidar dos órfãos com eqüidade. E o que quer que façais de bom, por certo, Allah é disso, Onisciente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,3,232,'E, se uma mulher teme de seu marido rejeição ou indiferença, não haverá culpa sobre ambos, se se reconciliam com uma reconciliação. E o reconciliar-se é melhor. E a mesquinhez está, sempre, presente nas almas. E, se bem fizerdes e fordes piedosos, por certo, Allah, do que fazeis, é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,3,232,'E não podereis ser justos com vossas mulheres, ainda que sejais zelosos disso. E não vos desvieis, com total desviar, de nenhuma
+delas, então, a deixaríeis como que suspensa. E, se vos emendais e sois piedosos, por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,3,232,'E se ambos se separam, Allah enriquecerá a cada um deles de Sua munificência. E Allah é Munificente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,3,232,'E de Allah é o que há nos céus e o que há na terra. E, com efeito, recomendamos àqueles, aos quais fora concedido o Livro, antes de vós, e a vós, que temais a Allah. E, se renegais a Fé, por certo, de Allah é o que há nos céus e o que há na terra. E Allah é Bastante a Si Mesmo, Louvável.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,3,232,'E de Allah é o que há nos céus e o que há na terra, e basta Allah por Patrono.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,3,232,'Se Ele quisesse, far-vos-ia ir, ó humanos, e faria vir outros em vosso lugar! E Allah, sobre isso, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,3,232,'Quem deseja a retribuição da vida terrena, saiba que junto de Allah, está a retribuição da vida terrena e da Derradeira Vida. E Allah é Oniouvinte, Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,3,232,'Ó vós que credes! Sede constantes na equanimidade, testemunhando por Allah, ainda que contra vós mesmos, ou contra os pais e os parentes. Quer se trate de rico ou pobre, Allah terá prioridade sobre ambos. Então, não sigais as paixões, para serdes justos. E, se deturpais o testemunho ou dais de ombros, por certo, Allah, do que fazeis, é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,3,232,'Ó vós que credes! Crede em Allah e em Seu Mensageiro e no Livro que Ele fez descer sobre Seu Mensageiro, e no Livro que Ele fizera descer antes. E quem renega a Allah e a Seus anjos e a Seus Livros e a Seus Mensageiros e ao Derradeiro Dia, com efeito, descaminhar-se-á com profundo descaminhar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,3,232,'Por certo, aos que creram, depois renegaram a Fé, em seguida,
+creram, depois renegaram a Fé, em seguida, acrescentaram-se em renegação da Fé, não é admissível que Allah os perdoe nem os guie a caminho algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,3,232,'Alvissara aos hipócritas que terão doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,3,232,'São os que tomam por aliados os renegadores da Fé, em vez dos crentes. Buscarão junto deles o poder? Então, por certo, todo o poder é de Allah');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,3,232,'E, com efeito, Ele fez descer, sobre vós, no Livro que, quando ouvirdes os versículos de Allah, enquanto os ínfíéis os renegam e deles zombam, não deveis sentar-vos com eles, até confabularem, em outra conversação. Senão, seríeis iguais a eles. Por certo, Allah juntará os hipócritas e os renegadores da Fé, na Geena, a todos eles.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,3,232,'Os que espreitam o que ocorrerá para vós; então, se obtendes uma conquista vinda de Allah, dizem: "Não estávamos convosco?" E, se há para os renegadores da Fé porção da conquista, dizem: "Não vos conduzimos e vos defendemos dos crentes?" Então, Allah julgará, entre vós, no Dia da Ressurreição. E Allah não fará aos renegadores da Fé caminho, para triunfarem sobre os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,3,232,'Por certo, os hipócritas procuram enganar a Allah mas Ele é quem os engana. E, quando se levantam para a oração, levantam-se preguiçosos querem ser vistos pelos outros, por ostentação, e não se lembram de Allah, exceto poucos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,3,232,'Hesitantes nisso. Não estão nem com estes nem com aqueles. E para quem Allah descaminha, jamais encontrarás caminho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,3,232,'Ó vós que credes! Não tomeis os renegadores da Fé por aliados, em vez dos crentes. Desejais dar a Allah comprovação evidente contra vós?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,3,232,'Por certo, os hipócritas estarão nas camadas mais profundas do Fogo - e, para eles, não encontrarás socorredor algum -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,3,232,'Exceto os que se voltam arrependidos e se emendam e se agarram a Allah e são sinceros com Allah em sua devoção: então, esses estão com os crentes. E Allah concederá aos crentes magnífico prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,3,232,'Que faria Allah com vosso castigo, se agradeceis e credes? E Allah é Agradecido, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,3,232,'Allah não ama a declaração de maledicência, exceto a de quem sofre injustiça. E Allah é Oniouvinte, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,3,232,'Se mostrais um bem ou se o escondeis, ou se indultais um mal, por certo, Allah é Indulgente, Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,3,232,'Por certo, os que renegam a Allah e a Seus Mensageiros, e desejam fazer distinção entre Allah e Seus Mensageiros, e dizem: "Cremos em uns e renegamos a outros", e desejam tomar, entre isso, um caminho intermediário.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,3,232,'Esses são os verdadeiros renegadores da Fé. E, para os renegadores da Fé, preparamos aviltante castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,3,232,'E aos que crêem em Allah e em Seus Mensageiros e não fazem distinção entre nenhum deles, a esses Allah lhes concederá seus prêmios. E Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,3,232,'Os seguidores do Livro pedem-te que faças descer sobre eles um Livro do céu. E, com efeito, eles pediram a Moisés prova maior que essa, e disseram: "Faze-nos ver a Allah, declaradamente." Então, o raio apanhou-os, por sua injustiça. Em seguida, tomaram o bezerro por divindade, após lhes haverem chegado as evidências; E indultamo-los, por isso. E concedemos a Moisés evidente comprovação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,3,232,'E elevamos acima deles o Monte por causa de sua aliança, e dissemo-lhes: "Entrai pela porta da cidade, prosternando-vos"; e dissemo-lhes: "Não transgridais o sábado"; e firmamos com eles sólida aliança.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,3,232,'Então, amaldiçoamo-los, por haverem desfeito sua aliança e renegado os sinais de Allah, e matado, sem razão os profetas, e por haverem dito: "Nossos corações estão encobertos!" - Não, mas Allah selou-os, por sua renegação da Fé; então, não crêem, exceto poucos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,3,232,'E por sua negação da Fé, e por seu dito de formidável infâmia sobre Maria.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,3,232,'E por seu dito: "Por certo, matamos o Messias, Jesus, Filho de Maria, Mensageiro de Allah. "Ora, eles não o mataram nem o crucificaram, mas isso lhes foi simulado. E, por certo, os que discrepam a seu respeito estão em dúvida acerca disso. Eles não têm ciência alguma disso, senão conjeturas, que seguem. E não o mataram, seguramente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,3,232,'Mas, Allah ascendeu-o até Ele. E Allah é Todo-Poderoso, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,3,232,'E não há ninguém dos seguidores do Livro que, antes de morrer deixe de nele crer. E, no Dia da Ressurreição, ele será testemunha contra eles.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,3,232,'Então, por injustiça dos que praticam o judaísmo, proibimo-lhes cousas benignas, que lhes eram lícitas; e por afastarem a muitos do caminho de Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,3,232,'E por tomarem a usura, enquanto foram coibidos disso; e por devorarem, ilicitamente, as riquezas dos outros homens. E, para os renegadores da Fé, dentre eles, preparamos doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,3,232,'Mas os que dentre eles, estão enraizados na ciência e os crentes crêem no que foi descido para ti e no que fora descido antes de ti. E aos que cumprem a oração e aos que concedem as esmolas e aos crentes em Allah e no Derradeiro Dia, a esses concederemos magnífico prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,3,232,'Por certo, Nós te fizemos revelações, Muhammad, como fizemos a Noé e aos profetas, depois dele. E fizemos revelações a Abraão e a Ismael, e a Isaque e a Jacó, e às tribos e a Jesus, e a Jó e a Jonas, e a Aarão e a Salomão ; e concedemos os Salmos a Davi.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,3,232,'E enviamos Mensageiros, de que, com efeito, te fizemos menção antes e Mensageiros, de que não te fizemos menção; e Allah falou a Moisés efetivamente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,3,232,'Mensageiros por alvissareiros e admoestadores, para que não houvesse, da parte dos humanos, argumentação diante de Allah, após a vinda dos Mensageiros. E Allah é Todo-Poderoso, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,3,232,'Mas Allah testemunha o que fez descer para ti. Ele o fez descer com Sua ciência. E os anjos, também, o testemunham. E basta Allah por Testemunha!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,3,232,'Por certo, os que renegam a Fé e afastam os homens do caminho de Allah, com efeito, descaminham-se, com profundo descaminhar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,3,232,'Por certo, aos que renegam a Fé e são injustos, não é admissível que Allah os perdoe nem os guie a vereda alguma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,3,232,'Exceto à vereda da Geena; nela, serão eternos, para todo o sempre. E isso, para Allah, é fácil.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,3,232,'Ó humanos! Com efeito, o Mensageiro chegou-vos com a Verdade de vosso Senhor; então, crede, é-vos melhor. E, se renegais a Fé, por certo, de Allah é o que há nos céus e na terra. E Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,3,232,'Ó seguidores do Livro! Não vos excedais em vossa religião, e não digais acerca de Allah senão a verdade. O Messias, Jesus, filho de Maria não é senão o Mensageiro de Allah e Seu Verbo, que Ele lançou a Maria, e espírito vindo dEle. Então, crede em Allah e em Seus Mensageiros, e não digais: "Trindade". Abstende-vos de dizê-lo; é-vos melhor. Apenas, Allah é Deus Único. Glorificado seja! Como teria Ele um filho?! DEle é o que há nos céus e o que há na terra. E basta Allah por Patrono!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,3,232,'O Messias não desdenhará ser servo de Allah nem os anjos a Ele achegados. E aos que desdenham Sua adoração e se ensoberbecem, Ele os reunirá, a todos, a Ele.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,3,232,'Então, quanto aos que crêem e fazem as boas obras, Ele os compensará com seus prêmios e lhes acrescentará algo de Seu favor. E, quanto aos que desdenham Sua adoração e se ensoberbecem, Ele os castigará com doloroso castigo, e não encontrarão, para si, além de Allah, protetor nem socorredor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,3,232,'Ó humanos! Com efeito, chegou-vos uma provança de vosso Senhor, e fizemos descer, para vós, evidente luz.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,3,232,'Então, quanto aos que crêem em Allah e a Ele se agarram, fá-los-á entrar em misericórdia, vinda dEle, e em favor, e guiá-los-á até Ele, por uma senda reta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,3,232,'Consultam-te, Muhammad. Dize: "Allah vos instrui sobre "al-kalãlah". Se um homem morre, não tendo filho nem pai, e tendo irmã a esta, a metade do que ele deixar. E ele a herdará, se ela não tem filho. E, se são duas irmãs, a elas os dois terços do que ele deixar. E, se são irmãos homens e mulheres, ao varão, uma cota igual à de duas varoas. Allah torna evidente, para vós, Suas leis, para que vos não descaminheis. E Allah de todas as cousas, é Onisciente."');
+INSERT INTO chapters (id, number, quran_id) VALUES(233,5,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,233,'Ó vós que credes! Sede fiéis aos compromissos. É-vos lícito o animal dos rebanhos, exceto o que se recita para vós, e não torneis lícita a caça, enquanto estais hurum (na umra ou peregrinação). Por certo, Allah decide o que deseja.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,233,'Ó vós que credes! Não profaneis os ritos de Allah, nem o mês sagrado nem os animais em oferenda, nem as guirlandas; e não importuneis os que se estão dirigindo à Casa Sagrada, buscando favor de seu Senhor e agrado. - E, quando não mais estiverdes hurum, caçai. - E que o ódio para com um povo, por haver-vos afastado da Mesquita Sagrada, não vos induza a agredir. E ajudai-vos, mutuamente, na bondade e na piedade. E não vos ajudeis no pecado e na agressão. E temei a Allah. Por certo, Allah é Veemente na punição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,233,'É-vos proibido o animal encontrado morto e o sangue e a carne de porco e o que é imolado com a invocação de outro nome que o de Allah; e o animal estrangulado e o que é morto por espancamento e por queda e por chifradas e o que a fera devora, parcialmente - exceto se o imolais - e o que é imolado em nome dos ídolos; e é-vos proibido que adivinheis o destino por meio de varinhas da sorte. Isso é perversidade. - Hoje, os que renegam a Fé se desesperam de aniquilar vossa religião. Então, não os receeis, e receai-Me. Hoje eu completei vossa religião para vós e completei Minha graça para convosco e agradei-Me do Islam como religião para vós. - Então, quem é impelido pela fome a alimentar-se do que é proibido, sem intuito de pecar, por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,233,'Perguntam-te, Muhammad, o que lhes é lícito. Dize: "São-vos lícitas as cousas benignas e a presa dos animais, caçadores adestrados que ensinastes, conforme Allah vos ensinou. Então, comei do que, para vós, eles retêm, e mencionai sobre isso o nome de Allah. E temei a Allah. Por certo, Allah é Destro no ajuste de contas."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,233,'Hoje, são-vos lícitas as cousas benignas. E o alimento daqueles, aos quais fora concedido o Livro, é-vos lícito. E vosso alimento lhes é lícito. E vos é lícito esposardes as castas entre as crentes, e as castas entre aqueles aos quais fora concedido o Livro, antes de vós, quando lhes concederdes seus prêmios, dotes, sendo castos, não adúlteros, e não as tomando, jamais, por amantes. E quem renega a Fé, com efeito, anular-se-ão suas obras, e estará, na Derradeira Vida, entre os perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,233,'Ó vós que credes! Quando vos levantardes para a oração, lavai as faces e as mãos até os cotovelos - e, com as mãos molhadas, roçai as cabeças - e lavai os pés até os tornozelos. E, se estais impuros (após a relação), purificai-vos. E, se estais enfermos ou em viagem, ou se um de vós chega de onde se fazem as necessidades, ou se haveis tocado as mulheres, e não encontrais água, dirigi-vos a uma superfície pura, tocai-a com as mãos e roçai as faces e os braços, à guisa de ablução. Allah não deseja fazer-vos constrangimento algum, mas deseja purificar-vos e completar Sua graça para convosco, para serdes agradecidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,233,'E lembrai-vos da graça de Allah para convosco e de Sua aliança que firmou convosco, quando dissestes: "Ouvimos e obedecemos." E temei a Allah. Por certo, Allah, do íntimo dos peitos, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,233,'Ó vós que credes! Sede constantes em servir a Allah, sendo testemunhas com equanimidade. E que o ódio para com um povo não vos induza a serdes injustos. Sede justos: isso está mais próximo da piedade. E temei a Allah. Por certo, Allah do que fazeis, é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,233,'Allah promete aos que crêem e fazem as boas obras que terão perdão e magnífico prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,233,'E os que renegam a Fé e desmentem Nossos sinais, esses são os companheiros do Inferno.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,233,'Ó vós que credes! Lembrai-vos da graça de Allah para convosco, quando um grupo intentou estender as mãos contra vós, e Ele lhe deteve as mãos, afastando-as de vós. E temei a Allah. E que em Allah, confiem os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,233,'E, com efeito, Allah firmou a aliança com os filhos de Israel, e enviamos, dentre eles, doze próceres. E Allah disse: "Por certo, estou convosco. Em verdade, se cumpris a oração, e concedeis as esmolas e credes em Meus Mensageiros e os amparais, e emprestais bom empréstimo a Allah, remir-vos-ei as más obras e far-vos-ei entrar em Jardins, abaixo dos quais correm os rios. E quem de vós renega a Fé depois disso, com efeito, descaminhar-se-á do caminho certo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,233,'Então, por haverem desfeito sua aliança, Nós amaldiçoamo-los e tornamo-lhes os corações duros. Alteram o sentido das palavras do Livro e esquecem parte do que lhes fora lembrado. E tu, Muhammad, não cessarás de descobrir traição da parte deles, exceto de poucos. Então, indulta-os e tolera-os. Por certo, Allah ama os benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,233,'E com os que disseram: "Somos cristãos", firmamos também, aliança. Mas eles esqueceram parte do que lhes fora lembrado. Então, suscitamos, entre eles, a inimizade e a aversão, até o Dia da Ressurreição. E Allah informá-los-á do que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,233,'Ó seguidores do Livro! Com efeito, Nosso Mensageiro chegou-vos, para tornar evidente, para vós, muito do que havíeis escondido do Livro, e para abrir mão de muito disso. Por certo, chegou-vos de Allah uma luz e evidente Livro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,233,'Allah guia, com ele, os que seguem Seu agrado aos caminhos da paz; e fá-los sair, com Sua permissão, das trevas para a Luz, e guia-os a uma senda reta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,233,'Com efeito, são renegadores da Fé os que dizem: "Por certo, Allah é o Messias, Filho de Maria." Dize, Muhammad: "Então, quem poderia impedir algo de Allah, se Ele desejasse aniquilar o Messias, filho de Maria, e sua mãe e aos que estão na terra, a todos juntos?" E de Allah é a soberania dos céus e da terra e do que há entre ambos. Ele cria o
+que quer. E Allah, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,233,'E os judeus e os cristãos dizem: "Somos os filhos de Allah e Seus bem-amados." Dize: "Então, por que Ele vos castiga por vossos delitos? Ao contrário, sois seres humanos dentre os demais que Ele criou. Ele perdoa a quem quer e castiga a quem quer. E de Allah é a soberania
+dos céus e da terra e do que há entre ambos. E a Ele será o destino."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,233,'Ó seguidores do Livro! Com efeito, Nosso Mensageiro chegou-vos para tornar evidente, para vós, a Verdade, após um interregno, um intervalo de Mensageiros, para que não digais: "Não nos chegou alvissareiro nem admoestador." Então, de fato, chegou-vos um alvissareiro e admoestador. E Allah, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,233,'E lembra-lhes, Muhammad, de quando Moisés disse a seu povo: "Ó meu povo! Lembrai-vos quando fez, entre vós, profetas e vos fez reis, e concedeu-vos o que não concedera a nenhum dos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,233,'"Ó meu povo! Entrai na terra sagrada, que Allah vos prescreveu, e não volteis atrás: tornar-vos-íeis, pois, perdedores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,233,'Eles disseram: "Ó Moisés, por certo, há nela um povo gigante e por certo, não entraremos nela, até que dela saiam. E, se dela saírem, então nela entraremos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,233,'Dois homens - dos que temiam a Allah - aos quais Allah agraciara disseram: "Entrai pela porta. Então, quando entrardes por ela, por certo, sereis vencedores. E, em Allah, então, confiai, se sois crentes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,233,'Eles disseram: "Ó Moisés! Jamais entraremos nela, enquanto nela permanecerem. Vai, então, tu e teu Senhor,- e combatei. Por certo, nós aqui ficaremos assentados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,233,'Ele disse: "Senhor meu! Por certo, não tenho poder, senão sobre mim mesmo e sobre meu irmão. Então, separa-nos do povo perverso"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,233,'Allah disse: "Então, por certo, ela lhes será proibida por quarenta anos, errando eles, na terra. Então, não te aflijas com o povo perverso"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,233,'E, recita, Muhammad, para eles, com a verdade, a história dos dois filhos de Adão quando fizeram ambos oferenda a Allah, e foi aceita a de um deles, e não foi aceita a do outro. Disse este: "Certamente, matar-te-ei." Disse aquele: "Allah aceita, apenas, a oferenda dos piedosos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,233,'"Em verdade, se me estendes a mão, para matar-me, não te estarei estendendo a mão, para matar-te. Por certo, eu temo a Allah, O Senhor dos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,233,'"Por certo, eu desejo que tu incorras em meu pecado e em teu pecado: então, serás dos companheiros do fogo. E essa é a recompensa dos injustos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,233,'E sua alma induziu-o a matar o irmão; e matou-o, então, tornou-se dos perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,233,'E Allah enviou um corvo, que se pôs a escavar a terra para fazê-lo ver como acobertar o cadáver de seu irmão. Disse ele: "Ai de mim! Sou incapaz de ser como este corvo e acobertar o cadáver de meu irmão?". Então, tornou-se dos arrependidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,233,'Por causa disso, prescrevemos aos filhos de Israel que quem mata uma pessoa, sem que esta haja matado outra ou semeado corrupção na terra, será como se matasse todos os homens. E quem lhe dá a vida será como se desse a vida a todos os homens. E com efeito, Nossos Mensageiros chegaram-lhes com as evidências; em seguida, por certo, muitos deles depois disso, continuaram entregues a excessos na terra.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,233,'A recompensa dos que fazem guerra a Allah e a Seu Mensageiro, e se esforçam em semear a corrupção na terra, não é senão serem mortos ou serem crucificados ou terem cortadas as mãos e os pés, de lados opostos, ou serem banidos da terra. Isso lhes é ignomínia, na vida terrena e na Derradeira Vida, terão formidável castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,233,'Exceto os que se arrependem, antes que deles vos aposseis. Então, sabei que Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,233,'Ó vós que credes! Temei a Allah e buscai os meios de chegar a Ele; e lutai em Seu caminho, na esperança de serdes bem aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,233,'Por certo, os que renegam a Fé, se tivessem tudo o que há na terra e mais outro tanto, para com isso se resgatarem do castigo do Dia da Ressurreição, nada disso lhes seria aceito. E terão doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,233,'Eles desejarão sair do Fogo, e dele não sairão. E terão permanente castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,233,'E ao ladrão e a ladra, cortai-Ihes a ambos, a mão como castigo do que cometeram, e como exemplar tormento de Allah. E Allah é Todo-Poderoso, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,233,'E quem se volta arrependido, depois de sua injustiça e se emenda, por certo, Allah o perdoará. Por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,233,'Não sabes que de Allah é a Soberania dos céus e da terra? Ele castiga a quem quer e perdoa a quem quer. E Allah sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,233,'Ó Mensageiro! Não te entristeçam aqueles que se apressam para a renegação da Fé, dentre os que dizem com as próprias bocas: "Cremos", enquanto os próprios corações não crêem. E dentre os que praticam o judaísmo, há os que sempre dão ouvidos às mentiras e sempre dão ouvidos à outra coletividade que não te chegou. Eles alteram o sentido das palavras. Dizem: "Se isso vos é concedido, aceitai-o e, se não vos é concedido, precatai-vos de aceitá-lo." E para aquele, a quem Allah deseja sua provação, nada lhe poderás fazer, para protegê-lo de Allah. Esses são aqueles cujos corações Allah não deseja purificar. Terão, na vida terrena, ignomínia e terão na Derradeira Vida formidável castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,233,'Eles dão sempre ouvidos às mentiras e sempre devoram o ganho ilícito. Então, se chegam a ti, julga entre eles, ou lhes dá de ombros. E, se lhes dás de ombros, em nada eles poderão prejudicar-te. E, se julgas, julga entre eles, com equanimidade. Por certo, Allah ama os equânimes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,233,'Mas como eles te tomam como juiz, enquanto têm a Torá em que há o julgamento de Allah? Em seguida, depois disso, voltam as costas. E esses não são os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,233,'Por certo, fizemos descer a Torá; nela, há orientação e luz. Com ela, os profetas, que se islamizaram, julgavam aos que praticavam o judaísmo e, assim também, os rabis e os sacerdotes, porque custodiavam o Livro de Allah, e eram testemunhas dele. Então, não receeis os homens, e receai-Me. E não vendais Meus sinais por ínfimo preço. E quem não julga conforme o que Allah fez descer, esses são os renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,233,'E nela prescrevemo-lhes que se pague a vida pela vida e o olho pelo olho e o nariz pelo nariz e a orelha pela orelha e o dente pelo dente, e, também, para as feridas, o talião. Então, a quem, por caridade, o dispensa, isso lhe servirá de expiação. E quem não julga conforme o que Allah fez descer, esses são os injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,233,'E na pegada daqueles, fizemos seguir a Jesus, filho de Maria, para confirmar a Torá, que havia antes dele. E concedêramo-Ihe o Evangelho; nele, há orientação e luz e confirmação da Torá, que havia antes dele, e orientação e exortação para os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,233,'E que os seguidores do Evangelho julguem conforme o que Allah fez descer nele. E quem não julga conforme o que Allah fez descer, esses são os perversos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,233,'E, para ti, Muhammad, fizemos descer o Livro, com a verdade, para confirmar os Livros que havia antes dele e para prevalecer sobre eles.
+Então, julga, entre eles conforme o que Allah fez descer. E não sigas tuas paixões, desviando-te do que te chegou da Verdade. Para cada um de vós, fizemos uma legislação e um plano. E, se Allah quisesse, haveria feito de vós uma única comunidade, mas não o fez, para pôr-vos à prova, com o que vos concedeu. Então, emulai-vos, pelas boas ações. A Allah será o retorno de todos vós. E Ele vos informará daquilo de que discrepáveis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,233,'E que julgues entre eles conforme o que Allah fez descer, e não sigas suas paixões e precata-te de que eles te desviem de algo do que Allah fez descer para ti. Então, se viram as costas, sabe que Allah deseja que sejam alcançados por alguns de seus delitos. E, por certo, muitos
+dos humanos são perversos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,233,'Buscam, então, o julgamento dos tempos da ignorância?. E quem melhor que Allah, em julgamento, para um povo que se convence da Verdade?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,233,'Ó vós que credes! Não tomeis por aliados os judeus e os cristãos. Eles são aliados uns dos outros. E quem de vós se alia a eles será deles. Por certo, Allah não guia o povo injusto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,233,'Então, tu vês aqueles, em cujos corações há enfermidade se apressarem para eles, dizendo: "Receamos nos alcance um revés." Quiçá, pois, Allah faça chegar a vitória ou uma ordem de Sua parte. Então, tornar-se-ão arrependidos daquilo de que guardaram segredo, em seus íntimos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,233,'E os que crêem dirão: "São estes os que juraram, por Allah, com seus mais solenes juramentos, estar convosco?" Mas, anular-se-ão suas obras, e, eles se tornarão perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,233,'Ó vós que credes! Quem de vós apostata de vossa religião, Allah fará chegar, em vosso lugar, um povo que Ele amará e que O amará; e que será humilde com os crentes, poderoso com os renegadores da Fé. Lutará no caminho de Allah e não temerá repreensão de quem quer que seja. Esse é o favor de Allah, que Ele concede a quem quer. E Allah é Munificente, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,233,'Vossos aliados são, apenas, Allah e Seu Mensageiro e os crentes; aqueles que cumprem a oração e concedem as esmolas enquanto se curvam diante de Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,233,'E quem se alia a Allah e a Seu Mensageiro e aos crentes triunfará, por certo, o partido de Allah é o vencedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,233,'Ó vós que credes! Não tomeis por aliados os que tomam vossa religião por objeto de zombaria e diversão, dentre aqueles aos quais fora concedido o Livro, antes de vós, nem os renegadores da Fé – E temei a Allah, se sois crentes-');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,233,'E, quando chamais à oração, tomam-na por objeto de zombaria e diversão. Isto, porque são um povo que não razoa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,233,'Dize, Muhammad: "Ó seguidores do Livro! Vós nos censurais apenas por crermos em Allah e no que foi descido, para nós, e no que fora descido antes? Mas a maioria de vós é perversa."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,233,'Dize: "Informar-vos-ei do que é pior que isso, como retribuição, junto de Allah? Os que Allah amaldiçoou e contra quem Se irou, e de quem fez símios e porcos, e os que adoram os ídolos esses estão em pior situação, e mais descaminhados do caminho certo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,233,'E, quando vos chegam, dizem: "Cremos", enquanto, com efeito, entram com a renegação da Fé, e, com efeito, com ela saem. E Allah é bem Sabedor do que ocultam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,233,'E tu vês muitos deles se apressarem para o pecado e para a agressão e para a devoração do ganho ilícito. Que execrável, em verdade, o que fazem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,233,'Que os rabinos e os sacerdotes os houvessem coibido do dito pecaminoso e da devoração do ganho ilícito! Que execrável, em verdade, o que engenham!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,233,'E os judeus dizem: "A mão de Allah está atada". Que suas mãos fiquem atadas e que sejam eles amaldiçoados pelo que dizem! Ao contrário, Suas mãos estão estendidas; Ele despende Seus dons como quer. E, em verdade, o que de teu Senhor foi descido, para ti, acrescenta a muitos deles transgressão e renegação da Fé. E lançamos, entre eles, a inimizade e a aversão, até o Dia da Ressurreição. Cada vez que acendem um Fogo para a guerra, Allah apaga-o. E eles esforçam-se em semear a corrupção na terra. E Allah não ama os corruptores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,233,'E, se os seguidores do Livro cressem e fossem piedosos, certamente, remir-lhes-íamos as más obras e fá-los-íamos entrar em Jardins da Delícia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,233,'E, se houvessem observado a Torá e o Evangelho e o que, de seu Senhor, fora descido, para eles, haveriam desfrutado os bens acima deles e debaixo de seus pés. Entre eles, há uma comunidade moderada. Mas que vil o que muitos deles fazem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,233,'Ó Mensageiro! Transmite o que foi descido de teu Senhor, para ti. E, se o não fizeres, não haverás transmitido Sua Mensagem. E Allah te protegerá dos homens. Por certo, Allah não guia o povo renegador da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,233,'Dize: "Ó seguidores do Livro! Não estais fundados sobre nada, até que observeis a Torá e o Evangelho e o que de vosso Senhor fora descido para vós." E, em verdade, o que de teu Senhor foi descido, para ti, acrescenta a muitos deles transgressão e renegação da Fé. Então, não te aflijas com o povo renegador da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,233,'Por certo, os crentes e os que praticam o judaísmo e os cristãos e os sabeus qualquer dentre eles que creu em Allah e no Derradeiro Dia e fez o bem, nada haverá que temer por eles, e eles não se entristecerão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,233,'Com efeito, firmamos a aliança com os filhos de Israel e lhes enviamos Mensageiros. Mas cada vez que um Mensageiro lhes chegava, com aquilo pelo que suas almas não se apaixonavam, eles, a um grupo desmentiam e a um grupo matavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,233,'E eles supunham que não haveria sanção; então, encegueceram e ensurdeceram. Em seguida, Allah perdoou-os, depois, muitos deles encegueceram e ensurdeceram. E Allah, do que fazem, é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,233,'Com efeito, são renegadores da Fé os que dizem: "Por certo, Allah é o Messias, filho de Maria". E o Messias diz: "Ó filhos de Israel! Adorai a Allah, meu Senhor e vosso Senhor." Por certo, a quem associa outras divindades a Allah, com efeito, Allah proíbe-lhe o Paraíso, e sua morada é o Fogo. E não há para os injustos socorredores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,233,'Com efeito, são renegadores da Fé os que dizem: "Por certo, Allah é o terceiro de três." E não há deus senão um Deus Único. E, se não se abstiverem do que dizem, em verdade, doloroso castigo tocará os que, entre eles, renegam a Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,233,'Então, não se voltam, arrependidos, para Allah e Lhe imploram perdão? E Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,233,'O Messias, filho de Maria, não é senão um Mensageiro; antes dele, com efeito, outros Mensageiros passaram. E sua mãe era veracíssima. Ambos comiam alimentos como os demais. Olha como tornamos evidentes, para eles, os sinais; em seguida, olha como se distanciam destes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,233,'Dize: "Adorais, em vez de Allah, a quem não possui, para vós prejuízo nem benefício?" E Allah é O Oniouvinte, O Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,233,'Dize: "Ó seguidores do Livro! Não vos excedais, inveridicamente, em vossa religião, e não sigais as paixões de um povo que, com efeito, se descaminhou, antes, e descaminhou a muitos, e se tem descaminhado do caminho certo"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,233,'Os que renegaram a Fé, dentre os filhos de Israel, foram amaldiçoados pela boca de Davi e de Jesus, filho de Maria. Isso, porque desobedeceram e cometiam agressão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,233,'Eles não coibiam uns aos outros de nenhum ato reprovável que cometiam. Que execrável, em verdade, o que faziam!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,233,'Tu vês a muitos deles se aliarem aos que renegam a Fé. Que execrável, em verdade, o que suas almas antecipam, para eles! A cólera de Allah é sobre eles e, no castigo, serão eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,233,'E, se houvésseis crido em Allah e no Profeta e no que foi descido, para ele, não os haveriam tomado por aliados. Mas muitos deles são perversos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,233,'Em verdade, encontrarás, - dentre os homens, - que os judeus e os idólatras são os mais violentos inimigos dos crentes. E, em verdade, encontrarás que os mais próximos aos crentes, em afeição, são os que dizem: "Somos cristãos." Isso, porque há dentre eles clérigos e monges, e porque não se ensoberbecem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,233,'E quando ouvem o que foi descido, para o Mensageiro, tu vês seus olhos se marejarem de lágrimas, pelo que reconhecem da Verdade. Dizem: "Senhor nosso! Cremos. Então, inscreve-nos entre as testemunhas da verdade".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,233,'"E por que razão não creríamos em Allah e na Verdade que nos chegou, enquanto aspiramos a que nosso Senhor nos faça entrar no Paraíso, com o povo íntegro?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,233,'Então, pelo que disseram, Allah retribuiu-lhes Jardins, abaixo dos quais correm os rios; nesses, serão eternos. E essa é a recompensa dos benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,233,'E os que renegam a Fé e desmentem Nossos sinais, esses são os companheiros do Inferno.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,233,'Ó vós que credes! Não proibais as cousas benignas que Allah vos tornou lícitas, e não cometais agressão. Por certo, Allah não ama os agressores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,233,'E comei daquilo que Allah vos deu por sustento, enquanto lícito e benigno. E temei a Allah, em Quem sois crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,233,'Allah não vos culpa pela frivolidade em vossos juramentos mas vos culpa pelos juramentos intencionais não cumpridos. Então, sua expiação é alimentar dez necessitados, no meio-termo com que alimentais vossas famílias; ou vesti-los ou alforriar um escravo. E quem não encontra recursos, deve jejuar três dias. Essa é a expiação de vossos juramentos, quando perjurardes. E custodiai vossos juramentos. Assim, Allah torna evidentes, para vós, Seus sinais, para serdes agradecidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,233,'Ó vós que credes! O vinho e o jogo de azar e as pedras levantadas com nome dos ídolos e as varinhas da sorte não são senão abominação: ações de Satã. Então, evitai-as na esperança de serdes bem-aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,233,'Satã deseja, apenas, semear a inimizade e a aversão, entre vós, por meio do vinho e do jogo de azar, e afastar-vos da lembrança de Allah e da oração. Então, abster-vos-eis disso?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,233,'E obedecei a Allah e obedecei ao Mensageiro e precatai-vos. Então, se voltais as costas, sabei que impende apenas a Nosso Mensageiro a evidente transmissão da Mensagem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,233,'Não há culpa sobre aqueles que crêem e fazem as boas obras, por aquilo de que se alimentaram anteriormente, desde que se guardem do proibido e creiam nisso e façam as boas obras; depois, continuem a guardar-se e a crer; em seguida, se guardem e bem-façam. E Allah ama os benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,233,'Ó vós que credes! Em verdade, Allah por-vos-á a prova com a proibição de alguma caça, que vossas mãos e vossas lanças puderem alcançar, a fim de que Allah saiba quem de vós O teme, embora seja Ele Invisível. Então, quem, depois disso, comete agressão terá doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,233,'Ó vós que credes! Não mateis a caça, enquanto estais na peregrinação. E, a quem de vós a mata, intencionalmente, impender-lhe-á compensação, em rebanhos, igual ao que matou, julgada por dois homens justos dos vossos, em oferenda, destinada à Kaabah; ou expiação: alimentar necessitados ou o equivalente a isso, em jejum para experimentar a nefasta conseqüência de sua conduta. Allah indulta o que já se consumou. E quem reincide, Allah dele se vingará. E Allah é Todo-Poderoso, Possuidor de vindita.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,233,'É-vos lícita a pesca do mar e seu alimento, como proveito para vós e para os viandantes. E vos é proibida a caça da terra, enquanto permaneceis na peregrinação. E temei a Allah, a Quem sereis reunidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,233,'Allah fez da Kaabah, a Casa Sagrada, arrimo para os homens e, assim também, o Mês Sagrado, e os animais em oferenda e as guirlandas. Isso, para que saibais que Allah sabe o que há nos céus e o que há na terra, e que Allah, de todas as cousas, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,233,'Sabei que Allah é Veemente na punição e que Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,233,'Não impende ao Mensageiro senão a transmissão da Mensagem. E Allah sabe o que mostrais e o que ocultais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,3,233,'Dize, Muhammad: "Não se igualam o maligno e o benigno, ainda que te admire a abundância do maligno. Então, temei a Allah, ó dotados de discernimento, na esperança de serdes bem-aventurados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,3,233,'Ó vós que credes! Não pergunteis por cousas que, se vos fossem divulgadas, vos afligiriam: e, se perguntardes por elas, enquanto o Alcorão estiver sendo descido, ser-vos-ão divulgadas. Allah vo-lo indultará. E Allah é Perdoador, Clemente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,3,233,'Com efeito, um povo, antes de vós, perguntou por elas; em seguida, tornaram-se renegadores delas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,3,233,'Allah não fez determinação alguma de bahirah nem de sãi');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,3,233,'E quando se lhes diz: "Vinde ao que Allah fez descer e ao Mensageiro", dizem: "Basta-nos aquilo em que encontramos nossos pais" E bastar-lhes-ia, ainda que seus pais nada soubessem nem se guiassem?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,3,233,'Ó vós que credes! Cuidai de vós mesmos; não vos prejudicará quem se descaminha, quando sois guiados. A Allah será vosso retorno, de todos vós. E Ele vos informará do que fazíeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,3,233,'Ó vós que credes! Quando a morte se apresentar a um de vós, que haja, ao testar, o testemunho de dois homens justos dos vossos ou o de dois outros, que não dos vossos, se estais percorrendo a terra e sois alcançados pela desgraça da morte. Retende-os a ambos, após a oração; e eles jurarão por Allah, se duvidais deles, e dirão: "Não venderemos isso por preço algum, ainda que o benefíciado seja parente, nem ocultaremos o testemunho de Allah: por certo, nesse caso, seríamos dos pecadores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,3,233,'Se se descobre que ambos cometeram pecado de perjuro, então, que os substituam dois outros, dentre os que foram prejudicados pelos primeiros, e jurarão por Allah: "Em verdade, nosso testemunho é mais justo que o deles, e não cometemos agressão: por certo, nesse caso, seríamos dos injustos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,3,233,'Isso é mais adequado para que prestem testemunho autêntico, ou temam que outros juramentos voltem a ser prestados, após os seus. E temei a Allah e ouvi. E Allah não guia o povo perverso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,3,233,'Lembra-lhes, Muhammad, de que, um dia, Allah juntará os Mensageiros, então, dirá: "O que vos foi respondido?" Dirão: "Não temos ciência disso. Por certo, Tu, Tu és O Profundo Sabedor das cousas invisíveis".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,3,233,'Quando Allah dirá: "Ó Jesus, filho de Maria! Lembra-te de Minha graça para contigo e para com tua mãe, quando te amparei com o Espírito Sagrado: falando aos homens, quando ainda no berço, e na maturidade. E quando te ensinei a Escritura e a Sabedoria e a Torá e o Evangelho. E quando criaste, do barro, a figura igual ao pássaro, com Minha permissão, e nela sopraste, e ela se tornou um pássaro, com Minha permissão. E curaste o cego de nascença e o leproso, com Minha permissão. E quando fizeste sair os mortos dos sepulcros, com Minha permissão. E quando detive os filhos de Israel, afastando-os de ti, quando lhes chegaste com as evidências; então, disseram os que, dentre eles, renegaram a Fé:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,3,233,'"E quando inspirei aos discípulos:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,3,233,'Lembra-lhes de quando os discípulos disseram: "Ó Jesus, filho de Maria! Teu Senhor poderá fazer-nos descer do céu uma mesa provida?" Ele disse: "Temei a Allah, se sois crentes"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,3,233,'Disseram: "Desejamos comer dela e que se nos tranqüilizem os corações; e desejamos saber se tu, com efeito, nos disseste a verdade, e desejamos ser testemunhas dela".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,3,233,'Jesus, filho de Maria, disse: "Ó Allah, Senhor nosso! Faze-nos descer do céu uma mesa provida, que nos seja uma festa, para os primeiros e os derradeiros de nós, e um sinal de Ti; e sustenta-nos, e Tu és O Melhor dos sustentadores"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,3,233,'Allah disse: "Por certo, far-vo-la-ei descer. Então, a quem de vós renegar a Fé, depois, por certo, castigá-lo-ei com um castigo com que jamais castigarei a alguém dos mundos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,3,233,'E lembra-lhes de quando Allah dirá: "Ó Jesus, filho de Maria! Disseste tu aos homens:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,3,233,'"Não lhes disse senão o que me ordenaste:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,3,233,'"Se os castigas, por certo, são Teus servos. E, se os perdoas, por certo, Tu, Tu és O Todo-Poderoso, O Sábio"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,3,233,'Allah dirá: "Este é um dia em que beneficiará aos verídicos sua veracidade. Eles terão Jardins, abaixo dos quais correm os rios; nesses, serão eternos para todo o sempre." Allah se agradará deles,
+e eles se agradarão dEle. Esse é o magnífico triunfo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,3,233,'E de Allah é a soberania dos céus e da terra e tudo que há entre eles. E Allah, sobre todas as cousas, é Onipotente.');
+INSERT INTO chapters (id, number, quran_id) VALUES(234,6,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,234,'Louvor a Allah, Que criou os céus e a terra e fez as trevas e a luz. Todavia, os que renegam a Fé equiparam outros a seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,234,'Ele é Quem vos criou de barro; em seguida, decretou-vos um termo. E, junto dEle, há outro termo designado. Todavia, vós contestais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,234,'E Ele é Allah nos céus e na terra. Sabe vosso segredo e vossas declarações e sabe o que lograis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,234,'E não Ihes chega sinal algum dos sinais de seu Senhor, sem que lhes estejam dando de ombros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,234,'E, com efeito, desmentiram a Verdade, quando esta lhes chegou. Então, chegar-lhes-ão os informes daquilo de que zombavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,234,'Não viram eles quantas gerações aniquilamos, antes deles? Empossamo-las na terra, com poder de que jamais vos empossamos. E enviamos, sobre eles, a chuva, em abundância, e fizemos correr os rios, a seus pés; então, aniquilamo-las por seus delitos e fizemos surgir, depois delas, outras gerações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,234,'Mesmo se fizéssemos descer, sobre ti, Muhammad, um livro, escrito em pergaminho, e eles o tocassem com as mãos, os que renegam a Fé diriam: "Este não é senão evidente magia"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,234,'E dizem: "Que se faça descer sobre ele, Muhammad, um anjo." E, se houvéssemos feito descer um anjo, já estaria encerrada a ordem; em seguida, não haveria dilação alguma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,234,'E, se houvéssemos feito dele um anjo, havê-lo-íamos feito na forma de homem, e havê-los-íamos feito confundir o que já confundem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,234,'E, com efeito, zombaram de Mensageiros, antes de ti; então, aquilo de que zombavam envolveu os que escarneceram deles.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,234,'Dize: "Caminhai, na terra; em seguida, olhai como foi o fim dos desmentidores"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,234,'Dize: "De quem é o que há nos céus e na terra?" Dize: "De Allah". Ele prescreveu a Si mesmo a misericórdia. Em verdade, Ele vos juntará, no indubitável Dia da Ressurreição, os que se perdem a si mesmos, então, não crêem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,234,'E dEle é o que repousa na noite e no dia. E Ele é O Oniouvinte, O Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,234,'Dize: "Tomarei eu por protetor outro que Allah, O Criador dos céus e da terra, enquanto Ele é Quem alimenta e não é alimentado?" Dize: "Por certo, foi-me ordenado ser o primeiro dos que se islamizam!" E não sejas, de modo algum, dos idólatras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,234,'Dize: "Por certo, temo, se desobedecer a meu Senhor, o castigo de um formidável dia"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,234,'Nesse dia, de quem quer que seja desviado o castigo, com efeito, será porque Allah dele teve misericórdia. E esse é o evidente triunfo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,234,'E, se Allah te toca com um infortúnio, não haverá quem o remova a
+não ser Ele. E, se te toca com um bem, Ele, sobre todas as cousas, é
+Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,234,'E Ele é O Dominador sobre Seus servos e Ele é O Sábio, O Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,234,'Dize: "O que há de maior testemunho?" Dize: "Allah. Ele é Testemunha entre mim e vós. E foi-me revelado este Alcorão, para com ele admoestar-vos e àqueles a quem ele atingir." Testemunhais vós, em verdade, que há junto de Allah outros deuses? Dize: "Não o testemunho." Dize: "Apenas Ele é Deus Único. E, por certo, estou em rompimento com o que idolatrais."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,234,'Aos quais concedêra-mos o Livro, conhecem-no como conhecem a seus filhos. Os que se perdem a si mesmos, então, não crêem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,234,'E quem mais injusto que aquele que forja mentiras acerca de Allah ou desmente Seus sinais? Por certo, os injustos não serão bem-aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,234,'E um dia, os reuniremos a todos; em seguida, diremos aos que idolatram: "Onde estão vossos ídolos, que pretendíeis serem deuses?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,234,'Em seguida, sua provação não será senão dizer: "Por Allah, Nosso Senhor! Não éramos idólatras"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,234,'Olha como mentirão acerca de si mesmos! E sumirá, para longe deles, o que forjavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,234,'E há dentre eles quem te ouça ao recitares o Alcorão. E fizemo-lhes véus sobre os corações, a fim de o não entenderem, e fizemo-lhes, nos ouvidos, surdez. E, se vissem todos os sinais, não creriam, a tal ponto que, quando te chegassem, discutindo contigo, os que renegam a Fé diriam: "Isto não são além de fábulas dos antepassados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,234,'E eles coíbem dele os demais e dele se afastam. E não se aniquilam senão a si mesmos, e não percebem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,234,'E se visses quando postos diante do Fogo! Então, dirão: "Quem dera nos levassem à vida terrena, e não desmentiríamos os sinais de nosso Senhor, e seríamos dos crentes"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,234,'Mas mostrar-se-lhes-á o que, antes, escondiam; e se os houvessem
+levado à vida terrena, haveriam reincidido no de que foram coibidos.
+E, por certo, eles são mentirosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,234,'E dizem: "Não há senão nossa vida terrena, e não seremos ressuscitados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,234,'E se visses quando postos diante de seu Senhor! Ele dirá: "Não é esta a Verdade?" Dirão: "Sim, por nosso Senhor!" Ele dirá: "Então, experimentai o castigo, porque renegáveis a Fé"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,234,'Com efeito, os que desmentem o deparar de Allah perdem-se, até que, quando a Hora lhes chegar, inopinadamente, dirão: "Que aflição a nossa, por descurarmos dela!" E carregarão nos dorsos seus fardos. Ora, que vil o que carregarão!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,234,'E a vida terrena não é senão diversão e entretenimento. E, certamente, a Derradeira Morada é melhor para os que são piedosos. Então, não razoais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,234,'Com efeito, sabemos que o certo, não é a ti que desmentem, mas é aos sinais de Allah que os injustos negam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,234,'E, com efeito, outros Mensageiros antes de ti, Muhammad, foram desmentidos e eles pacientaram ao serem desmentidos, e foram molestados, até que Nosso socorro lhes chegasse. E não há quem troque as palavras de Allah. E, com efeito, chegaram-te alguns informes dos outros Mensageiros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,234,'E, se te é grave que eles dêem de ombros, então, se puderdes buscar um túnel na terra ou uma escada no céu e fazer-lhes
+chegar um sinal, para que creiam, faze-o. E, se Allah quisesse, juntá-los-ia na orientação. Não sejas, pois, de modo algum dos ignorantes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,234,'Apenas, os que ouvem atendem a verdade. E quanto aos mortos, Allah ressuscitá-los-á. Em seguida, a Ele eles serão retornados');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,234,'E dizem: "Que se faça descer sobre ele um sinal de seu Senhor!" Dize: "Por certo, Allah é Poderoso para fazer descer um sinal, mas a maioria deles não sabe"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,234,'E não há ser animal algum na terra nem pássaro que voe com suas asas senão em comunidade como vós. De nada descuramos, no Livro. Em seguida, a seu Senhor serão reunidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,234,'E os que desmentem Nossos sinais são surdos e mudos; estão nas trevas. Allah descaminha a quem quer e faz estar na senda reta a quem quer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,234,'Dize, Muhammad: "Vistes? Se o castigo de Allah vos chega ou vos chega a Hora, que outro além de Allah invocareis, se sois verídicos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,234,'"Mas é a Ele que invocareis: então, Ele vos removerá, se quiser, aquilo pelo que O invocais, e esquecereis o que idolatrais"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,234,'E, com efeito, antes de ti, enviamos Mensageiros a outras comunidades, e foram desmentidos; então, apanhamo-las, com a
+adversidade e o infortúnio, para se humildarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,234,'Então que, ao chegar-lhes Nosso suplício, se houvessem humildado! Mas seus corações se endureceram, e Satã aformoseou, para eles, o que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,234,'E, quando esqueceram o que lhes fora lembrado, abrimos, sobre eles, as portas de todas as boas cousas, até que, quando jubilaram com o que se lhes concedera, apanhamo-los, inopinadamente, e ei-los mudos de desespero.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,234,'Então, foi exterminado o povo injusto, até o último deles. E louvor a Allah, O Senhor dos Mundos!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,234,'Dize: "Vistes? Se Allah vos tomar o ouvido e as vistas e vos selar os corações, que outro deus que Allah vo-los fará vir?" Olha como patenteamos os sinais; todavia, eles apartam-se!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,234,'Dize: "Vistes? Se o castigo de Allah vos chega, inopinada ou declaradamente, quem será aniquilado, senão o povo injusto?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,234,'E não enviamos os Mensageiros senão por alvissareiros e admoestadores. Então, quem crê e se emenda, por eles nada haverá que temer, e eles não se entristecerão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,234,'E aos que desmentem Nossos sinais, tocá-los-á o castigo pela perversidade que cometiam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,234,'Dize: "Não vos digo que tenho os cofres de Allah nem que conheço o Invisível, nem vos digo que sou anjo. Não sigo senão o que me é revelado." Dize: "Igualam-se o cego e o vidente? Então, não refletis?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,234,'E admoesta, com ele, os que temem ser reunidos a seu Senhor - enquanto não têm, além dEle, nem protetor nem intercessor - na esperança de serem piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,234,'E não repulses os que invocam a seu Senhor, ao amanhecer e ao anoitecer, buscando-Lhe a face, Nada te impende de sua conta e nada lhes impende de tua conta, pois o repulsá-los te fará ser dos injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,234,'E, assim, nós os provamos uns pelos outros a fim de que digam: "São estes aqueles a quem Allah fez mercê, entre nós?" Não é Allah bem Sabedor dos agradecidos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,234,'E, quando os que crêem em Nossos sinais te chegarem, dize: "Que a paz seja sobre vós! Vosso Senhor prescreveu a Si mesmo a misericórdia: quem de vós faz um mal, por ignorância; em seguida,
+depois disso, volta-se arrependido e emenda-se, por certo, Ele é
+Perdoador, Misericordiador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,234,'E, assim, aclaramos os sinais, e isso para que se torne evidente o caminho dos criminosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,234,'Dize: "Por certo, foi-me coibido de adorar os que invocais, além de Allah." Dize: "Não seguirei vossas paixões: com efeito, nesse caso, descaminhar-me-ia, e não seria dos guiados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,234,'Dize: "Por certo, estou fundado sobre evidência de meu Senhor; e vós O desmentis. Não tenho o que quereis apressar. O julgamento não é senão de Allah. Ele narra a Verdade. E Ele é O Melhor dos Árbitros"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,234,'Dize: "Se tivesse o que quereis apressar, já estaria encerrada a questão entre mim e vós. E Allah é bem Sabedor dos injustos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,234,'E Ele tem as chaves do Invisível; ninguém sabe delas senão Ele. E Ele sabe o que há na terra e no mar. E nenhuma folha tomba sem que Ele saiba disso, e não há grão algum nas trevas da terra nem algo, úmido nem seco, que não estejam no evidente livro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,234,'E Ele é Quem vos leva a alma, durante a noite, e sabe o que adquiris, durante o dia; em seguida, nele vos ressuscitará, para ser encerrado um termo designado. Em seguida, a Ele será vosso retorno; depois, Ele vos informará do que fazíeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,234,'E Ele é O Dominador sobre Seus servos. E envia anjos custódios,
+sobre vós, até que quando a morte chega a um de vós, Nossos Mensageiros celestiais lhe levam a alma, e de nada descuram.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,234,'Em seguida, serão levados a Allah, seu Verdadeiro Protetor. Ora, dEle é o julgamento, e Ele é O mais Destro no ajuste de contas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,234,'Dize: "Quem vos salva das trevas da terra e do mar?" A Ele, vós invocais humilde e secretamente: "Certamente, se Ele nos salva destas, seremos dos agradecidos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,234,'Dize: "Allah vos salva destas e de todas as angústias; todavia, vós idolatrais!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,234,'Dize: "Ele é O Poderoso para enviar-vos um castigo, proveniente de cima de vós ou debaixo de vossos pés ou para confundir-vos em seitas e fazer que alguns de vós experimenteis a fúria dos outros." Olha como patenteamos os sinais, para entenderem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,234,'E teu povo desmentiu-o enquanto ele é a Verdade. Dize: "Não sou, sobre vós, patrono.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,234,'"Para cada informe, há um tempo de ser, e vós logo sabereis"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,234,'E, quando tu vires os que confabulam, em Nossos versículos, com escárnio, dá-lhes de ombros, até que confabulem, em outro assunto. E, se Satã to faz esquecer, então, não te assentes com o povo injusto, depois de teres lembrança disso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,234,'E não impende aos que são piedosos nada de seu ajuste de contas, mas sim uma lembrança, para serem piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,234,'E deixa os que tomam sua religião por diversão e entretenimento, e aos quais a vida terrena ilude. E adverte, com ele, para que alma alguma se entregue à ruína pelo que cometeu, enquanto não terá, além de Allah, nem protetor nem intercessor. E, se ela quiser resgatar-se, com qualquer resgate, este não lhe será aceito. Esses, que se entregam à ruína, pelo que cometem, terão, por bebida, água ebuliente e doloroso castigo, por que renegavam a Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,234,'Dize: "Invocaremos, além de Allah, o que não nos beneficia nem nos prejudica, e tornaremos atrás, virando os calcanhares, após Allah haver-nos guiado, como aquele que os demônios seduzem, na terra, ficando perplexo, enquanto tem companheiros que o convocam à orientação:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,234,'"E cumpri a oração e temei-O. E Ele é Aquele a Quem sereis reunidos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,234,'E Ele é Quem criou os céus e a terra, com a verdade. E, quando diz: "Sê", então, é. Seu dito é a verdade. E dEle será a soberania, um dia, em que se soprará na Trombeta. É O Sabedor do invisível e do visível. E Ele é O Sábio, O Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,234,'E lembra-lhes, Muhammad, de quando Abraão disse a seu pai Ãzar: "Tomas ídolos por deuses? Por certo, eu te vejo e a teu povo em evidente descaminho"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,234,'E, assim, fizemos ver a Abraão o reino dos céus e da terra, e isso para que fosse dos convictos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,234,'Então, quando a noite o envolveu, ele viu um astro. Disse: "Eis meu Senhor." E quando ele se pôs, disse: "Não amo os que se põem"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,234,'E, quando viu a lua surgindo, disse: "Eis meu Senhor." E, quando ela se pôs, disse: "Se meu Senhor não me guia, em verdade, estarei entre o povo descaminhado."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,234,'E, quando viu o sol surgindo, disse: "Eis meu Senhor; este é o maior!" E, quando ele se pôs, disse: "Ó meu povo! Por certo, estou em rompimento com o que idolatrais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,234,'"Por certo, eu dirijo minha face, como monoteísta sincero, para Quem criou os céus e a terra. E não sou dos idólatras"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,234,'E seu povo argumentou com ele. Mas ele disse: "Argumentais comigo, sobre Allah, enquanto Ele, com efeito, me guiou? E não temo o que Lhe associais, exceto se meu Senhor quiser algo de mal para mim. Meu senhor abrange todas as cousas em ciência. Então, não meditais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,234,'"E como temerei o que idolatrais, enquanto não temeis associar a Allah aquilo do que Ele não fez descer, sobre vós, comprovação alguma? Então, qual das duas partes é mais digna de segurança? Se soubésseis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,234,'"Os que crêem e não confundem sua fé com injustiça, esses têm a segurança e são guiados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,234,'E esse Nosso argumento, concedemo-lo a Abraão contra seu povo. Elevamos, em escalões, a quem queremos. Por certo, teu Senhor é Sábio, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,234,'E dadivamo-lo com Isaque e Jacó. A ambos guiamos. E a Noé, guiamo-lo, antes. E, de sua descendência, guiamos a Davi e a Salomão e a Jó e a José e a Moisés e a Aarão. Assim, recompensamos os benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,234,'E a Zacarias e a Yahiã, João-Batista, e a Jesus e a Elias - todos eram dos íntegros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,234,'E a Ismael e a Eliseu e a Jonas e a Lot e a todos eles preferimos aos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,234,'E a alguns de seus pais, e de sua descendência, e de seus irmãos. E Nós os elegemos e os guiamos a uma senda reta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,234,'Essa é a orientação de Allah: guia com ela a quem quer, entre Seus servos. E, se eles houvessem idolatrado; haver-se-ia anulado o que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,234,'Esses são aqueles a quem concedêramos o Livro e a sabedoria, e a profecia. E, se estes os renegam, com efeito, confiá-los-emos a um povo não renegador deles.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,234,'Esses são os que Allah guiou. Então, segue sua orientação. Dize: "Não vos peço prêmio por ele. Ele não é senão lembrança para os mundos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,234,'E eles não estimam a Allah como se deve estimá-LO, quando dizem: "Allah nada fez descer sobre ser humano algum." Dize: "Quem fez descer o Livro, com que Moisés chegou, como luz e guia para os humanos? Vós o fazeis, agora, em folhas soltas, de que mostrais algo e escondeis muito. E fostes ensinados do que não sabíeis, nem vós nem vossos pais." Dize: "Foi Allah." Em seguida, deixa-os se divertirem, em suas confabulações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,234,'E este é um Livro, que fizemos descer: bendito, confirmador do que havia antes dele; e fizemo-lo descer para tu advertires a Mãe das cidades e os que estão a seu redor. E os que crêem na Derradeira Vida nele crêem. E eles custodiam suas orações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,234,'E quem mais injusto que aquele que forja mentiras acerca de Allah ou diz: "Foi-me revelado algo", enquanto nada lhe fora revelado, e aquele que diz: "Farei descer, algo igual ao que Allah fez descer"? E se visses os injustos, enquanto na agonia da morte, e os anjos, estendendo as mãos e dizendo: "Fazei sair vossas almas. Hoje sereis recompensados com o castigo da vileza, porque dizíeis acerca de Allah o que não era verdade, e porque vos ensoberbecíeis, diante de Seus sinais."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,234,'Allah dirá: "E, com efeito, chegais a Nós sozinhos, como vos criamos da vez primeira, e deixastes, atrás das costas, o de que fizemos vos assenhoreardes. E não vemos, junto de vós, vossos intercessores, que pretendíeis parceiros em vossa adoração. Com efeito, o que havia entre vós cortou-se. E sumiu, para longe de vós, o que pretendíeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,234,'Por certo, Allah é Quem faz fender os grãos e os caroços. Faz sair o vivo do morto e faz sair o morto do vivo. Esse é Allah. Então, como dEle vos distanciais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,234,'Ele é Quem rompe a manhã. E faz da noite repouso, e do sol e da lua,
+cômputo do tempo. Essa é a determinação dO Todo-Poderoso, dO
+Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,234,'E Ele é Quem vos fez as estrelas, para que vos guieis, por elas, nas trevas da terra e do mar. Com efeito, aclaramos os sinais a um povo que sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,234,'E Ele é Quem vos fez surgir de uma só pessoa; então, é receptáculo e depósito. Com efeito, aclaramos os sinais a um povo que os entende.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,234,'E Ele é Quem faz descer do céu água e, com ela, fazemos sair planta de toda a espécie. E, dela, fazemos sair o verdor; dele fazemos sair aglomerados grãos - e, nas espatas das tamareiras, há cachos acessíveis - e fazemos sair jardins de videiras, e a oliva e a romã, semelhantes e não semelhantes. Olhai seus frutos, quando frutificam, e seu sazonar. Por certo, há nisso sinais para um povo que crê.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,3,234,'E eles fizeram a Allah, os jinns, como parceiros, enquanto foi Ele Quem os criou. E inventaram-Lhe, sem ciência, filhos e filhas. Glorificado e Sublimado seja Ele, acima do que alegam!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,3,234,'Ele é O Criador Ímpar do céu e da terra. Como teria Ele um filho, enquanto não tem companheira? E Ele criou todas as cousas. E Ele, de todas as cousas, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,3,234,'Esse é Allah, vosso Senhor. Não existe deus senão Ele, Criador de todas as cousas: então, adorai-O. E Ele, sobre todas as cousas, é Patrono.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,3,234,'As vistas não O atingem enquanto Ele atinge todas as vistas. E Ele é O Sutil, O Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,3,234,'Com efeito, chegaram-vos clarividências de vosso Senhor. Então, quem as enxerga, será em beneficio de si mesmo. E quem enceguece, será em prejuízo de si mesmo. E, sobre vós, não sou
+custódio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,3,234,'E, assim, patenteamos os versículos, e isso, para que dissessem: "Estudaste com os seguidores do Livro", e para que o tomássemos evidente, para um povo que sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,3,234,'Segue o que te foi revelado de teu Senhor. Não existe deus senão Ele. E dá de ombros aos idólatras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,3,234,'E, se Allah quisesse, não haveriam idolatrado. E, sobre eles, Nós não te fizemos custódio. E tu, sobre eles, não és patrono.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,3,234,'E não ofendeis os que eles invocam além de Allah: pois, eles ofenderiam a Allah, por agressão, sem ciência. Assim, aformoseamos, para cada comunidade suas obras; em seguida, seu retorno será a seu Senhor; então, informá-los-á do que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,3,234,'E juraram, por Allah, com seus mais solenes juramentos que, se lhes chegasse um sinal certamente, nele creriam. Dize: "Os sinais estão, apenas, junto de Allah." E o que vos faz pressenti-lo que quando ele lhes chegar, não crerão?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,3,234,'E Nós lhes reviraremos os corações e as vistas: então, não crerão, como não creram nele, da vez primeira, e deixá-los-emos, em sua transgressão, caminhando às cegas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,3,234,'E, se fizéssemos descer-lhes os anjos e lhes falassem os mortos e lhes reuníssemos todas as cousas a sua frente, não creriam, exceto se Allah quisesse. Mas a maioria deles o ignora.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,3,234,'E, assim, fizemos para cada profeta inimigos: demônios dentre os humanos e os jinns, que inspiraram uns aos outros dito floreado, para se iludirem e, se teu Senhor quisesse, não o fariam. Então, deixa-os e ao que forjam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,3,234,'E para o escutarem os corações daqueles que não crêem na Derradeira Vida, e para, com isso, se agradarem, e para continuarem a perpetrar o que estavam perpetrando.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,3,234,'Dize: "Então, buscarei por juiz outro que Allah, enquanto Ele é Quem fez descer, para vós, o Livro aclarado?" E aqueles, aos quais concedêramos o Livro sabem que ele foi descido de teu Senhor, com a verdade. Então, não sejas, de modo algum, dos contestadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,3,234,'E a palavra de teu Senhor cumpriu-se, em verdade e justiça. Não há
+quem troque Suas Palavras. E Ele é O Oniouvinte, O Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,3,234,'E, se obedeces à maioria dos que estão na terra, descaminhar-te-ão do caminho de Allah. Não seguem senão conjeturas e nada fazem senão imposturar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,3,234,'Por certo, teu Senhor é bem Sabedor de quem se descaminha de Seu caminho. E Ele é bem Sabedor dos guiados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,3,234,'Então, comei daquilo, sobre o qual foi mencionado o nome de Allah, se de Seus sinais sois crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,3,234,'E por que razão não comereis daquilo, sobre o que foi mencionado o nome de Allah, enquanto, com efeito, Ele vos aclarou o que vos é proibido, exceto aquilo ao qual fostes impelidos pela fome? E, por certo, muitos, com suas paixões, descaminham a outros, sem ciência. Por certo, teu Senhor é bem Sabedor dos agressores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,3,234,'E deixai o pecado, aparente e latente. Por certo, os que cometem o pecado serão recompensados, pelo que perpetravam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,3,234,'E não comais daquilo, sobre o qual não foi mencionado o nome de Allah. E, por certo, isto é perversidade. E, por certo, os demônios inspiram seus aliados, para que contendam convosco. E, se vós lhes obedeceis, por certo, sereis idólatras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,3,234,'E, acaso, quem estava morto, e Nós demo-lhe vida e fizemo-lhe luz, com que anda entre os homens, é igual a quem está nas trevas, das quais jamais sairá? Assim, aformoseou-se, para os renegadores da Fé, o que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,3,234,'E, assim, fizemos, em cada cidade, próceres de seus criminosos para nela usarem de estratagemas. E não usam de estratagemas senão contra si mesmos, e não percebem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,3,234,'E, quando um sinal lhes chega dizem: "Não creremos, até que nos concedam algo igual ao que fora concedido aos Mensageiros de Allah." Allah é bem Sabedor de onde depositar Sua mensagem. Aos que foram criminosos alcançá-los-á vileza, junto de Allah, e veemente castigo, pelos estratagemas de que usavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,3,234,'Então, a quem Allah deseja guiar, Ele lhe dilatará o peito para o Islam. E a quem deseja descaminhar, Ele lhe tornará o peito constrito, oprimido, como se se esforçasse para ascender ao céu. Assim, Allah faz cair o tormento sobre os que não crêem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,3,234,'E esta é a senda reta de teu Senhor. Com efeito, aclaramos os sinais a um povo que medita.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,3,234,'Deles é a Morada da Paz, junto de seu Senhor. E Ele será seu Protetor, pelo que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,3,234,'E um dia, Ele os reunirá, a todos, e dirá: "Ó coorte de jinns! Com efeito, cativastes muitos dos humanos." E seus aliados, entre os humanos, dirão: "Senhor nosso! Deleitamo-nos, uns com os outros e atingimos nosso termo que Tu havias fixado, para nós." Ele dirá: "O Fogo será vossa moradia: nele, sereis eternos, exceto se Allah quiser outra cousa." Por certo, teu Senhor é Sábio, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,3,234,'E, assim, tornamos os injustos aliados uns aos outros, pelo que cometiam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,3,234,'"Ó coorte de jinns e humanos! Não vos chegaram Mensageiros vindos de vós, que vos narraram Meus sinais e vos admoestaram do deparar deste vosso dia?" Dirão: "Testemunhamos contra nós mesmos." E a vida terrena iludiu-os, e testemunharão, contra si mesmos, que foram renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,3,234,'Isso porque não é admissível que teu Senhor aniquile as cidades por injustiça, enquanto seus habitantes estão desatentos à Verdade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,3,234,'E, para cada um deles, há escalões, pelo que fazem. E teu Senhor não está desatento ao que fazem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,3,234,'E teu Senhor é O Bastante a Si mesmo, O Possuidor de misericórdia. Se quisesse, far-vos-ia ir e faria suceder, depois de vós, a quem quisesse, assim como vos fez surgir da descendência de outro povo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,3,234,'Por certo, o que vos é prometido virá, e não podereis escapar disso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,3,234,'Dize: "Ó meu povo! Fazei o que puderdes: por certo, farei o que puder. Então, sabereis quem terá o final feliz da Derradeira Morada. Por certo, os injustos não serão bem-aventurados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,3,234,'E eles destinam a Allah porção das messes e dos rebanhos, que Ele fez existir, e dizem: "Isto é para Allah", segundo sua pretensão, "e aquilo é para nossos ídolos." Então, o que é para seus ídolos jamais chegará a Allah, e o que é para Allah chegará a seus ídolos. Que vil o que julgam!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,3,234,'E, assim, seus parceiros aformoseiam, para muitos dos idólatras, a matança de seus filhos, para arruiná-los e para confundi-los em sua religião. E, se Allah quisesse, não o fariam. Então, deixa-os e ao que forjam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,3,234,'E dizem: "Estes são rebanhos e messes vedados; não se alimentará deles senão quem quisermos", segundo sua pretensão. E há rebanhos, cujos dorsos são proibidos e rebanhos, sobre os quais eles não mencionam o nome de Allah, ao serem imolados, forjando, assim, mentiras a respeito d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,3,234,'E dizem: "O que há nos ventres destes rebanhos é privilégio exclusivo de nossos varões e proibido a nossas mulheres." E, se a cria nascer morta, todos serão parceiros na partilha dela. Ele recompensá-los-á, por suas alegações. Por certo, Ele é Sábio, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,3,234,'Com efeito, perdem-se os que matam a seus filhos, insensatamente, sem ciência, e proíbem o que Allah lhes dá por sustento, forjando mentiras acerca de Allah. Com efeito, descaminham-se e não são guiados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,3,234,'E Ele é Quem fez surgir jardins emparrados e não emparrados, e as tamareiras e as searas, sendo variados seus frutos; e a oliva e a romã, semelhantes e não semelhantes. Comei de seu fruto, quando frutificar, e concedei o que é de seu direito, no dia de sua ceifa, e não vos entregueis a excessos. Por certo, Ele não ama os entregues a excessos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,3,234,'E Ele criou, dos rebanhos, uns para carga e, outros pequenos, para o abate. Comei do que Allah vos deu por sustento e não sigais os passos de Satã. Por certo, ele vos é inimigo declarado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,3,234,'E criou oito reses acasaladas: um casal de ovinos e um casal de caprinos. Dize: "Qual deles Ele proibiu? Os dois machos ou as duas fêmeas? Ou o que contêm as matrizes das duas fêmeas? Informai-me, com ciência, se sois verídicos".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,3,234,'E um casal de camelos e um casal de vacuns. Dize: "Qual deles Ele proibiu? Os dois machos ou as duas fêmeas? Ou o que contêm as matrizes das duas fêmeas? Ou fostes testemunhas, quando Allah vo-lo recomendou?" Então, quem mais injusto que aquele que forja mentiras, acerca de Allah, para descaminhar, sem ciência, os humanos? Por certo, Allah não guia o povo injusto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,3,234,'Dize: "Não encontro, no que se me revelou, nada de proibido para quem queira alimentar-se, a não ser o animal encontrado morto, ou sangue fluido, ou carne de porco - pois é, por certo, abominação - ou perversidade: o animal imolado com a invocação de outro nome que Allah." E aquele que é impelido a alimentar-se disso, não sendo transgressor nem agressor por certo, teu Senhor é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,3,234,'E, aos que praticam o judaísmo, proibimos todo animal de unha não fendida. E dos vacuns e ovinos, proibimo-lhes a gordura, exceto a que seus dorsos possuem ou suas entranhas, ou a que está aderida aos ossos. Com isso, recompensamo-los por sua transgressão. E, por certo, somos Verídicos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,3,234,'Então, se te desmentem, dize: "Vosso Senhor é Possuidor da imensa misericórdia, e não será revogado Seu suplício para o povo criminoso"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,3,234,'Os que idolatram dirão: "Se Allah quisesse, não idolatraríamos, nem nossos pais, e nada proibiríamos." Assim, aqueles que foram antes deles, desmentiram a seus Mensageiros, até experimentarem Nosso suplício. Dize: "Tendes alguma ciência disso e podeis no-la demonstrar?
+Vós não seguis senão conjeturas, e nada fazeis senão imposturar."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,3,234,'Dize: "É de Allah o terminante argumento. Então, se Ele quisesse, haver-vos-ia guiado, a todos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,3,234,'Dize: "Trazei vossas testemunhas que testemunham que Allah proibiu isso." Então, se testemunham, não testemunhes com eles. E não sigas as paixões dos que desmentem Nossos sinais e que não crêem na Derradeira Vida, enquanto equiparam outros a seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,3,234,'Dize: "Vinde, eu recitarei o que vosso Senhor vos proibiu: nada lhe associeis. E tende benevolência para com os pais. E não mateis vossos filhos, com receio da indigência: Nós vos damos sustento, e a eles. E não vos aproximeis das obscenidades, aparentes e latentes. E não mateis a alma, que Allah proibiu matar, exceto se com justa razão. Eis o que Ele vos recomenda, para razoardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,3,234,'"E não vos aproximeis das riquezas do órfão, a não ser da melhor maneira, até que ele atinja sua força plena. E completai a medida e o peso com eqüidade. Não impomos a nenhuma alma senão o que é de sua capacidade. E, quando falardes, sede justos, ainda que se trate de parente. E sede fiéis ao pacto de Allah. Eis o que Ele vos recomenda,
+para meditardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,3,234,'"E, por certo, esta é a Minha senda reta: então, segui-a e não sigais os outros caminhos, pois vos separariam de Seu caminho. Eis o que Ele vos recomenda, para serdes piedosos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,3,234,'Em seguida, concedêramos a Moisés o Livro, como complemento de Nossa graça para com aquele que bem-faz, e como aclaração de todas as cousas, e como orientação e misericórdia, para eles crerem no deparar de seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,3,234,'E este é um Livro, que fizemos descer: bendito. Segui-o, então, e sede piedosos, na esperança de obterdes misericórdia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,3,234,'Fizemo-lo descer, para não dizerdes: "Apenas, fora descido o Livro, sobre duas facções antes de nós e, por certo, estávamos desatentos a seu estudo"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,3,234,'Ou para não dizerdes: "Se houvesse descido o Livro, sobre nós, haveríamos sido mais bem guiados que eles." Com efeito, chegou-vos, então, de vosso Senhor, evidência e orientação e misericórdia. E quem mais injusto que aquele que desmente os sinais de Allah e deles se aparta? Recompensaremos os que se apartam de Nossos sinais, com o pior castigo, porque deles se apartavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,3,234,'Não esperam eles senão os anjos lhes cheguem ou chegue teu Senhor ou cheguem alguns sinais de teu Senhor? Um dia, quando alguns sinais de teu Senhor chegarem, não beneficiará a alma alguma sua fé, se ela não houver crido antes, ou não houver logrado nenhum bem, em sua fé. Dize: "Esperai: por certo, Nós estaremos esperando."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,3,234,'Por certo, os que separam sua religião e se dividem em seitas, tu nada tens com eles. Apenas, sua questão será entregue a Allah; em seguida, Ele os informará do que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,3,234,'Quem chega com a boa ação terá dez vezes seu equivalente, e quem chega com a má ação não será recompensado senão com seu equivalente. E eles não sofrerão injustiça.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,3,234,'Dize: "Por certo, meu Senhor guiou-me a uma senda reta: a uma religião justa, a crença de Abraão, monoteísta sincero, e que não era dos idólatras"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,3,234,'Dize: "Por certo, minha oração e meu culto e minha vida e minha morte são de Allah, O Senhor dos mundos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,3,234,'"Ele não tem parceiro. E isso me foi ordenado, e eu sou o primeiro dos
+muçulmanos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,3,234,'Dize: "Buscarei outro senhor que Allah, enquanto Ele é O Senhor de todas as cousas? E cada alma não comete pecado senão contra si mesma. E nenhuma alma pecadora arca com o pecado de outra. Em seguida, a vosso Senhor será vosso retorno: então, Ele vos informará daquilo de que discrepáveis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,3,234,'E Ele é Quem vos fez sucessores, na terra, e elevou, em escalões, alguns de vós acima de outros, para pôr-vos à prova, com o que vos concedeu. Por certo, teu Senhor é Destro na punição e, por certo, Ele é Perdoador, Misericordiador.');
+INSERT INTO chapters (id, number, quran_id) VALUES(235,7,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,235,'Alif, Lãm, Mim, Sãd.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,235,'Este é um Livro, que é descido para ti, Muhammad, então, que não haja, em teu peito, constrangimento a seu respeito para admoestares, com ele, os renegadores da Fé, e para ser lembrança para os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,235,'Segui o que é descido para vós, de vosso Senhor, e não sigais, em vez dEle, outros protetores. Quão pouco meditais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,235,'E que de cidades aniquilamos! Então, Nosso suplício chegou-lhes enquanto dormiam à noite, ou enquanto sesteavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,235,'E, quando Nosso suplício lhes chegou, sua invocação não foi senão dizer: "Por certo, fomos injustos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,235,'Então, em verdade, interrogaremos aqueles, aos quais Nossa Mensagem foi enviada, e em verdade interrogaremos os Mensageiros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,235,'Em verdade, narrar-lhes-emos, então, com ciência, o que fizeram, e nunca estivemos Ausentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,235,'E a pesagem verdadeira será nesse dia. Então, aqueles cujos pesos em boas obras forem pesados, esses serão os bem-aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,235,'E aqueles, cujos pesos forem leves, esses serão os que se perderão a si mesmos, porque foram injustos com Nossos sinais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,235,'E, com efeito, empossamo-vos na terra e, nela fizemos para vós, meios de subsistência. Mas quão pouco agradeceis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,235,'E, com efeito, criamo-vos; em seguida, configuramo-vos; depois, dissemos aos anjos: "Prosternai-vos diante de Adão." E prosternaram-se, exceto Iblis. Ele não foi dos que se prosternaram.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,235,'Allah disse: "O que te impediu de te prosternares, quando to ordenei?" Satã disse: "Sou melhor que ele. Criaste-me de fogo e criaste-o de barro"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,235,'Allah disse: "Então, desça do Paraíso! E não te é admissível te mostrares soberbo nele. Sai, pois, por certo, és dos humilhados!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,235,'Satã disse: "Concede-me dilação, até um dia, em que eles serão ressuscitados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,235,'Allah disse: "Por certo, és daqueles aos quais será concedida dilação"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,235,'Satã disse: "Então, pelo mal a que me condenaste ficarei, em verdade, à espreita deles, em Tua senda reta."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,235,'"Em seguida, achegar-me-ei a eles, por diante e por detrás deles, e pela direita deles e pela esquerda deles, e não encontrarás a maioria deles agradecida"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,235,'Allah disse: "Sai do Paraíso como execrado, banido. Dos que dentre eles, te seguirem, encherei a Geena, de todos vós."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,235,'E dissemos: "Ó Adão! Habita tu e tua mulher o Paraíso e dele comei fartamente de onde quiserdes, e não vos aproximeis desta árvore pois seríeis dos injustos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,235,'E Satã sussurrou-lhes perfídias, para mostrar a ambos o que lhes fora acobertado de suas partes pudendas, e disse: "Vosso Senhor não vos coibiu desta árvore senão para não serdes dois anjos ou serdes dos eternos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,235,'E jurou-lhes: "Por certo, sou para ambos de vós um dos conselheiros"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,235,'Então, seduziu-os, com falácia. E, quando ambos experimentaram da árvore, exibiram-se-Ihes as partes pudendas, e começaram a aglutinar, sobre elas, folhas do Paraíso. E seu Senhor chamou-os: "Não vos coibi a ambos desta árvore e não vos disse que Satã vos era inimigo declarado?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,235,'Disseram: "Senhor nosso! Fomos injustos com nós mesmos e, se não nos perdoares e não tiveres misericórdia de nós estaremos, em verdade, dentre os perdedores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,235,'Allah disse: "Descei, sendo inimigos uns dos outros. E tereis, na terra, residência e gozo até certo tempo"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,235,'Ele disse: "Nela vivereis e nela morrereis e dela far-vos-ão sair"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,235,'Ó filhos de Adão! Com efeito, criamos, para vós, vestimenta, para acobertar vossas partes pudendas, e adereços. Mas a vestimenta da piedade, esta é a melhor. Esse é um dos sinais de Allah, para meditarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,235,'Ó filhos de Adão! Que Satã não vos tente, como quando fez sair a vossos pais do Paraíso, enquanto a ambos tirou a vestimenta, para fazê-los ver suas partes pudendas. Por certo, ele e seus sequazes vos vêem de onde vós não os vedes. Por certo, Nós fizemos os demônios aliados aos que não crêem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,235,'E, quando eles cometem obscenidade, dizem: "Encontramos, nela, nossos pais, e Allah no-la ordenou." Dize, Muhammad: "Por certo, Allah não ordena a obscenidade. Dizeis acerca de Allah o que não sabeis?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,235,'Dize: "Meu senhor ordena a eqüidade. E erguei vossas faces para Allah, em cada mesquita. E invocai-O, sendo sinceros com Ele, na devoção. Assim como Ele vos iniciou a criação, a Ele regressareis"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,235,'A um grupo Ele guiou, e a um grupo deveu-se o descaminho; por certo, eles tomaram os demônios por aliados, em vez de Allah, enquanto supunham estar sendo guiados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,235,'Ó filhos de Adão! Tomai vossos ornamentos em cada mesquita. E comei e bebei, e não vos entregueis a excessos. Por certo, Ele não ama os entregues a excessos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,235,'Dize: "Quem proibiu os ornamentos que Allah criou para Seus servos e as cousas benignas do sustento?" Dize: "Estas são, nesta vida, para os que crêem, e serão a eles consagradas no Dia da Ressurreição. Assim, aclaramos os sinais a um povo que sabe"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,235,'Dize: "Apenas, meu Senhor proibiu as obscenidades, aparentes e latentes, e o pecado e a agressão desarrazoada, e que associeis a Allah aquilo de que Ele não fez descer sobre vós comprovação alguma, e que digais acerca de Allah o que não sabeis"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,235,'E para cada comunidade há um termo. Então, quando seu termo chegar, ela não poderá atrasar-se, uma hora sequer, nem adiantar-se.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,235,'Ó filhos de Adão! Se em verdade, vos chegam Mensageiros, vindos de vós, para narrar-vos Meus sinais, então, aqueles que são piedosos e se emendam, por eles nada haverá que temer, e eles não se entristecerão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,235,'E os que desmentem Nossos sinais e diante deles se ensoberbessem, esses serão os companheiros do Fogo. Nele, serão eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,235,'E quem mais injusto que aquele que forja mentiras acerca de Allah ou desmente Seus sinais? A esses, alcançá-los-á sua porção do Livro até que, quando Nossos Mensageiros celestiais lhes chegarem para levar-lhes a alma, dirão estes: "Onde estão os que invocáveis além de Allah?" Dirão: "Sumiram, para longe de nós." E testemunharão, contra si mesmos, que eram renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,235,'Allah dirá: "Entrai no Fogo, junto com comunidades de jinns e de humanos que, com efeito, passaram antes de vós." Cada vez que uma comunidade aí entrar, amaldiçoará sua irmã até que, quando se sucederem todas, nele a última dirá, acerca da primeira: "Senhor nosso! São estes os que nos descaminharam; então, concede-lhes o duplo castigo do Fogo." Ele dirá: "Para cada qual haverá o duplo, mas vós não sabeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,235,'E a primeira delas dirá à última: "E não tendes vantagem alguma sobre nós: então, experimentai o castigo pelo que cometíeis"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,235,'Por certo, aos que desmentem Nossos sinais e, diante deles, se ensoberbecem, não se lhes abrirão as portas do céu nem entrarão no Paraíso, até que o camelo penetre no fundo da agulha. E, assim, recompensaremos os criminosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,235,'Terão a Geena, por leito, e sobre eles, cobertas de fogo. E, assim, recompensaremos os injustos');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,235,'E os que crêem e fazem as boas obras - não impomos a nenhuma alma senão o que é de sua capacidade - esses são os companheiros do Paraíso. Nele, serão eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,235,'E tiraremos o que houver de ódio em seus peitos. Correrão rios a seus pés. E dirão: "Louvor a Allah, Que nos guiou a isto! E não haveríamos guiado, se Allah não nos houvesse guiado! Com efeito, os Mensageiros de nosso Senhor chegaram com a Verdade." E bradar-se-lhes-á: "Este é o Paraíso que vos fizeram herdar, pelo que fazíeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,235,'E os companheiros do Paraíso bradarão aos companheiros do Fogo: "Com efeito, encontramos verdadeiro o que nosso Senhor nos prometera: então, vós encontrastes verdadeiro o que vosso Senhor prometera?" Eles dirão: "Sim." Então, um anunciador anunciará, entre eles, que a maldição de Allah será sobre os injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,235,'Que afastaram os homens do caminho de Allah, e buscaram torná-lo tortuoso, e foram renegadores da Derradeira Vida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,235,'E haverá, entre ambos, uma muralha. E, sobre Al-Araf, haverá homens, que reconhecerão cada um por seu semblante. E bradarão aos companheiros do Paraíso: "Que a paz esteja sobre vós!" Eles não entraram nele, enquanto a isso aspiravam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,235,'E, quando suas vistas se voltarem em direção aos companheiros do Fogo, dirão: "Senhor nosso! Não nos faça estar com o povo injusto"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,235,'E os companheiros de Al-Araf bradarão a uns homens, que reconhecerão por seu semblante. Dirão: "De que vos valeu vosso juntar de riquezas e vossa soberba?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,235,'"Estes são aqueles a respeito dos quais jurastes que Allah não os alcançaria com Sua misericórdia? Mas Allah disse-lhes:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,235,'E os companheiros do Fogo bradarão aos companheiros do Paraíso: "Entornai, sobre nós, uma pouca água ou do que Allah vos deu por sustento." Dirão: "Por certo, Allah proibiu ambas as cousas aos renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,235,'"Que tomaram sua religião por entretenimento e diversão, e que a vida terrena iludiu." Então, hoje, Nós os esqueceremos como esqueceram eles o deparar deste seu dia, e isso, porque negavam Nossos sinais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,235,'E, com efeito, chegamo-lhes com um Livro, Que aclaramos com ciência, como orientação e misericórdia para um povo que crê.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,235,'Não esperam eles senão sua interpretação? Um dia, quando sua interpretação chegar, dirão os que antes o esqueceram: "Com efeito, os Mensageiros de nosso Senhor chegaram com a Verdade. Então, será que teremos intercessores e, por nós, intercederão? Ou podemos ser levados à terra, e faremos outra cousa que a que fizemos?" Com efeito, perder-se-ão a si mesmos, e sumirá, para longe deles, o que forjavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,235,'Por certo, vosso Senhor é Allah, Que criou os céus e a terra, em seis dias; em seguida, estabeleceu-Se no Trono. Ele faz a noite encobrir o dia, cada um na assídua procura do outro; e criou o sol e a lua e as estrelas, submetidos, por Sua ordem. Ora, dEle é a criação e a ordem. Bendito seja Allah, O Senhor dos mundos!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,235,'Invocai a vosso Senhor, humilde e secretamente. Por certo, Ele não ama os agressores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,235,'E não semeeis a corrupção na terra, depois de reformada. E invocai-O, com temor e aspiração. Por certo, a misericórdia de Allah está próxima dos benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,235,'E Ele é Quem envia o vento por alvissareiro, adiante de Sua misericórdia até que, quando carrega pesadas nuvens, conduzimo-las a uma plaga morta e fazemos descer sobre ela a água com que, então, fazemos sair todos os frutos. Assim, fazemos sair os mortos
+dos sepulcros. Isso, para meditardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,235,'E da plaga benigna, sai sua planta, com a permissão de seu Senhor. E da que é maligna, nada sai senão escassa e infrutuosamente. Assim, patenteamos os sinais, para um povo que agradece.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,235,'Com efeito, enviamos Noé a seu povo. E disse: "Ó meu povo! Adorai a Allah: não tendes outro deus que não seja Ele. Por certo, temo, por vós, o castigo de um formidável dia"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,235,'Os dignitários de seu povo disseram: "Por certo, nós te vemos em evidente descaminho."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,235,'Noé disse: "Ó meu povo! Não há descaminho em mim, mas sou Mensageiro do Senhor dos mundos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,235,'"Transmito-vos as mensagens de meu Senhor e aconselho-vos, e sei de Allah o que não sabeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,235,'"E vos admirais de que vos chegue uma mensagem de vosso Senhor, por meio de um homem vindo de vós, para admoestar-vos e para serdes piedosos e para obterdes misericórdia?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,235,'E desmentiram-no; então, salvamo-lo e aos que estavam com ele, no barco, e afogamos os que desmentiram Nossos sinais. Por certo, eles eram um povo cego.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,235,'E, ao povo de Ãd, enviamos seu irmão Hud. Disse: "Ó meu povo! Adorai a Allah: não tendes outro deus que não seja Ele. Então, não temeis a Allah?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,235,'Os dignitários de seu povo, os quais renegavam a Fé, disseram: "Por certo, nós te vemos em insensatez e, por certo, pensamos que és dos mentirosos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,235,'Hud disse: "Ó meu povo! Não há descaminho em mim, mas sou Mensageiro do Senhor dos mundos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,235,'"Transmito-vos as mensagens de meu Senhor e sou, para vós, leal conselheiro."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,235,'"E vos admirais de que vos chegue uma Mensagem de vosso Senhor, por meio de um homem vindo de vós, para admoestar-vos? E lembrai-vos de que Ele vos fez sucessores, depois do povo de Noé, e acrescentou-vos força e estatura, entre as criaturas. Então, lembrai-vos das mercês de Allah, na esperança de serdes bem-aventurados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,235,'Disseram: "Vens a nós para que adoremos a Allah, só a Ele, e deixemos o que nossos pais adoravam? Então, faze-nos vir o que nos prometes, se és dos verídicos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,235,'Disse: "Com efeito, cairá, sobre vós, tormento e ira de vosso Senhor.
+Discutis comigo acerca de nomes de ídolos que nomeastes, vós e
+vossos pais, e dos quais Allah não fez descer comprovação alguma?
+Então, esperai; Por certo, estarei convosco entre os que esperam."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,235,'E salvamo-lo e aos que estavam com ele, por misericórdia de Nossa Parte, e exterminamos, até o último deles, aos que desmentiram
+Nossos sinais, e não eram crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,235,'E ao povo de Thamud, enviamos seu irmão Sãlih. Disse: "Ó meu povo! Adorai a Allah: não tendes outro deus que não seja Ele. Com efeito, chegou-vos uma evidência de vosso Senhor; este camelo fêmea vindo de Allah é, para vós, como sinal. Então, deixai-o comer na terra de Allah e não o toqueis com mal algum: pois, apanhar-vos-ia um doloroso castigo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,235,'"E lembrai-vos de que Ele vos fez sucessores, depois do povo de Ãd, e vos fez dispor da terra: ergueis palácios em suas planícies e escavais casas nas montanhas. Então, lembrai-vos das mercês de Allah. E não semeeis a maldade na terra, sendo corruptores"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,235,'Os dignitários de seu povo disseram aos que foram subjugados, aos que entre eles creram: "Sabeis que Sãlih é enviado de seu Senhor?" Disseram: "Por certo, estamos crendo naquilo, com que ele foi enviado"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,235,'Os que se ensoberbeceram disseram: "Por certo, estamos renegando aquilo em que credes"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,235,'Então, abateram o camelo fêmea e transgrediram, desmesuradamente, a ordem de seu Senhor, e disseram: "Ó Sãlih! Faze-nos vir o que nos prometes, se és dos Mensageiros"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,235,'E o terremoto apanhou-os, e amanheceram, em seus lares, inertes, sem vida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,235,'E Sãlih voltou-lhes as costas e disse: "Ó meu povo! Com efeito, transmiti-vos a mensagem de meu Senhor e aconselhei-vos, mas vós não amais os conselheiros"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,235,'E Lot, quando disse a seu povo: "Vós vos achegais à obscenidade, em que ninguém, nos mundos, se vos antecipou?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,235,'"Por certo, vós vos achegais aos homens por lascívia, ao invés de às mulheres. Sois, aliás, um povo entregue a excessos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,235,'E a resposta de seu povo não foi senão dizer: "Fazei-os sair de vossa cidade. Por certo, são pessoas que se pretendem puras"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,235,'Então, salvamo-lo e a sua família, exceto sua mulher, que foi dos que ficaram para trás.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,235,'E fizemos cair sobre eles chuva então, olha como foi o fim dos criminosos!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,235,'E, ao povo de Madian, enviamos seu irmão Chuaib. Disse: "Ó meu povo! Adorai a Allah; não tendes outro deus que não seja Ele. Com efeito, chegou-vos uma evidência de vosso Senhor. Então, completai, com eqüidade, a medida e o peso, e não subtraias das pessoas suas cousas, e não semeeis a corrupção na terra, depois de reformada. Isso vos é melhor, se sois crentes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,235,'"E não fiqueis à espreita, em cada senda, ameaçando e afastando do caminho de Allah os que nEle crêem, e buscando torná-lo tortuoso. E lembrai-vos do tempo em que éreis poucos, e Ele vos multiplicou. E olhai como foi o fim dos corruptores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,235,'"E, se há, entre vós, uma facção que crê naquilo com que fui enviado, e uma facção que não crê, pacientai, até que Allah julgue entre nós. E Ele é O Melhor dos juízes"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,235,'Os dignitários de seu povo, que se ensoberbeceram, disseram: "Em verdade, far-te-emos sair, ó Chuaib, e aos que crêem contigo, de nossa cidade ou regressareis a nossa crença." Ele disse: "E ainda que a odiássemos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,235,'"Com efeito, forjaríamos mentiras acerca de Allah, se regressássemos a vossa crença, após Allah haver-nos livrado dela. E não nos é admissível regressarmos a ela, a menos que Allah, nosso Senhor, o queira. Nosso Senhor abrange todas as cousas, em ciência. Em Allah confiamos. Senhor nosso! Sentencia, com a verdade, entre nós e nosso povo, e Tu és O Melhor dos sentenciadores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,235,'E os dignitários de seu povo, que renegavam a Fé disseram: "Em verdade, se seguirdes a Chuaib, por certo, nesse caso, sereis perdedores"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,235,'E o terremoto apanhou-os, e amanheceram, em seus lares, inertes, sem vida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,235,'Os que desmentiram a Chuaib, foram exterminados, como se lá jamais houvessem morado. Os que desmentiram a Chuaib, foram eles os perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,235,'Então, Chuaib voltou-lhes as costas e disse: "Ó meu povo! Com efeito, transmiti-vos a mensagem de meu Senhor e aconselhei-vos. Então, como afligir-me com um povo renegador da Fé?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,235,'E não enviamos a uma cidade profeta algum, sem apanhar seus habitantes, com a adversidade e o infortúnio, para se humildarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,235,'Em seguida, trocamo-lhes o mal pelo bem, até se multiplicarem e dizerem: "Com efeito, o infortúnio e a prosperidade tocaram a nossos pais." Então, apanhamo-los, inopinadamente, enquanto não percebiam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,235,'E, se os habitantes das cidades houvessem crido e houvessem sido piedosos, haver-lhes-íamos facultado bênçãos do céu e da terra; mas desmentiram os Mensageiros; então, apanhamo-los pelo que cometiam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,235,'Será que os habitantes das cidades estão seguros de que lhes não chegará Nosso suplício, durante a noite, enquanto dormem?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,235,'Ou os habitantes das cidades estão seguros de que lhes não chegará Nosso suplício, em plena luz matinal, enquanto se divertem?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,235,'Estão seguros, pois, contra o estratagema de Allah? Então, não está seguro contra o estratagema de Allah senão o povo perdedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,3,235,'E não é notório, aos que herdaram a terra após o aniquilamento de seus habitantes que, se quiséssemos os alcançaríamos, por seus delitos, e selar-lhes-íamos os corações, então não ouviriam?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,3,235,'Essas são as cidades, de cujos informes te narramos algo. E, com efeito, seus Mensageiros, chegaram-lhes com as evidências e não quiseram crer no que haviam desmentido, antes. Assim, Allah sela os corações dos renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,3,235,'E não encontramos, na maioria deles, nenhum cumprimento do pacto. Mas, por certo, encontramos a maioria deles perversa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,3,235,'Em seguida, depois deles, enviamos Moisés, com Nossos sinais, a Faraó e a seus dignitários, mas foram injustos com eles. Então, olha como foi o fim dos corruptores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,3,235,'E Moisés disse: "Ó Faraó, sou Mensageiro do Senhor dos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,3,235,'"Impende-me não dizer de Allah senão a verdade. Com efeito, cheguei-vos com uma evidência de vosso Senhor; então, envia comigo os filhos de Israel"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,3,235,'Faraó disse: "Se estás chegando com um sinal, faze-o vir, se és dos verídicos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,3,235,'Então, Moisés lançou sua vara, e ei-la evidente serpente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,3,235,'E tirou sua mão e ei-la alva para os olhadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,3,235,'Os dignitários do povo de Faraó disseram: "Por certo, este é um mágico sapiente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,3,235,'"Que deseja fazer-vos sair de vossa terra." Disse Faraó: "Então, que ordenais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,3,235,'Disseram: "Pretere-o e a seu irmão, e envia congregantes às cidades.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,3,235,'"Far-te-ão vir todo mágico sapiente"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,3,235,'E os mágicos chegaram a Faraó. Disseram: "Por certo, teremos um prêmio, se formos nós os vencedores?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,3,235,'Faraó disse: "Sim, e, por certo, estareis entre os achegados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,3,235,'Disseram: "Ó Moisés, lançarás tua vara ou seremos nós os lançadores?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,3,235,'Moisés disse: "Lançai". Então, quando lançaram enfeitiçaram os olhos dos homens e assombraram-nos. E chegaram com magnífica magia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,3,235,'E Nós inspiramos a Moisés: "Lança tua vara." Então, ei-la que engoliu o que falsificaram.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,3,235,'Então, a verdade confirmou-se e o que faziam derrogou-se.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,3,235,'E foram, aí, vencidos e tornaram-se humilhados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,3,235,'E os mágicos caíram, prosternando-se.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,3,235,'Disseram: "Cremos no Senhor dos mundos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,3,235,'"O Senhor de Moisés e Aarão!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,3,235,'Faraó disse: "Credes nele, antes de eu vo-lo permitir? Por certo, isto é um estratagema de que usastes na cidade, para fazer sair dela seus habitantes. Logo, sabereis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,3,235,'"Em verdade, cortar-vos-ei as mãos e as pernas, de lados opostos; em seguida, crucificar-vos-ei, a todos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,3,235,'Disseram: "Por certo, seremos tornados a nosso Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,3,235,'"E tu não te vingas de nós senão por crermos nos sinais de nosso Senhor, quando estes nos chegaram. Senhor nosso! Verte sobre nós paciência e leva-nos a alma, enquanto submissos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,3,235,'E os dignitários de Faraó disseram: "Deixarás Moisés e seu povo, para que semeiem a corrupção na terra, e para que ele te deixe, e a teus deuses?" Disse: "Matar-lhes-emos os filhos e deixar-lhes-emos vivas as mulheres e por certo, somos sobre eles dominadores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,3,235,'Moisés disse a seu povo: "Implorai ajuda de Allah, e pacientai. Por certo, a terra é de Allah; Ele a faz herdar a quem quer, entre Seus servos. E o final feliz é dos piedosos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,3,235,'Disseram: "Fomos molestados, antes que viesses a nós e depois de tua chegada a nós." Disse: "Quiçá, vosso Senhor aniquile vosso inimigo e vos faça suceder a ele, na terra; então, Ele olhará como fareis"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,3,235,'E, com efeito, apanhamos o povo de Faraó com anos de seca e escassez de frutos, para meditarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,3,235,'Então, quando o bem lhes chegava, diziam: "Isso se deve a nós." E, se um mal os alcançava, pressentiam mau agouro por causa de Moisés e dos que estavam com ele. Ora, seu agouro é junto de Allah, mas a maioria deles não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,3,235,'E disseram: "Sejam quais forem os sinais, com que nos chegues, para com eles enfeitiçar-nos, não estaremos crendo em ti"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,3,235,'Então, enviamos sobre eles o dilúvio e os gafanhotos e os piolhos e as rãs e o sangue, como claros sinais, e ensoberbeceram-se, e foram
+um povo criminoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,3,235,'E, quando o tormento sobre eles caiu, disseram: "Ó Moisés! Suplica, por nós, a teu Senhor, pelo que te recomendou. Em verdade, se removeres de nós o tormento, creremos em ti e enviaremos contigo os filhos de Israel."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,3,235,'E, quando removemos deles o tormento, até um termo, a que iriam chegar, ei-los que violaram a promessa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,3,235,'Então, vingamo-Nos deles e afogamo-los na onda, porque desmentiram Nossos sinais e a eles estiveram desatentos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,3,235,'E fizemos herdar ao povo, que estava subjugado, as regiões orientais e ocidentais da terra, que abençoamos. E a mais bela Palavra de teu Senhor cumpriu-se sobre os filhos de Israel porque pacientaram. E profligamos tudo quanto engenharam Faraó e seu povo, e tudo quanto erigiram.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,3,235,'E fizemos os filhos de Israel atravessarem o mar, e eles foram ter a um povo que cultuava seus ídolos. Disseram: “Ó Moisés! Faze-nos ter um deus, assim como eles têm deuses.” Disse: “Por certo, sois um povo ignorante."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,3,235,'“Por certo, a estes, o que praticam ser-lhes-á esmagado, e derrogado o que faziam”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,3,235,'Disse: “Buscar-vos-ei outro deus que Allah, enquanto Ele vos preferiu aos mundos?”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,3,235,'E lembrai-vos de quando Nós vos salvamos do povo de Faraó, que vos infligia o pior castigo: degolavam vossos filhos e deixavam vivas vossas mulheres. E nisso, houve de vosso Senhor terrível prova.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,3,235,'E fizemos promessa a Moisés durante trinta noites, e as completamos com mais dez. Assim, completou-se o tempo marcado de seu Senhor, em quarenta noites. E Moisés disse a seu irmão Aarão: Sucede-me junto de meu povo e age bem, e não sigas o caminho dos corruptores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,3,235,'E, quando Moisés chegou a Nosso tempo marcado, e seu Senhor lhe
+falou, disse: "Senhor meu! Faze-me ver-Te, que Te olharei." Ele disse: "Não Me verás, mas olha para a Montanha; se permanecer em seu lugar, ver-Me-ás." E, quando seu Senhor se mostrou à Montanha, fê-la em pó, e Moisés caiu fulminado. E, quando voltou a si, disse: "Glorificado sejas! Volto-me arrependido para Ti e sou o primeiro dos crentes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,3,235,'Allah disse: "Ó Moisés! Por certo, escolhi-te, sobre todas as pessoas, para Minhas mensagens e Minhas palavras; então, toma o que te concedi e sê dos agradecidos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,3,235,'E escrevemo-lhe, nas tábuas, exortação acerca de tudo e aclaração de todas as cousas, e lhe dissemos: "Então, toma-as, com firmeza, e ordena a teu povo que tome o que há de melhor nelas. Far-vos-ei ver a morada dos perversos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,3,235,'"Desviarei de Meus sinais os que, na terra, se mostram soberbos sem razão, e se eles vêem todos os sinais, neles não crêem, e se vêem o caminho da retidão, não o tomam por caminho e, se vêem o caminho da depravação, tomam-no por caminho. Isso, porque eles, por certo, desmentiam Nossos sinais e a eles estavam desatentos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,3,235,'"E os que desmentem Nossos sinais, e o deparar da Derradeira Vida terão emuladas suas obras. Não serão recompensados, senão pelo que faziam?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,3,235,'E o povo de Moisés, depois deste, tomou por divindade, um bezerro feito de suas jóias: um corpo que dava mugidos. Não viram eles que ele não lhes falava nem os guiava a caminho algum? Tomaram-no, por divindade, e foram injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,3,235,'E, quando a consciência os remordeu e viram que, com efeito, se descaminharam, disseram: "Em verdade, se nosso Senhor não tiver misericórdia de nós e não nos perdoar, seremos dos perdedores"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,3,235,'E, quando Moisés voltou a seu povo, irado e pesaroso, disse: "Execrável é a maneira com que me sucedestes, em minha ausência. Quisestes apressar a ordem de vosso Senhor?" E lançou as Tábuas e apanhou a seu irmão pela cabeça, puxando-o para si. Aarão disse: "Ó filho de minha mãe! Por certo, o povo me julgou fraco e quase me matou; então, não faças os inimigos se regozijarem com minha desgraça, e não me faças estar com o povo injusto."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,3,235,'Moisés disse: "Senhor meu! Perdoa-me e a meu irmão, e faze-nos entrar em Tua misericórdia, e Tu és O mais Misericordiador dos misericordiadores"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,3,235,'Por certo, aos que tomaram o bezerro, por divindade, alcançá-los-á ira de seu Senhor, e vileza, na vida terrena. E, assim, recompensamos os forjadores de falsidades');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,3,235,'E os que fazem más obras; em seguida, voltam-se arrependidos, depois destas, e crêem, por certo, teu Senhor, depois disso, é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,3,235,'E, quando a ira de Moisés se calou, ele retomou as Tábuas. E, em sua inscrição, havia orientação e misericórdia para os que veneram a seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,3,235,'E Moisés escolheu setenta homens de seu povo, para Nosso tempo marcado. E, quando o terremoto os apanhou, Moisés disse: "Senhor meu! Se quisesses, havê-los-ias aniquilado antes, e a mim. Tu nos aniquilas pelo que fizeram os insensatos entre nós? Isto não é senão Tua provação, com que descaminhas a quem queres e guias a quem queres. Tu és nosso Protetor: então, perdoa-nos e tem misericórdia de nós, e Tu és O Melhor dos perdoadores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,3,235,'"E prescreve-nos, nesta vida terrena, algo de bom, e na Derradeira Vida também. Por certo, para Ti, voltamo-nos arrependidos." Allah disse: "Com Meu castigo, alcançarei a quem quiser. E Minha misericórdia abrange todas as cousas. Então, prescrevê-la-ei aos que são piedosos, e concedem as esmolas e aos que crêem em Nossos sinais."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,3,235,'"Os que seguem o Mensageiro, O Profeta iletrado - que eles encontram escrito junto deles, na Torá e no Evangelho - o qual lhes ordena o que é conveniente e os coíbe do reprovável, e torna lícitas para eles, as cousas benignas e torna ilícitas para eles, as cousas malignas e os livra de seus fardos e dos jugos a eles impostos. Então, os que crêem nele e o amparam e o socorrem e seguem a luz, que foi descida, e está com ele esses são os bem-aventurados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,3,235,'Dize, Muhammad: "Ó humanos! Por certo, sou para todos vós, o Mensageiro de Allah de Quem é a soberania dos céus e da terra. Não
+existe deus senão Ele. Ele dá a vida e dá a morte. Então, crede em
+Allah e em Seu Mensageiro, o Profeta iletrado, que crê em Allah e em Suas palavras, e segui-o, na esperança de vos guiardes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,3,235,'E há, entre o povo de Moisés, uma comunidade que guia os outros, com a verdade e, com ela, faz justiça.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,3,235,'E Nós os dividimos em doze tribos, tornando-as comunidades. E inspiramos a Moisés, quando seu povo lhe pediu água: "Bate na pedra com tua vara." E dela jorraram doze olhos d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,3,235,'E, lembra-lhes, Muhammad, de quando se lhes disse: "Habitai esta cidade e dela comei, onde quiserdes, e dizei:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,3,235,'Em seguida, os injustos trocaram, por outro dizer, o que lhes havia sido dito; então, fizemos descer sobre os injustos um tormento do céu, pela perversidade que cometiam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,3,235,'E pergunta-lhes pela cidade, que ficava à beira-mar, quando seus habitantes cometeram agressão, no sábado, quando os peixes lhes chegaram emergindo em seu dia de sábado e, em dia, em que não sabatizavam, não lhes chegavam estes. Assim, pusemo-los à prova, pela perversidade que cometiam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,3,235,'E de quando uma comunidade entre eles, disse: "Por que exortais um povo, que Allah aniquilará ou castigará com veemente castigo?" Disseram: "É escusa perante vosso Senhor, e isso, para serem, talvez, piedosos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,3,235,'Então, quando esqueceram o de que foram lembrados, salvamos os que coibiam o mal e apanhamos os que foram injustos, com impetuoso castigo, pela perversidade que cometiam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,3,235,'E quando eles transgrediram, desmesuradamente, o de que foram coibidos, Nós lhes dissemos: "Sede símios repelidos!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,3,235,'E de quando teu Senhor noticiou que, na verdade, enviaria sobre eles até o Dia da Ressurreição, quem lhes infligiria o pior castigo. Por certo, teu Senhor é Destro na punição. E, por certo, Ele é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,3,235,'E dividimo-los em comunidades, na terra. Dentre eles, havia os íntegros e, dentre eles, havia os que eram inferiores a isso. E pusemo-los à prova, com as boas ações e as más ações, para retornarem ao bom caminho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,3,235,'Então, vieram depois deles, sucessores que herdaram o Livro: tomam o que é efêmero deste mundo inferior, e dizem: "Perdoar-nos-ão." E, se lhes chega algo efêmero, semelhante, tomam-no de novo. Acaso, não foi confirmada com eles a aliança do Livro de não dizer acerca de Allah senão a verdade? E eles estudaram o que havia nele. E a Derradeira Morada é melhor para os que são piedosos. Então, não razoais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,3,235,'E os que se atêm ao Livro e cumprem a oração, por certo, não faremos perder o prêmio dos emendadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,3,235,'E quando arrancamos a Montanha, elevando-a acima deles, como se fosse um dossel e eles pensaram que iria cair sobre eles. E dissemo-lhes: "Tomai, com firmeza, o que Nós vos concedemos e lembrai-vos do que há nele, na esperança de serdes piedosos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,3,235,'E lembra-te, Muhammad, de quando teu Senhor tomou, dos filhos de Adão - do dorso deles - seus descendentes e fê-los testemunhas de si mesmos, dizendo-lhes: "Não sou vosso Senhor?" Disseram: "Sim, testemunhamo-lo." Isso, para não dizerdes, no Dia da Ressurreição: "Por certo, a isto estávamos desatentos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,3,235,'Ou, para não dizerdes: "Apenas, nossos pais idolatraram antes, e somos sua descendência, após eles. Tu nos aniquilas pelo que fizeram os defensores da falsidade?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,3,235,'E assim, aclaramos os sinais, e isso, para, talvez, retornarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,3,235,'E recita para eles a história daquele a quem concedêramos Nossos sinais, e deles se afastara: então, Satã perseguira-o, e ele fora dos desviados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,3,235,'E se quiséssemos, havê-lo-íamos elevado com eles, mas ele se ativera à terra e seguira suas paixões. E seu exemplo é igual ao do cão: se o repeles, arqueja, ou, se o deixas, arqueja. Esse é o exemplo do povo, que desmente Nossos sinais. Então, narra-lhes a narrativa, na esperança de refletirem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,3,235,'Que vil, como exemplo, o povo que desmente Nossos sinais e é injusto com si mesmo!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,3,235,'Quem Allah guia é o guiado. E aqueles a quem Ele descaminha, esses são os perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,3,235,'E, com efeito, destinamos para a Geena, muitos dos jinns e humanos. Têm corações com que não compreendem, e têm olhos, com que nada enxergam, e têm ouvidos, com que não ouvem. Esses são como os rebanhos, aliás, são mais decaminhados. Esses são os desatentos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,3,235,'E de Allah são os mais belos nomes: então, invocai-O com eles, e deixai os que profanam Seus nomes. Serão recompensados pelo que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,3,235,'E há, dentre os que criamos, uma comunidade que guia os outros, com a verdade e com ela, faz justiça.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,3,235,'E aos que desmentem Nossos sinais, fá-los-emos se abeirarem de seu aniquilamento, por onde não saibam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(183,3,235,'E conceder-lhes-ei prazo. Por certo, Minha insídia é fortíssima.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(184,3,235,'E não refletiram eles? Não há loucura alguma em seu companheiro. Ele não é senão evidente admoestador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(185,3,235,'E não olharam para o reino dos céus e da terra e para todas as cousas que Allah criou, e não pensaram que o termo deles, quiçá, possa estar-se aproximando? Então, em que mensagem, depois dele, crerão?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(186,3,235,'Para os que Allah descaminha, não haverá guia algum, e Ele os deixará, em sua transgressão, caminhando às cegas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(187,3,235,'Perguntam-te, Muhammad, pela Hora: quando será sua ancoragem? Dize: "Sua ciência está, apenas, junto de meu Senhor. Ninguém senão Ele a mostra, em seu devido tempo. Ela pesa aos que estão nos céus e na terra. Ela não vos chegará senão inopinadamente." Perguntam-te, como se estivesses inteirado dela. Dize: "Sua ciência está, apenas, junto de Allah, mas a maioria dos homens não sabe."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(188,3,235,'Dize: "Não possuo para mim mesmo, nem beneficio nem prejuízo, exceto o que Allah quer. E se soubesse do Invisível, multiplicar-me-ia os bens, e não me tocaria o mal. Não sou senão admoestador e alvissareiro para um povo que crê"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(189,3,235,'Ele é Quem vos criou de uma só pessoa e, desta fez sua mulher, para ele tranqüilizar-se junto dela. E quando com ela coabitou, ela carregou dentro de si uma leve carga. E movimentava-se com ela, sem dificuldade. Então, quando se tornou pesada, ambos suplicaram a Allah, seu Senhor: "Em verdade, se nos concederes um filho são, seremos dos agradecidos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(190,3,235,'E, quando Ele lhes concedeu um filho são, associaram-Lhe ídolos, no que Ele lhes concedera. Então, Sublimado seja Ele, acima do que Lhe associam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(191,3,235,'Associam-Lhe os que nada criam, enquanto eles mesmos são criados?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(192,3,235,'E que não podem oferecer-lhes socorro nem socorrer-se a si
+mesmos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(193,3,235,'E, se os convocais à orientação, não vos seguirão. É-vos igual que os convoqueis ou fiqueis calados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(194,3,235,'Por certo, os que invocais, além de Allah, são servos como vós. Então, invocai-os! Que eles vos atendam, se sois verídicos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(195,3,235,'Têm eles pernas com que andar? Ou têm mãos, com que bater? Ou têm olhos com que enxergar? Ou têm ouvidos, com que ouvir? Dize: "Invocai vossos ídolos; em seguida, insidiai-me, e não me concedais dilação alguma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(196,3,235,'"Por certo, meu Protetor é Allah, Quem fez descer o Livro. E Ele protege os íntegros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(197,3,235,'"E aqueles a que invocais, além dEle, não podem socorrer-vos nem socorrer-se a si mesmos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(198,3,235,'E, se os convocais à orientação, não ouvirão. E vê-los-ás olhar para ti, enquanto nada enxergam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(199,3,235,'Toma-te, Muhammad, de indulgência e ordena o que é conveniente, e dá de ombros aos ignorantes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(200,3,235,'E se, em verdade, te instiga alguma instigação de Satã, procura refúgio em Allah. Por certo, Ele é Oniouvinte, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(201,3,235,'Por certo, os que são piedosos, quando uma sugestão de Satã os toca, lembram-se dos preceitos divinos, e ei-los clarividentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(202,3,235,'E a seus irmãos descrentes, os demônios estendem-lhes a depravação; em seguida, não se detêm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(203,3,235,'E, quando não lhes trazes um sinal, dizem: "Que o falsifiques!" Dize: "Sigo apenas, o que me é revelado de meu Senhor. Isto são clarividências de vosso Senhor e orientação e misericórdia para um
+povo que crê"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(204,3,235,'E, quando for lido o Alcorão, ouvi-o e escutai-o, na esperança de obterdes misericórdia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(205,3,235,'E invoca teu Senhor, em ti mesmo, humilde e temerosamente, e sem alterar a voz, ao amanhecer e ao entardecer, e não sejas dos desatentos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(206,3,235,'Por certo, os que estão juntos de teu Senhor não se ensoberbecem, diante de Sua adoração e O glorificam. E prosternam-se diante dEle.');
+INSERT INTO chapters (id, number, quran_id) VALUES(236,8,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,236,'Perguntam-te, Muhammad, pelos espólios. Dize: "Os espólios são de Allah e do Mensageiro. Então, temei a Allah e reconciliai-vos. E obedecei a Allah e a Seu Mensageiro, se sois crentes"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,236,'Os verdadeiros crentes são apenas aqueles cujos corações se atemorizam, quando é mencionado Allah, e, quando são recitados para eles. Seus versículos, acrescentam-lhes fé; e eles confiam em seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,236,'Aqueles que cumprem a oração e despendem, do que lhes damos por sustento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,236,'Esses são, deveras, os crentes. Terão escalões junto de seu Senhor, perdão e generoso sustento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,236,'A situação de desagrado, acerca da distribuição de espólios, é como aquela havida, quando teu Senhor, em nome da verdade, te fez sair de tua casa para combateres, enquanto um grupo de crentes, o estava odiando.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,236,'Eles discutiam contigo, acerca da verdade, após evidenciar-se ela, indo eles a combate, como se estivessem sendo conduzidos à morte, olhando-a, frente a frente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,236,'E lembrai-vos de quando Allah vos prometeu que uma das duas partes seria para vós, e almejastes que a desarmada fosse vossa. E Allah desejou estabelecer, com Suas palavras, a verdade e exterminar os renegadores da Fé, até o último deles,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,236,'Para estabelecer a verdade e derrogar a falsidade, ainda que os criminosos o odiassem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,236,'Lembrai-vos de quando implorastes socorro a vosso Senhor, e Ele vos atendeu: "Por certo, auxiliar-vos-ei com mil anjos, que se sucederão uns aos outros"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,236,'E Allah não o fez senão como alvíssaras para vós e para que vossos corações se tranquilizassem com isso. E o socorro não vem senão de Allah, O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,236,'De quando Ele fez o sono encobrir-vos, como segurança vinda dEle, e fez descer, sobre vós, água do céu, para com ela purificar-vos, e fazer ir o tormento de Satã para longe de vós, e para revigorar-vos os corações e, com ela, tornar-vos firmes os pés.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,236,'De quando teu Senhor inspirou aos anjos: "Por certo, estou convosco: então, tornai firmes os que crêem. Lançarei o terror nos corações dos que renegam a Fé. Então, batei-lhes, acima dos pescoços, e batei-lhes em todos os dedos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,236,'Isso, porque discordaram de Allah e de Seu Mensageiro. E quem discorda de Allah e de Seu Mensageiro, por certo, Allah é Veemente na punição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,236,'"Esse é vosso castigo: então, experimentai-o; e por certo, haverá para os renegadores da Fé, o castigo do Fogo"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,236,'Ó vós que credes! Quando deparardes com os que renegam a Fé, em marcha, não lhes volteis as costas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,236,'E, quem lhes volta as costas, nesse dia - exceto se por estratégia, ou para juntar-se a outro grupo - com efeito, incorrerá em ira de Allah, e sua morada será a Geena. E que execrável destino!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,236,'Então, vós não os matastes, mas foi Allah Quem os matou. E tu não atiraste areia, quando a atiraste, mas foi Allah Quem a atirou. E fê-lo, para pôr os crentes à prova, com uma bela prova vinda dEle. Por certo, Allah é Oniouvinte, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,236,'Essa é a vitória, e Allah debilita a insídia dos renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,236,'Se vós suplicáveis a sentença de Allah, com efeito, chegou-vos a sentença. E se vos abstendes da descrença, ser-vos-á melhor. E, se reincidis, Nós reincidiremos, e de nada vos valerá vossa hoste, ainda que numerosa; e Allah é com os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,236,'Ó vós que credes! Obedecei a Allah e a Seu Mensageiro e não lhe volteis as costas, enquanto ouvis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,236,'E não sejais como os que dizem: "Ouvimos", enquanto não ouvem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,236,'Por certo, os piores seres animais, perante Allah, são os surdos, os mudos que não razoam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,236,'E, se Allah soubesse de algum bem neles, havê-los-ia feito ouvir. E, se Ele os houvesse feito ouvir, voltariam as costas, dando de ombros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,236,'Ó vós que credes! Atendei a Allah e a Seu Mensageiro, quando este vos convocar ao que vos dá a verdadeira vida. E sabei que Allah Se interpõe entre a pessoa e seu coração e que a Ele sereis reunidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,236,'E guardai-vos de uma calamidade, que não alcançará, unicamente, os injustos entre vós. E sabei que Allah é Veemente na punição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,236,'E lembrai-vos de quando éreis poucos, indefesos na terra temendo que os adversários vos arrebatassem. Então, Ele vos abrigou e vos amparou com Seu socorro e vos deu sustento das cousas benignas, para serdes agradecidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,236,'Ó vós que credes! Não atraiçoeis a Allah e ao Mensageiro nem atraiçoeis os depósitos que vos são confiados, enquanto sabeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,236,'E sabei que vossas riquezas e vossos filhos vos são provação e que, junto de Allah, há magnífico prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,236,'Ó vós que credes! Se temeis a Allah, Ele vos fará critério de distinguir o bem do mal e vos remitirá as más obras e vos perdoará. E Allah é Possuidor do magnífico favor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,236,'E lembra-te, Muhammad, de quando os que renegam a Fé usaram de estratagemas contra ti, para aprisionar-te ou matar-te ou fazer-te sair de Makkah. E usaram de estratagemas, e Allah usou de estratagemas. E Allah é O Melhor em estratagema.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,236,'E, quando se recitavam Nossos versículos, para eles diziam: "Com efeito, já os ouvimos. Se quiséssemos, haveríamos dito algo igual a isso; isso não são senão fábulas dos antepassados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,236,'E quando eles disseram: "Ó Allah! Se esta é a verdade de Tua parte, faze chover sobre nós pedras do céu, ou faze-nos vir doloroso castigo"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,236,'E não é admissível que Allah os castigasse, enquanto tu estavas entre eles. E não é admissível que Allah os castigasse, enquanto imploravam perdão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,236,'E por que razão Allah não os castiga, enquanto afastam os crentes da Mesquita Sagrada e não são seus protetores? Seus protetores não são senão os piedosos. Mas a maioria deles não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,236,'E suas orações, junto da Casa, não são senão assobios e palmas. Então, experimentai o castigo, porque renegáveis a Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,236,'Por certo, os que renegam a Fé despendem suas riquezas para afastar os homens do caminho de Allah. Então, despendê-las-ão; em seguida, ser-lhes-á aflição; em seguida, serão vencidos. E os que renegam a Fé, na Geena, serão reunidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,236,'Para que Allah distinga o maligno do benigno e faça estar o maligno, um sobre o outro, e os amontoe a todos e os faça estar na Geena. Esses são os perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,236,'Dize aos que renegam a Fé que se se abstêm da descrença, ser-lhes-á perdoado o que já se consumou. E, se reincidirem, com
+efeito, precederam os procedimentos de punir, dos antepassados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,236,'E combatei-os, até que não mais haja sedição pela idolatria e que a religião toda seja de Allah. Então, se se abstêm, por certo, Allah do que fazem, é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,236,'E, se voltam as costas, sabei que Allah é vosso Protetor. Que Excelente Protetor e que Excelente Socorredor!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,236,'E sabei que, de tudo que espoliardes, a quinta parte será de Allah, e do Mensageiro, e dos parentes deste, e dos órfãos, e dos necessitados, e do filho do caminho se credes em Allah e no que fizemos descer sobre Nosso servo, no Dia de al-Furqãn (batalha), no dia em que se depararam as duas hostes, e Allah, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,236,'Quando estáveis do lado adjacente e eles, do lado extremo, e a caravana abaixo de vós. E, se vos houvésseis comprometido com o inimigo, haveríeis faltado ao encontro, mas os enfrentastes, para que Allah cumprisse uma ordem já prescrita a fim de que aquele que fosse perecer perecesse com evidência, e aquele que fosse sobreviver sobrevivesse com evidência. E, por certo, Allah é Oniouvinte, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,236,'Quando, em teu sono, Allah te fez vê-los pouco numerosos. E, se Ele te houvesse feito vê-los numerosos, haver-vos-íeis acovardado e haveríeis disputado acerca da ordem de combate. Mas Allah vos salvou. Por certo, Ele, do íntimo dos peitos, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,236,'E, quando os deparastes, Ele vos fez vê-los, a vossos olhos, pouco numerosos, e vos diminuiu a seus olhos para que Allah cumprisse uma ordem já prescrita. E a Allah são retornadas as determinações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,236,'Ó vós que credes! Quando deparardes com uma hoste, mantende-vos firmes e lembrai-vos amiúde de Allah, na esperança de serdes bem-aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,236,'E obedecei a Allah e a Seu Mensageiro, e não disputeis, senão, vos acovardareis, e vossa força se irá. E pacientai. Por certo, Allah é com os perseverantes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,236,'E não sejais como os que saíram de seus lares, com arrogância e ostentação, para serem vistos pelos outros e afastaram os demais do caminho de Allah. E Allah está sempre, abarcando o que fazem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,236,'E quando Satã lhes aformoseou as obras, e disse: "Hoje, não há, entre os humanos, vencedor de vós, e, por certo, sou vosso defensor." Então, quando se depararam as duas hostes, ele recuou, voltando os calcanhares, e disse: "Por certo, estou em rompimento convosco; por certo, vejo o que não vedes; por certo, temo a Allah. E Allah é Veemente na punição."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,236,'Lembra-te de quando os hipócritas e aqueles em cujos corações havia enfermidade, disseram: "Esses crentes, sua religião os iludiu. E quem confia em Allah, por certo, Allah é Todo-Poderoso, Sábio."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,236,'E, se visses os anjos, quando levam a alma dos que renegam a Fé, batendo-lhes nas faces e nas nádegas, e dizendo: "Experimentai o castigo da Queima."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,236,'"Isso, pelo que vossas mãos anteciparam!" E porque Allah não é injusto com os servos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,236,'Seu proceder é como o do povo de Faraó e dos que foram antes deles. Desmentiram os sinais de Allah; então, Allah apanhou-os, por seus delitos. Por certo, Allah é Forte, Veemente na punição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,236,'Isso, porque não é admissível que Allah transmute uma graça, com que haja agraciado um povo, antes que este haja transmutado o que há em si mesmo. E Allah é Oniouvinte, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,236,'O proceder desses é como o do povo de Faraó e daqueles que foram antes deles. Desmentiram os sinais de Seu Senhor; então, aniquilamo-los por seus delitos e afogamos o povo de Faraó. E todos eram injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,236,'Por certo, os piores seres animais, perante Allah, são os que renegam a Fé, pois não crêem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,236,'São aqueles, com os quais tu pactuas; em seguida, desfazem seu pacto, toda vez, e nada temem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,236,'Então, se os encontras na guerra, trucida-os, para atemorizar e dispersar os que estão atrás deles, na esperança de meditarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,236,'E se temes traição de um povo, deita fora teu pacto com eles, do mesmo modo que eles o fazem. Por certo, Allah não ama os traidores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,236,'E os que renegam a Fé não suponham que se esquivaram. Por certo, não conseguirão escapar ao castigo de Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,236,'E, preparai, para combater com eles, tudo o que puderdes: força e cavalos vigilantes, para com isso, intimidardes o inimigo de Allah e vosso inimigo, e outros além desses, que não conheceis, mas Allah os conhece. E o que quer que despendais, no caminho de Allah, ser-vos-á compensado, e não sofrereis injustiça.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,236,'E, se eles se inclinam à paz, inclina-te também, a ela, e confia em Allah. Por certo, Ele é O Oniouvinte, O Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,236,'E, se desejam enganar-te, por certo, Allah bastar-te-á. Ele é Quem te amparou com Seu socorro e com os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,236,'E pôs-lhes harmonia entre os corações. Se houvesses despendido tudo o que há na terra, não lhes haverias posto harmonia entre os corações, mas Allah pôs-lhes harmonia entre eles. Por certo, Ele é Todo-Poderoso, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,236,'Ó Profeta! Basta-te Allah, e aos crentes que te seguem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,236,'Ó Profeta! Incita os crentes ao combate. Se há, entre vós, vinte homens perseverantes, vencerão duzentos. E, se há, entre vós, cem, vencerão mil dos que renegam a Fé, porque estes são um povo que não entende.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,236,'Agora, Allah alivia-vos a tarefa, sabendo que há fraqueza em vós. Então, se há entre vós, cem homens perseverantes, vencerão duzentos. E se há entre vós, mil, vencerão dois mil, com a permissão de Allah. E Allah é com os perseverantes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,236,'Não é admissível que um profeta tenha cativos, sem antes dizimar os inimigos na terra. Desejais os efêmeros bens da vida terrena, enquanto Allah vos deseja a Derradeira Vida. E Allah é Todo-Poderoso, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,236,'Não fora uma prescrição antecipada de Allah, um formidável castigo haver-vos-ia tocado, pelo que havíeis tomado em resgate.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,236,'Então, comei do que espoliastes, enquanto lícito e benigno, e temei a Allah. Por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,236,'Ó Profeta! Dize aos cativos que estão em vossas mãos: "Se Allah sabe que há, em vossos corações, um bem, conceder-vos-á algo melhor que aquilo que vos foi tomado, e perdoar-vos-á. E Allah é Perdoador, Misericordiador"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,236,'E se desejam atraiçoar-te, com efeito, já atraiçoaram a Allah, antes. E Allah apoderou-se deles. E Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,236,'Por certo, os que creram e emigraram e lutaram, com suas riquezas e com si mesmos, no caminho de Allah; e os que abrigaram e socorreram o Profeta e os crentes, esses são aliados uns aos outros. E aos que creram e não emigraram, não tendes de aliar-vos a eles, até que emigrem. E, se eles vos pedem socorro em defesa da religião, impender-vos-á socorro, exceto se contra um povo, com o qual tendes aliança. E Allah, do que fazeis, é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,236,'E os que renegam a Fé são aliados uns aos outros. Se não o fazeis, haverá sedição na terra e grande corrupção.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,236,'E os que creram e emigraram e lutaram no caminho de Allah, e os que abrigaram e socorreram o Profeta, esses são, deveras, os crentes. Terão perdão e generoso sustento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,236,'E os que creram depois, e emigraram e lutaram convosco, então, esses são dos vossos. E os parentes consangüíneos têm prioridade uns com outros, no Livro de Allah. Por certo, Allah, de todas as cousas, é Onisciente.');
+INSERT INTO chapters (id, number, quran_id) VALUES(237,9,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,237,'Este é um rompimento de Allah e de Seu Mensageiro com os que, dentre os idólatras, vós pactuastes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,237,'Então, percorrei livremente a terra durante quatro meses, e sabei que não escapareis do castigo de Allah, e que Allah ignominiará os renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,237,'E é uma proclamação de Allah e de Seu Mensageiro aos homens, no dia da Peregrinação maior; que Allah e Seu Mensageiro estão em rompimento com os idólatras então, se vos voltais arrependidos, ser-vos-á melhor. E se voltais as costas, sabei que não escapareis do castigo de Allah. E alvissara, Muhammad, aos que renegam a Fé, doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,237,'Exceto com os idólatras, com os quais pactuastes, em seguida, em nada eles vos faltaram e não auxiliaram a ninguém contra vós; então, completai o pacto com eles até seu termo. Por certo, Allah ama os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,237,'E, quando os meses sagrados passarem, matai os idólatras, onde quer que os encontreis, e apanhai-os e sediai-os, e ficai a sua espreita, onde quer que estejam. Então, se se voltam arrependidos e cumprem a oração e concedem as esmolas deixai-lhes livre o caminho. Por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,237,'E, se um dos idólatras te pede defesa, defende-o, até que ouça as palavras de Allah; em seguida, faze-o chegar a seu lugar seguro. Isso, porque são um povo que não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,237,'Como os idólatras poderiam ter pacto com Allah e Seu Mensageiro? A não ser aqueles com quem pactuastes, junto da Sagrada Mesquita. Então, se estes são retos convosco, sede retos com eles. Por certo, Allah ama os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,237,'Como poderiam tê-lo, enquanto, se obtivessem eles a vitória sobre vós, não observariam convosco parentesco nem obrigação? Agradam-vos com suas bocas, enquanto seus peitos recusam-se; e a maioria deles é perversa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,237,'Venderam os versículos de Allah por ínfimo preço e afastaram os homens de Seu caminho. Por certo, que vil o que faziam!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,237,'Não respeitam, em crente algum, nem parentesco nem obrigação. E esses são os agressores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,237,'Então, se se voltam arrependidos e cumprem a oração e concedem as esmolas serão, pois, vossos irmãos na religião. E Nós aclaramos os versículos a um povo que sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,237,'E, se violam seus juramentos, depois de haverem pactuado convosco, e difamam vossa religião, combatei os próceres da renegação da Fé - por certo, para eles, não há juramentos respeitados - na esperança de se absterem da descrença.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,237,'Será que vós não combatereis um povo que violou seus juramentos e intentou fazer sair de Makkah o Mensageiro, e vos empreenderam o ataque, por vez primeira? Receai-los? Então, Allah é mais Digno de que O receeis, se sois crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,237,'Combatei-os, Allah os castigará por vossas mãos e os ignominiará, e vos socorrerá contra eles e curará a aflição dos peitos de um povo crente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,237,'E fará ir o rancor de seus corações. E Allah volta-Se para quem quer, remindo-o . E Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,237,'Ou supondes sereis deixados sem provação, enquanto, ainda não fizestes saber a Allah quais de vós lutareis e não tomareis outros por confidentes, além de Allah e de Seu Mensageiro e dos crentes? E Allah, do que fazeis, é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,237,'Não é admissível que os idólatras povoem as mesquitas de Allah, testemunhando contra si mesmos a renegação da Fé. Esses são aqueles cujas obras se anularão. E, no Fogo, eles serão eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,237,'Apenas, povoa as mesquitas de Allah quem crê em Allah e no Derradeiro Dia, e cumpre a oração e concede as esmolas e não receia senão a Allah. Quiçá, sejam esses dos guiados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,237,'Julgais os que dão de beber aos peregrinos e os que cuidam da Mesquita Sagrada como aqueles que crêem em Allah e no Derradeiro Dia, e lutam no caminho de Allah? Não se igualam perante Allah. E Allah não guia o povo injusto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,237,'Os que crêem e emigram e lutam no caminho de Allah, com suas riquezas e com si mesmos, têm escalões mais elevados junto de Allah. E esses são os triunfadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,237,'Seu Senhor alvissara-lhes misericórdia vinda dEle, e agrado, e jardins; neles, terão delícia permanente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,237,'Neles, serão eternos, para todo o sempre. Por certo, junto de Allah, haverá magnífico prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,237,'Ó vós que credes! Não tomeis por aliados a vossos pais e a vossos irmãos, se amam a renegação da Fé mais que a Fé. E quem de vós se alia a eles, esses serão os injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,237,'Dize: "Se vossos pais e vossos filhos e vossos irmãos e vossas mulheres e vossos clãs, e riquezas, que ganhastes, e comércio, de que receais a estagnação, e vivendas, de que vos agradais, são-vos mais amados que Allah e Seu Mensageiro e a luta em Seu caminho, então, aguardai até que Allah faça chegar Sua ordem. E Allah não guia o povo perverso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,237,'Com efeito, Allah socorreu-vos, em muitos campos de batalha. E, lembrai-vos, do dia da batalha de Hunain, quando vos admiráveis de vosso grande número, e este de nada vos valeu; e parecia-vos a terra estreita, por mais ampla que fosse. Em seguida, voltastes as costas, fugindo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,237,'Em seguida, Allah fez descer Sua serenidade sobre Seu Mensageiro e sobre os crentes, e fez descer um exército de anjos, que não víeis, e castigou os que renegaram a Fé. E essa é a recompensa dos renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,237,'Em seguida, Allah voltar-se-á, depois disso, para quem quiser, remindo-o. E Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,237,'Ó vós que credes! Os idólatras não são senão imundícia. Então, que eles não se aproximem mais da Mesquita Sagrada, após este seu ano, se temeis penúria de Allah enriquecer-vos-á com Seu favor, se quiser. Por certo, Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,237,'Dentre aqueles aos quais fora concedido o Livro, combatei os que não crêem em Allah nem no Derradeiro Dia, e não proíbem o que Allah e Seu Mensageiro proibiram, e não professam a verdadeira religião; combatei-os até que paguem a taxa com as próprias mãos, enquanto humilhados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,237,'E os judeus dizem: "Uzair é filho de Allah." E os cristãos dizem; "O Messias é filho de Allah." Esse é o dito de suas bocas. Imitam o dito dos que antes, renegaram a Fé. Que Allah os aniquile! Como se distanciam da verdade!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,237,'Tomam seus rabinos e seus monges por senhores, além de Allah e, assim também, ao Messias, filho de Maria. E não se lhes ordenou senão adorarem um Deus Único. Não existe deus senão Ele. Glorificado seja Ele, acima do que idolatram.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,237,'Desejam apagar com o sopro das bocas a luz de Allah e Allah não permitirá senão que seja completa Sua luz, ainda que o odeiem os renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,237,'Ele é Quem enviou Seu Mensageiro, com a Orientação e a religião da Verdade, para fazê-la prevalecer sobre todas as religiões, ainda que o odeiem os idólatras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,237,'Ó vós que credes! Por certo, muitos dos rabinos e dos monges devoram, ilicitamente, as riquezas dos homens e afastam-nos do caminho de Allah. E aos que entesouram o ouro e a prata e não os despendem no caminho de Allah, alvissara-lhes doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,237,'Um dia, quando os incandescerem no fogo da Geena, e, com eles, lhes cauterizar as frontes e os flancos e os dorsos, dir-se-lhes-á: "Isto é o que entesourastes, para vós mesmos: então, experimentai o que entesouráveis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,237,'Por certo, o número dos meses, junto de Allah, é de doze meses, conforme está no Livro de Allah, desde o dia em que Ele criou os céus e a terra. Quatro deles são sagrados. Essa é a religião reta. Então, não sejais, neles, injustos com vós mesmos e combatei os idólatras, a todos eles, como eles vos combatem, a todos vós. E sabei que Allah é com os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,237,'O postergar dos meses sagrados é, apenas, acréscimo na renegação da Fé: com ele, os que renegam a Fé descaminham-se. Eles tornam-no lícito num ano, e ilícito em outro ano, para fazerem coincidir com o número do que Allah consagrou; então, tornam lícito o que Allah proibiu. Aformoseou-se para eles, o mal de suas obras. E Allah não guia o povo renegador da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,237,'Ó vós que credes! Por que razão, ao vos dizerem: "Saí a campo, para combater no caminho de Allah", permanecestes apegados à terra? Vós vos agradastes da vida terrena, em lugar da Derradeira Vida? Ora, o gozo da vida terrena não é senão ínfimo na Derradeira Vida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,237,'Se vós não saís a campo, Allah castigar-vos-á com doloroso castigo e vos substituirá por outro povo e, em nada, O prejudicareis. E Allah, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,237,'Se não o socorreis, Allah o socorrerá como, com efeito, Allah o socorreu, quando os que renegavam a Fé o fizeram sair de Makkah, sendo ele o segundo de dois; quando ambos estavam na caverna e quando disse a seu companheiro: "Não te entristeças; por certo, Allah é conosco." Então, Allah fez descer Sua serenidade sobre ele e amparou-o com um exército de anjos, que não víeis, e fez inferior a palavra dos que renegavam a Fé. E a palavra de Allah é a altíssima. E Allah é Todo-Poderoso, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,237,'Saí a campo armados, leve ou pesadamente, e lutai com vossas riquezas e vós mesmos, no caminho de Allah. Isso vos é melhor. Se soubésseis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,237,'Se se tratasse de ganho imediato ou de viagem fácil, os hipócritas haver-te-iam seguido, mas lhes era longa a árdua distância. E jurarão por Allah, ao retornardes a eles: "Se pudéssemos, haveríamos saído convosco." Aniquilam-se a si mesmos, por perjuro. E Allah sabe que são mentirosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,237,'Que Allah indulta-te! Por que tu Ihes permitiste não saírem a campo, antes que se tornassem evidentes para ti, os que diziam a verdade, e conhecesses os mentirosos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,237,'Os que crêem em Allah e no Derradeiro Dia jamais te pedirão isenção de lutar, com seus bens e com si mesmos. E Allah, dos piedosos, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,237,'Apenas pedem-te isenção os que não crêem em Allah nem no Derradeiro Dia; e seus corações duvidam; então, vacilam em sua dúvida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,237,'E, se eles houvessem desejado sair, haveriam preparado, para isso, um preparativo, mas Allah odiou sua partida e desencorajou-os, e foi dito: "Permanecei junto com os que permanecem"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,237,'Se eles houvessem saído convosco, não vos haveriam acrescentado senão desventura e haveriam precipitado a cizânia entre vós, buscando para vós, a sedição, enquanto entre vós, há os que lhes dão ouvidos. E Allah, dos injustos, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,237,'Com efeito, buscaram antes a sedição e fizeram virar contra ti as determinações, até que a verdade chegou e a ordem de Allah prevaleceu, enquanto a odiando.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,237,'E dentre eles, há quem diga: "Permite-me a isenção e não me põe na tentação." Ora, na tentação já caíram. E por certo, a Geena estará abarcando os renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,237,'Se algo de bom te alcança, isto os aflige. E, se uma desgraça te alcança, dizem: "Com efeito, tomamos nossa decisão, antes." E voltam as costas, enquanto jubilosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,237,'Dize: "Não nos alcançará senão o que Allah nos prescreveu. Ele é nosso Protetor." E que os crentes, então, confiem em Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,237,'Dize: "Vós não aguardais, para nós, senão uma das duas mais belas recompensas? E nós aguardamos, para vós, que Allah vos alcance com castigo de sua parte, ou por nossas mãos. Então, aguardai-o. Por certo, nós o estaremos aguardando convosco"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,237,'Dize: "Despendei vossas riquezas, de bom ou de mau grado: nada vos será aceito. Por certo, sois um povo perverso."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,237,'E o que impediu se lhes aceitasse o que despendiam não foi senão eles renegarem a Allah e a seu Mensageiro; e não realizam a oração senão enquanto preguiçosos, e não despendem suas riquezas senão enquanto de mau grado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,237,'Então, não te admires de suas riquezas e de seus filhos. Apenas, Allah não deseja, com isso, senão castigá-los na vida terrena, e que morram, enquanto renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,237,'E eles juram por Allah que são dos vossos, enquanto não são dos vossos, mas são um povo que se atemoriza.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,237,'Se encontrassem refúgio ou grutas, ou subterrâneo, a eles se voltariam, enquanto infrenes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,237,'E dentre eles, há quem te critica acerca da distribuição das Sadaqãts, (as ajudas caridosas); então, se lhes dão delas, agradam-se disso; e se lhes não dão, ei-los que se enchem de cólera.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,237,'E, se eles se agradassem do que Allah e Seu Mensageiro lhes concedem, e dissessem: "Allah basta-nos; Allah conceder-nos-á algo de Seu favor, e também Seu Mensageiro! Por certo, a Allah estamos rogando", ser-lhes-ia melhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,237,'As sadaqãts, as ajudas caridosas, são apenas, para os pobres e os necessitados e os encarregados de arrecadá-las e aqueles, cujos corações estão prestes a harmonizar-se com o Islam e os escravos, para se alforriarem, e os endividados e os combatentes no caminho de Allah e o filho do caminho, o viajante em dificuldades: é preceito de Allah. E Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,237,'E, dentre eles, há os que molestam o Profeta e dizem: "Ele é todo ouvidos." Dize: "Ele é todo ouvidos para vosso bem; ele crê em Allah e crê nos crentes e é misericórdia para os que crêem, dentre vós." E os que molestam o Mensageiro de Allah terão doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,237,'Juram-vos, por Allah, para agradar-vos, e Allah - como também Seu Mensageiro - é mais Digno de que eles O agradem, se são crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,237,'Não sabem eles que quem se opõe a Allah e a Seu Mensageiro terá o fogo da Geena, em que será eterno? Essa é a formidável ignomínia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,237,'Os hipócritas precatam-se de que seja descida uma sura a seu respeito, que os informe do que há em seus corações. Dize: "Zombai! Por certo, Allah fará sair à tona aquilo de que vos precatais".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,237,'E, em verdade, se lhes perguntas acerca de sua zombaria, dirão: "Apenas, confabulávamos e nos divertíamos." Dize: "Estáveis zombando de Allah e de Seus versículos e de Seu Mensageiro?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,237,'Não vos desculpeis: com efeito, renegastes a Fé, após haverdes crido. Se indultamos uma facção de vós, castigaremos a outra facção, porque era criminosa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,237,'Os hipócritas e as hipócritas procedem uns dos outros: ordenam o reprovável e coíbem o conveniente e fecham as próprias mãos. Esqueceram-se de Allah, então, Ele Se esqueceu deles. Por certo, os hipócritas são os perversos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,237,'Allah promete aos hipócritas e às hipócritas e aos renegadores da Fé o fogo da Geena; nela, serão eternos. Basta-lhes ela. E Allah amaldiçoa-os, e terão castigo permanente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,237,'Vós, hipócritas, sois como os que foram antes de vós: eram mais
+veementes que vós em força, e mais privilegiados em riquezas e filhos, e deleitavam-se com seu quinhão; e vós vos deleitais com
+vosso quinhão, como se deleitaram com seu quinhão os que foram antes de vós, e confabulais, como eles confabularam. Esses terão anuladas suas obras, na vida terrena e na Derradeira Vida. E esses são os perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,237,'Não lhes chegou a história dos que foram antes deles: do povo de Noé e de Ãd e de Thamud e do povo de Abraão e dos habitantes de Madian e das cidades tombadas? Seus Mensageiros chegaram-lhes com as evidências; então, não era admissível que Allah fosse injusto com eles, mas foram injustos com eles mesmos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,237,'E os crentes e as crentes são aliados uns aos outros. Ordenam o conveniente e coíbem o reprovável e cumprem a oração e concedem as esmolas, e obedecem a Allah e a Seu Mensageiro. Desses, Allah terá misericórdia. Por certo, Allah é Todo-Poderoso, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,237,'Allah promete aos crentes e às crentes Jardins, abaixo dos quais correm os rios; nesses, serão eternos, e esplêndidas vivendas nos Jardins do Éden e agrado de Allah, ainda, maior. Esse é o magnífico triunfo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,237,'Ó Profeta! Luta contra os renegadores da Fé e os hipócritas, e sê duro para com eles. E sua morada será a Geena. E que execrável destino!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,237,'Juram, por Allah, não haver dito moléstia alguma e, com efeito, disseram a palavra da renegação da Fé e renegaram a Fé, após se islamizarem. E intentaram o que não conseguiram alcançar. Mas eles não fizeram censuras, senão porque Allah e Seu Mensageiro os haviam enriquecido com Seu favor. Então, se se voltam arrependidos, ser-Ihes-á melhor, e se voltam as costas, Allah castigá-los-á com doloroso castigo, na vida terrena e na Derradeira Vida. E não terão, na terra, nem protetor nem socorredor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,237,'E dentre eles, houve quem pactuasse com Allah, dizendo: "Se Ele nos concedesse algo de Seu favor, em verdade, daríamos as esmolas e seríamos dos íntegros"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,237,'E quando Ele lhes concedeu algo de Seu favor, tornaram-se ávaros disso e voltaram as costas, dando de ombros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,237,'Então, Ele fez redundar hipocrisia em seus corações, até um dia, em que O depararão, por haverem faltado a seus compromissos com Allah e por haverem mentido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,237,'Não sabiam eles que Allah sabe seus segredos e suas confidências, e que Allah, das cousas invisíveis, é Profundo Sabedor?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,237,'Os que caluniam os doadores voluntários, dentre os crentes, no tocante às ajudas caridosas, e caluniam os que nada encontram para oferecer senão seus parcos recursos, e desses escarnecem; Allah deles escarnecerá, e terão doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,237,'Implora perdão para eles; ou não implores perdão para eles; se imploras perdão para eles, setenta vezes, Allah não os perdoará. Isso, porque renegaram a Allah e a Seu Mensageiro. E Allah não guia o povo perverso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,237,'Os que ficaram para trás jubilaram, com sua ausência ao combate, discrepando do Mensageiro de Allah, e odiaram lutar, com suas riquezas e com si mesmos, no caminho de Allah, e disseram: "Não saias a campo no calor." Dize, Muhammad: "O fogo da Geena é mais
+veemente em calor." Se entendessem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,237,'Então, que riam pouco e chorem muito, em recompensa do que cometiam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,237,'E, se Allah te faz retornar a uma facção deles, e eles te pedem permissão para sair a campo, dize: "Jamais saireis comigo nem combatereis inimigo algum junto de mim. Por certo, vós vos agradastes da ausência ao combate, da vez primeira: então, ausentai-vos do combate com os que ficaram para trás."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,237,'E não ores, nunca, por nenhum deles, quando morrer, nem te detenhas em seu sepulcro: por certo, eles renegaram a Allah e a Seu Mensageiro, e morreram enquanto perversos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,237,'E não te admires de suas riquezas e de seus filhos. Apenas, Allah não deseja, com isso, castigá-los na vida terrena, e que morram, enquanto renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,237,'E, quando se faz descer uma sura que diz: "Crede em Allah e lutai com Seu Mensageiro", os dotados de posses, entre eles, pedem-te permissão de não lutar, e dizem: "Deixa-nos estar com os ausentes do combate"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,237,'Agradaram-se de ficar com as mulheres isentas do combate, e selaram-se-lhes os corações: então, eles não entendem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,237,'Mas o Mensageiro e os que crêem, com ele, lutam, com suas riquezas e com si mesmos. E esses terão as boas cousas, e esses são os bem-aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,237,'Allah retribuiu-lhes Jardins, abaixo dos quais correm os rios; nesses, serão eternos. E esse é o magnífico triunfo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,237,'E chegaram os que, entre os beduínos, alegavam desculpas para que lhes permitissem isenção de combate; e ausentaram-se os que mentiram a Allah e a Seu Mensageiro. Doloroso castigo alcançará os que, renegaram a Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,237,'Não há culpa sobre os indefesos nem sobre os enfermos nem sobre os que não encontram recursos para o combate, quando são sinceros com Allah e Seu Mensageiro. Não há repreensão aos benfeitores e Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,237,'Nem àqueles que, quando chegaram a ti, para os levares a combate, e lhes disseste: "Não encontro aquilo sobre o qual levar-vos". Eles voltaram com os olhos marejados de lágrimas, de tristeza por não haverem encontrado o de que despender.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,237,'Há repreensão, apenas, aos que enquanto ricos, te pedem isenção. Agradaram-se de ficar com as mulheres isentas do combate; e Allah selou-lhes os corações; então, eles não sabem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,237,'Eles pedir-vos-ão desculpas, quando retornardes a eles. Dize: "Não vos desculpeis. Não creremos em vós. Com efeito, Allah informou-nos de vossas notícias. E Allah verá, e também Seu Mensageiro, vossas obras; em seguida, sereis levados ao Sabedor do invisível e do visível: então, Ele vos informará do que fazíeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,237,'Eles jurar-vos-ão, por Allah, quando a eles tornardes, que estavam com a razão, para que lhes absolvais o erro. Então, dai-Ihes de ombros: por certo, são uma abominação, e sua morada é a Geena, em recompensa do que cometiam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,237,'Eles juram-vos, para que deles vos agradeis; então, se deles vos agradais, por certo, Allah não se agradará do povo perverso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,237,'Os beduínos são mais veementes na renegação da Fé e na hipocrisia e mais afeitos a não saber os limites do que Allah faz descer sobre Seu Mensageiro. E Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,237,'E, dentre os beduínos, há quem tome por dano o que despende pela causa de Allah, e aguarde, para vós, os reveses. Que sobre eles seja o revés do mal! E Allah é Oniouvinte, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,237,'E, dentre os beduínos, há quem creia em Allah e no Derradeiro Dia e tome o que despende pela causa de Allah por oferendas a Allah e meio de acesso às preces do Mensageiro. Ora, por certo, é uma oferenda para eles. Allah fá-los-á entrar em Sua Misericórdia. Por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,3,237,'E os precursores primeiros, dentre os emigrantes, e os socorredores e os que os seguiram com benevolência, Allah Se agradará deles, e eles se agradarão dEle, e Ele lhes preparou Jardins, abaixo dos quais correm os rios; nesses, serão eternos, para todo o sempre. Esse é o magnífico triunfo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,3,237,'E, dentre os beduínos, que estão a vosso redor, há hipócritas e, dentre os habitantes de Al-Madinah, há os que se adestraram na hipocrisia: tu não os conheces. Nós os conhecemos. Castigá-los-emos duas vezes; em seguida, serão levados a formidável castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,3,237,'E outros reconheceram seus delitos; mesclaram uma boa obra com uma outra má. Quiçá, Allah Se volte para eles, remindo-os. Por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,3,237,'Toma de suas riquezas uma caridade, com que os purifiques e os dignifiques, e ora por eles: por certo, tua oração é lenitivo para eles. E Allah é Oniouvinte, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,3,237,'Não sabiam eles que Allah aceita o arrependimento de Seus servos e recebe as caridades, e que Allah é O Remissório, O Misericordiador?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,3,237,'E dize: "Laborai; então, Allah verá vossas obras e também Seu Mensageiro e os crentes. E sereis levados ao Sabedor do invisível e do visível; e Ele, informar-vos-á do que fazíeis"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,3,237,'E há outros, preteridos, até a ordem de Allah: ou Ele os castigará, ou Ele Se voltará para eles, remindo-os. E Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,3,237,'E há os que edificaram uma mesquita para prejuízo da outra, e para renegação da Fé e separação entre os crentes, e para ser lugar de espreita para quem antes, fez guerra contra Allah e Seu Mensageiro; e em verdade, eles juram por Allah: "Não desejamos senão a mais bela ação." E Allah testemunha que são mentirosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,3,237,'Nunca te detenhas nela. Em verdade, uma mesquita fundada sobre a piedade, desde o primeiro dia, é mais digna de que nela te detenhas. Nela, há homens que amam purificar-se. E Allah ama os que se purificam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,3,237,'Então, quem é melhor? Quem fundou sua edificação sobre piedade e agrado de Allah, ou quem fundou sua edificação à beira de encosta solapada, então, vem a desmoronar-se com ele, no fogo da Geena? E Allah não guia o povo injusto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,3,237,'Sua edificação, que edificaram, não cessará de ser fonte de dúvida em seus corações, até que seus corações se lhes despedacem. E Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,3,237,'Por certo, Allah comprou aos crentes suas pessoas e suas riquezas, pelo preço por que terão o Paraíso. Combatem no caminho de Allah: então, eles matam e são mortos, promessa que, deveras, Lhe impende na Torá e no Evangelho e no Alcorão. E quem mais fiel a seu pacto que Allah? Então, exultai pela venda que fizestes. E esse é o magnífico triunfo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,3,237,'Esses são os arrependidos, os adoradores, os louvadores, os jejuadores, os curvados, em oração, os prosternados, os ordenadores do conveniente e os coibidores do reprovável e os custódios dos limites de Allah. E alvissara aos crentes O Paraíso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,3,237,'Não é admissível que o Profeta e os que crêem implorem perdão para os idólatras, ainda que estes tenham vínculo de parentesco, após haver-se tornado evidente, para eles, que são os companheiros do Inferno.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,3,237,'E a súplica de perdão de Abraão para seu pai, não foi senão por causa de uma promessa, que lhe fizera. Então, quando se tornou evidente, para ele que era inimigo de Allah, rompeu com ele. Por certo, Abraão era suplicante, clemente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,3,237,'E não é admissível que Allah descaminhe um povo, após havê-lo guiado, sem antes tornar evidente, para ele, aquilo de que deve guardar-se. Por certo, Allah, de todas as cousas, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,3,237,'Por certo, de Allah é a Soberania dos céus e da terra. Ele dá a vida e dá a morte. E não tendes além de Allah, nem protetor nem socorredor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,3,237,'Com efeito, Allah voltou-Se para o Profeta, remindo-o e aos emigrantes e aos socorredores que o seguiram na hora da dificuldade após os corações de um grupo deles quase se haverem desviado; em seguida, Allah voltou-Se para eles, remindo-os. Por certo, Ele é, para com eles, Compassivo, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,3,237,'E remiu os três que ficaram para trás e se sentiram tão culpados que a terra se lhes pareceu estreita, por mais ampla que fosse; e estreitas também, se lhes pareceram as almas, e pensaram que não haveria refúgio contra a ira de Allah senão nEle Mesmo. Em seguida, Ele voltou-Se para eles, remindo-os, para que se voltassem para Ele, arrependidos. Por certo, Allah é Remissório, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,3,237,'Ó vós que credes! Temei a Allah e permanecei com os verídicos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,3,237,'Não é admissível que os habitantes de Al-Madínah e os beduínos, a seu redor, fiquem para trás do Mensageiro de Allah nem prefiram as próprias vidas à sua vida. Isso, porque serão recompensados, em qualquer eventualidade; não os alcançará sede nem fadiga nem fome, no caminho de Allah; nem pisarão uma terra que suscite o rancor dos renegadores da Fé; nem obterão do inimigo obtenção alguma, senão para ser-lhes registrada boa obra. Por certo, Allah não faz perder o prêmio dos benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,3,237,'Nem terão dispêndio algum, pequeno ou grande, nem cortarão um vale, senão para ser-lhes registada boa obra, a fim de que Allah os recompense com algo melhor que aquilo que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,3,237,'E não é admissível que os crentes saiam todos a campo. Então, que saia uma facção de cada coletividade, para que possam instruir-se na religião e para que, depois, admoestem seu povo, quando a ele retornarem, a fim de que este se precate.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,3,237,'Ó vós que credes! Combatei os renegadores da Fé, que vos circunvizinham, e que estes encontrem dureza em vós, e sabei que Allah é com os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,3,237,'E, quando se faz descer uma sura, há dentre eles quem diga: "A quem de vós esta sura acrescentou Fé?" Então, quanto aos que crêem, esta lhes acrescenta Fé, enquanto exultam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,3,237,'E quanto àqueles em cujos corações há enfermidade, ela lhes acrescenta abominação sobre sua abominação, e morrem, enquanto renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,3,237,'E não vêem eles que são provados uma ou duas vezes em cada ano? Em seguida, não se voltam arrependidos nem meditam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,3,237,'E, quando se faz descer uma sura, olham-se uns aos outros, dizendo: "Alguém vos vê?" Em seguida, se desviam. Que Allah lhes desvie os corações da orientação, porque são um povo que não entende.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,3,237,'Com efeito, um Mensageiro vindo de vós chegou-vos; é-lhe penoso o que vos embaraça; é zeloso de guiar-vos, é compassivo e misericordiador para com os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,3,237,'Então, se eles voltam as costas, dize: "Allah basta-me. Não existe deus senão Ele. Nele confio. E Ele é O Senhor do magnífico Trono"');
+INSERT INTO chapters (id, number, quran_id) VALUES(238,10,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,238,'Alif, Lãm, Rã. Esses são os versículos do Livro pleno de sabedoria.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,238,'É de admirar aos homens que revelemos a um homem, dentre eles: "Admoesta os humanos e alvissara aos que crêem que terão, junto de seu Senhor, real primazia"? Os renegadores da Fé dizem: "Por certo, este é um evidente mágico!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,238,'Por certo, vosso Senhor é Allah, Que criou os céus e a terra, em seis dias; em seguida, estabeleceu-Se no Trono, administrando a ordem de tudo; não há intercessor algum senão após Sua permissão. Esse é Allah, vosso Senhor, adorai-O pois. Não meditais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,238,'A Ele será vosso retorno, de todos vós: é, deveras, a promessa de Allah. Por certo, Ele inicia a criação; em seguida, repete-a, para recompensar, com eqüidade, os que crêem e fazem as boas obras. E os que renegam a Fé terão por bebida, água ebuliente, e doloroso castigo, porque renegam a Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,238,'Ele é Quem fez do sol luminosidade, e da lua, luz e determinou-lhe fases para que saibais o número dos anos e o cômputo do tempo. Allah não criou isso senão com a verdade. Ele aclara os sinais a um povo que sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,238,'Por certo, na alternância da noite e do dia, e no que Allah criou nos céus e na terra, há sinais para um povo que teme a Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,238,'Por certo, os que não esperam Nosso deparar e se agradam da vida terrena e, nela, se tranqüilizam, e os que estão desatentos a Nossos sinais,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,238,'Desses, a morada será o Fogo, pelo que cometiam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,238,'Por certo, aos que crêem e fazem as boas obras, seu Senhor guia-os, por causa de sua Fé: a seus pés, os rios correrão, nos Jardins da Delícia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,238,'Aí, sua súplica será: "Glorificado sejas, ó Allah!" E, neles, sua saudação será: "Salam!" Paz! E o término de sua súplica será: "Louvor a Allah, O Senhor dos mundos!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,238,'E, se Allah apressasse para os homens, a vinda do mal, como eles apressam a vinda do bem, seu termo haveria sido encerrado; então, deixamos os que não esperam Nosso deparar, em sua transgressão, caminhando às cegas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,238,'E, quando o infortúnio toca ao ser humano, este Nos invoca, estando deitado ou assentado ou de pé. Então, quando lhe removemos o infortúnio, segue em frente, como se não Nos houvesse invocado, por infortúnio que o tocou. Assim, aformoseou-se, para os que se entregam a excessos, o que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,238,'E, com efeito, aniquilamos as gerações antes de vós, quando foram injustas, enquanto seus Mensageiros chegaram-lhes com as evidências. E não quiseram crer. Assim, recompensamos o povo criminoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,238,'Em seguida, fizemo-vos sucessores na terra, depois delas, para olhar como faríeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,238,'E, quando se recitam, para eles, Nossos evidentes versículos, os que não esperam Nosso deparar dizem: "Faze-nos vir um Alcorão outro que este, ou troca-o." Dize: "Não me é admissível trocá-lo, por minha própria vontade: não sigo senão o que me é revelado. Por certo, temo, se desobedeço a meu Senhor, o castigo de um formidável dia."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,238,'Dize: "Se Allah quisesse, não o haveria eu recitado, para vós, nem Ele vos haveria feito inteirar-vos dele; e com efeito, antes dele, permaneci durante uma vida entre vós. Então, não razoais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,238,'E quem mais injusto que aquele que forja mentiras acerca de Allah ou desmente Seus sinais? Por certo, os criminosos não serão bem-aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,238,'E eles adoram além de Allah o que não os prejudica nem os beneficia, e dizem: "Estes são nossos intercessores perante Allah". Dize: "Vós informaríeis a Allah do que Ele não sabe nos céus nem na terra?" Glorificado e Sublimado seja Ele, acima do que idolatram!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,238,'E os homens não eram senão uma só comunidade; então, discreparam. E, não fora uma palavra antecipada de teu Senhor, arbitrar-se-ia, entre eles, por aquilo de que discrepavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,238,'E dizem: "Que se faça descer sobre ele um sinal de seu Senhor!" Então, dize: "O Invisível é, apenas, de Allah; esperai, pois; por certo, serei convosco, entre os que esperam"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,238,'E, quando fazemos experimentar misericórdia aos homens, após infortúnio que os tocou, ei-los usando de estratagemas contra Nossos sinais. Dize: "Allah é mais Destro em estratagemas." Por certo, Nossos Mensageiros celestiais escrevem os estratagemas de que usais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,238,'Ele é Quem vos faz caminhar, na terra e no mar até que, quando estais no barco, e este corre com eles movido por galerno vento, e com este eles jubilam, chega-lhe tempestuoso vento, e chegam-lhes as ondas de todos os lados, e pensam que estão assediados: eles suplicam a Allah, sendo sinceros com Ele na devoção: "Em verdade, se nos salvares desta, seremos dos agradecidos!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,238,'Então, quando os salva, ei-los cometendo sem razão, transgressão na terra. Ó humanos! Vossa transgressão é apenas, contra vós mesmos. É gozo da vida terrena. Em seguida, a Nós será vosso retorno; e informar-vos-emos do que fazíeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,238,'O exemplo da vida terrena é apenas, como água que fazemos descer do céu e, com ela, se mescla a planta da terra da qual comem os humanos e os rebanhos, até que, quando a terra se paramenta com seus ornamentos e se aformoseia, e seus habitantes pensam ter poderes sobre ela, Nossa ordem chega-lhe, de dia ou de noite, e fazemo-la ceifada, como se na véspera, nada houvesse existido nela. Assim, aclaramos os sinais a um povo que reflete.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,238,'E Allah convoca à Morada da paz e guia, a quem quer, à senda reta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,238,'Para os que bem-fazem, haverá a mais bela recompensa e ainda, algo mais. E não lhes cobrirá as faces nem negrume nem vileza. Esses são os companheiros do Paraíso; nele, serão eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,238,'E os que cometem as más obras terão recompensa de uma ação má equivalente, e cobri-los-á uma vileza. Não terão defensor algum contra o castigo de Allah; suas faces ficarão como que encobertas por fragmentos da tenebrosa noite. Esses são os companheiros do Fogo; nele, serão eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,238,'E lembra-lhes, Muhammad, de que um dia os reuniremos, a todos; em seguida, diremos aos que idolatraram: "Para vossos lugares, vós e vossos ídolos!" Então, separá-los-emos, e seus ídolos dirão: "Não éramos nós a quem adoráveis".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,238,'"Então, basta Allah por testemunha, entre nós e vós: por certo, estivemos desatentos à vossa adoração"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,238,'Aí, cada alma estará ciente do que adiantou. E todos serão levados a Allah, seu Verdadeiro Protetor; e o que eles forjavam sumirá, para longe deles.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,238,'Dize: "Quem vos dá sustento do céu e da terra? Ou quem tem poder sobre o ouvido e as vistas? E quem faz sair o vivo do morto e faz sair o morto do vivo? E quem administra a ordem?" Dirão: "Allah." Dize: "Então, não temeis a Allah?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,238,'E esse é Allah, vosso Verdadeiro Senhor. E o que há para além da verdade, senão o descaminho? Então, como dela vos desviais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,238,'Assim, cumpriu-se a palavra de teu Senhor, contra os que cometeram perversidade: "eles não crerão"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,238,'Dize: "De vossos ídolos, há quem inicie a criação, em seguida, a repita?" Dize: "Allah inicia a criação; em seguida, repete-a: então, como, dEle vos distanciais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,238,'Dize: "De vossos ídolos, há quem guie à verdade?" Dize: "Allah guia à verdade. Então, quem é mais digno de ser seguido: quem guia à verdade ou quem não se guia senão enquanto guiado? Então, o que há convosco? Como julgais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,238,'E a maioria deles não segue senão conjeturas. Mas, por certo, a conjetura de nada valerá contra a verdade. Por certo, Allah, do que fazem, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,238,'E não é admissível que este Alcorão seja forjado por fora de Allah, mas é a confirmação do que havia antes dele e aclaração do Livro indubitável, do Senhor dos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,238,'Ou eles dizem: "Ele o forjou?" Dize: "Então, fazei vir uma sura igual à dele e, para isso, convocai quem puderdes, afora Allah, se sois verídicos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,238,'Ao contrário, não a farão chegar; eles desmentem aquilo cuja ciência não abarcam e ainda, lhes não chegou sua interpretação. Assim, os que foram antes deles, desmentiram a seus Mensageiros. Então, olha como foi o fim dos injustos!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,238,'E, dentre eles, há quem nele creia e, dentre eles, há quem nele não creia. E teu Senhor é bem Sabedor dos corruptores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,238,'E, se eles te desmentem, dize: "A mim, minha ação, e a vós, vossa ação: vós estais em rompimento com o que faço, e eu estou em rompimento com o que fazeis"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,238,'E, dentre eles, há quem te ouça; então, podes fazer ouvir os surdos, ainda que não razoem?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,238,'E, dentre eles, há quem te olhe; então, podes guiar os cegos, ainda que nada enxerguem?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,238,'Por certo, Allah não faz injustiça alguma com os homens, mas os homens fazem injustiça com si mesmos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,238,'E um dia, Ele os reunirá; será como se não houvessem permanecido na vida terrena senão por uma hora do dia; reconhecer-se-ão uns aos outros. Com efeito, perder-se-ão os que desmentiram o deparar de Allah e não foram guiados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,238,'E, se te fazemos ver algo do que lhes prometemos ou te levamos a alma, a Nós será seu retorno. Além disso, Allah é Testemunha do que fazem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,238,'E para cada comunidade, há um Mensageiro. Então, quando chegar seu Mensageiro, arbitrar-se-á, entre eles com eqüidade, e eles não sofrerão injustiça.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,238,'E dizem: "Quando será o cumprimento desta promessa, se sois verídicos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,238,'Dize: "Não possuo, para mim mesmo, prejuízo nem benefício, exceto o que Allah quiser. Para cada comunidade, há um termo. Quando seu termo chegar, eles não poderão atrasar-se, uma hora sequer, nem adiantar-se"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,238,'Dize: "Vistes? Se Seu castigo vos chega, de noite ou de dia, o que dele os criminosos apressarão?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,238,'"Crereis nele quando sobrevier? Dir-se-lhes-á: "Agora, credes! Enquanto, com efeito, tanto o apressáveis?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,238,'Em seguida, dir-se-á aos que foram injustos: "Experimentai o castigo da Eternidade! Não estais sendo recompensados senão pelo que cometíeis?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,238,'E pedem-te informações: "É isso verdade?" Dize: "Sim, por meu Senhor; por certo, é verdade. E dele, não podeis escapar"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,238,'E, se cada alma injusta tivesse o que há na terra, ela resgatar-se-ia, com isso. E eles guardarão segredo do arrependimento, quando virem o castigo, e arbitrar-se-á entre eles, com eqüidade, e eles não sofrerão injustiça.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,238,'Ora, por certo, de Allah é o que há nos céus e na terra. Ora, por certo, a promessa de Allah é verdadeira, mas a maioria deles não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,238,'Ele dá a vida e dá a morte, e a Ele sereis retornados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,238,'Ó humanos! Com efeito, uma exortação de vosso Senhor chegou-vos e cura para o que há nos peitos e orientação e misericórdia para os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,238,'Dize: "Com o favor de Allah e com a Sua misericórdia, então, com isso, é que devem jubilar: isso é melhor que tudo quanto juntam"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,238,'Dize: "Vistes o que Allah criou para vós de sustento, e disso fazeis algo ilícito e lícito?" Dize: "Allah vo-lo permitiu, ou forjais mentiras acerca de Allah?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,238,'E o que pensarão, no dia da Ressurreição, os que forjam mentiras acerca de Allah? Por certo, Allah é Obsequioso para com os humanos, mas a maioria deles não agradece.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,238,'E seja qual for a situação em que estejas, Muhammad, e seja o que for que, nela, recites do Alcorão, e vós não fazeis ação alguma sem que sejamos Testemunhas de vós, quando nisso vos empenhais. E não escapa de teu Senhor peso algum de átomo, na terra nem no céu; e nada menor que isto nem maior, que não esteja no evidente Livro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,238,'Ora, por certo, os aliados a Allah, por eles nada haverá que temer, e eles não se entristecerão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,238,'Os que crêem e são piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,238,'Têm as alvíssaras, na vida terrena e na Derradeira Vida. - Não há alteração das palavras de Allah. - Esse é o magnífico triunfo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,238,'E não te entristeça seu dito. Por certo, todo o poder é de Allah. Ele é O Oniouvinte, O Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,238,'Ora, por certo, de Allah é quem está nos céus e quem está na terra. E os que invocam ídolos, além de Allah, não seguem verdadeiros parceiros: não seguem senão conjeturas e nada fazem senão imposturar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,238,'Ele é Quem vos fez a noite, para nela repousardes, e o dia, claro. Por certo, há nisso sinais para um povo que ouve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,238,'Eles dizem: "Allah tomou para Si um filho." - Glorificado seja Ele! Ele é o Bastante a Si mesmo. DEle é o que há nos céus e que há na terra. - Não tendes comprovação disso. Dizeis, acerca Allah, o que não sabeis?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,238,'Dize: "Por certo, os que forjam mentiras, acerca de Allah, não são bem-aventurados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,238,'Terão gozo, na vida terrena; em seguida, a Nós será seu retorno. E fá-los-emos experimentar o veemente castigo, porque renegavam a Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,238,'E recita, para eles, a história de Noé, quando disse a seu povo: "Ó meu povo! Se vos é grave minha permanência junto de vós e minha lembrança dos sinais de Allah, é em Allah que eu confio. Determinai, pois, vossa decisão, vós e vossos associados; e que vossa decisão não seja obscura para vós; em seguida, executai-a contra mim, e não me concedais dilação alguma."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,238,'"E, se voltais as costas, não vos pedirei prêmio algum. Meu prêmio não impende senão a Allah, e foi-me ordenado ser dos crentes"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,238,'Então, desmentiram-no, e salvamo-lo e aos que estavam com ele, no barco, e fizemo-los sucessores e afogamos os que desmentiram Nossos sinais. Então, olha como foi o fim dos que foram admoestados!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,238,'Em seguida, enviamos depois dele, Mensageiros a seus povos, e chegaram-lhes com as evidências. Mas não quiseram crer no que haviam desmentido antes. Assim, selamos os corações dos agressores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,238,'Em seguida, depois deles, enviamos Moisés e Aarão, com Nossos sinais, a Faraó e a seus dignitários; então, ensoberbeceram-se e foram um povo criminoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,238,'E, quando a verdade lhes chegou, de Nossa parte, disseram: "Por certo, isto é evidente magia!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,238,'Moisés disse: "Dizeis isto da verdade, quando ela vos chega:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,238,'Disseram: "Chegaste a nós, para desviar-nos daquilo, em que encontramos nossos pais, e para terdes ambos de vós, a grandeza na terra? E não estamos crendo em vós!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,238,'E Faraó disse: "Fazei-me vir todo mágico sapiente"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,238,'Então, quando chegaram os mágicos, Moisés disse-lhes: "Lançai o que tendes para lançar"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,238,'Então, quando o lançaram, Moisés disse: "O que trouxestes é a magia. Por certo, Allah a derrogará. Por certo, Allah não emenda as obras dos corruptores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,238,'“E Allah estabelece, com Suas palavras a verdade, ainda que o odeiem os criminosos”');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,238,'Então, ninguém creu em Moisés senão alguns descendentes de seu
+povo, por medo de que Faraó e seus dignitários os provassem. E, por certo, Faraó era altivo na terra e, por certo, era dos entregues a excessos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,238,'E Moisés disse: "Ó meu povo! Se credes em Allah, nEle confiais, se sois submissos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,238,'Eles disseram: "Em Allah confiamos. Senhor nosso! Não faças de nós vítimas da provação do povo injusto."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,238,'"E salva-nos, com Tua misericórdia, do povo renegador da Fé"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,238,'E inspiramos a Moisés e a seu irmão: "Disponde, para vosso povo, casas no Egito, e fazei de vossas casas lugar de adoração, e cumpri a oração. E alvissara, ó Moisés, aos crentes a vitória"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,238,'E Moisés disse: "Senhor nosso! Por certo, concedeste a Faraó e a seus dignitários ornamentos e riquezas, na vida terrena - Senhor nosso! - para que se descaminhem de Teu caminho. Senhor nosso! Apaga-lhes as riquezas e endurece- lhes os corações: então, não crerão, até virem o doloroso castigo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,238,'Ele disse: "Com efeito, foi atendida vossa súplica: então, sede ambos retos e não sigais o caminho dos que não sabem"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,238,'E fizemos os filhos de Israel atravessar o mar; então, Faraó seguiu-os, ele e seu exército, transgressora e agressoramente, até que, quando o afogamento atingiu-o, ele disse: "Creio que não há deus senão Aquele em Que crêem os filhos de Israel, e sou dos muçulmanos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,238,'Foi-lhe dito: "Agora?! E, com efeito, desobedeceste antes, e foste dos corruptores!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,238,'"Hoje, salvar-te-emos o corpo, para que tu sirvas de sinal aos que serão, depois de ti. E por certo, muitos dos homens estão desatentos a Nossos sinais".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,238,'E, com efeito, dispusemos os filhos de Israel em primoroso lugar e demo-lhes, por sustento, das cousas benignas; e não discreparam, até chegar-lhes a ciência. Por certo, teu Senhor arbitrará, entre eles, no Dia da Ressurreição, acerca daquilo de que discrepavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,238,'E se estás em dúvida acerca do que fizemos descer para ti, Muhammad, pergunta aos que antes de ti, leram o Livro. Com efeito, chegou-te a verdade de teu Senhor. Então, não sejas, de modo algum, dos contestadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,238,'E não sejas, de modo algum, dos que desmentem os sinais de Allah, pois, serias dos perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,238,'Por certo, aqueles, contra os quais a palavra de teu Senhor se cumpriu, não crerão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,238,'Ainda que todos os sinais lhes cheguem, até virem o doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,238,'Então, que houvesse havido uma cidade que cresse, e havê-la-ia beneficiado sua fé! Mas não houve, exceto a do povo de Jonas que, quando creram, Nós lhes removemos o castigo da ignomínia, na vida terrena, e fizemo-los gozar, até certo tempo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,238,'E, se teu Senhor quisesse, todos os que estão na terra juntos, creriam. Então, compelirás tu os homens, até que sejam crentes?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,3,238,'E não é admissível que uma alma creia, sem permissão de Allah, e Ele inflige o tormento aos que não razoam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,3,238,'Dize: "Olhai o que há nos céus e na terra." Mas nada valem os sinais e as admoestações a um povo que não crê.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,3,238,'Então, não esperam eles senão dias iguais aos dos que passaram, antes deles? Dize: "Esperai! Por certo, estarei convosco entre os que esperam"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,3,238,'Em seguida, salvamos Nossos Mensageiros e os que creram. Assim, impende-Nos salvarmos os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,3,238,'Dize: "Ó homens! Se estais em dúvida acerca de minha religião, eu não adoro o que adorais além de Allah, mas adoro a Allah, Que vos levará a alma, e foi-me ordenado ser dos crentes"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,3,238,'E ergue tua face para a religião, como monoteísta sincero, e não sejas de modo algum, dos idólatras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,3,238,'E não invoques, além de Allah, o que não te beneficia nem te prejudica. Então, se o fizeres, por certo, será nesse caso, dos injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,3,238,'E, se Allah te toca com um infortúnio, não existirá quem o remova senão Ele; e se Ele te deseja um bem, não existirá revogador de Seu favor. Com este, Ele alcança a quem quer de Seus servos. E Ele é O Perdoador, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,3,238,'Dize: "Ó humanos! Com efeito, a verdade chegou-vos de vosso Senhor. Então, quem se guia, se guiará apenas em benefício de si mesmo, e quem se descaminha, se descaminhará apenas em prejuízo de si mesmo. E sobre vós, não sou patrono"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,3,238,'E segue o que te é revelado e pacienta, até que Allah julgue. E Ele é O Melhor dos juízes.');
+INSERT INTO chapters (id, number, quran_id) VALUES(239,11,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,239,'Alif, Lãm, Rã. Este é um Livro, cujos versículos são precisos, em seguida, aclarados, da parte de um Sábio, Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,239,'Não adoreis senão a Allah. Por certo, sou dEle, para vós, admoestador e alvissareiro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,239,'E implorai perdão a vosso Senhor; em seguida, voltai-vos arrependidos para Ele. Ele vos fará gozar belo gozo, até um termo designado e concederá Seu favor a cada merecedor de favor; mas, se voltais as costas, por certo, temo por vós, o castigo de um grande dia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,239,'A Allah será vosso retorno, e Ele, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,239,'Ora, eles dobram seus peitos para esconder-se dEle. Ora, mesmo quando se encobrem em seus trajes, Ele sabe o de que guardam segredo e o que manifestam. Por certo, Ele, do íntimo dos peitos, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,239,'E não há ser animal algum na terra, sem que seu sustento impenda a Allah, e Ele conhece sua residência e seu depósito. Tudo está no evidente Livro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,239,'E Ele é Quem criou os céus e a terra, em seis dias enquanto Seu Trono estava sobre a água para pôr à prova qual de vós é melhor em obras. E se dizes, Muhammad: "Por certo, sereis ressuscitados, depois da morte", os que renegam a Fé dizem: "Em verdade, isso não é senão evidente magia!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,239,'E, se lhes adiamos o castigo, até um tempo contado, dizem: "Que o detém?" Ora, um dia, quando lhes chegar o castigo, deles não se desviará, e envolvê-los-á aquilo de que zombavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,239,'E, se fazemos experimentar ao ser humano Misericórdia de Nossa parte; em seguida, tiramo-la dele, por certo, fica desesperado, ingrato.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,239,'E, se o fazemos experimentar prosperidade, após infortúnio, que o haja tocado, diz: "Os males se foram, para longe de mim." Por certo, fica jubiloso, vanglorioso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,239,'Exceto os que pacientam e fazem as boas obras; esses terão perdão e grande prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,239,'Então, talvez tu deixes de recitar algo do que te foi revelado e, com que teu peito se constrange, porque eles dizem: "Que se faça descer um tesouro sobre ele, ou que chegue com ele um anjo!" Tu és, apenas, admoestador. E Allah, sobre todas as cousas, é Patrono.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,239,'Ou eles dizem: "Ele o forjou?" Dize: "Então, fazei vir dez suras iguais à dele e para isso, convocai quem puderdes, em vez de Allah, se sois verídicos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,239,'E, se eles vos não atendem, sabei que ele foi descido com a ciência de Allah, e que não existe Deus senão Ele. Então, sois crentes?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,239,'Quem deseja a vida terrena e seus ornamentos, Nós, nela, compensar-lhes-emos as obras e, nela, em nada eles serão subtraídos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,239,'Esses são os que não terão, na Derradeira Vida, senão o Fogo, e anular-se-á o que engenharam nela, na vida terrena, e derrogar-se-á o que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,239,'Então, será que quem está fundado sobre evidência de seu Senhor, e segue-o uma testemunha d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,239,'E quem mais injusto que aquele que forja mentiras acerca de Allah? Esses serão expostos a seu Senhor, e as testemunhas dirão: "Estes são os que mentiram acerca de seu Senhor." Ora, que a maldição de Allah seja sobre os injustos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,239,'Que afastam os homens do caminho de Allah, e buscam torná-lo tortuoso, e são renegadores da Derradeira Vida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,239,'Esses não poderão escapar de Seu castigo, na terra e não terão protetores, além de Allah. Duplicar-se-lhes-á o castigo; eles não foram capazes de ouvir nem de nada enxergar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,239,'Esses são os que se perderam a si mesmos. E o que eles forjavam sumirá para longe deles.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,239,'É inconteste que serão, na Derradeira Vida, os mais perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,239,'Por certo, os crentes e os que fazem as boas obras e se humildam a seu Senhor, esses são os companheiros do Paraíso. Nele, serão eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,239,'O exemplo dos dois grupos é como o do cego e do surdo, e do vidente e do ouvidor: igualam-se, como exemplo? Então, não meditais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,239,'E, com efeito, enviamos Noé a seu povo. Disse: "Por certo, sou-vos evidente admoestador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,239,'"Não adoreis senão a Allah. Por certo, temo por vós, o castigo de um doloroso dia"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,239,'Então, os dignitários que, dentre seu povo, renegavam a Fé disseram: "Não te vemos senão um mortal como nós, e não vemos seguir-te, impensadamente, senão os mais ignóbeis dos nossos, e não vemos, em vós, privilégio algum sobre nós. Aliás, pensamos que sois mentirosos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,239,'Disse: "Ó meu povo! Vistes? Se estou fundado sobre evidência de meu Senhor, e Ele me concede misericórdia de Sua parte, e ela se vos obscurece, teremos de vo-la impor, enquanto a estais odiando?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,239,'"E ó meu povo! Não vos peço por isso riqueza alguma. Meu prêmio não impende senão a Allah. E não vou repulsar os que crêem. Por certo, eles depararão com seu Senhor, mas eu vos vejo um povo ignorante."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,239,'"E ó meu povo! Quem me socorrerá, contra a ira de Allah, se eu os repulsar? Então, não meditais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,239,'"E não vos digo que tenho os cofres de Allah nem que conheço o Invisível nem digo que sou anjo nem digo daqueles, que vossos olhos desprezam, que Allah não lhes concederá bem algum; - Allah é bem Sabedor do que há em suas almas - por certo, nesse caso, eu seria dos injustos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,239,'Disseram: "Ó Noé! Com efeito, discutiste conosco e multiplicaste nossa discussão; então, faze-nos vir o que prometestes se és dos verídicos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,239,'Disse: "Apenas, Allah vo-lo fará vir se quiser, e não podereis escapar de Seu castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,239,'"E meu conselho não vos beneficiará, caso deseje aconselhar-vos, se Allah deseja fazê-los incorrer no mal. Ele é vosso Senhor, e a Ele sereis retornados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,239,'Esta a verdadeira narrativa; mas eles dizem: "Ele o forjou?" Dize, Muhammad: "Se o houvesse forjado, que esteja sobre mim meu crime! E estou em rompimento com vossas práticas".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,239,'E inspirou-se a Noé: "Não crerá de teu povo senão quem já creu. Então, não te melancolizes, pelo que faziam".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,239,'"E fabrica o barco diante de Nossos olhos e com Nossa inspiração, e não Me fales mais acerca dos que são injustos. Por certo, eles serão afogados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,239,'E ele se pôs a fabricar o barco e, cada vez que alguns dos dignitários de seu povo passavam por ele, dele escarneciam. Ele disse: "Se escarneceis de nós, por certo, escarneceremos de vós como escarneceis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,239,'"Então, logo sabereis a quem chegará um castigo, que o ignominiará; e cairá sobre ele castigo permanente"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,239,'E, assim, foi, até que, quando Nossa ordem chegou e as fontes da terra jorraram, dissemos: "Carrega nele, de cada espécie um casal e tua família - exceto aquele contra quem o Dito, a sentença, se antecipou - e os que crêem." E não creram, com ele, senão poucos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,239,'E ele disse: "Embarcai nele: em nome de Allah será seu singrar e sua ancoragem. Por certo, meu Senhor é Perdoador, Misericordiador"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,239,'E ele corria com eles, entre ondas como as montanhas; e Noé chamou a seu filho, que se achava à parte: "Ó meu filho! Embarca conosco e não te deixes estar com os renegadores da Fé"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,239,'Ele disse: "Abrigar-me-ei em uma montanha, que me protegerá da água." Noé disse: "Hoje, não há protetor contra a ordem de Allah senão para aquele de quem Ele tem misericórdia." E as ondas interpuseram-se entre ambos: então, foi ele dos afogados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,239,'E foi dito: "Ó terra! Engole tua água" e "Ó céu! Detém-te". E a água diminuiu e a ordem foi encerrada, e ele se instalou em Al-Judy(Iraque). E foi dito: "Para trás! Para o povo injusto!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,239,'E Noé chamou a seu Senhor, e disse: "Senhor meu! Por certo, meu filho é de minha família e, por certo. Tua promessa é a verdade, e Tu és O mais Justo dos juízes!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,239,'Ele disse: "Ó Noé! Por certo, ele não é de tua família. Por certo, isso é ação incorreta. Então, não me perguntes aquilo de que não tens ciência. Por certo, exorto-te, para não seres dos ignorantes"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,239,'Noé disse: "Senhor meu! Por certo, refugio-me em Ti contra o perguntar-Te aquilo de que não tenho ciência. E, se não me perdoas e não tens misericórdia de mim, eu serei dos perdedores"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,239,'Foi-lhe dito: "Ó Noé! Desembarca, com paz de Nossa parte, e com bênçãos sobre ti e sobre comunidades dos que estão contigo. E haverá comunidades, que faremos gozar, na vida terrena; em seguida, tocá-las-á doloroso castigo de Nossa parte"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,239,'Esses são alguns informes do Invisível, que te revelamos, Muhammad. Não os conhecias, antes disso, nem tu nem teu povo. Então, pacienta. Por certo, o final feliz é para os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,239,'E, ao povo de Ãd, enviamos seu irmão Hud. Disse: "Ó meu povo! Adorai a Allah: não tendes outro deus que não seja Ele. Não sois senão forjadores de mentiras"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,239,'"Ó meu povo! Não vos peço por isso prêmio algum. Meu prêmio não impende senão a Quem me criou. Então, não razoais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,239,'"E ó meu povo! Implorai perdão a vosso Senhor; em seguida, voltai-vos arrependidos para Ele. Ele vos enviará a chuva em abundância e vos acrescentará força à vossa força. E não volteis as costas, em sendo criminosos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,239,'Disseram: "Ó Hud! Não nos chegaste com evidência alguma e não deixaremos nossos deuses, por causa de seu dito, e não estamos crendo em ti".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,239,'"Não dizemos senão que alguns de nossos deuses te atingiram com um mal." Ele disse: "Por certo, tomo Allah por testemunha, e testemunhai que estou em rompimento com os que idolatrais".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,239,'"Em vez dEle. Então insidiai-me vós todos; em seguida, não me concedais dilação alguma."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,239,'"Por certo, confio em Allah, meu Senhor e vosso Senhor. Não há ser animal algum, sem que Ele lhe apanhe o topete. Por certo, meu Senhor está na senda reta."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,239,'"E, se voltais as costas, com efeito, transmiti-vos aquilo com que vos fui enviado. E meu Senhor vos fará suceder outro povo e, em nada, O prejudicareis. Por certo, meu Senhor, sobre todas as cousas, é Custódio"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,239,'E, quando chegou Nossa ordem, salvamos por misericórdia de Nossa parte, a Hud e aos que creram com ele; e salvamo-los de duro castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,239,'E esse era o povo de Ãd. Negaram os sinais de seu Senhor e desobedeceram a Seus Mensageiros e seguiram a ordem de todo tirano obstinado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,239,'E foram perseguidos nesta vida terrena, por maldição, e sê-lo-ão, no Dia da Ressurreição. Ora, por certo, o povo de Ãd renegou a seu Senhor. Ora, para trás! Para Ãd, o povo de Hud!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,239,'E ao povo de Thamud, enviamos seu irmão Sãlih. Ele disse: "Ó meu povo! Adorai a Allah. Vós não tendes outro deus que não seja Ele; Ele vos fez surgir da terra e vos fez povoá-la; então, implorai-Lhe perdão; em seguida, voltai-vos arrependidos para Ele. Por certo, meu Senhor está Próximo, Atento às súplicas".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,239,'Disseram: "Ó Sãlih! Com efeito, antes disso eras esperança, entre nós. Queres coibir-nos de adorar o que nossos pais adoravam? E, por certo, estamos em dúvida tormentosa acerca daquilo a que nos convocas"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,239,'Ele disse: "Ó meu povo! Vistes? Se estou fundado sobre evidência de meu Senhor, e Ele me concede misericórdia vinda d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,239,'"E ó meu povo! Este camelo fêmea é, para vós, como sinal. Então, deixa-o comer na terra de Allah e não o toqueis com mal algum, pois, apanhar-vos-ia castigo próximo".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,239,'E eles abateram-no; então, disse ele: "Gozai, em vossos lares, três dias. Essa é promessa que não será desmentida".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,239,'E, quando Nossa ordem chegou, salvamos, por misericórdia de Nossa parte, a Sãlih e aos que creram com ele, e salvamo-los da ignomínia desse dia. Por certo, teu Senhor é O Forte, O Todo-Poderoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,239,'E o Grito apanhou aos que foram injustos; então, amanheceram inertes, sem vida, em seus lares,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,239,'Como se jamais lá houvessem morado. Ora, por certo, o povo de Thamud renegou a seu Senhor. Ora, para trás! Para Thamud!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,239,'E, com efeito, nossos Mensageiros chegaram a Abraão, com alvíssaras. Disseram: "Salam!" - Paz! - Disse: "Salam!" E não tardou em trazer-lhes um bezerro assado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,239,'E, quando ele viu que suas mãos não chegavam a ele desconfiou deles e deles teve medo. Disseram: "Não te atemorizes; por certo, somos enviados ao povo de Lot"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,239,'E sua mulher estava de pé, então, riu-se. E alvissaramo-lhe o nascimento de Isaque e, depois de Isaque, Jacó.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,239,'Ela disse: "Ai de mim! Darei à luz, enquanto estou velha e este meu marido é ancião? Por certo, isso é cousa admirável!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,239,'Disseram: "Admiras-te da ordem de Allah? Que a misericórdia de Allah e Suas bênçãos sejam sobre vós, ó família da casa de Abraão! Por certo, Ele é Louvável, Glorioso"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,239,'E, quando o susto de Abraão se foi, e as alvíssaras lhe chegaram, discutiu conosco acerca do povo de Lot.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,239,'Por certo, Abraão era clemente, suplicante, contrito.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,239,'Dissemos: "Ó Abraão! Dá de ombros a isso. Por certo, chegou a ordem de teu Senhor. E, por certo, chegar-lhes-á um castigo irrevogável"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,239,'E, quando Nossos Mensageiros, Nossos anjos, chegaram a Lot, afligiu-se com eles e sentiu-se impotente para defendê-los, e disse: "Este é um terrível dia!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,239,'E seu povo chegou-lhe, impetuosamente. E, antes, faziam as más obras. Ele disse: "Ó meu povo! Eis minhas filhas: elas vos são mais puras. Então, temei a Allah e não me ignominieis, em ultrajando meus hóspedes. Não há, dentre vós, um homem assisado?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,239,'Disseram: "Com efeito, sabes que não temos direito a tuas filhas e, por certo, sabes o que desejamos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,239,'Disse: "Se eu tivesse força contra vós, ou se me abrigasse a sólido esteio, aniquilar-vos-ia"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,239,'Eles disseram: "Ó Lot! Somos os Mensageiros de teu Senhor; eles não te chegarão. Então, parte com tua família, na calada da noite - e que nenhum de vós retorne para trás - exceto com tua mulher. Por certo, alcançá-la-á o que os alcançará. Por certo, o seu tempo prometido será amanhã de manhã. Não está próxima a manhã?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,239,'E, quando Nossa ordem chegou, revolvemos as cidades de cima para baixo e fizemos chover sobre elas pedras de sijjil(barro cozido) sem interrupção,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,239,'Marcadas junto de teu Senhor. E elas não estão longe dos injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,239,'E ao povo de Madian, enviamos seu irmão Chuaib. Disse: "Ó meu povo! Adorai a Allah; não tendes outro deus que não seja Ele. E não diminuais a medida e o peso. Por certo, vejo-vos em prosperidade e, por certo, temo, por vós, o castigo de um dia abarcante.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,239,'"E ó meu povo! Completai com eqüidade, a medida e o peso, e não subtraiais dos homens suas cousas e não semeeis a maldade na terra, sendo corruptores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,239,'"O que Allah vos deixa de lícito vos é melhor, se sois crentes. E não sou, sobre vós custódio"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,239,'Disseram: "Ó Chuaib! Tua oração te ordena que deixemos o que nossos pais adoravam, ou que deixemos de fazer de nossas riquezas o que quisermos? Por certo, tu, tu és o clemente, o assisado"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,239,'Disse: "Ó meu povo! Vistes? Se estou fundado sobre evidência de meu Senhor, e Ele deu-me por sustento belo sustento vindo d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,239,'"E ó meu povo! Que minha discórdia convosco não vos induza a que vos alcance o mesmo que alcançou o povo de Noé ou o povo de Hud ou o povo de Sãlih. E o povo de Lot não está longe de vós."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,239,'"E implorai perdão a vosso Senhor; em seguida, voltai-vos arrependidos para Ele. Por certo, meu Senhor é Misericordiador, Afetuoso"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,239,'Disseram: "Ó Chuaib! Não entendemos muito do que dizes e, por certo, vemo-te fraco entre nós, e não fora teu clã, apedrejar-te-íamos. E, para nós, tu não és poderoso"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,239,'Disse: "Ó meu povo! Será que meu clã é mais poderoso para vós que Allah, e a Quem voltais as costas? Por certo, Meu Senhor está, sempre, abarcando o que fazeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,239,'"E ó meu povo! Fazei o que puderdes; por certo, farei o que puder. Logo sabereis a quem chegará o castigo que o ignominiará, e quem é mentiroso. E expectai; por certo, estou expectando, convosco"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,239,'E, quando Nossa ordem chegou, salvamos por misericórdia de Nossa parte, a Chuaib, e aos que creram com ele. E o Grito apanhou aos que foram injustos; então, amanheceram, em seus lares, inertes, sem vida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,239,'"Como se, jamais, lá houvessem morado. Ora, para trás! Para Madian! Como houve para trás! Para Thamud!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,239,'E, com efeito, enviamos Moisés com Nossos sinais e evidente comprovação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,239,'A Faraó e a seus dignitários. Mas estes seguiram a ordem de Faraó. E a ordem de Faraó não era assisada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,239,'No Dia da Ressurreição, irá ele à frente de seu povo, e ele os levará para a aguada do Fogo. E que execrável aguada a que serão levados!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,239,'E foram perseguidos nesta vida, por maldição, e sê-lo-ão no Dia da Ressurreição. Que execrável o dom dadivado!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,3,239,'Esses são alguns informes das cidades: Nós tos narramos, Muhammad. Entre elas, há umas de pé e outras ceifadas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,3,239,'E não fomos injustos com eles, mas eles foram injustos com si mesmos. E de nada lhes valeram os deuses que invocaram, em vez de Allah, quando a ordem de teu Senhor chegou. E nada lhes acrescentaram senão perdição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,3,239,'E, assim, é o apanhar de teu Senhor, quando apanha as cidades,
+enquanto injustas. Por certo, Seu apanhar é doloroso, veemente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,3,239,'Por certo, há nisso um sinal para quem teme o castigo da Derradeira Vida. Esse será um dia, em que os humanos serão juntados, e esse será um dia testemunhado por todas as criaturas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,3,239,'E não o adiaremos senão até um termo contado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,3,239,'Um dia, quando este chegar, nenhuma alma falará senão com Sua permissão; e haverá, entre eles infelizes e felizes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,3,239,'Então, quanto aos infelizes, estarão no Fogo: nele, darão suspiros e soluços.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,3,239,'Nele, serão eternos, enquanto se perpetuarem os céus e a terra,
+exceto se outra cousa teu Senhor quiser. Por certo, teu Senhor é realizador de quanto deseja.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,3,239,'E quanto aos felizes, estarão no Paraíso, em que serão eternos, enquanto se perpetuarem os céus e a terra, exceto se outra cousa teu Senhor quiser: é dádiva que não será extinguida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,3,239,'Então, não estejas em contestação, Muhammad, acerca do que estes adoram. Não adoram senão como seus pais adoravam antes. E, por certo, compensá-los-emos com sua porção, que não será diminuída.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,3,239,'E, com efeito, concedêramos a Moisés o Livro, e discreparam dele. E, não fora uma Palavra antecipada de teu Senhor, haver-se-ia arbitrado entre eles. E, por certo, estão em dúvida tormentosa acerca dele.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,3,239,'E por certo, teu Senhor compensá-los-á, a todos, por suas obras. Por certo, Ele, do que fazem, é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,3,239,'Então, sê reto, como te foi ordenado e, contigo, quem se volta arrependido e nada transgridais. Por certo, Ele, do que fazeis, é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,3,239,'E não vos inclineis aos que são injustos, pois, tocar-vos-ia o Fogo, e não teríeis, além de Allah, protetores; em seguida, não seríeis socorridos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,3,239,'E cumpre a oração, nos dois extremos do dia e nas primícias da noite. Por certo, as boas obras fazem ir as más obras. Isso é lembrança para os que se lembram de Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,3,239,'E pacienta, pois, por certo, Allah não faz perder o prêmio dos benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,3,239,'Então, que houvesse entre as gerações antes de vós, homens dotados de bom senso que coibissem a corrupção na terra! Mas poucos, dentre os que deles salvamos fizeram-no. E os que foram injustos continuaram a seguir a opulência em que viviam, e foram
+criminosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,3,239,'E não é admissível que teu Senhor aniquile, injustamente, as cidades, enquanto seus habitantes são reformadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,3,239,'E, se teu Senhor quisesse, haveria feito dos homens uma só comunidade. Mas eles não cessam de ser discrepantes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,3,239,'Exceto os de quem teu Senhor tem misericórdia. E, por isso, Ele os criou. E a palavra de teu Senhor completar-se-á; "Em verdade, encherei a Geena de jinns e de homens, de todos eles."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,3,239,'E Nós te narramos, Muhammad, dos informes dos Mensageiros, tudo aquilo com que te tornamos firme o coração. E nestes, chegou-te a verdade e exortação e lembrança para os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,3,239,'E dize aos que não crêem: "Fazei o que puderdes; por certo, faremos o que pudermos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,3,239,'"E esperai; por certo, Nós estaremos esperando!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,3,239,'E de Allah é o Invisível dos céus e da terra. E a Ele retorna toda a determinação. Então, adora-O e nEle confia. E teu Senhor não está desatento ao que fazeis.');
+INSERT INTO chapters (id, number, quran_id) VALUES(240,12,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,240,'Alif, Lãm, Rã. Esses são os versículos do explícito Livro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,240,'Por certo, fizemo-lo descer em Alcorão árabe, para razoardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,240,'Nós te narramos, Muhammad, a mais bela das narrativas, com o te revelarmos este Alcorão e, em verdade, antes dele eras dos desatentos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,240,'Quando José disse a seu pai: "Ó meu pai! Por certo, vi em sonhos onze astros e também o sol e a lua; vi-os prosternando-se diante de mim"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,240,'Disse: "Ó meu filho! Não narres teu sonho a teus irmãos, pois, armar-te-iam insídias. Por certo, Satã é para o ser humano, inimigo declarado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,240,'"E assim, teu Senhor eleger-te-á e ensinar-te-á algo da interpretação dos sonhos e completará Sua graça para contigo e para com a família de Jacó, como a havia completado, antes, para com teus dois pais. Abraão e Isaque. Por certo, teu Senhor é Onisciente, Sábio."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,240,'Com efeito, havia em José e em seus irmãos, sinais para os questionadores da verdade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,240,'Quando eles disseram: "Em verdade, José e seu irmão são mais amados de nosso pai que nós, enquanto somos um grupo coeso. Por certo, nosso pai está em evidente descaminho."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,240,'"Matai a José ou abandonai-o em uma terra qualquer; assim, a face de vosso pai se voltará só para vós, e sereis, depois dele um grupo íntegro"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,240,'Um deles disse: "Não mateis a José e, se pretendeis fazer algo, lançai-o no fundo do poço, então, um dos viandantes o recolherá"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,240,'Disseram: "Ó nosso pai! Por que razão não nos confias José? E, por certo, com ele, seremos cautelosos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,240,'"Envia-o conosco, amanhã, ele se deleitará e brincará. E por certo, ser-lhe-emos custódios"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,240,'Ele disse: "Por certo, entristecer-me-á que vades com ele, e temo que o lobo o devore, enquanto a ele estiverdes desatentos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,240,'Disseram: "Em verdade, se o lobo o devorar, em sendo nós um grupo coeso, por certo, nesse caso, seremos perdedores"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,240,'Então, quando se foram com ele e se decidiram a lançá-lo no fundo do poço, não titubearam em fazê-lo. E inspiramo-lhe: "Em verdade, um dia, informá-los-ás desta sua conduta, enquanto não percebam"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,240,'E chegaram ao pai, no princípio da noite, chorando.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,240,'Disseram: "Ó nosso pai! Por certo, fomos apostar corrida e deixamos José junto de nossos pertences; então, o lobo devorou-o. E não estás crendo em nós, ainda que estejamos sendo verídicos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,240,'E chegaram, com falso sangue sobre sua túnica. Ele disse: "Mas vossas almas vos aliciaram a algo de mal. Então, não me cabe senão uma bela paciência! E Allah me será O Auxiliador, acerca do que alegais"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,240,'E chegou um grupo de viandantes, e enviaram seu aguadeiro, e este fez descer o balde ao poço. Disse: "Oh! Alvíssaras! Eis um jovem!" E guardaram-no, secretamente, como mercadoria. E Allah, do que faziam, era Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,240,'E eles venderam-no por baixo preço, por dracmas contadas, e dele estavam desinteressados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,240,'E aquele do Egito, que o comprara, disse à sua mulher: "Torna digna sua estada aqui. Quiçá, ele nos beneficie, ou o tomemos por filho." E, assim, empossamos José na terra para fazê-lo cumprir seu desígnio, e para ensinar-lhe algo da interpretação dos sonhos. E Allah é Vencedor em Sua ordem, mas a maioria dos homens não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,240,'E, quando ele atingiu a sua força plena, concedemo-lhe sabedoria e ciência. E assim, recompensamos os benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,240,'E aquela em cuja casa ele estava tentou seduzi-lo, e fechou as portas e disse: "Vem. Sou toda para ti!" Ele disse: "Possa eu refugiar-me em Allah! Por certo, ele é meu senhor; ele bem-fez minha estada aqui. Por certo, os injustos não serão bem-aventurados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,240,'E, com efeito, ela intentou estar com ele. E ele haveria intentado estar com ela, não houvesse visto a provança de seu Senhor. Assim, fizemos, para desviar-lhe o mal e a obscenidade. Por certo, ele é um dos Nossos servos prediletos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,240,'E ambos correram à porta, e ela lhe rasgou a túnica por trás; e, junto da porta, ambos encontraram seu senhor. Ela disse: "Qual a punição de quem desejou um mal para tua família, senão que seja preso ou que tenha doloroso castigo?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,240,'José disse: "Foi ela quem tentou seduzir-me." E uma testemunha de sua família testemunhou: "Se sua túnica está rasgada pela frente, então, ela disse a verdade e ele é dos mentirosos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,240,'"Mas, se sua túnica está rasgada por trás, então, ela mentiu e ele é dos verídicos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,240,'Então, quando ele viu sua túnica rasgada por trás, disse: "Por certo, esta é uma de vossas insídias, ó mulheres! Por certo, vossas insídias são formidáveis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,240,'"Ó José! Dá de ombros a isso. E tu, mulher, implora perdão por teu delito. Por certo, és dos errados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,240,'E certas mulheres, na cidade, disseram: "A mulher de Al-Aziz tentou seduzir a seu jovem servo! Com efeito, ele a deixou embevecida de amor. Por certo, vemo-la em evidente descaminho"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,240,'E, quando lhe chegaram aos ouvidos suas maledicências, ela as convidou e preparou-lhes um banquete. E concedeu a cada uma delas uma faca, e disse a José: "Sai ao encontro delas." Então, quando elas o viram, maravilharam-se dele e se cortaram nas mãos, e disseram: "Glória a Allah! Este não é um mortal. Este não é senão um nobre anjo!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,240,'Ela disse: "Então, é este aquele por quem me censurastes. E, com efeito, tentei seduzi-lo, e ele resistiu. E em verdade, se ele não fizer o que lhe ordeno, será preso e será dos humilhados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,240,'Ele disse: "Senhor meu! A prisão me é mais amada que aquilo ao que elas me convidam. E se Tu não desvias de mim suas insídias, inclinar-me-ei a elas e serei dos ignorantes"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,240,'Então, seu Senhor atendeu-o, e desviou dele as insídias delas. Por certo, Ele é O Oniouvinte, O Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,240,'Em seguida, depois de haverem visto os sinais pareceu-lhes de bom alvitre aprisioná-lo até certo tempo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,240,'E dois jovens servos entraram, com ele, na prisão. Um deles disse: "Vi-me em sonhos, espremendo uvas." E o outro disse: "Vi-me, em sonhos carregando, sobre a cabeça, pão, de que os pássaros comiam. Informa-nos de sua interpretação. Por certo, vemo-te dos benfeitores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,240,'Ele disse: "Não chegará a ambos de vós alimento algum, com que sois sustentados, sem que eu vos informe de sua interpretação, antes mesmo que ele vos chegue. Isso é algo do que meu Senhor me ensinou. Por certo, deixei a crença de um povo que não crê em Allah, e que é renegador da Derradeira Vida."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,240,'"E segui a crença de meus pais Abraão e Isaque e Jacó. Não nos é admissível associarmos nada a Allah. Isso, é algo do favor de Allah para conosco e para com a humanidade, mas a maioria dos homens não agradece."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,240,'"Ó meus dois companheiros de prisão! Que é melhor: divindades dispersas ou Allah, O Único, O Dominador?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,240,'"Não adorais, em vez dEle, senão nomes de ídolos que nomeastes, vós e vossos pais, dos quais Allah não fez descer comprovação alguma. O julgamento não é senão de Allah. Ele ordenou que não adoreis senão a Ele. Essa é a religião reta, mas a maioria dos homens não sabe".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,240,'"Ó meus dois companheiros de prisão! Quanto a um de vós, ele dará vinho de beber a seu senhor. E, quanto ao outro, ele será crucificado, e os pássaros comerão de sua cabeça. Encerra-se a questão sobre a qual ambos me consultais"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,240,'E ele disse àquele, dos dois, que pensava ser salvo: "Menciona-me, junto de teu senhor." Mas Satã fê-lo esquecer a menção a seu senhor. Então, ele permaneceu na prisão, por alguns anos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,240,'E o rei disse: "Por certo vi, em sonhos, sete vacas gordas, às quais sete vacas magras devoraram, e sete espigas verdes e outras sete secas. Ó dignitários! Instruí-me sobre meu sonho, se sois capazes de interpretar os sonhos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,240,'Disseram: "É um amontoado de sonhos. E nós não somos sabedores da interpretação dos sonhos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,240,'E aquele dos dois, que se salvou, e que se lembrou de José depois de algum tempo disse: "Informar-vos-ei de sua interpretação. Então, enviai-me a José"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,240,'"Ó José, ó veracíssimo! Instrui-nos sobre sete vacas gordas, às quais sete vacas magras devoram, e sete espigas verdes e outras sete secas, na esperança de que eu volte aos homens para eles saberem"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,240,'José disse: "Semeareis, sete anos seguidos. Então, o que ceifardes, deixai-o nas espigas exceto um pouco daquilo que fordes comer."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,240,'"Em seguida, virão, depois disso sete anos severos, que devorarão o que lhes antecipardes exceto um pouco do que preservardes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,240,'"Em seguida, virá, depois disso, um ano; nele, os homens serão assistidos e nele, espremerão os frutos".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,240,'E o rei disse: "Fazei-mo vir." E quando o mensageiro lhe chegou, disse: "Retorna a teu senhor e pergunta-lhe que é das mulheres que se cortaram nas mãos. Por certo, meu Senhor, de sua insídia, é Onisciente"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,240,'Ele disse: "Qual foi vosso intuito, quando tentastes seduzir a José?" Disseram: "Glória a Allah! Nada sabemos de mal a seu respeito." A mulher de Al-Aziz disse: "Agora, a verdade evidencia-se: tentei seduzi-lo e, por certo, ele é dos verídicos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,240,'"Isso, para que ele saiba que o não traí embora estando ele ausente, e que, por certo, Allah não guia a insídia dos traidores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,240,'"E não absolvo minha alma do pecado. Por certo, a alma é constante incitadora do mal, exceto a de quem meu Senhor tem misericórdia. Por certo, meu Senhor é Perdoador, Misericordiador"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,240,'E o rei disse: "Fazei-mo vir, que o consagrarei a mim." Então, quando o rei lhe falou, disse: "Por certo, és, hoje junto de nós, prestigiado, leal"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,240,'José disse: "Confia-me os cofres da terra. Por certo, serei deles custódio sapiente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,240,'E, assim, empossamos José na terra, dela dispondo onde quisesse. Alcançamos, com Nossa Misericórdia a quem queremos, e não fazemos perder o prêmio dos benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,240,'E, certamente, o prêmio da Derradeira Vida é melhor para os que crêem e são piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,240,'E os irmãos de José chegaram e entraram junto dele; então, ele os reconheceu, enquanto que eles não o reconheceram.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,240,'E, quando ele lhes preparou as provisões, disse: "Fazei-me vir um de vossos irmãos por parte de vosso pai. Não vedes que eu completo a medida e sou o melhor dos hospedeiros?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,240,'"E, se não mo fazeis vir, não haverá medida de mim para vós nem vos aproximareis de mim"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,240,'Disseram: "Tentaremos persuadir seu pai. E, por certo, fá-lo-emos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,240,'E ele disse a seus jovens servos: "Recolocai sua mercadoria junto de suas bagagens, na esperança de que a reconheçam, ao tornarem a sua família, e isso, para retornarem"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,240,'E, quando retornaram a seu pai, disseram: "Ó nosso pai! Foi-nos impedida a medida. Então, envia conosco nosso irmão, nós teremos a medida e, por certo, ser-Ihe-emos custódios"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,240,'Ele disse: "Confiar-vo-lo-ia como antes, vos confiei seu irmão? Então, Allah é O Melhor por Custódio, e Ele é O mais Misericordiador dos misericordiadores"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,240,'E, quando abriram seus pertences, encontraram sua mercadoria a eles devolvida. Disseram: "Ó nosso pai! Que mais desejaríamos? Eis nossa mercadoria a nós devolvida. E aprovisionaremos nossa família e custodiaremos nosso irmão e acrescentaremos a nós mesmos uma medida de camelo. Isso é medida fácil de obter!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,240,'Ele disse: "Não o enviarei convosco, até me fazerdes promessa perante Allah, que , em verdade, mo trareis, salvo se sois assediados." E, quando lhe fizeram promessa, disse: "Allah, do que dizemos, é Patrono"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,240,'E ele disse: "Ó meus filhos! Não entreis no Egito por uma só porta. E entrai nele por diversas portas. E de nada vos valerei, diante de Allah. O julgamento não é senão de Allah. N');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,240,'E quando entraram por onde seu pai lhes ordenara, isto de nada lhes valeu, diante de Allah, a não ser porque era desejo, no âmago de Jacó, que ele satisfez. E por certo, ele era dotado de ciência, porque Nós o ensinamos, mas a maioria dos homens não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,240,'E, quando entraram junto de José, este aconchegou a si seu irmão dizendo: "Por certo, eu, eu sou teu irmão; e não te melancolizes, pelo que faziam"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,240,'E, quando ele lhes preparou as provisões, colocou a taça nas bagagens de seu irmão. Em seguida, um noticiador noticiou: "Ó caravana! Por certo, sois ladrões"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,240,'Disseram, dirigindo-se eles: "O que perdestes?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,240,'Eles disseram: "Perdemos a taça do rei e, para quem a trouxer, haverá carga de camelo. E eu sou o fiador disso"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,240,'Disseram: "Por Allah! Sabeis que não chegamos para semear corrupção na terra, e não somos ladrões".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,240,'Disseram eles: "Então, qual será sua recompensa se sois mentirosos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,240,'Disseram: "Sua recompensa será a escravidão daquele, em cujos haveres ela for encontrada; então, esta será sua recompensa. Assim, recompensamos os injustos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,240,'E ele começou por seus bornais, antes de ir ao bornal de seu irmão. Em seguida, fê-la sair do bornal de seu irmão. Assim, inspiramos a José esta insídia. Não era admissível que ele tomasse a seu irmão, conforme a legislação do Rei exceto se Allah o quisesse. Elevamos, em escalões, a quem queremos. E, acima de cada dotado de ciência há sempre, um mais sapiente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,240,'Eles disseram: "Se ele rouba, com efeito, um irmão seu já roubou, antes." Então, José guardou segredo disso em seu âmago, e não lhos mostrou. Disse para si: "Vossa situação é pior ainda! E Allah é bem Sabedor daquilo que alegais"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,240,'Disseram: "Ó Al-Aziz! Por certo, ele tem um pai bastante idoso; então, toma um de nós em seu lugar. Por certo, vemo-te dos benfeitores"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,240,'Ele disse: "Guarde-nos Allah de tomarmos outro que aquele junto de quem encontramos o que nos pertence! Por certo, nesse caso, seríamos injustos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,240,'Então, quando se desesperaram da aquiescência dele,retiraram-se, confidenciando. O primogênito deles disse: "Não sabeis que, com efeito, vosso pai recebeu de vós uma promessa, perante Allah e, antes, vós já descurastes de José? Então, não deixarei esta terra, até que mo permita meu pai, ou Allah julgue por mim. E Ele é O Melhor dos juízes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,240,'"Retornai a vosso pai, e dizei:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,240,'"E pergunta à cidade, onde estivemos, e à caravana, em que viemos. E, por certo, somos verídicos!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,240,'Jacó disse: "Mas vossas almas vos aliciaram a algo de mal. Então, cabe-me bela paciência. Quiçá, Allah nos faça vir, a todos. Por certo, Ele é O Onisciente, O Sábio"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,240,'E voltou-lhes as costas e disse: "Que pesar sinto por José!" E os olhos embranqueceram-se-Ihe de tristeza, pois estava muito angustiado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,240,'Disseram: "Por Allah! Não cessarás de lembrar-te de José, até ficares desfalecido, ou seres dos aniquilados!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,240,'Ele disse: "Apenas, queixo-me a Allah de minha aflição e tristeza, e sei de Allah o que não sabeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,240,'"Ó meus filhos! Ide e procurai notícias de José e seu irmão, e não vos desespereis da misericórdia de Allah. Por certo, não se desespera da misericórdia de Allah senão o povo renegador da Fé"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,240,'E, quando entraram junto dele disseram: "Ó Al-Aziz! O infortúnio tocou-nos e a nossa família, e chegamos com mercadoria desprezível. Então, completa-nos a medida e esmola-nos. Por certo, Allah recompensa os esmoleres."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,240,'Disse: "Sabeis o que fizestes com José e seu irmão, quando éreis ignorantes?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,240,'Disseram: "Em verdade, és tu José?" Disse: "Sou José, e este é meu irmão. Com efeito, Allah fez-nos mercê. Por certo, quem é piedoso e pacienta, Allah não faz perder o prêmio dos benfeitores"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,240,'Disseram: "Por Allah! Com efeito, Allah te deu preferência sobre nós e, por certo, estávamos errados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,240,'Disse: "Não há exprobração a vós, hoje. Que Allah vos perdoe. E Ele é O mais Misericordioso dos misericordiadores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,240,'"Ide com esta minha túnica e lançai-a sobre o rosto de meu pai, ele se tornará vidente. E fazei vir a mim toda vossa família');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,240,'E, quando a caravana partia do Egito, seu pai disse: "Por certo, sinto o odor de José, se me não acusais de devanear"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,240,'Eles disseram: "Por Allah! Certamente, estás em teu antigo descaminho"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,240,'E, quando o alvissareiro chegou, lançou-a sobre seu rosto e logo, ele se tornou vidente. Ele disse: "Não vos disse que, por certo, sei de Allah o que não sabeis?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,240,'Disseram: "Ó nosso pai! Implora perdão de nossos delitos. Por certo, estávamos errados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,240,'Disse: "Implorarei a meu Senhor perdão para vós. Por certo, Ele é O Perdoador, O Misericordiador"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,240,'Então, quando entraram junto de José, este aconchegou a si seus pais e disse: "Entrai no Egito, em segurança, se Allah quiser!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,3,240,'E elevou seus pais ao trono, e eles caíram, diante dele, em prosternação. E ele disse: "Ó meu pai! Esta é a interpretação de meu sonho de antes. Com efeito, meu Senhor fê-lo verdadeiro. E de fato, ele me bem-fez, quando me fez sair da prisão e vos fez chegar do deserto, depois de Satã instigar a cizânia, entre mim e meus irmãos. Por certo, meu Senhor é Sutil no que quer. Por certo, Ele é O Onisciente, O Sábio."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,3,240,'"Senhor meu! Com efeito, concedeste-me algo da soberania e ensinaste-me algo da interpretação dos sonhos. Ó Criador dos céus e da terra! Tu és meu Protetor na vida terrena e na Derradeira Vida. Leva-me a alma, enquanto muçulmano, e ajunta-me aos íntegros"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,3,240,'Esses são alguns informes do Invisível, que te revelamos, Muhammad. E não estavas junto deles quando determinaram sua decisão, enquanto usavam de estratagemas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,3,240,'E a maioria dos homens, ainda que estejas zeloso disso, não é crente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,3,240,'E tu não lhes pedes disso prêmio algum. Ele - O Alcorão - não é senão lembrança para os mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,3,240,'E quantos sinais há, nos céus e na terra, pelos quais eles passam, enquanto lhes estão dando de ombros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,3,240,'E a maioria deles não crê em Deus senão enquanto idólatras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,3,240,'Então, será que eles estão seguros de que lhes não chegará um manto do castigo de Allah, ou não lhes chegará a Hora, inopinadamente, enquanto não percebam?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,3,240,'Dize: "Este é o meu caminho: convoco-vos a Allah. Estou fundado sobre clarividência, eu e quem me segue. E Glorificado seja Allah! E não sou dos idólatras"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,3,240,'E não enviamos, antes de ti, senão homens das cidades, aos quais fizemos revelações - então, não caminharam eles na terra, para olhar como foi o fim dos que foram antes deles? E, em verdade, a morada da Derradeira Vida é melhor para os que são piedosos. Então, não razoais? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,3,240,'Até que, quando os Mensageiros se desesperaram e pensaram que, com efeito, foram desmentidos, chegou-lhes Nosso socorro. Então, foram salvos os que quisemos. E Nosso suplício não se revoga, junto do povo criminoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,3,240,'Com efeito, há em suas narrativas, lição para os dotados de discernimento. Isto não é conversa forjada, mas confirmação do que havia antes dele, e aclaramento de todas as cousas e orientação e misericórdia para um povo que crê.');
+INSERT INTO chapters (id, number, quran_id) VALUES(241,13,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,241,'Alif, Lãm, Mim, Rã. Esses são os versículos do Livro. E o que foi descido para ti, Muhammad, de teu Senhor é a verdade, mas a maioria dos homens não crê.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,241,'Allah é Quem elevou os céus, sem colunas que vejais; em seguida, estabeleceu-Se no Trono. E submeteu o sol e a lua, cada qual corre até um termo designado. Ele administra a ordem de tudo e aclara os sinais, para vos convencerdes do deparar de vosso Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,241,'E Ele é Quem estendeu a terra e nela fez assentes montanhas e rios. E, de todos os frutos, nela fez um par, um casal. Ele faz a noite encobrir o dia. Por certo, há nisso sinais para um povo que reflete.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,241,'E, na terra, há extensões contíguas, mas diversas; e jardins de videiras e searas e tamareiras, geminadas e não geminadas, irrigadas pela mesma água; e preferimos algumas delas a outras, no sabor. Por certo, há nisso sinais para um povo que razoa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,241,'E, se te admiras, Muhammad, de que te desmintam, mais admirável é seu dito: "Quando formos pó, tornar-nos-emos em nova criatura?" Esses são os que renegam a seu Senhor. E esses são aqueles em cujos pescoços haverá gargalheiras. E esses são os companheiros do Fogo. Nele, serão eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,241,'E pedem-te que lhes apresses o mal antes do bem, enquanto, com efeito, antes deles, passaram os castigos exemplares. E por certo, teu Senhor é Possuidor de perdão para os homens, apesar de sua injustiça. E, por certo, teu Senhor é Veemente na punição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,241,'E os que renegam a Fé dizem: "Que se faça descer sobre ele um sinal de seu Senhor!" Tu és, apenas, admoestador e, para cada povo, há um guia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,241,'Allah sabe o que cada varoa carrega consigo e a contração das matrizes e sua dilatação. E cada cousa, junto d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,241,'Ele é O Sabedor do invisível e do visível, O Grande, O Sublime.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,241,'É-Lhe igual quem de vós guarda segredo do dito e quem o declara, e quem está escondido de noite, e é caminhante de dia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,241,'Ele tem anjos da guarda, adiante dele e detrás dele, que o custodiam, por ordem de Allah. Por certo, Allah não transmutará o que um povo tem até que este haja transmutado o que há em si mesmo. E, quando Allah deseja um mal a um povo, não há revogador disso, e não terão, além d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,241,'Ele é Quem vos faz ver o relâmpago, para suscitar temor e aspiração e faz surgir as densas nuvens.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,241,'E o trovão glorifica-O, com louvor e, também os anjos por temor dEle. E Ele envia os raios e, com eles, alcança a quem quer, enquanto eles discutem acerca de Allah. E Ele é Veemente na força.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,241,'D');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,241,'E, diante de Allah, prosterna-se, de bom ou de mau grado, quem está nos céus e na terra, e também suas sombras, ao amanhecer e ao entardecer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,241,'Dize, Muhammad: "Quem é o Senhor dos céus e da terra?" Dize: "Allah". Dize: "Então, tomais, além dEle, protetores que não possuem para si mesmos, benefício nem prejuízo?" Dize: "Igualam-se o cego e o vidente? Ou igualam-se as trevas e a luz? Ou fazem a Allah parceiros, que hajam criado algo como Sua criação, então, assemelha-se-lhes a criação?" Dize: "Allah é O Criador de todas as cousas. E Ele é O Único, O Dominador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,241,'Ele faz descer água do céu, e ela flui em vales, conforme a medida destes, então, a torrente carrega uma espuma flutuante. E, parte daquilo sob a qual acendem o fogo, para fazer jóias ou utensílios, é espuma igual. Assim, Allah apresenta em parábola a verdade e a falsidade. Quanto à espuma, vai-se embora. E, quanto ao que beneficia aos homens, permanece na terra. Assim, Allah propõe os exemplos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,241,'Para os que atendem a seu Senhor, haverá a mais bela recompensa. E os que Lhe não atendem, se tivessem tudo o que há na terra e mais outro tanto, com isso, resgatar-se-iam. Esses terão o pior ajuste de contas. E sua morada será a Geena. E que execrável leito!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,241,'Então, quem sabe que o que foi descido para ti, de teu Senhor, é a verdade será igual a quem é cego? Apenas, meditam os dotados de discernimento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,241,'Os que são fiéis ao pacto de Allah e não desfazem a aliança,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,241,'E os que unem o que Allah ordena estar unido, e receiam a seu Senhor e temem o pior ajuste de contas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,241,'E os que pacientam, em busca do agrado de seu Senhor, e cumprem a oração e despendem, secreta e manifestamente, daquilo que lhes damos por sustento, e revidam o mal com o bem, esses terão o final feliz da Derradeira Morada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,241,'Os Jardins do Éden, em que entrarão junto com os que se emendaram dentre seus pais e seus cônjuges e sua descendência. E os anjos entrarão junto deles, por todas as portas, dizendo:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,241,'"Que a paz seja sobre vós, porque pacientastes! Então, que excelente final feliz da Derradeira Morada!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,241,'E os que desfazem o pacto de Allah, após havê-lo firmado, e separam o que Allah ordena estar unido e semeiam a corrupção na terra, esses terão a maldição e terão a pior Morada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,241,'Allah prodigaliza o sustento a quem quer, e restringe-o. E eles jubilam com a vida terrena. E a vida terrena, ao lado da Derradeira Vida, não é senão gozo efêmero.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,241,'E os que renegam a Fé dizem: "Que se faça descer a ele um milagre de seu Senhor!" Dize: "Por certo, Allah descaminha a quem quer e guia para Ele quem se volta contrito."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,241,'"Os que crêem e cujos corações se tranqüilizam com a lembrança de Allah." Ora, é com a lembrança de Allah que os corações se tranqüilizam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,241,'"Os que crêem e fazem as boas obras terão bem-aventurança e aprazível retorno"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,241,'Assim, enviamo-te, Muhammad, a uma comunidade - antes da qual, com efeito, outras comunidades passaram - para recitares para eles, o que te revelamos. Mas eles renegam O Misericordioso. Dize: "Ele é meu Senhor. Não existe deus senão Ele. N');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,241,'E, se houvesse um Alcorão, com que se fizesse caminhar as montanhas ou com que se fizesse cortar a terra ou com que se fizesse falar aos mortos, seria este. Mas de Allah é toda a ordem. Então, não sabem os que crêem que, se Allah quisesse, Ele haveria guiado a toda a humanidade? E os que renegam a Fé não cessarão de ser alcançados devido a suas ações por uma calamidade, ou de tê-la perto de seus lares, até que chegue a promessa de Allah. Por certo, Allah não falta à promessa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,241,'E, com efeito, zombaram de outros Mensageiros, antes de ti; então, concedi prazo aos que renegaram a Fé; em seguida, apanhei-os. Como foi, pois, Minha punição?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,241,'Então, Quem se mantém atento a cada alma, acerca do que logra, é igual aos ídolos? E eles fizeram a Allah parceiros. Dize: "Nomeai-os. Ou vós O informais do que Ele não sabe, na terra? Ou dizeis um dito vão?" Mas aformosearam-se, para os que renegam a Fé, seus estratagemas, e foram afastados do caminho reto. E aquele, a quem Allah descaminha, não tem guia algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,241,'Eles terão castigo, na vida terrena. E, em verdade, o castigo da Derradeira Vida será mais árduo. E não terão, contra o castigo de Allah, Protetor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,241,'Eis o exemplo do Paraíso, prometido aos piedosos: abaixo dele, correm os rios; seus frutos são permanentes, e, assim, sua sombra. Esse é o final feliz dos que são piedosos. E o final dos renegadores da Fé é o fogo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,241,'E aqueles a quem concedêramos o Livro, jubilam com o que foi descido para ti. E entre os partidos há quem negue parte dele. Dize: "Apenas, foi-me ordenado adorar a Allah e nada associar-Lhe. A Ele convoco os homens e a Ele será meu retorno"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,241,'E, assim, fizemo-lo (Alcorão) descer como sabedoria em língua árabe. E, em verdade, se seguires suas paixões, após o que te chegou da ciência, não terás, de Allah, nem aliado nem protetor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,241,'E, com efeito, enviamos Mensageiros, antes de ti, e fizemo-Ihes mulheres e descendência. E não é admissível que um Mensageiro chegue com um sinal senão com a permissão de Allah. Para cada termo há uma prescrição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,241,'Allah cancela e confirma o que quer. E, junto dEIe, está a Mãe do Livro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,241,'E, se te fazemos ver algo do que lhes prometemos ou te levamos a alma, antes disso; a ti te impende, apenas, a transmissão da Mensagem, e a Nós Nos impende o ajuste de contas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,241,'E não viram eles que chegamos à terra diminuindo-a em seus extremos? E Allah julga; não há revogador de Seu julgamento. E Ele é Destro no ajuste de contas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,241,'E, com efeito, aqueles antes deles usaram de estratagemas, mas de Allah são todos os estratagemas. Ele sabe o que toda alma logra. E os renegadores da Fé saberão de quem é o final feliz da Derradeira Morada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,241,'E os que renegam a Fé dizem: "Tu não és enviado de Allah." Dize: "Basta Allah, por testemunha, entre mim e vós, e quem tem ciência de Livro".');
+INSERT INTO chapters (id, number, quran_id) VALUES(242,14,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,242,'Alif, Lãm, Rã. Este é um Livro, que fizemos descer para ti, Muhammad, a fim de fazeres sair os homens das trevas para a Luz, com a permissão de seu Senhor, para a senda dO Todo-Poderoso, dO Louvável.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,242,'De Allah, de Quem é o que há nos céus e o que há na terra. E ai dos renegadores da Fé, por um veemente castigo!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,242,'Os que amam mais a vida terrena que a Derradeira Vida e afastam os homens do caminho de Allah, buscando torná-lo tortuoso, esses estão em profundo descaminho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,242,'E não enviamos Mensageiro algum senão com a língua de seu povo, para que ele torne evidente, para eles, a Mensagem. Então, Allah descaminha a quem quer e guia a quem quer. E Ele é O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,242,'E, com efeito, enviamos Moisés, com Nossos sinais, e dissemo-lhe: "Faze sair teu povo das trevas para a luz e lembra-lhes os dias de Allah. Por certo, há nisso sinais para todo perseverante, agradecido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,242,'E lembra-lhes, Muhammad, de quando Moisés disse a seu povo: "Lembrai-vos da graça de Allah para convosco, quando vos salvou do povo de Faraó. Infligiam-vos o pior castigo e degolavam vossos filhos e deixavam vivas vossas mulheres. E, nisso, houve de vosso Senhor formidável prova."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,242,'E, de quando vosso Senhor noticiou: "Em verdade, se agradeceis, acrescentar-vos-ei Minhas graças. Mas, em verdade, se estais ingratos, por certo, Meu castigo será veemente"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,242,'E Moisés disse: "Se renegais a Fé, vós e todos os que estão na terra, por certo, Allah é Bastante a Si mesmo. Louvável"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,242,'Não vos chegou o informe dos que foram antes de vós: do povo de Noé e de Ãd e de Thamud e dos que foram depois deles, os quais ninguém conhece senão Allah? Seus Mensageiros chegaram-lhes com as evidências; então, levaram as mãos à boca e disseram: "Por certo, renegamos aquilo com que sois enviados e, por certo, estamos em dúvida tormentosa acerca daquilo a que convocais."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,242,'Seus Mensageiros disseram: "Há dúvida acerca de Allah, O Criador dos céus e da terra, Que vos convoca para perdoar-vos parte dos delitos e para conceder-vos prazo, até um termo designado?" Eles disseram: "Vós não sois senão mortais como nós; desejais afastar-nos do que nossos pais adoravam. Então, fazei-nos vir evidente comprovação!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,242,'Seus Mensageiros disseram-lhes: "Certamente, não somos senão mortais como vós, mas Allah faz mercê a quem quer, entre Seus servos. E não é admissível que vos façamos chegar uma comprovação senão com a permissão de Allah. E que os crentes, então, confiem, em Allah."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,242,'"E por que razão nós não confiamos em Allah, enquanto, com efeito, Ele nos guiou a nossos caminhos? E, em verdade, pacientaremos, quanto ao que nos molestais. E que os confiantes, então, confiem em Allah"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,242,'E os que renegaram a Fé disseram a seus Mensageiros: "Em verdade, far-vos-emos sair de nossa terra, ou regressareis à nossa crença." Então, seu Senhor, inspirou-lhes: "Certamente, aniquilaremos os injustos".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,242,'"E far-vos-emos habitar a terra, depois deles. Isso, para quem teme Minha preeminência e teme Minha cominação"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,242,'E eles suplicaram a vitória. E mal-aventurado foi todo tirano obstinado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,242,'Adiante dele, estará a Geena, e ser-lhe-á dado de beber água putrefata,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,242,'Que ele sorverá aos goles e quase não conseguirá tragar. E a morte chegar-lhe-á de todos os lados, e ele não será morto. E, adiante dele, haverá duro castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,242,'O exemplo das obras dos que renegam a seu Senhor é como cinza, em que o vento sopra, intensamente, em dia tempestuoso. Não tirarão proveito algum do que lograram. Esse é o profundo descaminho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,242,'Não viste que Allah criou os céus e a terra, com a verdade? Se Ele quisesse, far-vos-ia ir e faria vir novas criaturas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,242,'E isso não é, para Allah, penoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,242,'E expor-se-ão todos, a Allah; então, os fracos dirão aos que se ensoberbeceram: "Por certo, éramos vossos seguidores. Pois, podeis valer-nos contra algo do castigo de Allah?" Eles dirão: "Se Allah nos houvesse guiado, haver-vos-íamos guiado. É-nos igual que nos aflijamos ou pacientemos; não há, para nós, fugida alguma."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,242,'E, quando for encerrada a ordem. Satã dirá: "Por certo, Allah prometeu-vos a verdadeira promessa, e eu vos prometi, mas vos falhei. E eu não tinha poder algum sobre vós, senão que vos convoquei, e me atendestes. Então, não me censureis, e censurai-vos a vós mesmos. Não sou vosso salvador nem vós sois meus salvadores. Por certo, renego que me houvésseis associado a Allah, antes." Por certo, os injustos terão doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,242,'E far-se-á entrar os que crêem e fazem as boas obras em Jardins, abaixo dos quais correm os rios; nesses, serão eternos, com a permissão de seu Senhor. Neles, sua saudação será: "Salam!", Paz!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,242,'Não viste como Allah propõe um exemplo? Uma palavra benigna é como uma árvore benigna, cuja raiz é firme e cujos ramos se alçam ao céu;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,242,'Ela concede seus frutos, em cada tempo, com a permissão de seu Senhor. E Allah propõe os exemplos para os homens, a fim de meditarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,242,'E o exemplo de uma palavra maligna é como uma árvore maligna, que é desenraizada da superfície da terra; ela não tem estabilidade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,242,'Allah torna firmes os que crêem, com o firme dito, na vida terrena e na Derradeira Vida. E Allah descaminha os injustos. E Allah faz o que quer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,242,'Não viste os que trocaram a graça de Allah por ingratidão e fizeram seu povo habitar da Destruição?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,242,'A Geena, nela se queimarão. E que execrável lugar de permanência!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,242,'E fazem para Allah semelhantes, para descaminhar os homens de Seu caminho. Dize: "Gozai! Por certo, vosso destino será o Fogo"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,242,'Dize a Meus servos que crêem que cumpram a oração e despendam, secreta ou manifestamente, daquilo que lhes damos por sustento, antes que chegue um dia, em que não haverá nem venda nem amizade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,242,'Allah é Quem criou os céus e a terra e faz descer do céu água, com que faz brotar dos frutos sustento para vós. E submeteu-vos o barco, para correr no mar, por Sua ordem, e submeteu-vos os rios.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,242,'E submeteu-vos o sol e a lua, constantes em seu percurso. E submeteu-vos a noite e o dia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,242,'E concedeu-vos de tudo que Lhe pedistes. E, se contais as graças de Allah, não podereis enumerá- las. Por certo, o ser humano é injusto, ingrato.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,242,'E lembra-lhes de quando Abraão disse: "Senhor meu! Faze esta cidade lugar de segurança, faze-me, e a meus filhos, evitar que adoremos os ídolos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,242,'"Senhor meu! Por certo, eles descaminharam a muitos dos homens. Então, quem me segue, por certo, é dos meus. E quem me desobedece, por certo, Tu és Perdoador, Misericordiador".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,242,'"Senhor nosso! Por certo, eu fiz habitar parte de minha descendência em vale sem searas, junto de Tua Casa Sagrada - Senhor nosso! - para que eles cumpram a oração. Então, faze que os corações de parte dos homens se precipitem a eles, com fervor. E dá-lhes dos frutos, por sustento, na esperança de serem agradecidos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,242,'"Senhor nosso! Por certo, Tu sabes o que escondemos e o que manifestamos. E nada se esconde de Allah na terra nem no céu."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,242,'"Louvor a Allah, Que me dadivou, na velhice, com Ismael e Isaque. Por certo, meu Senhor é O Ouvidor da súplica".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,242,'"Senhor meu! Faze-me cumpridor da oração e, também, uma parte de minha descendência. Senhor nosso! E aceita minha súplica!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,242,'"Senhor nosso! Perdoa-me e a meus pais e aos crentes, um dia, quando advier a conta"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,242,'E não suponhas, Muhammad, que Allah esteja desatento ao que os injustos fazem. Ele apenas, lhes concede prazo, até um dia em que as vistas se estarrecerão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,242,'Correndo, infrenes, de olhos fitos à frente, levantando as cabeças, seus olhares não obedecerão à sua vontade, e seus corações estarão vazios.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,242,'E admoesta os homens de que, um dia, o castigo lhes chegará; então, os que foram injustos dirão: "Senhor nosso! Concede-nos prazo, até um termo próximo, nós atenderemos Tua convocação e seguiremos os Mensageiros." Dir-se-lhes-á: "Não jurastes, antes, que jamais deixaríeis a terra?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,242,'"E habitastes as vivendas dos que foram injustos com si mesmos, e tornou-se evidente, para vós, como fizemos com eles e, para vós, propomos os exemplos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,242,'E, com efeito, eles usam de estratagemas, enquanto seus estratagemas são do conhecimento de Allah, ainda que, com seus estratagemas, as montanhas deixem de existir.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,242,'Então, não suponhas, Muhammad, que Allah falte à promessa a Seus Mensageiros. Por certo, Allah é Todo-Poderoso, Possuidor de vindita.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,242,'Um dia, a terra será trocada por outra terra, e, também, os céus. E expor-se-ão eles a Allah, O Único, O Dominador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,242,'E verás os criminosos nesse dia, aos pares, atados a grilhões.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,242,'Seus trajes serão de alcatrão, e o Fogo lhes cobrirá as faces.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,242,'Para que Allah recompense cada alma do que logrou. Por certo, Allah é Destro no ajuste de contas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,242,'Esta é uma Mensagem para os homens, para que se guiem e, com ela, sejam admoestados, e para que saibam que Ele é Deus Único e, também, para que os dotados de discernimento meditem.');
+INSERT INTO chapters (id, number, quran_id) VALUES(243,15,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,243,'Alif, Lãm, Rã. Esses são os versículos do Livro e explícito Alcorão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,243,'É muito provável que os que renegaram a Fé almejem haver sido muçulmanos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,243,'Deixa-os comer e gozar e deixa a esperança entretê-los, pois, logo saberão!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,243,'E não aniquilamos cidade alguma, sem que ela tivesse prescrição determinada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,243,'Nenhuma comunidade antecipa seu termo nem o atrasa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,243,'E eles dizem: "Ó tu, sobre quem foi descido o Alcorão! Por certo, és louco!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,243,'"Que nos faças vir os anjos, se és dos verídicos!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,243,'Não fazemos descer os anjos senão com a verdade e, nesse caso, não haveria, para eles dilação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,243,'Por certo, Nós fizemos descer o Alcorão e por certo, dele somos Custódios.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,243,'E, com efeito, enviamos, antes de ti, Mensageiros às seitas dos
+antepassados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,243,'E não lhes chegou Mensageiro algum, sem que dele zombassem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,243,'Assim, também, Nós o introduzimos nos corações dos criminosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,243,'Nele não crêem. E, com efeito, passaram os procedimentos dos antepassados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,243,'E, se lhes abríssemos uma porta do céu, e eles seguissem ascendendo a ela,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,243,'Em verdade, ainda, diriam: "Apenas, nossas vistas turvam-se; aliás, somos um povo enfeitiçado!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,243,'E, com efeito, fizemos no céu, constelações, e aformoseamo-lo, para os olhadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,243,'E custodiamo-lo, contra todo demônio maldito.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,243,'Mas a quem tenta ouvir às ocultas, então, uma evidente bólide persegue-o.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,243,'E a terra, estendemo-la e,nela, implantamos assentes montanhas e nela, fizemos germinar de toda cousa, no justo peso');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,243,'E, nela, fizemos meios de subsistência para vós e para aqueles aos quais não estais dando sustento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,243,'E não há cousa alguma, sem que estejam junto de nós seus cofres, e não a fazemos descer senão na medida determinada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,243,'E enviamos os ventos fecundantes, e fazemos descer do céu água, e damo-vo-la de beber; e não sois seus retentores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,243,'E, por certo, damos a vida e damos a morte; e Nós somos O Herdeiro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,243,'E, com efeito, sabemos dos antecessores de vós e, com efeito, sabemos dos sucessores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,243,'E, por certo, teu Senhor os reunirá. Por certo, Ele é O Sábio, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,243,'E, com efeito, criamos o ser humano de argila sonorosa de barro moldável.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,243,'E os gênios, criamo-los, antes, do fogo do Samum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,243,'E quando teu Senhor disse aos anjos: "Por certo, estou criando um mortal de argila sonorosa, de barro moldável."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,243,'"E, quando o houver formado e, nele, houver soprado algo de Meu Espírito, então, caí prosternados, diante dele"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,243,'E todos os anjos prosternaram-se, juntos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,243,'Exceto Iblis. Ele se recusou estar com os que se prosternavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,243,'Allah disse: "Ó Iblis! Por que razão não estás com os que se prosternam?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,243,'Disse: "Não é admissível que me prosterne diante de um mortal que criaste de argila sonorosa, de barro moldável"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,243,'Allah disse: "Então, sai dele e, por certo, és maldito".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,243,'"E, por certo, a maldição será sobre ti, até o Dia do Juízo"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,243,'Iblís disse: "Senhor meu! Concede-me dilação, até um dia, em que eles serão ressuscitados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,243,'Allah disse: "Por certo, és daqueles aos quais será concedida dilação"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,243,'"Até o dia do tempo determinado"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,243,'Ele disse: "Senhor meu! Pelo mal a que me condenaste, em verdade, aformosearei o erro para eles, na terra, e fá-los-ei a todos incorrer no mal".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,243,'Exceto Teus servos prediletos, entre eles"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,243,'Allah disse: "Esta é uma senda reta, que Me impende observar."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,243,'"Por certo, sobre Meus servos não terás poder algum, exceto sobre os que te seguirem, entre os desviados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,243,'"E, por certo, a Geena será seu lugar prometido, de todos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,243,'"Ela tem sete portas. Cada porta terá deles uma parte determinada"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,243,'Por certo, os piedosos estarão entre jardins e fontes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,243,'Dir-se-lhes-á: "Entrai neles em paz e em segurança"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,243,'E tiraremos o que houver de ódio em seus peitos, sendo como irmãos, em leitos, frente a frente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,243,'Neles, nenhuma fadiga os tocará, e deles jamais os farão sair.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,243,'Informa Meus servos, Muhammad, de que sou O Perdoador, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,243,'E de que Meu castigo é o doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,243,'E informa-os dos hóspedes de Abraão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,243,'Quando entraram junto dele e disseram: "Salam!, Paz ! Disse ele: "Por certo, estamos atemorizados convosco"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,243,'Disseram: "Não te atemorizes! Por certo, alvissaramo-te um filho sapiente"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,243,'Disse: "Alvissarais-me um filho, enquanto a velhice já me tocou? Então, o que me alvissarais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,243,'Disseram: "Alvissaramo-te a verdade. Então, não sejas dos desesperados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,243,'Disse: "E quem pode desesperar-se da misericórdia
+de seu Senhor, senão os descaminhados?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,243,'Disse ainda: "Qual é vosso intuito, ó Mensageiros?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,243,'Disseram: "Por certo, estamos sendo enviados a um povo criminoso"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,243,'"Exceto à família de Lot. Por certo, salvá-la-emos, a todos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,243,'"Exceto sua mulher. Determinamos que, por certo, ela será dos que ficarão para trás"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,243,'E, quando os Mensageiros chegaram à família de Lot,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,243,'Ele disse: "Por certo, sois um grupo desconhecido"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,243,'Disseram: "Mais chegamos a ti com o que eles contestam".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,243,'"E trouxemo-te a verdade e, por certo, somos verídicos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,243,'"Então, parte com tua família, na calada da noite, e segue suas pegadas, e que nenhum de vós retorne atrás. E ide para onde sois ordenados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,243,'E inspiramo-lhe essa ordem: que esses serão exterminados, até o último deles, logo ao amanhecer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,243,'E os habitantes da cidade chegaram, exultantes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,243,'Ele disse: "Por certo, esses são meus hóspedes. Então, não me desonreis".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,243,'"E temei a Allah e não me ignominieis"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,243,'Disseram: "Não te coibimos de hospedar quem quer que seja dos mundos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,243,'Ele disse: "Estas são minhas filhas se quereis fazê-lo"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,243,'Por tua vida, Muhammad! Por certo, eles estavam em sua embriaguez, caminhando às cegas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,243,'Então, o Grito apanhou-os, ao nascer do sol.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,243,'E revolvemo-las de cima para baixo, e fizemos chover sobre eles pedras de sijjil(pedras de barro cozido).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,243,'Por certo, há nisso sinais para os observantes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,243,'E, por certo, elas estavam em um caminho, que ainda permanece.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,243,'Por certo, há nisso um sinal para os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,243,'E, por certo, os habitantes de Al-Aykah eram injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,243,'Então, vingamo-Nos deles. E, por certo, ambas estão em evidente caminho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,243,'E, com efeito, os companheiros de Al-Hijr desmentiram aos Mensageiros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,243,'E concedemo-lhes Nossos sinais, e eles lhes estavam dando de ombros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,243,'E escavavam, em segurança, casas nas montanhas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,243,'Então, o Grito apanhou-os, logo ao amanhecer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,243,'E de nada lhes valeu o que logravam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,243,'E não criamos os céus e a terra e o que há entre ambos, senão com a verdade. E, por certo, a Hora está prestes a chegar. Então, tolera os adversários com bela tolerância.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,243,'Por certo, teu Senhor é O Criador, O Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,243,'E, com efeito, concedemo-te sete versículos dos reiterativos e o magnífico Alcorão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,243,'Não estendas teus olhos para aquilo que fizemos gozar alguns casais entre eles. E não te entristeças por eles. E baixa tua asa aos crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,243,'E dize: "Por certo, sou o evidente admoestador" do castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,243,'Como o que fizemos descer sobre os que dividiram o Livro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,243,'Que fizeram o Alcorão em fragmentos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,243,'Então, Muhammad, por teu Senhor! Interrogá-los-emos, a todos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,243,'Acerca do que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,243,'Proclama, então, aquilo para o qual és ordenado e dá de ombros aos idólatras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,243,'Por certo, Nós bastamo-te contra os zombadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,243,'Que fazem, junto de Allah, outro deus. Então eles logo saberão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,243,'E, em verdade, sabemos que teu peito se constrange com o que dizem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,243,'Então, glorifica com louvor, a teu Senhor e sê dos que se prosternam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,243,'E adora teu Senhor, até chegar-te a certeza.');
+INSERT INTO chapters (id, number, quran_id) VALUES(244,16,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,244,'A ordem de Allah há de chegar: então, não a apresseis. Glorificado e Sublimado seja Ele, acima do que idolatram.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,244,'Ele faz descer os anjos sobre quem quer, entre Seus servos, com a revelação de Sua ordem: "Admoestai os homens de que não existe Deus além de Mim. Então, temei-Me"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,244,'Ele criou os céus e a terra, com a verdade. Sublimado seja Ele acima do que idolatram!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,244,'Ele criou o ser humano de gota seminal; ei-lo então, adversário declarado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,244,'E os rebanhos, Ele os criou. Neles, tendes calor e proveitos, e deles comeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,244,'E tendes neles beleza, quando ao anoitecer, os fazeis voltar aos apriscos e, quando, ao amanhecer, os levais para pascer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,244,'E eles carregam vossas cargas para um território, a que não chegaríeis senão com a dificuldade das almas. Por certo, vosso Senhor é Compassivo, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,244,'E criou os cavalos e as mulas e os asnos, para os cavalgardes e para os terdes como ornamento. E Ele cria o que não sabeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,244,'E a Allah impende indicar a direção reta do caminho, e neste há-os com desvio. E, se Ele quisesse, guiar-vos-ia, a todos vós.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,244,'Ele é Quem vos faz descer do céu água. Dela bebeis e dela brota vegetação, em que fazeis pascer vossos rebanhos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,244,'Com ela, Ele vos faz germinar as searas e as oliveiras e as tamareiras e as videiras e toda espécie de frutos. Por certo, há nisso um sinal para um povo que reflete.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,244,'E submete-vos a noite e o dia, e o sol e a lua. E as estrelas estão submetidas, por Sua ordem. Por certo, há nisso sinais para um povo que razoa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,244,'E submete-vos o que Ele vos fez existir, na terra, cujas cores são variadas. Por certo, há nisso um sinal para um povo que medita.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,244,'E Ele é Quem vos submete o mar, para dele comerdes carne tenra, e dele extrairdes adornos, que usais. E tu vês o barco sulcando-o e, tudo isso, para que busqueis algo de seu favor, e para serdes agradecidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,244,'E Ele implantou na terra assentes montanhas, para que ela se não abale convosco, e também rios e caminhos, para vos guiardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,244,'E pontos de referência. E com as estrelas, eles, os homens,
+se guiam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,244,'Quem cria seria como quem não cria? Então, não meditais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,244,'E, se contais as graças de Allah, não podereis enumerá-las. Por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,244,'E Allah sabe o que ocultais e o que manifestais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,244,'E os que eles invocam, além de Allah, nada criam, enquanto eles mesmos são criados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,244,'São mortos, não vivos. E não percebem quando serão ressuscitados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,244,'Vosso Deus é Deus Único. Então, os que não crêem na Derradeira Vida, seus corações são negadores da unicidade de Deus, e eles são soberbos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,244,'É inconteste que Allah sabe o que eles ocultam e o que manifestam. Por certo, Ele não ama os soberbos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,244,'E, quando se lhes diz: "O que vosso Senhor fez descer?", dizem: "As fábulas dos antepassados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,244,'Que eles carreguem seus fardos inteiros, no Dia da Ressurreição, e parte dos fardos dos que eles descaminham, sem ciência. Ora, que vil o que eles carregarão!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,244,'Com efeito, aqueles antes deles, usaram de estratagemas, e Allah chegou a sua edificação pelos alicerces. Então, o teto ruiu sobre eles, e o castigo chegou-lhes por onde não perceberam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,244,'Em seguida, no Dia da Ressurreição, Ele os ignominiará e dirá: "Onde estão Meus parceiros, pelos quais discordastes?" Aqueles, aos quais fora concedida a ciência, dirão: "Por certo, hoje a ignomínia e o mal serão sobre os renegadores da Fé".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,244,'"Aqueles, cujas almas os anjos levam, enquanto injustos com si mesmos." Então, eles render-se-ão, dizendo: "Não fazíamos nada de mal". Dirão os anjos: "Sim! Por certo, Allah é Onisciente do que fazíeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,244,'"Então, entrai pelas portas da Geena. Nela, sereis eternos. E que execrável, em verdade, a moradia dos assoberbados!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,244,'E dir-se-á aos que foram piedosos: "O que fez descer vosso Senhor?" Dirão: "Um bem." Há, para os que bem-fazem, nesta vida terrena, algo de bom. Mas, em verdade, a morada da Derradeira Vida é melhor. E, que excelente a morada dos piedosos!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,244,'Os Jardins do Éden, em que entrarão, abaixo dos quais correm os rios. Nesses, terão o que quiserem. Assim, Allah recompensa os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,244,'Aqueles cujas almas os anjos levam, enquanto benignos, dizendo: "Que a paz seja sobre vós! Entrai no Paraíso, pelo que fazíeis"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,244,'Não esperam eles senão que os anjos lhes cheguem, ou que chegue a ordem de teu Senhor? Assim, agiram os que foram antes deles. E não foi Allah injusto com eles, mas eles foram injustos com si mesmos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,244,'Então, as más obras que fizeram alcançaram-nos, e aquilo de que zombavam envolveu-os.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,244,'E os que idolatram dizem: "Se Allah quisesse, nada idolatraríamos, além dEle, nem nós nem nossos pais, e nada nos proibiríamos, além do que Ele proibiu." Assim, agiram os que foram antes deles. Então, não impende aos Mensageiros senão evidente transmissão da Mensagem?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,244,'E, com efeito, enviamos a cada comunidade um Mensageiro, para dizer: "Adorai a Allah e evitai os ídolos." Então, dentre eles, houve aquele a quem Allah guiou, mas, dentre eles, houve aquele ao qual se deveu o descaminho. Caminhai, pois, na terra, e olhai como foi o fim dos desmentidores!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,244,'Se estás zeloso de guiá-los, por certo, Allah não guia a quem Ele descaminha. E eles não têm socorredores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,244,'E eles juram, por Allah, com seus mais solenes juramentos, que "Allah não ressuscitará a quem morre." Sim! É promessa que, deveras, Lhe impende. Mas a maioria dos homens não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,244,'Ressuscitá-lo-á, para tornar evidente, para eles, o de que discrepavam e para saberem os que renegaram a Fé que eram mentirosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,244,'Nosso dito, para uma cousa, quando a desejamos, é apenas, dizer-lhe: "Sê", então, é.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,244,'E aos que, por Allah, emigraram, depois de haverem sofrido injustiça, em verdade, dispô-los-emos, na vida terrena, com bela dádiva. E, certamente, o prêmio da Derradeira Vida é maior. Se soubessem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,244,'São os que pacientam, e em seu Senhor confiam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,244,'E não enviamos, antes de ti, Muhammad, senão homens aos quais fizemos revelações. Então, perguntai-o aos sapios da Mensagem se não sabeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,244,'Enviamo-los com as evidências e os Salmos. E fizemos descer, para ti, a Mensagem, a fim de tornares evidente, para os homens, o que foi descido para eles, e a fim de refletirem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,244,'Então, será que os que usaram de maus estratagemas estão seguros de que Allah não fará a terra engoli-los, ou de que o castigo lhes não chegará por onde não percebam?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,244,'Ou de que Ele os não apanhará em sua prosperidade, então não possam escapar?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,244,'Ou de que Ele os não apanhará, paulatinamente, com gradual ruína? Então, por certo, Vosso Senhor é Compassivo, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,244,'E não viram eles que a sombra de todas as cousas que Allah criou se lhes alonga, à direita e à esquerda, prosternando-se diante de Allah, humildemente?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,244,'E, diante de Allah, prosterna-se o que há nos céus e o que há na terra de ser animal, e também os anjos, e eles não se ensoberbecem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,244,'Eles temem seu Senhor, acima deles, e fazem o que lhes é ordenado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,244,'E Allah disse: "Não tomeis, em adoração, a dois deuses. Apenas Ele é Deus Único, e a Mim, então, venerai-Me"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,244,'E dEle é o que há nos céus e na terra, e dEle é a devoção perpétua. Então, temeis a outro que Allah?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,244,'E toda graça, que está convosco, vem de Allah. Em seguida, quando o infortúnio vos toca, é a Ele que dirigis o rogo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,244,'Em seguida, quando Ele vos remove o infortúnio, eis um grupo, de vós, que associa ídolos a seu Senhor,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,244,'Para renegar o que lhes concedemos. Gozai, pois! Logo, sabereis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,244,'E eles destinam aos que nada sabem uma porção do que lhes damos por sustento. Por Allah! Sereis interrogados, certamente, acerca do que forjáveis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,244,'E atribuem as filhas a Allah - Glorificado seja! - e, a eles mesmos, o que lhes apetece.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,244,'E, quando a um deles se lhe alvissara o nascimento de uma filha, torna-se-lhe a face enegrecida, enquanto fica angustiado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,244,'Esconde-se do povo, por causa do mal que se lhe alvissarou. Retê-lo-á, com humilhação, ou soterrá-lo-á no pó? Ora, que vil o que julgam!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,244,'Aos que não crêem na Derradeira Vida, cabe o pior qualificativo, enquanto a Allah, o altíssimo qualificativo. E Ele é O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,244,'E, se Allah culpasse os homens por sua injustiça, não deixaria sobre ela ser animal algum; mas concede-lhes prazo, até um termo designado. Então, quando chegar seu termo, não poderão retardá-lo, uma hora sequer, nem adiantá-lo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,244,'E eles atribuem a Allah o que odeiam. E suas línguas alegam a mentira, quando dizem que terão a mais bela recompensa. E inconteste que terão o Fogo e que a este serão conduzidos, antes de todos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,244,'Por Allah! Com efeito, enviamos Mensageiros a comunidades, antes de ti. Então, Satã aformoseou-lhes as obras, e ele é, hoje, seu aliado, nesta vida. E eles terão doloroso castigo, na outra.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,244,'E não fizemos descer, sobre ti, o Livro senão para tornares evidente, para eles, o de que discrepam e para ser ele orientação e misericórdia para um povo que crê.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,244,'E Allah faz descer do céu água; e com ela, vivifica a terra, depois de morta. Por certo, há nisso um sinal para um povo que ouve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,244,'E, por certo, há nos rebanhos, lição para vós. Damo-vos de beber, do que há em seus ventres - entre fezes e sangue - leite puro, suave para quem o bebe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,244,'E dos frutos das tamareiras e das videiras, deles tomais vinho e belo sustento. Por certo, há nisso um sinal para um povo que razoa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,244,'E teu Senhor inspirou às abelhas: "Tomai casas, nas montanhas e nas árvores e no que eles erigem".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,244,'"Em seguida, comei de todos os frutos. E ide, docilmente, pelos caminhos de vosso Senhor." De seu ventre sai um licor: variadas são
+suas cores; nele, há cura para os homens. Por certo, há nisso um sinal para um povo que reflete.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,244,'E Allah criou-vos; em seguida, levar-vos-á a alma. E há, dentre vós, quem seja levado à mais provecta idade, para nada mais saber, após haver tido ciência. Por certo, Allah é Onisciente, Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,244,'E Allah preferiu alguns de vós a outros, na repartição do sustento. Então, os que são preferidos não estão partilhando seu sustento com seus escravos e nele, seriam iguais. Então, negam eles a graça de Allah?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,244,'E Allah vos fez mulheres de vós mesmos e vos fez, de vossas mulheres, filhos e netos, e deu-vos por sustento das cousas benignas. Então, crêem eles na falsidade e renegam a graça de Allah?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,244,'E eles adoram, além de Allah, o que não possui, para eles, sustento algum, nem dos céus nem da terra, e nada podem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,244,'Então, não engendreis semelhantes a Allah. Por certo, Allah sabe, enquanto vós não sabeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,244,'Allah propõe um exemplo: um escravo subalterno, que nada pode, e um homem a quem damos por sustento um belo sustento de Nossa parte e, dele, despende, secreta e declaradamente. Igualar-se-ão? Louvor a Allah! Mas a maioria deles não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,244,'E Allah propõe um exemplo: dois homens, um deles mudo, que nada pode, e é fardo para seu amo; aonde quer que este o envie, daí não chegará com bem algum. Igualar-se-á ele a quem ordena a justiça e está em senda reta?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,244,'E de Allah é o Invisível dos céus e da terra. E a ordem acerca da Hora não será senão como o piscar de olhos, ou mais rápido, ainda. Por certo, Allah, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,244,'E Allah vos faz sair do ventre de vossas mães, enquanto nada sabeis. E vos faz o ouvido as vistas e os corações, para serdes agradecidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,244,'Não viram eles os pássaros submetidos, no espaço do céu, onde nada os sustém senão Allah? Por certo, há nisso sinais para um povo que crê.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,244,'E Allah vos faz, de vossas casas, lugar de repouso, e vos faz, das
+peles dos rebanhos, casas, que achais leves, em vosso dia de viagem e em vosso dia de acampamento. E de sua lã e de seu pêlo e de sua crina, tendes guarnições e proveito, até certo tempo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,244,'E Allah vos faz sombras do que criou. E vos faz abrigos, das montanhas. E vos faz vestes que vos guardam do calor e vestes que vos guardam, em vossas guerras. Assim, Allah completa Sua graça, para convosco, para vos islamizardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,244,'E, se voltam as costas, apenas, impender-te-á, Muhammad, a evidente transmissão da Mensagem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,244,'Eles reconhecem a graça de Allah; em seguida, negam-na. E a maioria deles é renegadora da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,244,'E lembra-lhes de que, um dia, faremos surgir uma testemunha de cada comunidade. Em seguida, não será permitida a escusa aos que renegaram a Fé, e eles não serão solicitados a se desculpar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,244,'E, quando os que foram injustos virem o castigo, este não se aliviará, para eles, nem se lhes concederá dilação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,244,'E, quando os idólatras virem seus ídolos, dirão: "Senhor nosso! Esses são nossos ídolos, que invocamos, além de Ti." Então, os ídolos endereçar-lhes-ão o dito: "Por certo, sois mentirosos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,244,'E, nesse dia, eles render-se-ão a Allah. E sumirá, para longe deles, o que forjavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,244,'Aos que renegam a Fé e afastam os homens do caminho de Allah, Nós acrescentar-lhes-emos castigo sobre castigo, pela corrupção que cometiam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,244,'E um dia, faremos surgir, de cada comunidade, uma testemunha dela mesma, e te traremos por testemunha contra estes. E fizemos descer sobre ti o Livro como elucidação de todas as cousas, e orientação e misericórdia e alvíssaras para os muçulmanos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,244,'Por certo, Allah ordena a justiça e a benevolência e a liberalidade para com os parentes, e coíbe a obscenidade e o reprovável e a transgressão. Ele vos exorta, para meditardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,244,'E sede fiéis ao pacto de Allah, quando já o pactuastes, e não desfaçais os juramentos, após haverem sido firmados, uma vez que, com efeito, fizestes a Allah vosso Fiador. Por certo, Allah sabe o que fazeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,244,'E não sejais como aquela que desfazia, em filamento, sua fiação, após retorcida firmemente, tomando vossos juramentos por engodo, entre vós, por ser uma comunidade mais crescida que outra comunidade. Apenas, Allah põe-vos à prova, com isso; e isso, para que, no Dia da Ressurreição, Ele torne evidente, para vós, o de que discrepáveis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,244,'E, se Allah quisesse, far-vos-ia uma única comunidade, mas Ele descaminha a quem quer, e guia a quem quer. E, em verdade, sereis interrogados acerca do que fazíeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,244,'E não tomeis vossos juramentos por engodo, entre vós, pois, tropeçaria o pé após haver sido firme e experimentaríeis o mal, por haverdes afastado os homens do caminho de Allah, e teríeis formidável castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,244,'E não vendais o pacto de Allah por ínfimo preço. Por certo, o que há junto de Allah vos é melhor. Se soubésseis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,244,'O que há junto de vós se exaure, mas o que há junto de Allah é permanente. E, em verdade, recompensaremos os que pacientaram com prêmio melhor que aquilo que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,244,'A quem faz o bem, seja varão ou varoa, enquanto crente, certamente, fá-lo-emos viver vida benigna. E Nós recompensá-los-emos com prêmio melhor que aquilo que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,244,'E, quando leres o Alcorão, suplica a proteção de Allah contra o maldito Satã.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,244,'Por certo, ele não tem poder sobre os que crêem e confiam em seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,3,244,'Seu poder está, apenas, sobre os que a ele se aliam e que, por sua causa, são idólatras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,3,244,'E, quando trocamos um versículo por outro versículo - e Allah é bem Sabedor do que faz descer - eles dizem: "Tu és, apenas um forjador." Não. Mas a maioria deles não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,3,244,'Dize: "O Espírito Sagrado fê-lo descer, de teu Senhor, com a verdade, para tornar firmes os que crêem e para ser orientação e alvíssaras para os muçulmanos".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,3,244,'E sabemos que eles dizem: "Apenas, um ser humano ensina-o." Ora, a língua daquele a que aludem é forânea, e este alcorão é de língua árabe clara pra eles.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,3,244,'Por certo, aos que não crêem nos sinais de Deus, Allah não os guiará, e terão doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,3,244,'Apenas forjam mentiras os que não crêem nos sinais de Allah, e esses são os mentirosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,3,244,'Quem renega a Allah após haver crido, será abominoso, exceto quem for compelido a isto, enquanto seu coração estiver firme na Fé. Mas quem dilata o peito para a renegação da Fé, sobre eles será uma ira de Allah, e terão formidável castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,3,244,'Isso, por que eles amam mais a vida terrena que a Derradeira Vida. E Allah não guia o povo renegador da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,3,244,'Esses são aqueles cujos corações e ouvido e vistas Allah selou. E esses são os desatentos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,3,244,'É inconteste que serão, na Derradeira Vida, os perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,3,244,'E por certo, teu Senhor será, para com os que emigraram, após haverem sido provados - em seguida, lutaram e pacientaram - por certo, depois disso, teu Senhor será Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,3,244,'Lembra-lhes de que, um dia, cada alma chegará para discutir acerca de si mesma, e cada alma será compensada com o que fez. E eles não sofrerão injustiça.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,3,244,'E Allah propõe um exemplo; uma cidade, estava em segurança,
+tranqüila; a ela chegava, fartamente, seu sustento, de todos os lados. Depois, renegou as graças de Allah. Então, Allah fe-la experimentar a violência da fome e do medo, pelo que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,3,244,'E, com efeito, um Mensageiro chegou-lhes, vindo deles, mas desmentiram-no. Então, o castigo apanhou-os enquanto injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,3,244,'Comei, então, do que Allah vos deu por sustento, enquanto lícito e benigno. E agradecei a graça de Allah, se só a Ele adorais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,3,244,'Ele vos proibiu apenas, a carne do animal encontrado morto e o sangue, e a carne de porco, e o que é imolado com a invocação de outro nome que Allah. E quem é impelido a alimentar-se disso, não sendo transgressor nem agressor, por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,3,244,'E não digais, por alegação mentirosa de vossas línguas: "Isto é lícito e isto é ilícito", para forjardes a mentira acerca de Allah. Por certo, os que forjam a mentira acerca de Allah não são bem-aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,3,244,'Têm gozo ínfimo, mas terão doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,3,244,'E, aos que praticam o judaísmo, proibimos o que te narramos, antes e não fomos injustos com eles, mas eles foram injustos com si mesmos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,3,244,'E, certamente, teu Senhor, para com os que fazem o mal, por ignorância e, logo, voltam-se arrependidos e emendam-se, por certo, depois disso, teu Senhor é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,3,244,'Por certo, Abraão era prócer, devoto a Allah, monoteísta sincero, e não era dos idólatras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,3,244,'Agradecido a Suas graças. Ele o elegeu e o guiou a uma senda reta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,3,244,'E concedemo-lhe, na vida terrena, boa dádiva, e, por certo, na Derradeira Vida, será dos íntegros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,3,244,'Em seguida, revelamo-te, Muhammad: "Segue a crença de Abraão, monoteísta sincero. E ele não era dos idólatras"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,3,244,'O sábado foi prescrito, apenas, aos que dele discreparam. E, por certo, teu Senhor julgará, entre eles, no Dia da Ressurreição, naquilo de que discrepavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,3,244,'Convoca ao caminho de teu Senhor, com a sabedoria e a bela exortação, e discute com eles, da melhor maneira. Por certo, Allah é bem Sabedor de quem se descaminha de Seu caminho e Ele é bem Sabedor dos que são guiados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,3,244,'E, se punis o inimigo, puni-o de igual modo, com que fostes punidos. E, em verdade, se pacientais, isso é melhor para os perseverantes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,3,244,'E pacienta, e tua paciência não é senão com a ajuda de Allah. E não te entristeças por eles e não tenhas constrangimento, por usarem de estratagema.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,3,244,'Por certo, Allah é com os que são piedosos e com os que são benfeitores.');
+INSERT INTO chapters (id, number, quran_id) VALUES(245,17,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,245,'Glorificado seja Quem fez Seu servo Muhammad viajar à noite - da Mesquita Sagrada para a Mesquita Al-');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,245,'E concedêramos a Moisés o Livro, e o fizéramos orientação para os filhos de Israel, dizendo: "Não tomeis, além de Mim, patrono algum."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,245,'"Ó descendência dos que levamos com Noé! Por certo, ele era servo agradecido"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,245,'E decretáramos, no Livro, aos filhos de Israel: "Em verdade, semeareis a corrupção na terra, por duas vezes e, em verdade, sublimar-vos-eis, em grande arrogância."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,245,'"Então, quando chegar o tempo da primeira das duas promessas, enviaremos contra vós servos Nossos, dotados de veemente fúria. Eles, invadirão os lares." E a promessa foi cumprida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,245,'Em seguida, devolvemo-vos a dominação sobre eles, e estendemo-vos riquezas e filhos. E fizemo-vos mais numerosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,245,'E dissemos: "Se bem-fizerdes, bem-fareis, a vós mesmos, e se malfizerdes, será em prejuízo de vós mesmos. Então, quando chegar o tempo da última enviá-los-emos contra vós, para afligirem vossas faces e para entrarem na mesquita, como nela entraram, da vez primeira, e para esmagarem, completamente, tudo de que se forem apoderando."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,245,'E dissemos: "Quiçá, vosso Senhor tenha misericórdia de vós. E, se reincidirdes, reincidiremos. E Nós fizemos da Geena cárcere para os renegadores da Fé"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,245,'Por certo, este Alcorão guia ao caminho mais reto e alvissara aos crentes, que fazem as boas obras, que terão grande prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,245,'E que, para os que não crêem na Derradeira Vida, preparamos
+doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,245,'E o ser humano suplica o mal como suplica o bem. E o ser humano é pressuroso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,245,'E fizemos da noite e do dia dois sinais. Então, apagamos o sinal da noite e fizemos claro o sinal do dia, para buscardes favor de vosso Senhor e para saberdes o número dos anos e o cômputo do tempo. E aclaramos, cada cousa, detalhadamente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,245,'E, em cada ser humano, impusemos seu agouro no pescoço. E, no Dia da Ressurreição, faremos sair para ele, um Livro, que ele deparará, desenrolado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,245,'Dir-se-lhe-á: "Lê teu livro. Hoje, bastas-te, a ti mesmo, por ajustador de contas"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,245,'Quem se guia se guiará, apenas, em benefício de si mesmo, e quem se descaminha se descaminhará, apenas, em prejuízo de si mesmo. E nenhuma alma pecadora arca com o pecado de outra. E não é admissível que castiguemos a quem quer que seja, até que lhe enviemos um Mensageiro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,245,'E, quando desejamos aniquilar uma cidade, ordenamos, primeiro, obediência a seus opulentos habitantes. Mas, ao contrário, eles cometem nela perversidade. Então, o Dito cumpre-se contra ela. E profligamo-la, inteiramente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,245,'E que de gerações aniquilamos, depois de Noé! E, dos pecados de Seus servos, basta teu Senhor, por Conhecedor, Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,245,'Para quem deseja a vida transitória, apressamos nela, para quem desejamos, o que queremos. Em seguida, fá-lo-emos queimar-se na Geena, infamado, banido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,245,'E quem deseja a Derradeira Vida, e se esforça em obtê-la, enquanto crente, desses o esforço será reconhecido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,245,'A ambos, a estes e àqueles, estendemos algo do dom de teu Senhor. E o dom de teu Senhor jamais é vedado a alguém.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,245,'Olha, Muhammad, como preferimos alguns deles a outros. E, em verdade, a Derradeira Vida é maior em escalões e maior em preferências');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,245,'Não faças, junto de Allah, outro deus, pois, tornar-te-ias infamado, desamparado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,245,'E teu Senhor decretou que não adoreis senão a Ele; e decretou benevolência para com os pais. Se um deles ou ambos atingem a velhice, junto de ti, não lhes digas: "Ufa!", nem os maltrates, e dize-lhes dito nobre.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,245,'E baixa a ambos a asa da humildade, por misericórdia. E dize:
+"Senhor meu! Tem misericórdia deles, como quando eles cuidaram de mim, enquanto pequenino"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,245,'Vosso Senhor é bem Sabedor do que há em vossas almas. Se sois íntegros, por certo, Ele é, para os contritos, Perdoador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,245,'E concede ao parente seu direito e ao necessitado e ao filho do caminho. E não dissipes teus bens exageradamente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,245,'Por certo, os dissipadores são irmãos dos demônios. E o demônio é ingrato a seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,245,'E, se Ihes dás de ombros, em busca da misericórdia de teu Senhor, pela qual esperas, dize-lhes dito bondoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,245,'E não deixes tua mão atada ao pescoço, e não a estendas, com exagero, pois, tornar-te-ias censurado, afligido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,245,'Por certo, teu Senhor prodigaliza o sustento, para quem quer, e restringe-o. Por certo, Ele, de Seus servos, é Conhecedor, Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,245,'E não mateis vossos filhos, com receio da indigência: Nós lhes damos sustento, e a vós. Por certo, seu morticínio é grande erro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,245,'E não vos aproximeis do adultério. Por certo, ele é obscenidade; e que vil caminho!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,245,'E não mateis o ser humano, que Allah proibiu matar, exceto se com justa razão. E quem é morto injustamente, Nós, com efeito, estabelecemos a seu herdeiro poder sobre o culpado. Então, que ele não se exceda no morticínio. Por certo, pela lei, ele já é socorrido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,245,'E não vos aproximeis das riquezas de órfão, senão da melhor maneira, até que ele atinja sua força plena. E sede fiéis ao pacto firmado. Por certo, o pacto será questionado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,245,'E completai a medida, quando medirdes, e pesai com a balança correta. Isso é melhor e mais belo, em efeito.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,245,'E não persigas o de que não tens ciência. Por certo, do ouvido e da vista e do coração, de tudo isso se questionará.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,245,'E não andes pela terra com jactância. Por certo, não fenderás a terra nem atingirás as montanhas, em altura.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,245,'O mal de tudo isso, perante teu Senhor, é odioso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,245,'Isso é parte da sabedoria, que teu Senhor te revelou. E não faças, junto de Allah, outro deus, pois, serias lançado na Geena, censurado, banido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,245,'Acaso, vosso Senhor escolheu filhos, para vós, e tomou dentre os anjos, filhas, para Ele? Por certo, dizeis dito monstruoso!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,245,'E, com efeito, patenteamos, neste Alcorão, os exemplos, para que eles meditem; e isso não lhes acrescenta senão repulsa à verdade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,245,'Dize: "Se houvesse, junto d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,245,'Glorificado e Sublimado ao auge, seja Ele, acima do que dizem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,245,'Os sete céus e a terra e quem neles existe glorificam-nO. E não há cousa alguma que O não glorifique, com louvor, mas vós não entendeis sua glorificação. Por certo, Ele é Clemente, Perdoador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,245,'E, quando tu, Muhammad, lês o Alcorão, pomos entre ti e os que não crêem na Derradeira Vida, um cortinado invisível.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,245,'E fazemo-lhes véus sobre os corações, a fim de o não entenderem e, nos ouvidos, surdez. E quando, no Alcorão, mencionas teu Senhor, só a Ele, voltam-se para trás, em repulsa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,245,'Nós somos bem Sabedores da intenção com que eles ouvem, quando te ouvem e quando estão em confidências, quando os injustos dizem, entre eles: "Não seguis senão um homem enfeitiçado!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,245,'Olha, como engendram semelhantes a ti, e se descaminham! Então, não poderão encontrar caminho algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,245,'E dizem: "Quando formos ossos e resquícios, seremos ressuscitados, em novas criaturas?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,245,'Dize: "Sede o que fordes, pedras ou ferro"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,245,'"Ou criatura outra, que vossas mentes consideram assaz difícil de ter vida, sereis ressuscitados." Então, dirão: "Quem nos fará voltar à vida?" Dize: "Aquele que vos criou, da vez primeira." Então, menearão a cabeça, em escárnio a ti, e dirão: "Quando será isso?" Dize: "Quiçá, seja bem próximo"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,245,'"Um dia, quando Ele vos convocar, então, vós O atendereis, louvando-O, e pensareis que não permanecestes, nos sepulcros, senão por pouco tempo!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,245,'E dize a Meus servos que digam aos idólatras a palavra que for melhor. Por certo, Satã instiga a cizânia, entre eles. Por certo, Satã é para o ser humano inimigo declarado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,245,'Vosso Senhor é bem Sabedor de vós. Se Ele quiser, terá misericórdia de vós ou, se Ele quiser, castigar-vos-á. E não te enviamos, sobre eles, por patrono.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,245,'E teu Senhor é bem Sabedor de quem existe nos céus e na terra. E, com efeito, Nós preferimos alguns dos profetas a outros, e concedêramos a Davi os Salmos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,245,'Dize: "Invocai os que pretendeis serem deuses, além dEle: Eles não possuirão o dom de remover de vós o infortúnio nem alterá-lo"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,245,'Esses que eles invocam, buscam meios de aproximar-se de seu Senhor, cada qual ansiando estar mais próximo d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,245,'E não há cidade que não aniquilemos, antes do Dia da Ressurreição, ou que não castiguemos com veemente castigo. Isso está escrito no Livro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,245,'E o que nos impede de enviar os sinais não é senão que os antepassados os desmentiram. E concedêramos ao povo de Thamüd o camelo fêmea por sinal claro, e foram injustos com ele. E não enviamos sinais senão para amedrontar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,245,'E quando te dissemos: "Por certo, teu Senhor abarca os humanos." E não fizemos da visão que te fizemos ver, senão provação para os homens e, o mesmo da árvore maldita no Alcorão. E Nós os amedrontamos; então, isso não lhes acrescenta senão grande transgressão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,245,'E quando dissemos aos anjos: "Prosternai-vos diante de Adão"; então, prosternaram-se, exceto Iblis, que disse: "Prosternar-me-ei diante de quem Tu criaste de barro?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,245,'Disse ainda: "Viste? É este quem preferiste a mim? Em verdade, se me concedes prazo, até o Dia da Ressurreição, tomarei as rédeas de sua descendência, exceto de poucos deles"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,245,'Allah disse: "Vai! E quem deles te seguir, por certo, a Geena será a recompensa de todos vós, como plena recompensa".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,245,'"E importuna, com tua voz, a quem puderes, dentre eles, e tumultua-os, com tua cavalaria e infantaria, e partilha com eles as riquezas e os filhos e faze-lhes promessas." - E Satã não lhes promete senão falácias.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,245,'"Por certo, sobre Meus servos não tens poder algum." E basta teu Senhor por Patrono.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,245,'Vosso Senhor é Quem vos impulsa o barco, no mar, para buscardes algo de Seu favor. Por certo, Ele, para convosco, é Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,245,'E, quando o infortúnio vos toca, no mar, somem aqueles a quem invocais, exceto Ele. Então, quando Ele vos põe a salvo na terra, vós dais de ombros. E o ser humano é assaz ingrato.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,245,'Então, estais seguros de que Ele não fará uma faixa de terra engolir-vos ou não enviará contra vós um vento lastrado de seixos, em seguida, não encontrareis para vós patrono algum?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,245,'Ou estais seguros de que Ele não vos fará tornar a ele, outra vez, e não enviará contra vós um vento devastador, então, afogar-vos-á por vossa renegação da Fé, em seguida, não encontrareis para vós defensor, contra Nós?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,245,'E, com efeito, honramos os filhos de Adão e levamo-los por terra e mar e demo-lhes por sustento das cousas benignas, e preferimo-los, nitidamente, a muitos dos que criamos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,245,'Um dia, convocaremos cada grupo dos homens, com seu imam. Então, a quem for concedido seu livro em sua destra, esses lerão seu livro e não sofrerão injustiça, nem a mínima que seja.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,245,'E quem, nesta vida é cego, na Derradeira Vida será cego e mais descaminhado do rumo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,245,'E, por certo, quase eles te desviaram, Muhammad, do que te revelamos, para que forjasses, acerca de Nós, outra revelação que esta. E, nesse caso, haver-te-iam tomado por amigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,245,'E, se te não houvéssemos tornado firme, com efeito, quase te haverias inclinado, um pouco, para eles.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,245,'Nesse caso, haver-te-iamos feito experimentar o dobro do castigo da vida e o dobro do da morte. Em seguida, não encontrarias, para ti, socorredor contra Nós.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,245,'E, por certo, quase te importunaram, na terra para dela te fazerem sair. E, nesse caso, nela não haveriam permanecido, depois de ti, senão por pouco tempo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,245,'Assim, foi o Nosso procedimento com quem, com efeito, enviamos antes de ti, dentre Nossos Mensageiros. E não encontrarás, em Nosso procedimento, alteração alguma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,245,'Cumpre a oração, do declínio do sol até a escuridão da noite, e cumpre a oração da aurora. Por certo, a oração da aurora é testemunhada pelos anjos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,245,'E à noite, então, reza com ele à guisa de oração suplementar para ti. Quiçá, teu Senhor te ascenda a uma louvável preeminência.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,245,'E dize: "Senhor meu! Faze-me entrar uma entrada, verdadeiramente, digna, e faze-me sair uma saída, verdadeiramente, digna, e faze-me, de Tua parte, um poder socorredor"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,245,'E dize: "A Verdade chegou e a falsidade pereceu. Por certo, a falsidade é perecível"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,245,'E fazemos descer, do Alcorão, o que é cura e misericórdia para os crentes. E, aos injustos, isto não acrescenta senão perdição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,245,'E, quando agraciamos o ser humano, ele dá de ombros e se distancia, sobranceiro. E, quando o mal o toca, fica desesperado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,245,'Dize: "Cada qual age conforme sua índole. E, vosso Senhor é bem Sabedor de quem é o mais guiado no caminho"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,245,'E perguntam-te eles pela alma. Dize: "A alma é da Ordem de meu Senhor. E não vos foi concedido da ciência senão pouco"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,245,'E, em verdade, se quiséssemos ir-Nos com o que te revelamos, em seguida, não encontrarias, para ti, patrono contra Nós.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,245,'Não o fizemos senão por misericórdia de teu Senhor. Por certo, Seu favor para contigo é grande.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,245,'Dize: "Se os humanos e os jinns se juntassem, para fazer vir algo igual a este Alcorão, não fariam vir nada igual a ele, ainda que uns deles fossem coadjutores dos outros"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,245,'E, com efeito, patenteamos para os homens neste Alcorão, algo de cada exemplo. Então, a maioria dos homens a tudo recusa, exceto à ingratidão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,245,'E dizem: "Não creremos em ti, até que nos faças emanar, da terra, uma nascente".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,245,'"Ou que haja para ti um jardim de tamareiras e videiras, e que faças emanar os rios, abundantemente, através dele";');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,245,'"Ou que faças cair, sobre nós, como pretendes, o céu em pedaços, ou que faças vir Allah e os anjos, frente a frente"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,245,'"Ou que haja para ti uma casa repleta de ornamento ou que ascendas ao céu. E não creremos em tua ascensão, até que faças descer sobre nós um Livro, que leremos." Dize: "Glorificado seja meu Senhor! Quem sou eu senão um mortal Mensageiro?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,245,'E o que impediu os homens de crerem, quando lhes chegou a orientação, não foi senão haverem dito: "Allah enviou um mortal por Mensageiro?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,245,'Dize: "Se houvesse, na terra, anjos que andassem tranqüilos, haveríamos feito descer, do céu, sobre eles, um anjo por Mensageiro"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,245,'Dize: "Allah basta, por testemunha, entre mim e vós. Por certo, Ele, de Seus servos, é Conhecedor, Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,245,'E quem Allah guia é o guiado. E para quem Ele descaminha, não lhes encontrarás protetores, além dEle. E reuni-los-emos, no Dia da Ressurreição, arrastados sobre as faces, cegos e mudos e surdos. Sua morada será a Geena: cada vez que se entibiar, acrescentar-lhes-emos fogo ardente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,245,'Essa será sua recompensa, porque renegaram Nossos sinais, e disseram: "Quando formos ossos e resquícios, seremos ressuscitados, em novas criaturas?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,245,'Não viram eles que Allah, que criou os céus e a terra, é Poderoso para criar semelhantes a eles? E Ele lhes fez um termo indubitável. Mas os injustos a tudo recusam, exceto à ingratidão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,3,245,'Dize: "Se possuísseis os cofres da misericórdia de meu Senhor, nesse caso, haveríeis de retê-los, com receio de despendê-los. E avaro é o ser humano!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,3,245,'E, com efeito, concedemos a Moisés nove evidentes sinais. Então, pergunta aos filhos de Israel, quando ele lhes chegou e Faraó lhe disse: "Por certo, penso, ó Moisés, que és enfeitiçado"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,3,245,'Moisés disse: "Com efeito, sabes que não fez descer estes, como clarividências, senão O Senhor dos céus e da terra. E, por certo, penso, ó Faraó, que estás arruinado"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,3,245,'E ele desejou expulsá-los da terra então, afogamo-lo e a quem estava com ele, a todos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,3,245,'E dissemos, depois dele, aos filhos de Israel: "Habitai a terra; e, quando chegar a promessa da Derradeira Vida, far-vos-emos vir, em multidões"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,3,245,'E, com a verdade, fizemo-lo descer e, com a verdade, ele desceu. E não te enviamos, Muhammad, senão por alvissareiro e admoestador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,3,245,'E fizemos descer Alcorão, fragmentamo-lo , a fim de o leres aos homens, paulatinamente. E fizemo-lo descer, com gradual descida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,3,245,'Dize: "Crede nele; ou, não creais. Por certo, aqueles aos quais fora concedida a ciência, antes dele quando é recitado, para eles, caem de mento, por terra, prosternando-se."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,3,245,'"E dizem:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,3,245,'E caem de mento por terra, chorando, e ele lhes acrescenta humildade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,3,245,'Dize: "Invocai a Allah ou invocai aO Misericordioso. O que quer que seja que invoqueis, dEle são os mais belos nomes." E não alteies a voz, em tua oração, nem a silencies, e busca, entre ambas, um caminho justo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,3,245,'E dize: "Louvor a Allah, Que não tomou para Si filho algum, e para Quem não há parceiro na soberania, e para Quem não há protetor contra a humilhação." E magnifíca-O, fartamente.');
+INSERT INTO chapters (id, number, quran_id) VALUES(246,18,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,246,'Louvor a Allah, Que fez descer sobre Seu servo o Livro, e nele não pôs tortuosidade alguma!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,246,'Fê-lo reto, para advertir os descrentes de veemente suplício de Sua parte, e alvissarar os crentes, que fazem as boas obras, que terão belo prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,246,'Nele permanecendo para todo o sempre.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,246,'E para admoestar os que dizem: "Allah tomou para Si um filho"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,246,'Nem eles nem seus pais têm ciência disso. Grave palavra a que sai de suas bocas! Não dizem senão mentiras!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,246,'E talvez, Muhammad, te mates de pesar, após a partida deles se não crêem nesta Mensagem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,246,'Por certo, fizemos do que há sobre a terra ornamento para ela, a fim de pôr à prova qual deles é melhor em obras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,246,'E, por certo, faremos do que há sobre ela superfície árida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,246,'Supões que os Companheiros da Caverna e do Ar-Raqim sejam, entre nossos sinais, algo de admiração?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,246,'Quando os jovens se abrigaram na Caverna, e disseram: "Senhor nosso! Concede-nos misericórdia de Tua parte e, para nós, dispõe retidão, em tudo o que nos concerna."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,246,'Então, na Caverna, estendemo-lhes um véu sobre os ouvidos durante vários anos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,246,'Em seguida, despertamo-los, para saber qual dos dois partidos enumerava melhor o tempo, em que lá permaneceram.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,246,'Nós te narramos sua história, com a verdade. Por certo, eles eram jovens, que criam em seu Senhor e aos quais acrescentamos orientação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,246,'E revigoramo-lhes os corações, quando se levantaram e disseram: "Nosso Senhor é O Senhor dos céus e da terra. Não invocamos, além dEle, deus algum; com efeito, nesse caso, estaríamos dizendo um cúmulo de blasfêmia."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,246,'"Este nosso povo tomou, além dEle, outros deuses. Que façam vir, a respeito desses, uma evidente comprovação! Quem mais injusto, pois, que aquele que forja mentiras acerca de Allah?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,246,'E disseram uns aos outros: "Quando vos houverdes apartado deles e do que adoram, em vez de Allah, então, abrigai-vos na Caverna, vosso Senhor espargirá, sobre vós, algo de Sua misericórdia e, para vós, disporá apoio, em vossa condição"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,246,'E tu haverias visto o sol, quando se levanta, declinar de sua caverna, pela direita, e, quando se punha, desviar-se deles pela esquerda, enquanto que eles se achavam em um espaço dela. Isso é um dos sinais de Allah. Aquele, a quem Allah guia, é o guiado. E para aquele, a quem descaminha, não lhe encontrarás protetor, conselheiro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,246,'E tu os suporias despertos, enquanto estavam adormecidos. E fazíamo-los se virarem para a direita e para a esquerda. E seu cão tinha estendidas as patas dianteiras, no limiar da caverna. Se tu os houvesses avistado, haver-lhes-ias voltado as costas, fugindo, e haverias ficado cheio de pavor deles.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,246,'E, assim, como os adormecemos, despertamo-los, para que se interrogassem, entre eles. Um deles disse: "Quanto tempo permanecestes, aqui?" Disseram: "Permanecemos um dia ou parte de um dia." Outros disseram: "Vosso Senhor é bem Sabedor de quanto permanecestes. Então, enviai um de vós à cidade, com esta vossa moeda de prata. E que olhe qual o mais puro alimento, e que deste vos faça vir sustento, e que ele sutilize e que não deixe ninguém perceber-vos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,246,'"Por certo, se eles obtêm poder sobre vós, apedrejar-vos-ão ou far-vos-ão tornar à sua Crença. E nunca seríeis, nesse caso, bem-aventurados!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,246,'E, assim, como os fizemos despertar, fizemo-los descobertos - para saberem que a promessa de Allah é verdadeira e que a Hora é indubitável - quando disputavam, entre eles sua questão; então, disseram: "Edificai, sobre eles, uma edificação. Seu Senhor é bem Sabedor deles." Mas aqueles, cuja opinião prevaleceu, disseram: "Que erijamos, sobre eles, uma mesquita."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,246,'Alguns dirão: "Eram três, sendo seu cão o quarto deles." E outros dirão: "Eram cinco, sendo seu cão o sexto deles", conjeturando o invisível. E outros, ainda, dirão: "Eram sete e seu cão o oitavo deles." Dize: "Meu Senhor é bem Sabedor de seu número. Não os conhece senão poucos." Então, não alterques sobre eles senão em altercação ligeira, e não consultes, a seu respeito, a nenhum deles.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,246,'E não digas a respeito de uma cousa: "Por certo, fá-la-ei, amanhã"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,246,'Exceto se acrescentares: "Se Allah quiser!" E lembra-te de teu Senhor, quando O esqueceres. E dize: "Quiçá, meu Senhor me guie ao que é mais próximo que isso, em retidão"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,246,'E eles permaneceram, em sua Caverna, trezentos anos, e acrescentaram-se nove.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,246,'Dize: "Allah é bem Sabedor de quanto lá permaneceram. D');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,246,'E recita o que te foi revelado do Livro de teu Senhor; não há quem possa alterar Suas palavras. E não encontrarás, além dEle, refúgio algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,246,'E sê paciente permanecendo com os que invocam seu Senhor, ao amanhecer e ao anoitecer, desejando-Lhe a face. E não afastes deles os olhos, desejando o ornamento da vida terrena. E não obedeças àquele cujo coração tornamos desatento à Nossa lembrança e que segue sua paixão e cuja conduta excede os limites.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,246,'E dize: "A verdade emana de vosso Senhor. Então, quem quiser que creia, e quem quiser que renegue a Fé. Por certo, preparamos para os injustos um Fogo, cujo paredão de labaredas os abarcará. E, se pedirem socorrimento, terão socorrimento de água, como o metal em fusão: escaldar-Ihes-á as faces. Que execrável bebida! E que vil recinto de permanência!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,246,'Quanto aos que crêem e fazem as boas obras, por certo, não faremos perder o prêmio de quem bem-faz, em obras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,246,'Esses terão os Jardins de Éden, abaixo dos quais correm os rios; nesses, serão enfeitados com braceletes de ouro, e se vestirão com trajes verdes, de fina seda e de brocado; nesses, estarão reclinados sobre coxins. Que excelente retribuição! E que aprazível recinto de permanência!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,246,'E propõe, para eles, um exemplo: dois homens. Fizemos, para um deles, dois jardins de videiras e cercamo-los com tamareiras e fizemos, entre ambos, searas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,246,'Cada um dos jardins deu seu fruto, e nada se lhe diminuía. E, através de ambos, fizemos emanar um rio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,246,'E tinha ele outros frutos; então, disse a seu companheiro, enquanto dialogava com ele: "Sou mais que tu, em riqueza, e mais poderoso, em número de pessoas"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,246,'E entrou em seu jardim; sendo injusto para com si mesmo, disse: "Não penso, jamais, que este pereça."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,246,'"E não penso que a Hora advenha. E, em verdade, se fora levado a meu Senhor, encontraria, por fim, outro melhor que este"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,246,'Seu companheiro disse-lhe, enquanto dialogava com ele: "Renegas Aquele Que te criou de pó, em seguida, de gota seminal, depois, formou-te um homem?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,246,'"Mas eu digo que Allah é meu Senhor, e não associo ninguém a meu Senhor"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,246,'"E, entrando em teu jardim, houvesses dito:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,246,'"Então, quiçá, meu Senhor me conceda algo melhor que teu jardim e, sobre este, envie ruína calculada do céu; então, tornar-se-á em superfície escorregadia."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,246,'"Ou sua água tomar-se-á subtérrea e, jamais, poderás readquirí-la."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,246,'E foram devastados seus frutos; então, ele amanheceu meneando as mãos, atormentado pelo que havia despendido nele enquanto o jardim era deitado abaixo, sobre seus tetos, e disse: "Quem dera não houvesse eu associado ninguém a meu Senhor!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,246,'E não houve, para ele, hoste alguma que o socorresse, em vez de Allah, e não foi socorrido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,246,'Aí, a proteção é de Allah, O Verdadeiro. Ele é Melhor em retribuição e Melhor em final feliz.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,246,'E, para eles, propõe o exemplo da vida terrena: é como água que fazemos descer do céu, e com ela se mescla a planta da terra; então, esta se torna palha, que o vento dispersa. E Allah, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,246,'As riquezas e os filhos são o ornamento da vida terrena. Mas as boas obras, duradouras, são junto de seu Senhor, melhores em retribuição e melhores em esperança.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,246,'E um dia, faremos caminhar as montanhas, e tu verás a terra aplanada; e reuní-los-emos e não deixaremos nenhum deles sequer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,246,'E serão expostos, em fila, a teu Senhor. Ele dirá: "Com efeito, chegais a Nós, como vos criamos, da vez primeira. Aliás, pretendíeis que vos não faríamos um tempo prometido para serdes ressuscitados!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,246,'E será posto o Livro à vista; então, tu verás os criminosos atemorizados do que nele há; e dirão: "Ai de nós! Por que razão este Livro não deixa, nem cousa pequena, nem cousa grande, sem enumerá-la?" E nele, encontrarão presente o que fizeram. E teu Senhor não faz injustiça com ninguém.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,246,'E quando dissemos aos anjos: "Prosternai-vos diante de Adão"; então, eles se prosternaram, exceto Iblís. Ele era dos jinns, e desobedeceu a ordem de seu Senhor. Então, vós tomai-lo e a sua descendência, por aliados, em vez de Mim, enquanto eles vos são inimigos? Que execrável troca para os injustos!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,246,'Não os fiz testemunhas da criação dos céus e da terra nem da criação deles mesmos. E não é admissível que Eu tome os desencaminhadores por amparo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,246,'E um dia, Ele dirá: "Chamai Meus parceiros que pretendestes serem deuses." Então, eles os convocarão, e não lhes atenderão; e faremos, entre eles, um vale de destruição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,246,'E os criminosos verão o Fogo; então, pensarão que nele irão cair e, fora dele, não encontrarão refúgio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,246,'E, com efeito, patenteamos, neste Alcorão, para os homens, algo de cada exemplo. Mas o ser humano está, mais que tudo, em contenda.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,246,'E o que impediu os homens de crerem, quando lhes chegou a orientação, e de implorarem o perdão de seu Senhor não foi senão a exigência de lhes chegarem os procedimentos de punição dos antepassados, ou de chegar-lhes o castigo, pela frente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,246,'E não enviamos os Mensageiros senão por alvissareiros e admoestadores. E os que renegam a Fé discutem, com a falsidade, para com esta, refutar a verdade. E eles tomaram Meus sinais e o que lhes é admoestado por objeto de zombaria.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,246,'E quem mais injusto que aquele a quem são lembrados os sinais de seu Senhor, e ele lhes dá de ombros e esquece o que suas próprias mãos anteciparam? Por certo, fizemo-lhes véus sobre os corações, a fim de o não entenderem e, nos ouvidos, surdez. E, se tu os convocas à orientação, nesse caso, jamais se guiarão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,246,'E teu Senhor é O Perdoador, O Possuidor da misericórdia. Se Ele os culpasse pelo que cometeram, apressaria para eles, o castigo. Mas terão um tempo prometido, do qual não encontrarão escape algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,246,'E a essas cidades aniquilamo-las, quando foram injustas, e fizemos, para seu aniquilamento, um tempo prometido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,246,'E lembra-lhes de quando Moisés disse a seu jovem servo: "Não deixarei de andar, até atingir a junção dos dois mares ou passarei décadas andando!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,246,'E, quando atingiram ambos a junção dos dois mares, esqueceram seu peixe e este tomou seu caminho no mar, penetrando nele.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,246,'E, quando atravessaram ambos esse lugar, ele disse a seu jovem servo: "Traze-nos o almoço; com efeito, deparamos fadiga, nesta nossa viagem"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,246,'O jovem servo disse: "Viste, quando nos abrigamos no rochedo? Então, por certo, esqueci o peixe, e não me fez esquecê-lo senão Satã. E ele tomou seu caminho no mar. Que admirável!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,246,'Moisés disse: "Isso é o que buscávamos." Então, ambos voltaram, seguindo suas próprias pegadas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,246,'E encontraram um de Nossos servos ao qual concedêramos misericórdia vinda de nós, e ensináramo-lhe ciência, de Nossa parte.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,246,'Moisés disse-lhe: "Posso seguir-te, com a condição de que me ensines algo do que te foi ensinado de retidão?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,246,'O Outro disse: "Por certo, não poderás ter paciência comigo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,246,'"E como pacientar, acerca do que não abarcas em ciência?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,246,'Moisés disse: "Encontrar-me-ás paciente, se Allah quiser, e não te desobedecerei ordem alguma"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,246,'O outro disse: "Então, se me seguires, não me perguntes por cousa alguma, até que te faça menção desta cousa"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,246,'Então, ambos foram adiante, até que, quando embarcaram na nau, ele a furou. Moisés disse: "Furaste-a, para afogar seus ocupantes. Com efeito, fizeste algo nefando!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,246,'O Outro disse: "Não te disse que, por certo, não poderias ter paciência comigo?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,246,'Moisés disse: "Não me culpes pelo que esqueci, e não me imponhas dificuldade, acima de minha condição"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,246,'Então, ambos foram adiante, até que, quando depararam um jovem, então, ele o matou, disse Moisés: "Mataste uma pessoa inocente, sem que ela haja matado outra? Com efeito, fizeste algo terrível!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,246,'O outro disse: "Não te disse, a ti que, por certo, não poderias ter paciência comigo?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,246,'Moisés disse: "Se, depois disso, te perguntar por algo, não me acompanhes mais! Com efeito, conseguiste de minha parte uma desculpa."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,246,'Então, ambos foram adiante, até que, quando chegaram aos moradores de uma cidade, pediram a seus habitantes alimento, e estes recusaram-se a hospedá-los. Então, aí, encontraram ambos um muro prestes a desmoronar-se, e ele o aprumou. Moisés disse: "Se quisesses, receberias prêmio por isso."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,246,'O outro disse: "Esta é a hora da separação entre mim e ti. Informar-te-ei da interpretação daquilo, com que não pudeste ter paciência."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,246,'"Quanto à nau, pertencia ela a pobres, que trabalhavam no mar. Então, desejei danificá-la, pois adiante deles, havia um rei, que tomava, por usurpação, toda nau não danificada."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,246,'"E, quanto ao jovem, seus pais eram crentes, e receávamos que ele os induzisse à transgressão e à renegação da Fé."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,246,'"Então, desejamos que seu Senhor lhes substituísse o filho por outro melhor que ele, em pureza, e mais próximo, em blandícia."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,246,'"E, quanto ao muro, ele pertencia a dois meninos órfãos na cidade e, debaixo dele, havia um tesouro para ambos; e seu pai era íntegro: então, teu Senhor desejou que ambos atingissem sua força plena e fizessem sair seu tesouro, por misericórdia de teu Senhor. E não o fiz por minha ordem. Essa é a interpretação daquilo, com que não pudeste ter paciência."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,246,'E eles te perguntam, Muhammad, por Zul Qarnain. Dize: "Far-vos-ei menção dele."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,246,'Por certo, empossamo-lo na terra e concedemo-lhe caminho de acesso a cada cousa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,246,'Então, ele seguiu um caminho,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,246,'Até quando atingiu o lugar do pôr-do-sol, encontrou este pondo-se numa fonte quente e lodosa, e, junto dela, encontrou um povo incrédulo. Dissemos: "Ó Zul Qarnain! Ou os castigas ou os tratas com benevolência."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,246,'Disse: "Quanto ao que é injusto, castigá-lo-emos. Em seguida, será levado a seu Senhor; então, Ele o castigará com terrível castigo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,246,'"E quanto a quem crê e faz o bem, terá como paga, a mais bela recompensa. E dir-lhe-emos o que for fácil de nossas ordens."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,246,'Em seguida, seguiu outro caminho,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,246,'Até que, quando atingiu o lugar do nascer do sol, encontrou-o nascendo sobre um povo, para quem não fizéramos proteção alguma contra ele.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,246,'Assim foi. E, com efeito, abarcávamos, em conhecimento, tudo o que ele possuía.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,246,'Em seguida, seguiu outro caminho,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,246,'Até que, quando atingiu um lugar entre as duas barreiras, encontrou, para além delas, um povo que quase não entendia língua alguma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,246,'Disseram: "Ó Zul Qarnain! Por certo, Ya');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,246,'Ele disse: "Aquilo, em que meu Senhor me empossou, é melhor. Então, ajudai-me com força, e eu farei um obstáculo, entre vós e eles."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,246,'"Dai-me pedaços de ferro." E os foi utilizando na construção, até que, quando nivelou os dois lados das barreiras, disse: "Soprai." E sopraram, até que, quando o fez em fogo, disse: "Dai- me cobre, que, sobre ele, o verterei!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,246,'Então, Ya');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,246,'Disse: "Este é misericórdia de meu Senhor. E, quando a promessa de meu Senhor chegar, Ele o fará pó. E a promessa de meu Senhor é verdadeira."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,246,'E, nesse dia, deixá-los-emos se agitarem, undantes, uns sobre outros. E se soprará na Trombeta; então, juntá-los-emos, a todos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,3,246,'E, nesse dia, exporemos, abertamente, a Geena aos renegadores da Fé,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,3,246,'Àqueles cujos olhos estavam vendados para Minha Mensagem, e nada podiam ouvir.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,3,246,'Os que renegam a Fé supõem que tomarão Meus servos por aliados, além de Mim? Por certo, prepararemos a Geena, como hospedagem para os renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,3,246,'Dize, Muhammad: "Informar-vos-emos dos mais perdedores, em obras?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,3,246,'"São aqueles cujo esforço, na vida terrena, se descaminha, enquanto supõem que eles fazem o bem."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,3,246,'Esses são os que renegam os sinais de seu Senhor e Seu deparar; então, serão anuladas suas obras e, no Dia da Ressurreição, não lhes estipularemos peso algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,3,246,'E que sua recompensa será a Geena, porque renegaram a Fé e tomaram Meus sinais e Meus mensageiro por objeto de zombaria.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,3,246,'Por certo, os que crêem e fazem boas obras terão os Jardins de Al-Firdaus, por hospedagem;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,3,246,'Neles, serão eternos e de onde não buscarão mudança.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,3,246,'Dize: "Se o mar fosse tinta para registrar as palavras de meu Senhor, em verdade, o mar exaurir-se-ia antes de se exaurirem as palavras de meu Senhor, ainda que fizéssemos chegar outro igual, em auxílio."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,3,246,'Dize: "Sou, apenas, um mortal como vós; revela-se-me que vosso Deus é Deus Único. Então, quem espera pelo deparar de seu Senhor, que faça boa ação e não associe ninguém à adoração de seu Senhor."');
+INSERT INTO chapters (id, number, quran_id) VALUES(247,19,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,247,'Kãf, Hã, Yã, Ain, Sãd.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,247,'Este é o relato da misericórdia de teu Senhor, para com Seu servo Zacarias,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,247,'Quando ele chamou por seu Senhor, em secreto chamado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,247,'Disse: "Senhor meu! Por certo, meus ossos fraquejam e minha cabeça flameja encanecida e, jamais fui infeliz, Senhor meu, na súplica a Ti!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,247,'"E por certo, temo os herdeiros depois de mim, e minha mulher é estéril; então, dadiva-me, de Tua parte, com um herdeiro,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,247,'"Que herdará de mim a ciência e herdará, da família de Jacó, o reino. E faze-o, Senhor meu, agradável a Ti."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,247,'Allah disse: "Ó Zacarias! Por certo, Nós te alvissaramos um filho, cujo nome será Yahia, (João), para quem, antes, não fizemos homônimo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,247,'Zacarias disse: "Senhor meu! Como hei de ter um filho, enquanto minha mulher é estéril e, com efeito, já atingi, da velhice, a decrepitude?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,247,'Disse ele: "Assim, teu Senhor disse:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,247,'Zacarias disse: "Senhor meu! Faze-me um sinal." Ele disse: "Teu sinal será que não falarás aos humanos, por três noites, embora estando perfeito."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,247,'Então, saiu do santuário, a seu povo, e inspirou-lhes, por gestos: "Glorificai a Allah, ao alvorecer e ao anoitecer."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,247,'"Ó Yahia! Toma o Livro, com firmeza!" E concedemo-lhe a sabedoria, em sendo infante,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,247,'E ternura, de Nossa parte, e pureza. E era piedoso,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,247,'E blandicioso para com seus pais; e não era tirano, desobediente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,247,'E que a paz seja sobre ele, no dia em que nasceu e no dia em que morrer e no dia em que for ressuscitado, vivo!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,247,'E menciona, Muhammad, no Livro, a Maria, quando se insulou de sua família, em lugar na direção do oriente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,247,'E colocou entre ela e eles um véu; então, enviamo-lhe Nosso Espírito, e ele apresentou-se-lhe como um homem perfeito.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,247,'Ela disse: "Por certo, refugio-me nO Misericordioso, contra ti. Se és piedoso, não te aproximes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,247,'Ele disse: "Sou, apenas, o Mensageiro de teu Senhor, para te dadivar com um filho puro."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,247,'Ela disse: "Como hei de ter um filho, enquanto nenhum homem me tocou, e nunca fui mundana?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,247,'Ele disse: "Assim teu Senhor disse:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,247,'Então, ela o concebeu, e insulou-se com ele, em lugar longínquo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,247,'E as dores do parto levaram-na a abrigar-se ao tronco da tamareira. Ela disse: "Quem dera houvesse morrido antes disto, e fosse insignificante objeto esquecido!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,247,'Então, abaixo dela, uma voz chamou-a: "Não te entristeças! Com efeito, teu Senhor fez correr, abaixo de ti, um regato."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,247,'"E move, em tua direção, o tronco da tamareira, ela fará cair, sobre ti, tâmaras maduras, frescas."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,247,'"Então, come e bebe e refresca de alegria teus olhos. E, se vês alguém, dos mortais, dize:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,247,'E ela chegou com ele, a seu povo, carregando-o. Disseram: "Ó Maria! Com efeito, fizeste uma cousa assombrosa!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,247,'"Ó irmã de Aarão! Teu pai não era pessoa atreita ao mal e tua mãe não era mundana!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,247,'Então, ela apontou para ele. Eles disseram: "Como falaremos a quem está no berço, em sendo infante?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,247,'O bebê disse: "Por certo, sou o servo de Allah. Ele me concederá o Livro e me fará Profeta,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,247,'"E me fará abençoado, onde quer que esteja, e me recomendará a oração e az-zakãh, enquanto permanecer vivo,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,247,'"E me fará blandicioso para com minha mãe, e não me fará tirano, infeliz;"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,247,'"E que a paz seja sobre mim, no dia em que nasci e no dia em que morrer e no dia em que for ressuscitado, vivo!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,247,'- Esse é Jesus, filho de Maria. É o Dito da verdade, que eles contestam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,247,'Não é admissível que Allah tome para Si um filho. Glorificado seja! Quando decreta algo, apenas, diz-lhe: "Sê", então, é -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,247,'"E por certo, Allah é meu Senhor e vosso Senhor. Então, adorai-O. Esta é uma senda reta."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,247,'Em seguida, os partidos discreparam entre eles. Então, ai dos que renegam a Fé, quando de sua presença, em um terrível dia!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,247,'Quão bem ouvirão e quão bem verão, um dia, em que virão a Nós. Mas os injustos, hoje, estão em evidente descaminho!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,247,'E adverte-os, Muhammad, do Dia da Aflição - quando a ordem for encerrada - enquanto eles estão, neste mundo, em desatenção e enquanto não crêem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,247,'Por certo, somos Nós Que herdaremos a terra e quem sobre ela existe. E a Nós eles serão retornados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,247,'E menciona, no Livroa Abraão - por certo, ele era veracíssimo, profeta -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,247,'Quando disse a seu pai: "Ó meu pai! Por que adoras o que não ouve nem vê e de nada te vale?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,247,'"Ó meu pai! Por certo, chegou-me, da ciência, o que te não chegou; então, segue-me, eu te guiarei a uma senda perfeita."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,247,'"Ó meu pai! Não adores Satã. Por certo, Satã é desobediente aO Misericordioso."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,247,'"Ó meu pai! Por certo, temo que um castigo dO Misericordioso te toque: então, tornar-te-ias aliado a Satã."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,247,'Ele disse: "Está rejeitando meus deuses, ó Abraão? Em verdade, se não te absténs disso, apedrejar-te-ei. E abandona-me, por longo prazo!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,247,'Abraão disse: "Que a paz seja sobre ti. Implorarei a meu Senhor perdão para ti. Por certo, Ele é Afável para comigo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,247,'"E aparto-me de vós e do que invocais, em vez de Allah, e invoco a meu Senhor. Quiçá, não seja eu infeliz com a súplica a meu Senhor."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,247,'Então, quando ele se apartou deles e do que adoravam, em vez de Allah, dadivamo-lo com Isaque e Jacó. E de cada um fizemos profeta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,247,'E dadivamo-los com algo de Nossa misericórdia e fizemo-lhes língua verídica, altíssima.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,247,'E menciona, no Livro, a Moisés. Por certo, ele era predileto e era Mensageiro, profeta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,247,'E chamamo-lo, do lado direito do Monte e fizemo-lo aproximar-se de Nós, como confidente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,247,'E, de Nossa misericórdia, dadivamo-lo com seu irmão Aarão, como profeta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,247,'E menciona, no Livro, a Ismael. Por certo, ele era verídico na promessa, e era Mensageiro, profeta;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,247,'E ordenava à sua família a oração e a caridade, e era agradável, junto de seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,247,'E menciona, no Livro, a Idris - por certo, ele era veracíssimo, profeta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,247,'E elevamo-lo a um lugar altíssimo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,247,'Esses, os que Allah agraciou - dentre os profetas da descendência de Adão, e dos que levamos, na Arca, com Noé, e da descendência de Abraão e Israel, e dos que guiamos e elegemos - quando os versículos dO Misericordioso se recitavam para eles, caíam prosternados e chorosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,247,'E sucederam, depois deles, sucessores, que descuraram da oração, e seguiram a lascívia. Então, depararão uma desventura,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,247,'Exceto quem se voltar arrependido e crer e fizer o bem; então, esses entrarão no Paraíso - e não sofrerão injustiça alguma -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,247,'Nos Jardins do Éden, que O Misericordioso prometeu a Seus servos, que creram no Invisível. Por certo, Sua promessa se concretizará.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,247,'Neles, não ouvirão frivolidades; somente a saudação "Salam!", "Paz!". E, neles, terão seu sustento, ao alvorecer e ao anoitecer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,247,'Esse Paraíso é o que faremos herdar a quem é piedoso, de Nossos servos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,247,'"E não descemos senão por ordem de teu Senhor. D');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,247,'"É O Senhor dos céus e da terra e do que há entre ambos. Então, adora-O e pacienta, em Sua adoração. Acaso, conheces-Lhe algum homônimo?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,247,'E o ser humano diz: "Quando morrer, far-me-ão sair vivo?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,247,'E o ser humano não se lembra de que o criamos antes, enquanto nada era?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,247,'Então, por teu Senhor! Reuni-los-emos e aos demônios; em seguida, fá-los-emos estar presentes, ao redor da Geena, genuflexos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,247,'Em seguida, tiraremos, de cada seita, o mais rebelde deles contra O Misericordioso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,247,'E, em verdade, Nós somos melhor Sabedor dos que são mais merecedores de ser por ela queimados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,247,'E não haverá ninguém de vós que por ela não passe. É determinação decretada, que impende a teu Senhor');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,247,'Em seguida, salvaremos os que foram piedosos e deixaremos, nela, os injustos, genuflexos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,247,'E, quando se recitam, para eles, Nossos evidentes versículos, os que renegam a Fé dizem aos que crêem: "Qual dos dois grupos tem a situação mais confortável e a mais bela companhia?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,247,'E quantas gerações aniquilamos, antes deles, as quais foram melhores em conforto e aspecto?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,247,'Dize, Muhammad: "A quem está em descaminho, que O Misericordioso lhe estenda a vida, por certo tempo, até que quando virem o que lhes foi prometido - ou o castigo ou a Hora - saibam, então, quem está em pior situação, e é o mais fraco da tropa."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,247,'"E Allah acresce orientação aos que se guiam. E as boas obras, duradouras, são junto de seu Senhor, melhores em retribuição e melhores em destino."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,247,'E viste quem renega Nossos sinais e diz: "Em verdade, ser-me-ão concedidas riquezas e filhos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,247,'Avistou ele o Invisível, ou firmou pacto com O Misericordioso?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,247,'Em absoluto, nada disso! Escreveremos o que ele diz e estender-lhe-emos o castigo, intensamente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,247,'E herdar-lhe-emos o que diz possuir, e a Nós virá sozinho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,247,'E tomam além de Allah, outros deuses, para que lhes sejam um poder.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,247,'Em absoluto, não o serão. Renegarão sua adoração e serão deles antagonistas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,247,'Não viste que enviamos os demônios contra os renegadores da Fé, para incitá-los, ao mal, impetuosamente?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,247,'Então, não lhes apresses o castigo. Apenas, contamo-lhes todos seus atos, precisamente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,247,'Lembra-lhes de um dia, quando reunirmos os piedosos, em missão de honra aO Misericordioso,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,247,'E impulsionarmos os criminosos para a Geena, como rebanhos sequiosos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,247,'Não terão o poder de intercessão senão os que houverem firmado pacto com O Misericordioso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,247,'E eles dizem: "O Misericordioso tomou para Si um filho!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,247,'Com efeito, fizestes algo horrente!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,247,'Por causa disso, os céus quase se despedaçam e a terra se fende e as montanhas caem, desmoronando-se,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,247,'Por atribuírem um filho aO Misericordioso!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,247,'E não é concebível que O Misericordioso tome para Si um filho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,247,'Todo ser que está nos céus e na terra chegará aO Misericordioso apenas como servo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,247,'Com efeito, Ele os enumerou e os contou, precisamente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,247,'E todos eles, no Dia da Ressurreição, Lhe chegarão individualmente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,247,'Por certo, aos que crêem e fazem as boas obras, O Misericordioso fá-los-á ter afeição mútua.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,247,'Então, apenas o facilitamos em tua língua, para que com ele, alvissares os piedosos e admoestes um povo irredutível.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,247,'E quantas gerações aniquilamos, antes deles! Sentes a alguém delas? Ou lhes ouves algum murmúrio?.');
+INSERT INTO chapters (id, number, quran_id) VALUES(248,20,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,248,'suratu Ta-Ha.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,248,'Não fizemos descer sobre ti o Alcorão, para que sejas infeliz.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,248,'Mas como lembrança para quem receia a Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,248,'É revelação descida de Quem criou a terra e os altos céus.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,248,'O Misericordioso estabeleceu-Se no Trono.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,248,'DEle é o que há nos céus e o que há na terra e o que há entre ambos e o que há sob o solo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,248,'E, se alteias o dito, por certo, Ele sabe o segredo e o mais recôndito ainda.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,248,'Allah, não existe deus senão Ele. DEle são os mais belos nomes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,248,'E chegou-te o relato de Moisés?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,248,'Quando ele viu um fogo, então, disse à sua família: "Permanecei aqui. Por certo, entrevejo um fogo. Talvez vos traga dele um tição, ou encontre, junto do fogo, alguma orientação."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,248,'E, quando chegou a ele, chamaram-no: "Ó Moisés!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,248,'"Por certo, Eu sou teu Senhor. Então, tira tuas sandálias: por certo, estás no vale sagrado de Tuwa."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,248,'"E Eu te escolhi; então, ouve o que te será revelado."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,248,'"Por certo, eu sou Allah; não existe deus além de Mim; então, adora-Me e cumpre a oração em lembrança de Mim."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,248,'"Por certo, a Hora está chegando; estou prestes a fazê-la aparecer, para que cada alma se recompense pelo que se esforça em fazer."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,248,'"Então, que aquele que nela não crê e segue seu capricho, não te deixe te afastares dela: pois, arruinar-te-ias."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,248,'"E o que é isso, em tua destra, ó Moisés?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,248,'Ele disse: "É minha vara: apoio-me sobre ela e, com ela, faço derribar a folhagem para meu rebanho e, nela, tenho outros usos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,248,'Allah disse: "Lança-a, ó Moisés!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,248,'Então, ele a lançou e ei-la serpente a colear.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,248,'Allah disse: "Toma-a e não temas. Torná-la-emos em seu estado anterior."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,248,'"E junta tua mão a teu flanco: ela sairá alva, sem mal algum, como outro sinal,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,248,'"Para que te façamos ver algo de Nossos grandiosos sinais."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,248,'“Vai a Faraó. Por certo, ele cometeu transgressão."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,248,'Moisés disse: "Senhor meu! Dilata-me o peito,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,248,'"E facilita-me a missão,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,248,'"E desata-me um nó da língua."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,248,'"Para que eles entendam meu dito,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,248,'"E faze, para mim, um vizir, assistente, de minha família:"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,248,'"Aarão, meu irmão,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,248,'Intensa, com ele, minha força,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,248,'"E associa-o à minha missão,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,248,'Para que te glorifiquemos amiúde,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,248,'"E para que amiúde nos lembremos de Ti."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,248,'"Por certo, de nós. Tu és Onividente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,248,'Allah disse: "Com efeito, é-te concedido teu pedido, ó Moisés.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,248,'"E, com efeito, já te fizemos mercê, outra vez,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,248,'"Quando inspiramos a tua mãe o que lhe foi inspirado:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,248,'"Deita-o na arca e deita esta na onda - então, que a onda o lance à margem! - Um inimigo Meu e inimigo seu o tomará." E lancei sobre ti amor, de Minha parte, e isso para que fosses criado diante de Meus olhos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,248,'Quando por lá tua irmã andava, e disse: "Indicar-vos-ei quem dele pode cuidar?" E devolvemo-te a tua mãe, para que se lhe refrescassem de alegria os olhos e que ela se não entristecesse. E mataste uma pessoa; e Nós te salvamos da angústia, e te provamos, seriamente. Então, permaneceste anos entre os habitantes de Madian; em seguida, chegaste a um tempo predestinado, ó Moisés!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,248,'"E escolhi-te para Mim."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,248,'"Vai, tu e teu irmão, com Meus sinais, e de nada descureis, em lembraça de Mim."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,248,'"Ide ambos a Faraó; por certo, ele cometeu transgressão".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,248,'"Então, dizei-lhe dito afável, na esperança de ele meditar ou recear a Allah."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,248,'Ambos disseram: "Senhor nosso! Por certo, tememos que ele se apresse em prejudicar-nos, ou que cometa transgressão"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,248,'Ele disse: "Não temais. Por certo, sou convosco: ouço e vejo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,248,'"E ide a ele e dizei:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,248,'"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,248,'Faraó disse: "Então, quem é vosso Senhor, ó Moisés?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,248,'Moisés disse: "Nosso Senhor é Quem deu a cada cousa sua criação; em seguida, guiou-a."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,248,'Faraó disse: "E que é das gerações anteriores?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,248,'Moisés disse: "Sua ciência está junto de meu Senhor, em um Livro. Meu Senhor não se descaminha e nada esquece."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,248,'"Ele é Quem vos fez da terra leito e, nela abriu caminhos, para vós; e fez descer do céu água." Então, com ela, fizemos brotar casais de várias plantas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,248,'Comei e apascentai vossos rebanhos. Por certo, há nisso sinais para os dotados de entendimento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,248,'Dela vos criamos e a ela vos tornamos e dela vos faremos sair, outra vez.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,248,'E, com efeito, fizemo-lo ver todos Nossos sinais; mas, ele os desmentiu e os recusou.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,248,'Ele disse: "Chegaste-nos, para fazer-nos sair de nossa terra, com tua magia, ó Moisés?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,248,'"Então, em verdade, chegar-te-emos, com magia igual. E marca, entre nós e ti, um tempo prometido, ao qual não faltaremos, nem nós nem tu, em lugar equidistante."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,248,'Moisés disse: "Vosso tempo prometido será o dia do ornamento. E que os homens sejam reunidos em plena luz matinal."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,248,'Então, Faraó retirou-se e juntou sua insídia; em seguida, voltou.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,248,'Moisés disse-lhes: "Ai de vós! Não forjeis mentiras acerca de Allah, pois ele vos exterminará, com um castigo. E, com efeito, mal-aventurado será quem as forjar."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,248,'E, deliberaram, entre eles, sua questão e guardaram segredo da confidência.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,248,'Disseram: "Por certo, estes são dois mágicos que desejam fazer-vos sair de vossa terra, com sua magia, e apoderar-se de vosso método exemplar."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,248,'"Então, juntai vossa insídia; em seguida, vinde enfileirados. E, com efeito, bem-aventurado será, hoje, quem ficar por cima."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,248,'Disseram: "Ó Moisés! Lançarás tua vara ou seremos os primeiros que lançaremos as nossas?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,248,'Disse: "Mas, lançai vós." Então, eis suas cordas e suas varas que, por magia, lhe pareciam colear.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,248,'E, em seu âmago, Moisés teve medo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,248,'Dissemos: "Não temas! Por certo, tu, tu és o superior;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,248,'"E lança o que há em tua destra; ela engolirá o que engenharam. O que engenharam é, apenas, insídia de mágico. E o mágico não é bem-aventurado, aonde quer que chegue."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,248,'Então, os mágicos caíram prosternados. Disseram: "Cremos no Senhor de Aarão e Moisés."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,248,'Faraó disse: "Credes nele, antes de eu vo-lo permitir? Por certo, ele é vosso mestre que vos ensinou a magia. Então, em verdade, cortar-vos-ei as mãos e as pernas, de lado opostos, e crucificar-vos-ei nos troncos das tamareiras, e sabereis qual de nós é mais veemente no castigo e mais permanente em poder."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,248,'Disseram: "Não te daremos preferência sobre as evidências que nos chegaram e sobre Quem nos criou. Então, arbitra o que quiseres arbitrar. Tu arbitras, apenas, nesta vida terrena.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,248,'"Por certo, cremos em nosso Senhor, para que nos perdoe os erros e a magia, a que nos compeliste. E Allah é Melhor e mais Permanente, em poder."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,248,'Por certo, quem chega a seu Senhor, sendo criminoso, terá a Geena, em que não morrerá nem viverá.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,248,'E os que Lhe chegam, sendo crentes, havendo feito, de fato, as boas obras, então, esses terão os altos escalões,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,248,'Os Jardins do Éden, abaixo dos quais correm os rios; nesses, serão eternos. E essa é a recompensa de quem se purifica.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,248,'E, com efeito, inspiramos a Moisés: "Parte, durante a noite, com Meus servos; e traça-lhes uma vereda seca no mar: não temas ser alcançado e nada receies."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,248,'E Faraó perseguiu-os, com seu exército; então encobriu-os o que da onda os encobriu.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,248,'E Faraó descaminhou a seu povo e não o guiou.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,248,'Ó filhos de Israel! Com efeito, salvamo-vos de vosso inimigo, e prometemo-vos encontro no lado direito do Monte, e fizemos descer, sobre vós, o maná e as codornizes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,248,'"Comei das cousas benignas, que vos damos por sustento, e não cometais transgressão; senão, Minha ira cairia sobre vós. E aquele, sobre quem Minha ira cai, se abismará, de fato, na Geena."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,248,'"E, por certo, sou Perdoador de quem se volta arrependido e crê e faz o bem, em seguida, se guia."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,248,'Allah disse: "E o que te fez apressar-te em vir adiante de teu povo, ó Moisés?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,248,'Moisés disse: "Ei-los em minha pegada, e apressei-me em vir a Ti - Senhor meu! - para que isso Te agrade."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,248,'Allah disse: "Por certo, Nós, de fato, provamos teu povo, depois de ti, e As-Sãmiriy descaminhou-os."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,248,'Então, Moisés retornou a seu povo, irado, pesaroso. Disse: "Ó meu povo! Vosso Senhor não vos prometeu bela promessa? Será que a aliança tornou-se longa para vós? Ou desejastes que caísse sobre vós ira de vosso Senhor, então faltastes à minha promessa?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,248,'Disseram: "Não faltamos à tua promessa, por vontade nossa, mas fizeram-nos carregar fardos de ornamentos do povo; então, deitamo-los ao fogo e, assim, também, lançou-os As-Sãmiriy."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,248,'Então ele lhes fez sair um bezerro, um corpo que dava mugidos, e disseram: "Este é vosso deus e o deus de Moisés." Então, ele esqueceu a verdade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,248,'E não viram eles que ele não lhes respondia dito algum nem possuía, para eles, prejuízo nem benefício?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,248,'E, com efeito, antes, Aarão dissera-lhes: "Ó meu povo! Apenas, sois provados por ele. E, por certo, vosso Senhor é O Misericordioso; então, segui-me e obedecei-me a ordem."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,248,'Disseram: "Não deixaremos de cultuá-lo, até que Moisés retorne a nós."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,248,'Moisés disse: "Ó Aarão! Quando os viste se descaminharem, o que te impediu".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,248,'"De me seguires? Então, desobedeceste a minha ordem?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,248,'Aarão disse: "Ó filho de minha mãe! Não me apanhes pela barba nem pela cabeça. Por certo, receei que dissesses:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,248,'Moisés disse: "Qual foi teu intuito, ó Sãmiriy?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,248,'Ele disse: "Enxerguei o que eles não enxergaram; então, apanhei um punhado de pó das pegadas do Mensageiro e deitei-o. E, assim, minha alma me aliciou a fazê-lo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,248,'Moisés disse: "Então vai e, por certo, hás de dizer, na vida:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,248,'Vosso Deus é, apenas, Allah: é que não existe deus senão Ele. Ele abrange todas as cousas em ciência.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,248,'Assim, narramo-te, Muhammad, algo dos informes do que, de fato, se antecipou. E, com efeito, concedemo-te uma Mensagem de Nossa parte.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,3,248,'Quem a ela dá de ombros, por certo, carregará, no Dia da Ressurreição, um fardo;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,3,248,'Nisto, serão eternos. E que vil carga para eles, no Dia da Ressurreição,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,3,248,'Um dia, quando se soprar na Trombeta. E reuniremos os criminosos, nesse dia, azuis de medo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,3,248,'Murmurarão, entre eles: "Não permanecestes na vida terrena, senão dez dias."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,3,248,'Nós sabemos perfeitamente o que dirão, quando o mais judicioso deles disser. "Não permanecestes senão um dia."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,3,248,'E perguntam-te pelas montanhas; então, dize: "Meu Senhor desintegrá-las-á inteiramente,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,3,248,'"E deixá-las-á como várzeas, desnudadas,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,3,248,'"Onde não verás tortuosidade nem altibaixos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,3,248,'Nesse dia, eles seguirão o convocador, sem dele se desviarem. E as vozes humildar-se-ão ao Misericordioso; então, não ouvirás senão cicios.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,3,248,'Nesse dia, a intercessão não beneficiará senão a quem O Misericordioso permitir e àquele de quem Ele Se agradar, em dito.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,3,248,'Ele sabe o que está adiante deles e o que está detrás deles; e eles não o abarcam, em ciência.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,3,248,'E as faces avassalar-se-ão perante O Vivente, Aquele que subsiste por Si mesmo. E, com efeito, mal-aventurado é quem carrega injustiça.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,3,248,'E quem faz as boas obras, sendo crente, não temerá injustiça nem opressão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,3,248,'E, assim, fizemo-lo descer em Alcorão árabe e, nele, patenteamos algo das cominações, para serem eles piedosos, ou para lhes causar lembrança.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,3,248,'Então, Sublimado seja Allah, O Rei, O Verdadeiro! E não te apresses para a recitação do Alcorão, antes que seja encerrada sua revelação a ti. E dize: "Senhor meu, acrescenta-me ciência."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,3,248,'E com efeito, recomendamos antes, a Adão não comesse da árvore, mas ele o esqueceu, e não encontramos nele, firmeza.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,3,248,'E quando dissemos aos anjos: "Prosternai-vos diante de Adão"; então, prosternaram-se, exceto Iblis. Ele recusou fazê-lo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,3,248,'E dissemos: "Ó Adão! Por certo, este é um inimigo para ti e para tua mulher; então, que ele não vos faça sair do Paraíso: serias, pois, infeliz."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,3,248,'"Por certo, nele, não hás de estar com fome nem com nudez"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,3,248,'"E nele, não hás de estar com sede nem com calor do sol."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,3,248,'E Satã sussurrou-lhe perfídias. Disse: "Ó Adão! Queres que te indique a árvore da eternidade e um reino, que jamais perecerá?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,3,248,'Então, dela ambos comeram, e as partes pudendas mostraram-se-lhes, e começaram a aglutinar sobre elas, folhas do Paraíso. E Adão desobedeceu a seu Senhor, e transviou-se.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,3,248,'Em seguida, seu Senhor elegeu-o, e voltou-Se para ele, remindo-o, e guiou-o.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,3,248,'Ele disse: "Descei ambos dele, todos vós, como inimigos uns dos outros. E se, em verdade, vos chega de Mim orientação, então, quem segue Minha orientação não se descaminhará nem se infelicitará.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,3,248,'"E quem der de ombros a Minha Mensagem, por certo, ele terá uma vida atormentada e ressuscitá-lo-emos cego, no Dia da Ressurreição."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,3,248,'Ele dirá: "Senhor meu! Por que me ressuscitaste cego, enquanto, com efeito, era vidente?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,3,248,'Allah dirá: "Assim é. Nossos sinais chegaram-te e tu os esqueceste. E assim, hoje, és esquecido."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,3,248,'E assim, recompensamos a quem se entregou a excessos e não creu nos sinais do seu Senhor. E, em verdade, o castigo da Derradeira Vida é mais veemente e mais permanente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,3,248,'Então, não lhes são notórias quantas gerações aniquilamos antes deles, por cujas vivendas andam, agora? Por certo, há nisso sinais para os dotados de entendimento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,3,248,'E, não fora uma Palavra antecipada de teu Senhor e um termo designado, haver-lhes-ia sido imposto o castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,3,248,'Então, pacienta, Muhammad, quanto ao que dizem, e glorifica, com louvor, a teu Senhor, antes do nascer do sol e antes de seu ocaso. E, durante as horas da noite, glorifica-O, então, e durante os extremos do dia, na esperança de agradar-te a recompensa disso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,3,248,'E não estendas teus olhos para aquilo que fizemos gozar alguns grupos entre eles: são floreios da vida terrena, para com eles, os provarmos. E o sustento de teu Senhor é melhor e mais permanente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,3,248,'E ordena a tua família a oração, e pacienta quanto a esta. Não te pedimos sustento. Nós é que te damos sustento. E o final feliz é para a piedade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,3,248,'E eles dizem: "Que ele nos chegue com um sinal de seu Senhor!" E já não lhes chegou a evidência do que havia nas primeiras páginas?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,3,248,'E, se Nós os houvéssemos aniquilado com um castigo, antes dele, haveriam dito: "Senhor nosso! Que nos houvesses enviado um Mensageiro: então, haveríamos seguido Teus sinais, antes que nos envilecêssemos e nos ignominiássemos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,3,248,'Dize: "Cada qual está aguardando seu destino: aguardai-o, pois. Então, sabereis quem são os companheiros da senda perfeita e quem se guia!"');
+INSERT INTO chapters (id, number, quran_id) VALUES(249,21,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,249,'Aproxima-se, para os homens seu ajuste de contas, enquanto eles, em desatenção, estão dando de ombros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,249,'Não lhes chega nenhuma Mensagem renovada de seu Senhor, sem que a ouçam, enquanto se divertem,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,249,'Com os corações entretenidos. E os que são injustos guardam segredo da confidência: "Este não é senão um mortal como vós. Então, achegai-vos à magia, enquanto a enxergais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,249,'Ele disse: "Meu Senhor sabe o dito, no céu e na terra. E Ele é O Oniouvinte, O Onisciente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,249,'Mas eles dizem: "É um amontoado de sonhos. Ou antes, ele o forjou. Aliás, é um poeta. Então, que ele nos faça vir um sinal igual ao com que foram enviados os profetas antepassados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,249,'Antes deles, nenhuma cidade dentre as que destruímos foi crente ao ver os sinais. Então, crerão eles?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,249,'E não enviamos, antes de ti, senão homens aos quais fizemos revelações. - Então, interrogai os sábios da Mensagem, se não sabeis. -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,249,'E não fizemos deles corpos que não comessem alimentos, e não foram eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,249,'Em seguida, cumprimos a promessa a eles, então, salvamo-los e àqueles a quem quisemos, e aniquilamos os entregues a excessos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,249,'Com efeito, fizemos descer para vós um Livro, em que há honra para vós. Então, não razoais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,249,'E quantas cidades destruímos, que foram injustas! - E fizemos surgir, depois delas, outros povos -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,249,'Então, quando perceberam Nosso suplício, ei-los fugindo delas, galopando.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,249,'Foi-lhes dito: "Não galopeis e retornai à opulência, em que vivíeis, e a vossas vivendas, para serdes interrogados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,249,'Disseram: "Ai de nós! Por certo, fomos injustos!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,249,'E não cessou de ser essa sua lamentação, até que os fizemos como que ceifados, extintos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,249,'E não criamos o céu e a terra e o que há entre ambos, por diversão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,249,'Se houvéssemos desejado tomar um entretenimento havê-lo-íamos tomado de Nossa parte se houvéssemos querido fazê-lo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,249,'Mas arrojamos a verdade contra a falsidade; então, esmaga-a e ei-la nula. E ai de vós pelo que alegais!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,249,'E dEle é quem está nos céus e na terra. E os que estão junto dEle não se ensoberbecem, diante de Sua adoração, nem esmorecem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,249,'Glorificam-nO, noite e dia; não se entibiam jamais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,249,'Será que tomaram eles deuses da terra os quais ressuscitam mortos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,249,'Houvesse, em ambos outros deuses que Allah, haveriam sido ambos corrompidos. Então, glorificado seja Allah, O Senhor do Trono, acima do que alegam!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,249,'Ele não é interrogado, acerca do que faz, enquanto eles serão interrogados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,249,'Ou tomaram, além dEle, deuses? Dize, Muhammad: "Trazei vossa provança. Esta é a Mensagem de quem é comigo, e a Mensagem de quem foi, antes de mim." Mas a maioria deles não sabe a verdade, então, a ela estão dando de ombros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,249,'E não enviamos, antes de ti, Mensageiro algum, sem que lhe revelássemos que não existe deus além de Mim; então, adorai-Me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,249,'E dizem: "O Misericordioso tomou para Si um filho." Glorificado seja Ele! Mas eles são Seus servos honrados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,249,'Não O antecipam no dito e atuam por Sua ordem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,249,'Ele sabe o que está adiante deles e o que está detrás deles. E eles não intercedem senão por quem Lhe agrada. E, do receio d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,249,'E a quem, dentre eles, diz: "Por certo, sou deus, em vez dEle", a esse recompensaremos com a Geena. Assim, recompensamos os injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,249,'E os que renegam a Fé não viram que os céus e a terra eram um todo compacto e Nós desagregamo-los, e fizemos da água toda cousa viva? - Então, não crêem? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,249,'E fizemos, na terra, assentes montanhas, para que ela se não abalasse com eles e, nela, fizemos amplos desfiladeiros, por caminhos, para se guiarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,249,'E fizemos do céu um teto custodiado. E eles, a seus sinais, estão dando de ombros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,249,'E Ele é Quem criou a noite e o dia, e o sol e a lua. Cada qual voga, em uma órbita.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,249,'E nunca fizemos a eternidade para mortal algum, antes de ti. Então, se morres, serão eles eternos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,249,'Cada alma experimentará a morte. E por-vos-emos à prova, com o mal e com o bem, à guisa de tentação. E a Nós sereis retornados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,249,'E, quando os que renegam a Fé te vêem, não te tomam senão por objeto de zombaria, e dizem: "É este quem difama vossos deuses?" E eles, da Mensagem do Misericordioso, são renegadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,249,'O ser humano foi criado de precipitação. Farvos-ei ver Meus sinais: então, não Me apresseis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,249,'E dizem: "Quando será o cumprimento desta promessa, se sois verídicos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,249,'Se os que renegam a Fé soubessem da hora, em que não poderão deter o fogo das próprias faces nem das próprias costas, e em que não serão socorridos, não se haveriam apressado!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,249,'Mas lhes chegará ela, inopinadamente, e deixá-los-á atônitos: então, não poderão repulsá-la nem se lhes concederá dilação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,249,'E, com efeito, zombaram de Mensageiros, antes de ti; então, aquilo de que zombavam envolveu os que escarneceram deles.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,249,'Dize: "Quem vos resguarda, na noite e no dia, do castigo dO Misericordioso?" Mas eles estão dando de ombros à Mensagem de seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,249,'Ou têm eles deuses que os defendam, além de Nós? Mas estes não podem socorrer-se a si mesmos nem serão acompanhados por Nós.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,249,'Ao contrário, fizemos gozar a esses e a seus pais, até que se lhes prolongou a idade. Então, eles não vêem que chegamos à terra diminuindo-a em seus extremos? Serão eles, pois, os vencedores?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,249,'Dize: "Admoesto-vos, apenas, com a revelação. E os surdos não ouvem a convocação, quando admoestados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,249,'E, se um sopro do castigo de teu Senhor os toca, em verdade, dizem: "Ai de nós! Por certo, fomos injustos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,249,'E Nós poremos as balanças eqüitativas para o Dia da Ressurreição; então, nenhuma alma sofrerá nada de injustiça. E se houver ação do peso de um grão de mostarda fá-la-emos vir à balança. E bastamos Nós por Ajustador de contas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,249,'E, com efeito, concedêramos a Moisés e a Aarão o Critério e luminosidade e Mensagem para os piedosos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,249,'Os que receiam a seu Senhor, ainda que Invisível, e da Hora eles estão amedrontados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,249,'E esta é uma Mensagem bendita, que fizemos descer. Então, ser-lhe-eis negadores?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,249,'E, com efeito, concedêramos, antes, a Abraão sua retidão – e éramos, dele, Onisciente -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,249,'Quando disse a seu pai e a seu povo: "Que são estes ídolos, que estais cultuando?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,249,'Disseram: "Encontramos nossos pais adorando-os."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,249,'Ele disse: "Com efeito, vós e vossos pais tendes estado em evidente descaminho."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,249,'Disseram: "Chegaste-nos com a verdade, ou és dos que se divertem?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,249,'Disse: "Não o sou. Mas vosso Senhor é O Senhor dos céus e da terra, Que os criou, e sou das testemunhas disso."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,249,'"E por Allah! Insidiarei vossos ídolos, depois de vos retirardes, voltando-lhes as costas."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,249,'Então, fê-los em pedaços, exceto o maior deles, para a ele retornarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,249,'Disseram: "Quem fez isto a nossos deuses? Por certo, ele é dos injustos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,249,'Alguns disseram: "Ouvimos um jovem difamando-os. Chama-se Abraão."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,249,'Disseram: "Então fazei-o vir diante dos olhos dos homens, na esperança de o testemunharem."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,249,'Disseram: "Foste tu que fizeste isso a nossos deuses, Ó Abraão?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,249,'Disse: "Mas o maior deles, este aqui, o fez. Então, interrogai-os, se é que falam."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,249,'Então, caíram em si, e disseram uns aos outros: "Por certo, sois vós os injustos!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,249,'Em seguida, viraram a cabeça e disseram: "Com efeito, sabes que esses não falam."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,249,'Abraão disse: "Então, adorais, em vez de Allah, o que em nada vos beneficia nem vos prejudica?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,249,'"Ufa a vós e ao que adorais, em vez de Allah! Então, não razoais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,249,'Disseram: "Queimai-o, e socorrei vossos deuses, se quereis fazer algo por eles."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,249,'Dissemos: "Ó fogo! Sê frescor e paz sobre Abraão."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,249,'E desejaram armar-lhe insídias; então, fizemo-los os mais perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,249,'E salvamo-lo e a Lot, levando-os à terra que abençoamos, para os mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,249,'E dadivamo-lo com Isaque, e Jacó por acréscimo. E, a todos, fizemo-los íntegros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,249,'E fizemo-los próceres, que guiaram os homens, por Nossa ordem. E inspiramo-lhes a prática das boas cousas e o cumprimento da oração e a concessão das esmolas. E foram Nossos adoradores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,249,'E a Lot, concedemo-lhe sabedoria e ciência, e salvamo-lo da cidade que praticava as torpezas. Por certo, eles eram um povo atreito ao mal, perverso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,249,'E fizemo-lo entrar em Nossa misericórdia. Por certo, ele era dos íntegros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,249,'E Noé, quando antes, Nos chamou, então, atendemo-lo e salvamo-lo e a sua família da formidável angústia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,249,'E socorremo-lo, contra o povo que desmentira Nossos sinais. Por certo, eram um povo atreito ao mal. Então, afogamo-los a todos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,249,'E Davi e Salomão, quando julgaram acerca do campo lavrado quando, nele, se dispersara, à noite, o rebanho de um povo. E fomos Testemunha de seu julgamento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,249,'Então, fizemos Salomão comprendê-lo. E a cada qual concedemos sabedoria e ciência. E submetemos, com Davi, as montanhas e os pássaros, para Nos glorificarem. E fomos Nós Feitor disso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,249,'E ensinamo-lhe o oficio de fazer couraças para vós, a fim de escudar-vos contra vossa violência - Então, estais agradecidos? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,249,'E submetemos a Salomão o tempestuoso vento, que corria, por sua ordem, à terra que abençoamos. E Nós, de todas as cousas, somos Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,249,'E, dentre os demônios, submetemo-lhe os que, para ele, mergulhavam no mar, e lhe faziam, além disso, outros afazeres. E fomos Custódio deles.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,249,'E Jó, quando chamou a seu Senhor: "O mal tocou-me, e Tu és O mais Misericordiador dos misericordiadores!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,249,'Então, atendemo-lo e removemo-lhe o que tinha de mal. E concedemo-lhe, em restituição, sua família e, com ela, outra igual por misericórdia de Nossa parte e por lembrança para os adoradores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,249,'E Ismael e Idrís e Zal-Kifl. todos eram dos perseverantes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,249,'E fizemo-los entrar em Nossa misericórdia. Por certo, eles eram dos íntegros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,249,'E Zan-Nūn quando se foi, irado, e pensou que não enviaríamos castigo contra ele; então, clamou nas trevas: "Não existe deus, senão Tu! Glorificado sejas! Por certo, fui dos injustos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,249,'Então, atendemo-lo, e salvamo-lo da angústia. E, assim, salvamos os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,249,'E Zacarias, quando chamou a seu Senhor: "Senhor meu! Não me deixes só, e Tu és O Melhor dos herdeiros."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,249,'Então, atendemo-lo e dadivamo-lo com Yahia, João, e tornamos fecunda sua mulher. Por certo, eles se apressavam para as boas cousas e Nos invocavam com rogo e veneração. E foram humildes coNosco.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,249,'E aquela que escudou sua virgindade; então, sopramos nela, algo de Nosso Espírito; e fizemo-la e a seu filho um sinal para os mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,249,'Por certo, esta é vossa religião uma religião única, e Eu sou vosso Senhor: então, adorai-Me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,249,'E, contudo, os homens cortaram, entre eles, seus laços religiosos. Mas, todos a Nós estarão retornando.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,249,'E quem faz as boas obras, enquanto crente, não haverá negação de seu esforço; e, por certo, estamo-lhe escrevendo as ações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,249,'E não é permissível a uma cidade que aniquilamos que não retorne.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,249,'Até serem abertas as portas de Ya');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,249,'E a verdadeira Promessa aproxima-se; então, eis estarrecidas as vistas dos que renegaram a Fé. Dirão: "Ai de nós! Com efeito, estávamos em desatenção a isso; aliás, fomos injustos!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,249,'Por certo, vós e o que adorais, além de Allah, sereis o combustível da Geena; nela, ingressareis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,249,'Se estes fossem deuses, nela não ingressariam. E todos, nela, serão eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,3,249,'Nela, darão suspiros e, nela, nada ouvirão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,3,249,'Por certo, aqueles, aos quais foi antecipada, por Nós, a mais bela recompensa, esses serão dela afastados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,3,249,'Não ouvirão seu assobio, e serão eternos no que suas almas apeteceram.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,3,249,'O grande terror não os entristecerá. E os anjos recebê-los-ão, dizendo: "Este é vosso dia, que vos foi prometido."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,3,249,'Um dia, dobraremos o céu, como se dobra o rolo dos livros. Como iniciamos a primeira criação, repeti-la-emos. É promessa que Nos impende. Por certo, seremos Feitor disso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,3,249,'E com efeito, escrevemos nos Salmos, após a Mensagem, que a terra herdá-la-ão Meus servos íntegros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,3,249,'Por certo, há neste uma comunicação para um povo adorador de Deus.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,3,249,'E não te enviamos senão como misericórdia para os mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,3,249,'Dize, Muhammad: "Revela-se-me que, apenas, vosso Deus é Deus Único. Então, sois muçulmanos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,3,249,'E, se eles voltam as costas, dize: "Adverti-vos, a todos vós, igualmente. E não me inteiro de estar próximo ou distante o que vos é prometido."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,3,249,'"Por certo, Ele sabe o que se diz em alta voz e sabe o que ocultais."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,3,249,'"E não me inteiro de ser isso, talvez, provação para vós e gozo, até certo tempo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,3,249,'Ele disse: "Senhor meu! Julga-nos com a verdade! E nosso Senhor é O Misericordioso, Aquele de Quem se implora ajuda, contra o que alegais."');
+INSERT INTO chapters (id, number, quran_id) VALUES(250,22,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,250,'Ó humanos! Temei a vosso Senhor. Por certo, o tremor da Hora será cousa formidável!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,250,'Um dia, quando o virdes, toda nutriz distrair-se-á de quem estiver amamentando e toda mulher grávida deporá sua carga. E tu verás os homens ébrios, enquanto não ébrios; mas o castigo de Allah será veemente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,250,'E, dentre os humanos, há quem discuta acerca de Allah, sem ciência alguma, e siga todo demônio rebelde.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,250,'É-lhe prescrito que, a quem o seguir, ele o descaminhará e o guiará ao castigo do Fogo ardente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,250,'Ó homens ! Se estais em dúvida acerca da Ressurreição, por certo, Nós vos criamos de pó; em seguida, de gota seminal; depois, de uma aderência; em seguida, de embrião configurado e não configurado, para tornar evidente, para vós, Nosso poder. E fazemos permanecer, nas matrizes, o que queremos, até um termo designado. Em seguida, fazemo-vos sair crianças, para depois, atingirdes vossa força plena. E há dentre vós quem morra. E há, dentre vós, quem seja levado à mais provecta idade, para nada mais saber, após haver tido ciência. E tu vês a terra árida; então, quando fazemos descer, sobre ela, a água, move-se e cresce e germina toda espécie de esplêndidos casais de plantas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,250,'Isso, porque Allah é a Verdade e porque Ele dá vida aos mortos e porque Ele, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,250,'E porque a Hora está prestes a chegar, indubitavelmente, e porque Allah ressuscita quem está nos sepulcros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,250,'E, dentre os humanos, há quem discuta acerca de Allah, sem ciência alguma nem orientação nem livro luminoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,250,'Virando os flancos, para descaminhar os demais do caminho de Allah. Há para ele ignomínia na vida terrena, e fá-lo-emos experimentar, no Dia da Ressurreição, o castigo da Queima.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,250,'Dir-se-lhe-á: "Isso, pelo que vossas mãos anteciparam! E porque Allah não é injusto para com os servos".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,250,'E, dentre os homens, há quem adore a Allah, vacilante. Então, se o alcança um bem, tranqüiliza-se e, se o alcança uma provação, desvia sua face para voltar-se à renegação da Fé. Perde a vida terrena e a Derradeira Vida. Essa é a evidente perdição!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,250,'Ele invoca, além de Allah, o que não o prejudica e o que não o beneficia. Esse é o profundo descaminho!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,250,'Invoca aquilo cujo prejuízo está mais próximo que seu benefício. Que execrável protetor e que execrável convivente!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,250,'Por certo, Allah, aos que crêem e fazem as boas obras, fará entrar em Jardins, abaixo dos quais correm os rios. Por certo, Allah faz o que deseja.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,250,'Quem pensa que Allah o não socorrerá, na vida terrena e na Derradeira Vida, que estenda uma soga até o teto, em seguida se enforque; então, que olhe: será que sua insídia fará desaparecer o que lhe suscita rancor?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,250,'E, assim fizemo-lo descer como sinais evidentes e, por certo, Allah guia a quem deseja.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,250,'Por certo, os que crêem e os que praticam o judaísmo e os sabeus e os cristãos e os magos e os que idolatram, por certo, Allah decidirá, entre eles, no Dia da Ressurreição. Por certo, Allah, de todas as cousas, é Testemunha.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,250,'Não viste que, diante de Allah, se prosterna quem está nos céus e quem está na terra, e o sol e a lua e as estrelas e as montanhas e as árvores e os seres animais e muitos dos humanos? E, sobre muitos destes, cumpre-se o castigo. E aquele, a quem Allah avilta, não terá quem o honre. Por certo, Allah faz o que quer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,250,'Estes são dois adversários, que disputam acerca de seu Senhor. Então, aos que renegam a Fé, cortar-se-lhes-ão trajes de fogo. Sobre suas cabeças, entornar-se-á água ebuliente;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,250,'Com ela, derreter-se-á o que há em seus ventres e, também, as peles.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,250,'E, para eles, haverá recurvados fustes de ferro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,250,'Cada vez que desejarem sair dele por angústia, fá-los-ão voltar a ele. E dir-se-lhes-á: "Experimentai o castigo da Queima!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,250,'Por certo, Allah, aos que crêem e fazem boas obras, fará entrar em Jardins, abaixo dos quais correm os rios; neles, serão enfeitados com braceletes de ouro e com pérolas. E, neles, suas vestimentas serão de seda.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,250,'E serão guiados ao dito bondoso, e serão guiados à senda do Louvável.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,250,'Por certo, os que renegam a Fé e obstruem o caminho de Allah e da Mesquita Sagrada - que estabelecemos para todos os homens, seja o residente nela, seja o nômade - experimentarão doloroso castigo. E a quem deseja, com injustiça, fazer profanação nela, fá-lo-emos, também, experimentar de doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,250,'E quando indicamos a Abraão o lugar da Casa, e ordenamo-Ihe: "Nada associes a Mim, e purifica Minha Casa para os que a circundam e para os que, nela, oram de pé e para os que se curvam e para os que se prosternam."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,250,'"E noticia aos homens a peregrinação. Eles te virão a pé ou montados em todo magro camelo, vindo de cada desfiladeiro distante,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,250,'"Para presenciar certos benefícios seus e para mencionar, em dias determinados, o nome de Allah, sobre o animal dos rebanhos que Ele lhes deu por sustento. Então, deles comei e alimentai o desventurado, o pobre."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,250,'"Em seguida, que se asseiem, e que sejam fiéis a seus votos, e que circundem a Casa Antiga".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,250,'Essa é a determinação. E quem magnifica os preceitos invioláveis de Allah, isto lhe é melhor junto de seu Senhor. E são-vos lícitos os rebanhos como alimento, exceto o que é recitado para vós. Então, evitai a abominação dos ídolos; e evitai o dito falso,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,250,'Sendo monoteístas sinceros para com Allah, nada Lhe associando. E quem associa algo a Allah é como se caísse do céu, então, os pássaros o arrebatassem ou o vento o abismasse em lugar bem profundo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,250,'Essa é Nossa determinação. E quem magnifica os ritos de Allah, por certo, isto é prova da piedade dos corações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,250,'Neles há para vós benefícios, até um termo designado; em seguida, seu local de imolação será a Casa antiga.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,250,'E, para cada comunidade, fizemos rito de sacrifício, para mencionarem o nome de Allah sobre os animais de rebanhos que Ele lhes deu por sustento. E vosso Deus é Deus Único; então, islamizai-vos, para Ele. E alvissara, Muhammad, a bem-aventurança aos crentes humildes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,250,'Aqueles cujos corações se atemorizam, quando Allah é mencionado; e aos que têm paciência, com o que os alcança; e aos cumpridores da oração; e que despendem do que lhes damos por sustento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,250,'E os camelos, fizemo-los para vós, entre os ritos de Allah; neles, há bem para vós. Então, mencionai o nome de Allah sobre eles, enquanto perfilados para serem imolados. E, quando abatidos e, caem sobre os flancos, comei deles e alimentai o pobre e o mendigo. Assim, submetemo-los a vós, para serdes agradecidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,250,'Nem sua carne nem seu sangue alcançam a Allah, mas O alcança vossa piedade. Assim, Ele vo-los submeteu, para que magnifiqueis a Allah, porque Ele vos guiou. E alvissara a bem-aventurança aos benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,250,'Por certo, Allah defende os que crêem. Por certo, Allah não ama a nenhum traidor, ingrato.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,250,'É permitido o combate aos que são combatidos, porque sofreram injustiça. E, por certo, Allah, sobre seu socorro, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,250,'Esses são os que, sem razão, foram expulsos de seus lares, apenas porque disseram: "Nosso Senhor é Allah." E, se Allah não detivesse os homens uns pelos outros, estariam demolidos eremitérios e igrejas e sinagogas e mesquitas, em que o nome de Allah é amiúde mencionado. E, em verdade, Allah socorre a quem O socorre. Por certo, Allah é Forte, Todo-Poderoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,250,'Esses são os que, se os empossamos na terra, cumprem a oração e concedem as esmolas, e ordenam o conveniente e coíbem o reprovável. E de Allah é o fim de todas as determinações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,250,'E, se te desmentem, Muhammad, com efeito, antes deles o povo de Noé e o de Ãd e o de Thamud já desmentiram a seus Mensageiros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,250,'E o povo de Abraão e o povo de Lot.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,250,'E os habitantes de Madian. E, também, Moisés foi desmentido. Então concedi prazo aos renegadores da Fé; em seguida, apanhei-os. Como foi, pois, Minha reprovação?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,250,'E quantas cidades aniquilamos, enquanto injustas! Então, ei-las deitadas abaixo, sobre seus tetos! E que de poços inutilizados, e palácios elevados, abandonados!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,250,'Então, não caminharam eles na terra, para que tivessem corações, com que razoassem, ou ouvidos, com que ouvissem? Pois, por certo, não são as vistas que se enceguecem, mas se enceguecem os corações que estão nos peitos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,250,'E pedem-te que apresses o castigo, e Allah não faltará a Sua promessa. E, por certo, um dia junto de teu Senhor, é como mil anos dos que contais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,250,'E a quantas cidades concedi prazo, enquanto injustas! Em seguida, apanhei-as. E a Mim será o destino.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,250,'Dize, Muhammad: "Ó homens! Sou-vos, apenas, evidente admoestador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,250,'"Então, os que crêem e fazem as boas obras terão perdão e generoso sustento."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,250,'"E os que se esforçam em negar Nossos sinais, intentando escapar de Nosso castigo, esses serão os companheiro do Fogo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,250,'E não enviamos, antes de ti, Mensageiro algum nem profeta, sem que, quando recitava uma Mensagem, Satã lançasse falsidade em sua recitação; então, Allah anula o que Satã lança; em seguida, Allah mantém concisos Seus versículos - e Allah é Onisciente, Sábio -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,250,'Para fazer do que Satã lança uma provação àqueles, em cujos corações há enfermidade, e àqueles, cujos corações estão endurecidos - e, por certo, os injustos estão em profunda discórdia -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,250,'E para que aqueles, aos quais fora concedida a ciência saibam que ele é a Verdade de teu Senhor, então, nele creiam, e seus corações se humildem a ele. E, por certo, Allah guia os que crêem a uma senda reta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,250,'E os que renegam a Fé não cessarão de estar em dúvida a respeito dele, até que lhes chegue a Hora, inopinadamente, ou lhes chegue o castigo de um dia estéril.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,250,'A soberania, nesse dia, será de Allah: Ele julgará entre eles. Então, os que crêem e fazem as boas obras estarão nos Jardins da Delícia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,250,'E os que renegam a Fé e desmentem Nossos sinais, esses terão aviltante castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,250,'E aos que emigram, no caminho de Allah, em seguida, são assassinados ou morrem, certamente, Allah dar-lhes-á belo sustento. E, por certo, Allah é O Melhor dos sustentadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,250,'Certamente, fá-los-á entrar em um lugar, de que se agradarão. E, por certo, Allah é Onisciente, Clemente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,250,'Essa é a determinação. E a quem pune de igual modo com que foi punido, em seguida, é cometida transgressão contra ele, Allah com certeza o socorrerá. Por certo, Allah é Indulgente, Perdoador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,250,'Isso, porque Allah insere a noite no dia e insere o dia na noite, e porque Allah é Oniouvinte, Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,250,'Isso, porque Allah é a Verdade, e porque o que invocam, além dEle, é a falsidade, e porque Allah é O Altíssimo, O Grande.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,250,'Não viste que Allah faz descer do céu água, então, a terra torna-se verdejante? Por certo, Allah é Sutil, Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,250,'DEle é o que há nos céus e o que há na terra. E, por certo, Allah é O Bastante a Si Mesmo, O Louvável.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,250,'Não viste que Allah vos submete o que há na terra, e que o barco corre no mar, por Sua ordem, e que Ele sustém o céu, para não cair sobre a terra, exceto com Sua permissão? Por certo, Allah, para com os homens, é Compassivo, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,250,'E Ele é Quem vos deu a vida; em seguida, Ele vos faz morrer; depois, Ele vos dará a vida. Por certo, o ser humano é ingrato.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,250,'Para cada comunidade, fizemos ritos, que eles observam; então, que eles não disputem contigo acerca da ordem. E invoca a teu Senhor. Por certo, estás em direção reta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,250,'E, se eles discutem contigo, dize: "Allah é bem Sabedor do que fazeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,250,'"Allah julgará, entre vós, no Dia da Ressurreição, por aquilo de que discrepáveis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,250,'Não sabias que Allah sabe o que há no céu e na terra? Por certo, isso está em um Livro. Por certo, isso é fácil para Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,250,'E eles adoram, além de Allah, aquilo de que Ele não faz descer comprovação alguma e aquilo de que eles não têm ciência. E não há, para os injustos, socorredor algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,250,'E, quando são recitados, para eles, Nossos evidentes versículos, tu reconheces a reprovação na face dos que renegam a Fé. Quase atacam os que recitam, para eles, Nossos versículos. Dize, Muhammad: "Então, informar-vos-ei de algo pior que isso? É o Fogo: Allah prometeu-o aos que renegam a Fé. E que execrável destino!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,250,'Ó homens! É-vos proposto um exemplo, então, ouvi-o: "Por certo, os que invocais, além de Allah, não criarão uma mosca sequer, ainda que, para isso, se juntem. E, se a mosca lhes tirar algo, não poderão recuperá-lo. O procurador e o procurado são fracos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,250,'Eles não estimam a Allah como se deve estimar a Ele. Por certo, Allah é Forte, Todo-Poderoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,250,'Allah escolhe Mensageiros, entre os anjos e os homens. Por certo, Allah é Oniouvinte, Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,250,'Ele sabe o que está adiante deles e o que está detrás deles. E a Allah são retornadas as determinações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,250,'Ó vós que credes! Curvai-vos e prosternai-vos e adorai a vosso Senhor, e fazei o bem, na esperança de serdes bem-aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,250,'E lutai por Allah, como se deve lutar por Ele. Ele vos elegeu. E não vos fez constrangimento algum, na religião: a crença de vosso pai Abraão. Ele vos nomeou muçulmanos antes e, agora, neste para que o Mensageiro seja testemunha de vós, e vós sejais testemunhas da humanidade. Então, cumpri a oração e concedei as esmolas, e agarrai-vos a Allah. Ele é vosso Protetor. Então, que Excelente Protetor e que Excelente Socorredor!');
+INSERT INTO chapters (id, number, quran_id) VALUES(251,23,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,251,'');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,251,'Que são humildes em suas orações,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,251,'E que dão de ombros à frivolidade,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,251,'E que concedem as esmolas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,251,'E os que são custódios de seu sexo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,251,'- Exceto com suas mulheres, ou com as escravas que possuem; então, por certo, não serão censurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,251,'E quem busca algo, além disso, esses são os agressores -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,251,'E que respeitam fielmente seus depósitos, a eles confiados, e honram seus pactos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,251,'E que custodiam suas orações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,251,'Esses são os herdeiros,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,251,'Que herdarão o lugar mais alto do Paraíso. Nele, serão eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,251,'E, com efeito, criamos o ser humano da quintessência de barro,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,251,'Em seguida, fizemo-lo gota seminal, em lugar estável, seguro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,251,'Depois, criamos, da gota seminal, uma aderência; e criamos, da aderência, embrião; e criamos, do embrião, ossos; e revestimos os ossos de carne; em seguida, fizemo-lo surgir em criatura outra. Então, Bendito seja Allah, O Melhor dos criadores!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,251,'Em seguida, por certo, depois disso, sereis mortos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,251,'Em seguida, por certo, no Dia da Ressurreição, sereis ressuscitados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,251,'E, com efeito, criamos, acima de vós, sete céus; e não estamos desatentos à criação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,251,'E fizemos descer do céu água, na justa medida; e fizemo-la remanescer, na terra - e, por certo, somos Poderoso, para fazê-la desaparecer -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,251,'Então, com ela, produzimos para vós, jardins de tamareiras e videiras; neles há, para vós, abundantes frutas e delas comeis;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,251,'E uma árvore, que brota do Monte Sinai: ela produz azeite, e tempero para quem come.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,251,'E, por certo, há nos rebanhos, lição para vós. Damo-vos de beber do que há em seus ventres e, neles, há abundantes benefícios para vós, e deles comeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,251,'E, sobre eles e sobre os barcos, sois carregados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,251,'E, com efeito, enviamos Noé a seu povo. E disse: "Ó meu povo! Adorai a Allah. Não tendes outro deus que não seja Ele. Então, não temeis a Allah?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,251,'Então, os dignitários de seu povo, que renegaram a Fé, disseram: "Este não é senão um ser humano como vós; ele deseja ter preferência sobre vós e, se Allah quisesse, haveria feito descer anjos, por Mensageiros. Não ouvimos falar disso, entre antepassados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,251,'"Ele não é senão um homem; nele, há loucura; então, aguardai-o, com paciência, até certo tempo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,251,'Ele disse: "Senhor meu! Socorre-me, porque me desmentem."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,251,'Então, inspiramo-lhe: "Fabrica o barco, diante de Nossos olhos e com Nossa inspiração. E, quando Nossa ordem chegar e as fontes da terra jorrarem, faze entrar nele, de cada espécie um casal; e tua família, exceto aquele, dentre eles, contra quem o Dito, a sentença, se antecipou. E não Me fales mais dos que são injustos. Por certo, eles serão afogados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,251,'"E, quando te instalares no barco, tu e os que estão contigo, dize:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,251,'"E dize:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,251,'Por certo, há nisso sinais e, por certo, estávamo-los provando.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,251,'Em seguida, criamos, depois deles, outra geração.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,251,'Então, enviamo-lhes um Mensageiro vindo deles, que disse: "Adorai a Allah! Não tendes outro deus que não seja Ele. Então, não temeis a Allah?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,251,'E os dignitários de seu povo, que renegaram a Fé e desmentiram o encontro da Derradeira Vida, e aos quais opulentáramos, na vida terrena, disseram: "Este não é senão um ser humano como vós: ele come do que comeis e bebe do que bebeis;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,251,'"E, em verdade, se obedeceis a um homem como vós, por certo, sereis, nesse caso, perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,251,'"Ele vos promete que, quando morrerdes e fordes pó e ossos, vos farão sair dos sepulcros?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,251,'"Longe, bem longe, está o que vos é prometido!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,251,'"Não há senão nossa vida terrena; morremos e vivemos e não seremos ressuscitados');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,251,'"Ele não é senão um homem que forja mentiras acerca de Allah, e não estamos crendo nele."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,251,'Ele disse: "Senhor meu! Socorre-me, porque me desmentem."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,251,'Allah disse: "Dentro em pouco, estarão arrependidos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,251,'E o Grito apanhou-os, com a justiça, e fizemo-los escória. Então, que se suma para sempre o povo injusto!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,251,'Em seguida, criamos, depois deles, outras gerações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,251,'Nenhuma comunidade antecipa seu termo nem o atrasa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,251,'Em seguida, enviamos, consecutivamente, Nossos Mensageiros. Cada vez que um Mensageiro chegava a sua comunidade, eles o desmentiam. E fizemo-las seguir, umas após outras, no aniquilamento, e fizemos delas temas de conversa. Então, que se suma para sempre um povo que não crê!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,251,'Em seguida, enviamos Moisés e seu irmão Aarão, com Nossos sinais e evidente comprovação,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,251,'A Faraó e seus dignitários; então, ensoberbeceram-se e foram um povo altivo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,251,'E disseram: "Creremos em dois homens iguais a nós, enquanto seu povo nos está escravo?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,251,'E desmentiram-nos; então, foram dos aniquilados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,251,'E, com efeito, concedemos a Moisés o Livro para que eles se guiassem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,251,'E fizemos do filho de Maria e de sua mãe um sinal. E abrigamo-los em um outeiro, de solo estável e com água corrente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,251,'Ó Mensageiros! Comei das cousas benignas e fazei o bem. Por certo, do que fazeis, sou Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,251,'E por certo, esta é vossa religião, uma religião única. E sou vosso Senhor: então, temei-Me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,251,'Mas, os homens, entre eles, cortaram, em pedaços, os laços que os uniam. Cada partido está jubiloso com o que tem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,251,'Então, deixa-os, Muhammad, mergulhados em sua confusão, até certo tempo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,251,'Supõem eles que, com o que Nós lhes outorgamos, em riquezas e filhos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,251,'Estamo-lhes apressando as boas cousas? Não. Mas eles não percebem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,251,'Por certo, os que, pelo receio de seu Senhor, estão amedrontados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,251,'E os que nos sinais de seu Senhor crêem,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,251,'E os que nada associam a seu Senhor,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,251,'E os que concedem o que concedem, enquanto seus corações estão atemorizados, porque terão de retornar a seu Senhor,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,251,'Esses se apressam para as boas cousas, e destas são precursores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,251,'E não impomos a nenhuma alma senão o que é de sua capacidade. E, junto de Nós, há um Livro, que fala a verdade. E eles não sofrerão injustiça.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,251,'Mas seus corações estão mergulhados em confusão a respeito deste e eles têm obras nefandas, além disso, que estão praticando,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,251,'Até que, quando apanharmos seus homens opulentos com castigo, ei-los que rogarão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,251,'Dir-se-lhe-á: "Não rogueis, hoje. Por certo, não sereis, por Nós, socorridos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,251,'"Com efeito, recitavam-se, para vós, Meus versículos, então, recuáveis, virando os calcanhares,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,251,'"Ensoberbecendo-vos, e conversando, à noite, vós o difamáveis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,251,'E não ponderam eles o Dito? Ou lhes chegou o que não chegara a seus pais antepassados?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,251,'Ou eles não reconhecem seu Mensageiro, e o estão negando?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,251,'Ou dizem: "Há loucura nele?" Não. Mas ele lhes chegou com a verdade, e a maioria deles odeia a verdade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,251,'E, se a verdade seguisse suas paixões, os céus e a terra e quem neles existe haver-se-iam corrompido. Ao contrário, chegamo-Ihes com sua Mensagem, e estão dando de ombros a sua Mensagem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,251,'Ou lhes pedes um tributo? Mas o tributo de teu Senhor é melhor. E Ele é O Melhor dos sustentadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,251,'E, por certo, tu os convocas a uma senda reta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,251,'E, por certo, os que não crêem na Derradeira Vida estão desviados desta senda.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,251,'E, se tivéssemos misericórdia para com eles, e removêssemos o que há de mal com eles, persistiriam em sua transgressão, caminhando às cegas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,251,'E, com efeito, apanhamo-los com o castigo; mas, não se sujeitaram a seu Senhor, e não se humildam,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,251,'Até que, quando abrirmos, sobre eles, uma porta de veemente castigo, ei-los mudos de desespero.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,251,'E Ele é Quem vos criou o ouvido e as vistas e os corações. Quão pouco agradeceis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,251,'E Ele é Quem vos multiplicou na terra, e a Ele sereis reunidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,251,'E Ele é Quem dá a vida e dá a morte, e dEle é a alternância da noite e do dia. Então, não razoais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,251,'Mas dizem o mesmo que os antepassados disseram.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,251,'Dizem: "Quando morrermos e formos pó e ossos, seremos ressuscitados?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,251,'"Com efeito, foi-nos prometido isso, a nós e, antes, a nossos pais; isso não são senão fábulas dos antepassados!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,251,'Dize, Muhammad: "De quem é a terra e quem nela existe, se sabeis?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,251,'Dirão: "De Allah." Dize: "Então, não meditais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,251,'Dize: "Quem é O Senhor dos sete céus e O Senhor do Trono?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,251,'Dirão: "Allah." Dize: "Então, não temeis a Allah?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,251,'Dize: "Quem tem em Suas mãos o reino de todas as cousas, e Quem a todos protege e não precisa de ser protegido, se sabeis?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,251,'Dirão: "Allah." Dize: "Então, como vos deixais enfeitiçar?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,251,'Mas chegamo-lhes com a verdade e, por certo, são mentirosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,251,'Allah não tomou para Si filho algum, e não há com Ele deus algum; nesse caso, cada deus haver-se-ia ido com o que criara, e alguns deles se haveriam sublimado em arrogância, sobre outros. Glorificado seja Allah, acima do que alegam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,251,'Ele é O Sabedor do invisível e do visível; então, Sublimado seja Ele, acima do que idolatram!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,251,'Dize, Muhammad: "Senhor meu! Se me fazes ver o que lhes é prometido,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,251,'"Senhor meu, então, não me faças estar entre o povo injusto."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,251,'E, por certo, somos Poderoso para fazer-te ver o que lhes prometemos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,251,'Revida o mal com o que é melhor. Nós somos bem Sabedor do que alegam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,251,'E dize: "Senhor meu! Refugio-me em Ti, contra as incitações dos demônios,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,251,'"E refugio-me em Ti, Senhor meu, para que eles me não sejam presentes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,251,'E os renegadores da Fé permanecerão descrentes, até que, quando a morte chegar a um deles, dirá: "Senhor meu! Fazei-me voltar à terra,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,3,251,'"Na esperança de eu fazer o bem, no que tange ao que negligenciei." Em absoluto, não o farei. Por certo, será uma palavra vã, que estará dizendo. E, adiante deles, haverá uma barreira até um dia, em que eles ressuscitarão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,3,251,'E, quando se soprar na Trombeta, não haverá parentesco entre eles, nesse dia, nem se interrogarão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,3,251,'Então, aqueles, cujos pesos em boas obras forem pesados, esses serão os bem-aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,3,251,'E aqueles, cujos pesos forem leves, esses se perderão a
+si mesmos, serão eternos na Geena.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,3,251,'O Fogo queimar-lhes-á as faces e, nele, ficarão tenebrosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,3,251,'Dir-se-lhes-á: "Meus versículos não se recitavam para vós e vós os desmentíeis?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,3,251,'Dirão: "Senhor nosso! Nossa infelicidade dominou-nos, e fomos um povo descaminhado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,3,251,'"Senhor nosso! Faze-nos sair dele e se reincidirmos, seremos injustos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,3,251,'Ele dirá: "Sede nele repelidos, e não Me faleis mais!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,3,251,'"Por certo, houve um grupo de Meus servos que dizia:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,3,251,'"E vós tomaste-los por objeto de escárnio, até que vos fizeram esquecer Minha Mensagem, e deles vos ríeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,3,251,'"Por certo, recompensei-os, hoje - porque pacientaram - com serem eles os triunfadores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,3,251,'Ele dirá: "Quantos anos vós permanecestes na terra?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,3,251,'Dirão: "Permanecemos um dia ou parte de um dia; então, pergunta aos enumeradores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,3,251,'Ele dirá: "Não permanecestes senão por pouco tempo. Se soubésseis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,3,251,'"E supusestes que vos criamos, em vão, e que não seríeis retornados a Nós?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,3,251,'Então, Sublimado seja Allah, O Rei, O Verdadeiro! Não existe deus senão Ele. Ele é O Senhor do nobre Trono!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,3,251,'E quem invoca, com Allah, outro deus, do qual não tem provança alguma, seu ajuste de contas será, apenas, junto de seu Senhor. Por certo, os renegadores da Fé não serão bem-aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,3,251,'E dize: "Senhor meu! Perdoa e tem misericórdia, e Tu és O Melhor dos misericordiadores!"');
+INSERT INTO chapters (id, number, quran_id) VALUES(252,24,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,252,'Esta é uma Sura: fizemo-la descer e preceituamo-la, e, nela, fizemos descer evidentes versículos, para meditardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,252,'À adúltera e ao adúltero açoitai a cada um deles com cem açoites. E que não vos tome compaixão alguma por eles, no cumprimento do juízo de Allah, se credes em Allah e no Derradeiro Dia. E que um grupo de crentes testemunhe o castigo de ambos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,252,'O adúltero não esposará senão uma adúltera ou uma idólatra. E a adúltera, não a esposará senão um adúltero ou um idólatra. E isso é proibido aos crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,252,'E aos que acusam de adultério as castas mulheres, em seguida, não fazem vir quatro testemunhas, açoitai-os com oitenta açoites e, jamais, lhes aceiteis testemunho algum; e esses são os perversos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,252,'Exceto os que, depois disso, se voltam arrependidos e se emendam; então, por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,252,'E aos que acusam de adultério suas mulheres, e não há para eles testemunhas senão eles mesmos, então, o testemunho de um deles, jurando por Allah, quatro vezes, que é dos verídicos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,252,'E, na quinta vez, que a maldição de Allah seja sobre ele, se é dos mentirosos, afastá-lo-á do castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,252,'E afastá-la-á do castigo o testemunhar ela, quatro vezes, jurando por Allah: "Por certo, ele é dos mentirosos",');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,252,'E, na quinta vez, que a maldição de Allah seja sobre ela, se ele é dos verídicos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,252,'E não fora o favor de Allah para convosco, e sua misericórdia, e que Allah é Remissório, Sábio, haveria apressado o castigo para vós, nesta vida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,252,'Por certo, os que chegaram com a calúnia são um grupo coeso de vós. Não suponhais que ela vos seja um mal. Mas vos é um bem. Para cada um deles, haverá o que cometeu de pecado. E aquele que, dentre eles, se empenhou em ampliá-la, terá formidável castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,252,'Que, tão logo a ouvistes, os crentes e as crentes houvessem pensado bem deles como de si mesmos, e houvessem dito: "Esta é uma evidente infâmia!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,252,'Que houvessem chegado com quatro testemunhas disso! Então, se não chegaram com as testemunhas, esses são, perante Allah, os mentirosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,252,'E não fora o favor de Allah para convosco e Sua misericórdia, na vida terrena e na Derradeira Vida, haver-vos-ia tocado um formidável castigo por aquilo que vos empenhastes em propalar,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,252,'Quando o difundistes com as línguas e dissestes com as bocas aquilo de que não tínheis ciência, e supúnheis simples, enquanto, perante Allah, era formidável.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,252,'E que, tão logo a ouvistes, houvésseis dito: "Não nos é admissível falarmos disso. Glorificado sejas! Isto é formidável infâmia!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,252,'Allah exorta-vos a jamais reincidirdes em algo igual a isso, se sois crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,252,'E Allah torna evidentes, para vós, os versículos. E Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,252,'Por certo, os que amam que a obscenidade se dissemine, entre os que crêem, terão doloroso castigo na vida terrena e na Derradeira Vida. E Allah sabe, e vós não sabeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,252,'E não fora o favor de Allah para convosco, e Sua misericórdia, e que Allah é Compassivo, Misericordiador, haveria apressado o castigo para vós.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,252,'Ó vós que credes! Não sigais os passos de Satã. E quem segue os passos de Satã, por certo, ele ordena a obscenidade e o reprovável. E, não fora o favor de Allah para convosco, e Sua misericórdia, Ele jamais dignificaria a nenhum de vós, mas Allah dignifica a quem quer. E Allah é Oniouvinte, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,252,'E que os dotados dentre vós, do favor e da prosperidade, não prestem juramento de nada conceder aos parentes e aos necessitados e aos emigrantes no caminho de Allah. E que eles os indultem e os tolerem. Não amaríeis que Allah vos perdoasse? E Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,252,'Por certo, os que acusam de adultério as mulheres castas, inocentes, crentes, são amaldiçoados na vida terrena e na Derradeira Vida; e, para eles, haverá formidável castigo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,252,'Um dia, em que suas línguas e suas mãos e seus pés testemunharem contra eles, pelo que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,252,'Nesse dia, Allah compensá-los-á com sua verdadeira retribuição, e saberão que Allah é a evidente Verdade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,252,'As malignas mulheres para os malignos homens, e os malignos homens para as malignas mulheres. E as benignas mulheres para os benignos homens, e os benignos homens para as benignas mulheres. Esses estão inocentes do que dizem aqueles. Haverá, para eles, perdão e generoso sustento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,252,'Ó vós que credes! Não entreis em casas outras que as vossas, até que peçais permissão e cumprimenteis seus habitantes. Isso vos é melhor, e Allah assim determinou, para meditardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,252,'E, se ninguém encontrais nelas, não entreis nelas, até que volo seja permitido. E, se vos é dito: "Retornai", retornai. Isso vos é mais digno. E Allah, do que fazeis, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,252,'Não há culpa sobre vós, em entrardes em casas não residenciais em que há proveito, para vós. E Allah sabe o que mostrais e o que ocultais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,252,'Dize aos crentes, Muhammad, que baixem suas vistas e custodiem seu sexo. Isso lhes é mais digno. Por certo, Allah é Conhecedor do que fazem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,252,'E dize às crentes que baixem suas vistas e custodiem seu sexo e não mostrem seus ornamentos - exceto o que deles aparece - e que estendam seus cendais sobre seus decotes. E não mostrem seus ornamentos senão a seus maridos ou a seus pais ou aos pais de seus maridos ou a seus filhos ou aos filhos de seus maridos ou a seus irmãos ou aos filhos de seus irmãos ou aos filhos de suas irmãs ou a suas mulheres ou aos escravos que elas possuem ou aos domésticos, dentre os homens, privados de desejo carnal, ou às crianças que não descobriram ainda as partes pudendas das mulheres. E que elas não batam, com os pés no chão, para que se conheça o que escondem de seus ornamentos. E voltai-vos todos, arrependidos, para Allah, ó crentes, na esperança de serdes bem-aventurados!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,252,'E casai os solteiros, dentre vós, e os íntegros, dentre vossos servos e vossas servas. Se são pobres, Allah enriquecê-los-á de Seu favor. E Allah é Munificente, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,252,'E que os que não encontram meios para o casamento se abstenham de adultério, até que Allah os enriqueça de Seu favor. E àqueles de vossos escravos, que buscam a alforria, mediante pagamento de uma soma, então, ajudai-os, se reconheceis neles algum bem. E concedei-lhes das riquezas de Allah, que Ele vos concedeu. E não deveis compelir vossas escravas à prostituição – se elas desejam a castidade – para buscardes os efêmeros bens da vida terrena. E quem as compele, por certo, Allah, após sua compulsão, é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,252,'E, com efeito, fizemos descer, para vós, evidentes versículos e um exemplo dos que passaram antes de vós e uma exortação para os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,252,'Allah é a luz dos céus e da terra. O exemplo de Sua luz é como o de um nicho, em que há uma lâmpada. A lâmpada está em um cristal. O cristal é como se fora astro brilhante. É aceso pelo óleo de uma bendita árvore olívea, nem de leste nem de oeste; seu óleo quase se ilumina, ainda que o não toque fogo algum. É luz sobre luz. Allah guia a Sua luz a quem quer. E Allah propõe, para os homens, os exemplos. E Allah, de todas as cousas, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,252,'Em casas, que Allah permitiu fossem erguidas e em que fosse celebrado Seu Nome, nelas, glorificam-nO, ao amanhecer e ao entardecer,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,252,'Homens, a quem não entretém nem comércio nem venda da lembrança de Allah e do cumprimento da oração e da concessão de caridade - eles temem um dia, em que os corações e as vistas serão transtornados. -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,252,'Para que Allah os recompense com algo melhor que aquilo que fizeram, e lhes acrescente algo de Seu favor. E Allah dá sustento, sem conta, a quem quer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,252,'E os que renegam a Fé, suas obras são como miragem em uma planície, a qual o sedento supõe água, até que, quando chega a ela, nada encontra. E, encontra a Allah junto dela; então, Ele compensá-lo-á com ajuste de contas. E Allah é Destro no ajuste de contas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,252,'Ou são como trevas em um mar profundo: encobrem-no ondas, por cima das quais, há outras ondas; por cima destas, há nuvens; trevas, umas por cima das outras. Quando alguém faz sair sua mão quase não a vê. E aquele, a quem Allah não faz luz jamais terá luz.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,252,'Não viste que a Allah glorifica quem está nos céus e na terra, e os pássaros, enquanto pairam no ar? Cada um, com efeito, sabe sua oração e sua glorificação. E Allah, do que fazem, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,252,'E de Allah é a soberania dos céus e da terra. E a Allah será o destino.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,252,'Não viste que Allah impulsa as nuvens; em seguida, junta-as; depois, fá-las um aglomerado? Então, tu vês a chuva sair de dentro delas. E do céu, de montanhas nele formadas de nuvens, Ele faz descer granizo e, com este alcança a quem quer e o desvia de quem quer. O fulgor de seu relâmpago quase se vai com as vistas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,252,'Allah faz alternar o dia e a noite. Por certo, há nisso lição para os dotados de visão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,252,'E Allah criou todo ser animal de água. Então, dentre eles, há quem ande sobre o ventre e, dentre eles, há quem ande sobre dois pés, e dentre eles, há quem ande sobre quatro. Allah cria o que quer. Por certo, Allah sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,252,'Com efeito, fizemos descer evidentes versículos. E Allah guia a quem quer a uma senda reta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,252,'E eles dizem: "Cremos em Allah e no Mensageiro, e obedecemos." Em seguida, depois disso, um grupo deles volta as costas. E esses não são os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,252,'E, quando convocados a Allah e a Seu Mensageiro, para que este julgue, entre eles, eis um grupo deles que lhe dá de ombros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,252,'E, se tivessem o direito, chegariam a ele resignados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,252,'Há enfermidade, em seus corações? Ou eles duvidam? Ou temem que Allah e Seu Mensageiro sejam iníquos com eles? Não! Mas, estes são os injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,252,'O dito dos crentes, quando convocados a Allah e a Seu Mensageiro, para que este julgue, entre eles é, apenas, dizerem: "Ouvimos e obedecemos." E esses são os bem-aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,252,'E quem obedece a Allah e a Seu Mensageiro e receia a Allah e a Ele teme, esses são os triunfadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,252,'E eles juram, por Allah, com todos seus mais solenes juramentos, que, se tu os ordenares a combater, sairão a combate. Dize: "Não jureis". Vossa obediência é conhecida. Por certo, Allah, do que fazeis, é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,252,'Dize: "Obedecei a Allah e obedecei ao Mensageiro." E, se voltais as costas, impende a ele, apenas, o de que foi encarregado, e impende a vós o de que fostes encarregados. E, se lhe obedeceis, guiar-vos-eis. E não impende ao Mensageiro senão a evidente transmissão da Mensagem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,252,'Allah promete aos que, dentre vós, crêem e fazem as boas obras que os fará suceder, na terra, como fez suceder aos que foram antes deles, e que lhes fortalecerá a religião, de que Se agrada, no tocante a eles, e que lhes trocará segurança, após seu medo. Eles Me adorarão, nada Me associarão. E quem renega a Fé, depois disso, esses são os perversos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,252,'E cumpri a oração e concedei az-zakãh, a ajuda caridosa, e obedecei ao Mensageiro, na esperança de obterdes misericórdia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,252,'Não suponhas que os que renegam a Fé sejam capazes de escapar do castigo de Allah, na terra. E sua morada será o Fogo. E, em verdade, que execrável destino!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,252,'Ó vós que credes! Que vos peçam permissão, por três vezes, vossos escravos e aqueles, dentre vós, que ainda, não chegaram à puberdade, para estar em vossa presença; antes da oração da aurora e quando puserdes de lado vossos trajes, ao meio-dia e depois da última oração da noite. São três tempos de vossa intimidade. Não há culpa sobre vós nem sobre eles, depois destes tempos, em circular, sem permissão, uns de vós com os outros. Assim, Allah torna evidentes, para vós, os versículos. E Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,252,'E, quando as crianças, dentre vós, atingirem a puberdade, que peçam permissão para estar em vossa presença, como pediram permissão os que foram antes delas. Assim, Allah torna evidentes, para vós. Seus versículos. E Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,252,'E as mulheres que atingirem a menopausa, e que não mais esperam casamento, não há culpa sobre elas, em porem de lado algo de seus trajes, sem se exibirem com ornamentos. E absterem-se disso é-lhes melhor. E Allah é Oniouvinte, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,252,'Não há falta sobre o cego e não há falta sobre o coxo e não há falta sobre o enfermo nem sobre vós mesmos, em comerdes em vossas casas, ou nas casas de vossos pais, ou nas casas de vossas mães, ou nas casas de vossos irmãos, ou nas casas de vossas irmãs, ou nas casas de vossos tios paternos, ou nas casas de vossas tias paternas, ou nas casas de vossos tios maternos, ou nas casas de vossas tias maternas, ou em casas, cujas chaves possuís, ou nas de vossos amigos. Não há culpa sobre vós, em comerdes reunidos ou separados. E, quando entrardes em casas, cumprimentai-vos mutuamente, com saudação vinda de Allah, bendita e cordial. Assim, Allah torna evidentes, para vós, os versículos, para razoardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,252,'Os autênticos crentes são, apenas, os que crêem em Allah e em Seu Mensageiro e, quando estão com ele, em assunto de interesse comum, não se vão, até que lhe peçam permissão. Por certo, os que te pedem permissão, esses são os que crêem em Allah e em Seu Mensageiro. Então, quando te pedirem permissão para algum de seus assuntos, dá permissão a quem deles quiseres e implora a Allah perdão para eles. Por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,252,'Não façais, entre vós, a convocação do Mensageiro, como a convocação de um de vós para outros. E não vos retireis de sua companhia, sem sua permissão. Com efeito, Allah sabe dos que, dentre vós, se retiram sorrateiramente. Então, que os que discrepam de sua ordem se precatem de que não os alcance provação ou não os alcance doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,252,'Ora, por certo, de Allah é o que há nos céus e na terra. Com efeito, Ele sabe aquilo em que vos fundamentais; e, um dia, quando a Ele forem retornados, então, informá-los-á do que fizeram. E Allah, de todas as cousas, é Onisciente.');
+INSERT INTO chapters (id, number, quran_id) VALUES(253,25,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,253,'Bendito Aquele Que fez descer o Critério sobre Seu Servo, para que seja admoestador dos mundos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,253,'Aquele de Quem é a soberania dos céus e da terra, e Que não tomou filho algum, e para Quem não há parceiro, na soberania, e Que criou todas as cousas e determinou-as na justa medida!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,253,'E eles tomam, além d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,253,'E os que renegam a Fé dizem: "Este não é senão mentira, que ele forjou e, nisso, outras pessoas ajudaram". Então, com efeito, cometeram injustiça e falsidade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,253,'E dizem: "São fábulas dos antepassados, que ele pediu fossem escritas; e elas lhe são ditadas, ao amanhecer e ao entardecer."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,253,'Dize, Muhammad: "Fê-lo descer Aquele Que sabe os segredos nos céus e na terra. Por certo, Ele é Perdoador, Misericordiador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,253,'E dizem: "Por que razão este Mensageiro come o mesmo alimento e anda pelos mercados, como nós? Que se fizesse descer um anjo, para ele e, com ele, fosse admoestador!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,253,'"Ou que se lhe lançasse um tesouro, ou que houvesse, para ele, um jardim, de que pudesse comer". E os injustos dizem: "Vós não seguis senão um homem enfeitiçado!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,253,'Olha, como engendram semelhantes a ti, e se descaminham! Então, não poderão encontrar caminho algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,253,'Bendito Aquele Que, se quiser, te fará algo melhor que tudo isso: jardins, abaixo dos quais correm os rios; e te fará palácios!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,253,'Mas eles desmentem a Hora; e preparamos, para os que desmentem a Hora, um Fogo ardente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,253,'Quando este os vir, de longínquo lugar, já eles lhe ouvirão o furor e o rumor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,253,'E, quando lançados nele, em angusto lugar, as mãos amarradas atrás do pescoço, lá suplicarão uma aniquilação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,253,'Dir-se-lhes-á: "Não supliqueis, hoje, uma só aniquilação e suplicai muitas aniquilações!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,253,'Dize: "Isso é melhor ou o Paraíso da eternidade, que é prometido aos piedosos? Ser-lhes-á recompensa e destino.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,253,'"Terão, nele, o que quiserem, sendo eternos. Isso impende a teu Senhor, como promessa exigível."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,253,'E lembra-lhes de que, um dia, os reuniremos, eles e aos que adoram, além de Allah; então, Ele dirá: "Descaminhastes estes Meus servos, ou eles mesmos se descaminharam do caminho?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,253,'Eles dirão: "Glorificado sejas! Não nos é concebível tomarmos, além de Ti, protetores, mas Tu os fizeste gozar e a seus pais, até que esqueceram a Mensagem e foram um povo extraviado."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,253,'Dir-se-á aos idólatras: "E, com efeito, eles vos desmentem no que dizeis; então, não podereis obter nem isenção do castigo nem socorro." E a quem de vós é injusto, fá-lo-emos experimentar grande castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,253,'E não enviamos, antes de ti, Mensageiros, sem que, por certo, comessem o mesmo alimento e andassem pelos mercados. E fazemos de uns de vós provação para os outros. Então, vós pacientais? E teu Senhor é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,253,'E os que não esperam Nosso encontro dizem: "Que se faça descer os anjos sobre nós, ou que vejamos a nosso Senhor!" Com efeito, eles se ensoberbecem, em seu âmago, e cometem, desmesuradamente, grande arrogância.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,253,'Um dia, quando eles virem os anjos, nesse dia, não haverá alvíssaras para os criminosos, e os anjos dirão: "É, terminantemente vedado ir para o Paraíso."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,253,'E referir-nos-emos às obras que fizeram, e fá-las-emos partículas dispersas no ar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,253,'Os companheiros do Paraíso, nesse dia, serão os melhores em residência, e estarão em mais belo lugar de repouso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,253,'E um dia, o céu se fenderá, com as nuvens, e se fará descer os anjos, com descida de realidade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,253,'Nesse dia, a verdadeira soberania será dO Misericordioso. E será um dia difícil para os renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,253,'E um dia, o injusto morderá as mãos, dizendo: "Quem dera houvesse eu tomado caminho com o Mensageiro!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,253,'"Ai de mim! Quem dera não houvesse eu tomado fulano por amigo!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,253,'"Com efeito, ele me descaminhou da Mensagem, após ela haver-me chegado. E Satã é pérfido para com o ser humano!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,253,'E o Mensageiro dirá: "Ó Senhor meu! Por certo, meu povo tomou este Alcorão por objeto de abandono!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,253,'E, assim, fizemos, para cada profeta, um inimigo dentre os criminosos. E basta teu Senhor por Guia e Socorredor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,253,'E os que renegam a Fé dizem: "Que houvesse descido sobre ele o Alcorão, de uma só vez!" Fragmentamo-lo assim, para com ele, te tornarmos firme o coração. E fizemo-lo ser recitado paulatinamente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,253,'E eles não te chegam com exemplo algum, sem que cheguemos a ti com a verdade e a melhor interpretação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,253,'Os que forem reunidos, sendo arrastados sobre as faces à Geena, esses serão na pior situação e os mais descaminhados do caminho certo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,253,'E, com efeito, concedemos a Moisés o Livro e fizemos de seu irmão Aarão, vizir, assistente, junto dele.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,253,'E dissemos: "Ide ambos ao povo que desmentiu Nossos sinais." Então, destruímo-lo totalmente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,253,'E ao povo de Noé, quando desmentiu os Mensageiros, afogamo-lo e fizemo-lo um sinal para os humanos. E preparamos para os injustos doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,253,'E menciona o povo de Ãd e Thamud e o povo de Rass (um lugar) e muitas gerações entre esses.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,253,'E, para cada um deles, propomos os exemplos, e a cada um esmagamos, rudemente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,253,'E, com efeito, eles passaram pela cidade, sobre a qual se fez chover a chuva do mal. Então, não a viram? Mas eles não esperam Ressurreição alguma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,253,'E, quando te vêem, não te tomam senão por objeto de zombaria, e dizem: "É este quem Allah enviou por Mensageiro?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,253,'"Por certo, ele quase nos descaminhara de nossos deuses, não houvéssemos sido perseverantes com o culto deles." E saberão, quando virem o castigo, quem está mais descaminhado;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,253,'Viste aquele que toma por deus sua paixão? Então, és tu, sobre ele, patrono?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,253,'Ou tu supões que a maioria deles ouve ou razoa? Eles não são senão como os rebanhos, aliás, mais descaminhados, em caminho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,253,'Não viste teu Senhor, como estende a sombra? E, se quisesse, fá-la-ia imóvel. Em seguida, Nós fazemos do sol um indicador dela;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,253,'Em seguida, recolhemo-la, suavemente, para junto de Nós.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,253,'E Ele é Quem vos faz da noite vestimenta, e do sono, descanso, e faz do dia volta à vida ativa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,253,'E Ele é Quem envia o vento, como alvissareiro, adiante de Sua misericórdia. E do céu fazemos descer água pura.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,253,'Para com ela vivificar uma plaga morta, e darmos de beber, dentre o que criamos, a muitos rebanhos e humanos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,253,'E, com efeito, repartimo-la entre eles, para meditarem; então, a maioria dos homens a tudo recusou, exceto à ingratidão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,253,'E, se quiséssemos, haveríamos enviado a cada cidade um admoestador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,253,'Então, não obedeças aos renegadores da Fé, Muhammad, e, com ele luta contra eles, vigorosamente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,253,'E Ele é Quem desenleou os dois mares este é doce, sápido, e aquele é salso, amargo. E fez, entre ambos, uma barreira e terminante proibição de sua mescla.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,253,'E Ele é Quem cria da água um ser humano e faz dele parentes sangüíneos e parentes afins. E teu Senhor é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,253,'E eles adoram, além de Allah, o que não os beneficia nem os prejudica. E o renegador da Fé é coadjutor de Satã contra seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,253,'E não te enviamos senão por alvissareiro e admoestador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,253,'Dize: "Não vos peço prêmio algum por ele, a não ser a crença de quem quer tomar caminho para seu Senhor."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,253,'E confia nO Vivente, Que jamais morrerá, e glorifica-O, com louvor. E basta Ele por Conhecedor dos pecados de Seus servos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,253,'Ele é Quem criou os céus e a terra e o que há entre ambos, em seis dias; em seguida, estabeleceu-Se no Trono. Ele é O Misericordioso; então, pergunta, acerca dEle, a um conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,253,'E, quando se Ihes diz: "Prosternai-vos diante dO Misericordioso", dizem: "O que é O Misericordioso? Prosternar-nos-emos diante do que nos ordenas?" E isso lhes acrescenta repulsa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,253,'Bendito Quem fez constelações, no céu, e nele, fez um luzeiro e uma lua luminosa!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,253,'E Ele é Quem fez a noite e o dia alternados, para quem deseja meditar ou deseja agradecer a Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,253,'E os servos dO Misericordioso são os que andam, mansamente, sobre a terra e, quando os ignorantes se dirigem a eles, dizem: "Salam!","Paz!";');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,253,'E os que passam a noite prosternando-se, diante de seu Senhor, e orando de pé;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,253,'E os que dizem: "Senhor nosso! Desvia de nós o castigo de Geena. Por certo, seu castigo é perpétuo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,253,'"Por certo, que vil residência e lugar de permanecer é ela!";');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,253,'E os que, quando despendem seus bens, não os esbanjam nem restringem, mas seu dispêndio está entre isso, ajustado;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,253,'E os que não invocam, junto de Allah, outro deus, e não matam a alma que Allah proibiu matar, exceto se com justa razão, e não adulteram; e quem faz isso encontrará punição;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,253,'O castigo duplicar-se-lhe-á, no Dia da Ressurreição e, nele, permanecerá, eternamente, aviltado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,253,'Exceto quem se volta arrependido e crê e faz o bem; então, a esses, Allah trocar-lhes-á as más obras em boas obras. E Allah é Perdoador, Misericordiador,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,253,'E quem se volta arrependido e faz o bem, por certo, ele se volta para Allah, arrependido, perfeitamente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,253,'E os que não prestam falso testemunho e, quando passam junto da frivolidade, passam nobremente;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,253,'E os que, quando são lembrados dos versículos de seu Senhor, não permanecem desatentos a eles, como surdos, cegos;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,253,'E os que dizem: "Senhor nosso! Dadiva-nos, da parte de nossas mulheres e de nossa descendência, com alegre frescor nos olhos e faze-nos guia para os piedosos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,253,'Esses serão recompensados com a câmara etérea, porque pacientaram; e, nele, ser-lhe-ão conferidas saudações e paz.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,253,'Lá, serão eternos. Que bela residência e lugar de permanecer!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,253,'Dize, Muhammad: "Meu Senhor não se importaria convosco, não fora vossa súplica. E, com efeito, desmentistes o Mensageiro; então, ser-vos-á imposto o castigo."');
+INSERT INTO chapters (id, number, quran_id) VALUES(254,26,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,254,'Ta, Sin, Mim.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,254,'Esses são os versículos do explícito Livro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,254,'Talvez te consume de pesar, Muhammad, por não serem eles crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,254,'Se quiséssemos, haver-lhes-iámos feito descer, do céu, um sinal; então, as cervizes permanecer-Ihes-iam rendidas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,254,'E não lhes chega nenhuma Mensagem renovada dO Misericordioso, sem que lhe dêem de ombros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,254,'E, com efeito, desmentem-na; então, chegar-lhes-ão informes daquilo de que zombavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,254,'E não viram eles a terra, quanto fazemos germinar, nela, todos os casais de plantas preciosas?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,254,'Por certo, há nisso um sinal. Mas a maioria deles não é crente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,254,'E, por certo, teu Senhor é O Todo-Poderoso, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,254,'E lembra-lhes de quando teu Senhor chamou a Moisés: "Vai ao povo injusto,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,254,'O povo de Faraó. Não temem eles a Allah?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,254,'Disse: "Senhor meu, por certo, temo que me desmintam."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,254,'"E meu peito constrange-se e minha língua não se solta. Então, envia a Aarão, para que este me secunde."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,254,'"E eles têm, contra mim, a acusação de um delito; então, temo que me matem."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,254,'Allah disse: "Em absoluto, não te matarão. Então, ide ambos com Nossos sinais. Por certo, estaremos convosco, ouvindo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,254,'"E chegai a Faraó e dizei:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,254,'');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,254,'Faraó disse: "Não te cuidamos, junto de nós, enquanto eras bem criança, e não permaneceste, junto de nós, alguns anos de tua vida?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,254,'"E fizeste teu feito que fizeste, e tu és dos ingratos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,254,'Moisés disse: "Fi-lo, então, enquanto eu era dos descaminhados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,254,'"E fugi de vós, quando vos temi; então, meu Senhor dadivou-me com sabedoria e fez-me dos Mensageiros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,254,'"E esta é uma graça – que me cobras - o haveres escravizado os filhos de Israel?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,254,'Faraó disse: "E o que é O Senhor dos mundos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,254,'Moisés disse: "O Senhor dos céus e da terra e do que há entre ambos, se estais convictos disso."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,254,'Faraó disse aos que estavam a seu redor: "Não ouvis o que ele diz?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,254,'Moisés disse: "Vosso Senhor é O Senhor de vossos pais antepassados!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,254,'Faraó disse: "Por certo, vosso mensageiro, que vos foi enviado, é louco!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,254,'Moisés disse: "O Senhor do Levante e do Poente e do que há entre ambos, se razoais."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,254,'Faraó disse: "Em verdade, se tomas deus outro que não seja eu, far-te-ei dos prisioneiros."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,254,'Moisés disse: "E ainda que eu te chegue com algo evidente?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,254,'Faraó disse: "Faze-o vir, pois, se és dos verídicos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,254,'Então, Moisés lançou sua vara, e ei-la evidente serpente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,254,'E tirou sua mão e ei-la alva para os olhadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,254,'Faraó disse aos dignitários a seu redor: "Por certo, este é um mágico sapiente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,254,'"Que deseja fazer-vos sair de vossa terra, com sua magia: Então, que ordenais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,254,'Disseram: "Pretere-o e a seu irmão, e envia congregantes às cidades."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,254,'"Eles far-te-ão vir todo mágico sapiente"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,254,'Então, os mágicos foram juntados em um tempo marcado de dia determinado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,254,'E foi dito aos homens: "Estareis juntos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,254,'Para que sigamos os mágicos, se forem os vencedores?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,254,'E, quando os mágicos chegaram a Faraó, disseram: "Por certo, teremos um prêmio, se formos nós os vencedores?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,254,'Faraó disse: "Sim, e, por certo, estareis entre os achegados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,254,'Moisés disse-lhes: "Lançai o que tendes para lançar"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,254,'Então, lançaram suas cordas e suas varas e disseram: "Pelo poder de Faraó, seremos, por certo, os vencedores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,254,'E Moisés lançou sua vara; e ei-la que engoliu o que forjaram.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,254,'Então, os mágicos caíram, prosternando-se.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,254,'Disseram: "Cremos no Senhor dos mundos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,254,'"O Senhor de Moisés e Aarão!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,254,'Faraó disse: "Credes nele, antes de eu vo-lo permitir? Por certo, ele é vosso mestre, que vos ensinou a magia. Então, logo sabereis! Em verdade, cortar-vos-ei as mãos e as pernas, de lados opostos, e crucificar-vos-ei a todos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,254,'Disseram: "Mal algum! Por certo, seremos tornados a nosso Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,254,'"Por certo, aspiramos a que nosso Senhor nos perdoe os erros, porque somos os primeiros dos crentes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,254,'E inspiramos a Moisés: "Parte, durante a noite, com Meus servos; por certo, sereis perseguidos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,254,'Então, Faraó enviou congregantes às cidades,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,254,'Que diziam: "Por certo, esses são um bando pouco numeroso,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,254,'"E, por certo, eles nos põem rancorosos,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,254,'"E, por certo, deles, todos nos precatamos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,254,'Então, Nós os fizemos sair de jardins e fontes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,254,'E os fizemos abandonar tesouros e nobre lugar de permanência.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,254,'Assim foi. E fizemos que os filhos de Israel os herdassem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,254,'E, ao nascer do sol, eles perseguiram-nos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,254,'E, quando se depararam as duas multidões, os companheiros de Moisés disseram: "Por certo, seremos atingidos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,254,'Ele disse: "Em absoluto não o seremos! Por certo, meu Senhor é comigo; Ele me guiará."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,254,'E inspiramos a Moisés: "Bate no mar com tua vara." Então, este se fendeu; e cada divisão se tornou como a formidável montanha.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,254,'E, lá, fizemos aproximar os outros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,254,'E salvamos a Moisés e a quem estava com ele, a todos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,254,'Em seguida, afogamos os outros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,254,'Por certo, há nisso um sinal. Mas a maioria deles não é crente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,254,'E, por certo, teu Senhor é O Todo-Poderoso, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,254,'E recita, para eles, o informe de Abraão,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,254,'Quando disse a seu pai e a seu povo: "Que adorais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,254,'Disseram: "Adoramos ídolos; então, a eles permanecemos cultuando."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,254,'Disse: "Eles ouvem-vos, quando os invocais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,254,'"Ou vos beneficiam ou vos prejudicam?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,254,'Disseram: "Não! Mas encontramos nossos pais fazendo assim."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,254,'Disse: "E vistes o que adorais,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,254,'"Vós e vossos antigos pais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,254,'"Então, por certo, são de mim inimigos, exceto O Senhor dos mundos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,254,'Quem me criou; e é Ele Quem me guia;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,254,'E Quem me alimenta e me dá de beber;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,254,'E, quando adoeço, é Ele Quem me cura;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,254,'E Quem me dará a morte, em seguida, me dará a vida,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,254,'E a Quem aspiro o erro, no Dia do Juízo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,254,'"Senhor meu! Dadiva-me com sabedoria e ajunta-me aos íntegros;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,254,'E faze-me menção verídica, na posteridade;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,254,'E faze-me dos herdeiros do Jardim da Delícia;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,254,'E perdoa a meu pai: por certo, ele é dos descaminhados;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,254,'E não me ignominies, um dia, quando forem ressuscitados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,254,'Um dia, quando a ninguém beneficiarem nem riquezas nem filhos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,254,'Exceto a quem chegar a Allah, com coração imaculado."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,254,'E se fizer aproximar-se o Paraíso aos piedosos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,254,'E se fizer expor-se o Inferno aos desviados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,254,'E se lhes disser: "Onde estão os que vós adoráveis,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,254,'Além de Allah? Socorrem-vos ou se socorrem a si mesmos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,254,'Então, serão nele empuxados: eles e os desviados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,254,'E os partidários de Satã, todos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,254,'Dirão, enquanto, nele, disputarem:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,254,'"Por Allah! Estávamos, por certo, em evidente descaminho,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,254,'Quando vos igualávamos aO Senhor dos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,254,'E não nos descaminharam senão os criminosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,3,254,'Então, não temos intercessores,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,3,254,'Nem amigo íntimo algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,3,254,'E, se tivéssemos retorno à vida, seríamos dos crentes!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,3,254,'Por certo, há nisso um sinal. Mas a maioria deles não é crente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,3,254,'E, por certo, teu Senhor é O Todo-Poderoso, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,3,254,'O povo de Noé desmentiu aos Mensageiros,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,3,254,'Quando seu irmão Noé lhes disse: "Não temeis a Allah?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,3,254,'"Por certo, sou-vos leal Mensageiro:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,3,254,'Então, temei a Allah e obedecei-me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,3,254,'"E não vos peço prêmio algum por isso. Meu prêmio não impende senão aO Senhor dos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,3,254,'Então, temei a Allah e obedecei-me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,3,254,'Disseram: "Creremos em ti, enquanto somente os mais ignóbeis te seguem?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,3,254,'Disse: "E que sei eu acerca do que faziam?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,3,254,'"Seu ajuste de contas não impende senão a meu Senhor, se percebeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,3,254,'"E não vou repulsar os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,3,254,'"Não sou senão evidente admoestador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,3,254,'Disseram: "Ó Noé! Se não te abstiveres disso, em verdade, serás dos apedrejados!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,3,254,'Ele disse: "Senhor meu! Por certo, meu povo desmentiu-me."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,3,254,'"Então, sentencia entre mim e ele, claramente, e salva-me e a quem, dos crentes, está comigo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,3,254,'Então, salvamo-lo e a quem estava com ele, no barco repleto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,3,254,'Em seguida, depois disso, afogamos os remanescentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,3,254,'Por certo, há nisso um sinal. Mas a maioria deles não é crente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,3,254,'E, por certo, teu Senhor é O Todo-Poderoso, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,3,254,'O povo de Ad desmentiu aos Mensageiros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,3,254,'Quando seu irmão Hud lhes disse: "Não temeis a Allah?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,3,254,'"Por certo, sou-vos leal Mensageiro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,3,254,'"Então, temei a Allah e obedecei-me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,3,254,'E não vos peço prêmio algum por isso. Meu prêmio não impende senão aO Senhor dos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,3,254,'"Edificais, em cada lugar alto, um monumento para frivolidade?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,3,254,'"E ergueis fortificações, na esperança de serdes eternos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,3,254,'"E, quando desferis golpes, vós os fazeis como tiranos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,3,254,'Então, temei a Allah e obedecei-me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,3,254,'"E temei a Quem vos concedeu o que sabeis,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,3,254,'"Concedeu-vos rebanhos e filhos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,3,254,'"E jardins e fontes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,3,254,'"Por certo, temo, por vós, o castigo de um terrível dia."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,3,254,'Disseram: "É-nos igual que nos exortes ou que não sejas dos exortadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,3,254,'"Isto não é senão costume dos antepassados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,3,254,'"E não seremos castigados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,3,254,'E desmentiram-no; então, aniquilamo-los. Por certo, há nisso um sinal. Mas a maioria deles não é crente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,3,254,'E, por certo, teu Senhor é O Todo-Poderoso, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,3,254,'O povo de Thamud desmentiu aos Mensageiros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,3,254,'Quando seu irmão Salih lhes disse: "Não temeis a Allah?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,3,254,'"Por certo, sou-vos leal Mensageiro:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,3,254,'Então, temei a Allah e obedecei-me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,3,254,'E não vos peço prêmio algum por isso. Meu prêmio não impende senão aO Senhor dos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,3,254,'"Julgais que sereis deixados seguros, no que há aqui?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,3,254,'"Entre Jardins e fontes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,3,254,'"E searas e tamareiras de espatas com frutos maduros?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,3,254,'"E escavando, habilidosos, casas nas montanhas?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,3,254,'"Então, temei a Allah e obedecei-me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,3,254,'"E não obedeçais às ordens dos entregues a excessos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,3,254,'"Os que semeam a corrupção na terra, e não a reformam".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,3,254,'Disseram: "Tu és, apenas, dos enfeitiçados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,3,254,'"Tu não és senão um ser humano como nós. Então, faze vir um sinal se és dos verídicos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,3,254,'Disse: "Este é um camelo fêmea: haverá, para ele, uma porção de bebida; e haverá, para vós, uma porção de bebida em dia determinado."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,3,254,'"E não o toqueis com mal algum; pois, apanhar-vos-ia o castigo de um terrível dia."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,3,254,'Mas abateram-no e tornaram-se arrependidos!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,3,254,'Então, o castigo apanhou-os. Por certo, há nisso um sinal. Mas a maioria deles não é crente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,3,254,'E, por certo, teu Senhor é O Todo-Poderoso, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,3,254,'O povo de Lot desmentiu aos Mensageiros,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,3,254,'Quando seu irmão Lot lhes disse: "Não temeis a Allah?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,3,254,'"Por certo, sou-vos leal Mensageiro:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,3,254,'Então, temei a Allah e obedecei-me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,3,254,'E não vos peço prêmio algum por isso. Meu prêmio não impende senão aO Senhor dos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,3,254,'"Vós vos achegais aos varões deste mundo?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,3,254,'"E deixais vossas mulheres, que vosso Senhor criou para vós? Mas, sois um povo agressor".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,3,254,'Disseram: "Em verdade, se não te abstiveres disso, serás dos expulsos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,3,254,'Disse: "Por certo, sou dos adversos de vossos atos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,3,254,'"Senhor meu! Salva-me e a minha família do que fazem."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,3,254,'Então, salvamo-lo e a sua família, a todos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,3,254,'Exceto uma anciã, dentre os que ficaram para trás.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,3,254,'Em seguida, profligamos os outros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,3,254,'E fizemos cair, sobre eles, chuva: então, que vil a chuva dos que foram admoestados!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,3,254,'Por certo, há nisso um sinal. Mas a maioria deles não é crente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,3,254,'E, por certo, teu Senhor é O Todo-Poderoso, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,3,254,'Os habitantes de Al-Aikah (o povo do profeta Chuaib) desmentiram aos Mensageiros');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,3,254,'Quando Chuaib lhes disse: "Não temeis a Allah?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,3,254,'"Por certo, sou-vos leal Mensageiro:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,3,254,'Então, temei a Allah e obedecei-me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,3,254,'E não vos peço prêmio algum por isso. Meu prêmio não impende senão aO Senhor dos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,3,254,'Completai a medida, e não sejas dos fraudadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,3,254,'E pesai tudo, com total eqüidade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(183,3,254,'E não subtraiais dos homens suas cousas e não semeeis a maldade na terra, sendo corruptores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(184,3,254,'E temeis a Quem vos criou, vós e as gerações antepassadas"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(185,3,254,'Disseram: "Tu és, apenas, dos enfeitiçados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(186,3,254,'"E tu não és senão um ser humano como nós, e, por certo, pensamos que és dos mentirosos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(187,3,254,'"Então, faze cair sobre nós pedaços do céu, se és dos verídicos!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(188,3,254,'Disse: "Meu Senhor é bem Sabedor do que fazeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(189,3,254,'E desmentiram-no; então, o castigo do dia do dossel apanhou-os. Por certo, foi castigo de um terrível dia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(190,3,254,'Por certo, há nisso um sinal. Mas a maioria deles não é crente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(191,3,254,'E, por certo, teu Senhor é O Todo-Poderoso, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(192,3,254,'E, por certo, ele é a revelação descida do Senhor dos mundos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(193,3,254,'"Com a qual o leal Espírito desceu."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(194,3,254,'Sobre teu coração, Muhammad, para que sejas dos admoestadores,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(195,3,254,'Em língua árabe, castiça e clara.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(196,3,254,'E, por certo, ele está mencionado nos Livros dos antepassados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(197,3,254,'E não Ihes é um sinal que os sábios dos filhos de Israel o conheçam?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(198,3,254,'E, se houvéssemos feito descer sobre um dos forâneos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(199,3,254,'E ele Ihos houvesse lido, não estariam crendo nele.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(200,3,254,'Assim, também, Nós o introduzimos nos corações dos criminosos;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(201,3,254,'Eles não crerão nele, até verem o doloroso castigo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(202,3,254,'Chegar-lhes-á, pois, inopinadamente, enquanto não percebam;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(203,3,254,'Então, dirão: "Ser-nos-á concedida dilação?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(204,3,254,'E querem eles apressar Nosso castigo?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(205,3,254,'Então, viste? Se os fizermos gozar, durante anos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(206,3,254,'Em seguida, chegar-lhes o que lhes foi prometido,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(207,3,254,'Não lhes valerá em nada o que gozavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(208,3,254,'E não aniquilamos cidade alguma, sem que ela houvesse tido admoestadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(209,3,254,'À guisa de lembrança. E nunca somos injusto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(210,3,254,'E não são os demônios que o trouxeram:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(211,3,254,'E isso não lhes caberia, e jamais poderiam fazê-lo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(212,3,254,'Por certo, eles estão apartados do ouvir o que se fala no céu.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(213,3,254,'Então, não invoques, junto de Allah, outro deus: pois, serias dos castigados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(214,3,254,'E admoesta teus familiares, os mais próximos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(215,3,254,'E baixa tua asa aos que te seguirem, entre os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(216,3,254,'E, se eles te desobedecem, dize: "Por certo, estou em rompimento com o que fazeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(217,3,254,'E confia nO Todo-Poderoso, nO Misericordiador,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(218,3,254,'Que te vê quando te levantas, para orar,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(219,3,254,'E vê tuas gesticulações entre os que se prosternam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(220,3,254,'Por certo, Ele é O Oniouvinte, O Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(221,3,254,'Informar-vos-ei daquele sobre quem os demônios descem?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(222,3,254,'Eles descem sobre todo impostor, pecador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(223,3,254,'Dão outiva aos demônios, e sua maioria é mentirosa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(224,3,254,'E aos poetas, seguem-nos os desviados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(225,3,254,'- Não viste que eles vagueiam por todos os vales,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(226,3,254,'E que dizem o que não fazem? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(227,3,254,'Exceto os que crêem e fazem as boas obras e se lembram, amiúde, de Allah e se defendem, após haverem sofrido injustiça. E os que são injustos saberão qual tornada a que tornarão!');
+INSERT INTO chapters (id, number, quran_id) VALUES(255,27,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,255,'Ta, Sin. Esses são os versículos do Alcorão e explícito Livro,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,255,'É orientação e alvíssaras para os crentes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,255,'Que cumprem a oração e concedem a caridade e se convencem da Derradeira Vida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,255,'Por certo, aos que não crêem na Derradeira Vida, aformoseamo-Ihes as obras; então, caminham às cegas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,255,'Esses são os que terão o pior castigo, e serão os mais perdedores na Derradeira Vida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,255,'E, por certo, a ti, Muhammad, é conferido o Alcorão, da parte de Um Sábio, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,255,'Lembra-lhes de, quando Moisés disse a sua família: "Por certo, entrevejo um fogo; far-vos-ei vir dele notícia ou vos farei vir um tição, para vos aquecerdes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,255,'E, quando ele lhe chegou, chamaram-no: "Bendito quem está no fogo e quem está a seu redor! E Glorificado seja Allah, O Senhor dos mundos!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,255,'"Ó Moisés! Por certo, Eu, Eu sou Allah, O Todo-Poderoso, O Sábio."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,255,'"E lança tua vara." Então, quando a viu mover-se como se fora cobra, voltou as costas, fugindo, e não volveu atrás. Allah disse: "Ó Moisés! Não te atemorizes. Por certo, junto de Mim, os Mensageiros não se atemorizam."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,255,'"Mas para quem é injusto, em seguida, troca em bem o mal, por certo sou Perdoador, Misericordiador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,255,'"E faze entrar tua mão na abertura de teu peitilho, ela sairá alva, sem mal algum. Isto está entre os nove sinais para Faraó e seu povo. Por certo, são um povo perverso."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,255,'Então, quando Nossos claros sinais lhes chegaram, disseram: "Isto é evidente magia!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,255,'E negaram-nos, injusta e soberbamente, enquanto suas almas se convenciam deles. Então, olha como foi o fim dos corruptores!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,255,'E, com efeito, concedemos ciência a Davi e a Salomão. E disseram ambos: "Louvor a Allah, que nos preferiu a muitos de Seus servos crentes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,255,'E Salomão foi herdeiro de Davi. E disse: "Ó humanos! Foi-nos ensinada a linguagem dos pássaros e foi-nos concedido algo de todas as cousas. Por certo, este é o evidente favor."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,255,'E reuniu-se a Salomão seu exército de jinns e de humanos e de pássaros, e coordenaram-se,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,255,'Até que, ao chegarem ao vale das formigas, uma formiga disse: "Ó formigas! Entrai em vossos formigueiros, a fim de que vos não esmaguem Salomão e seu exército, enquanto não percebam."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,255,'Então, Salomão sorriu, prazeroso, admirado de seu dito, e disse: "Senhor meu! Induze-me a agradecer-Te a graça, com que me agraciaste e a meus pais, e a fazer o bem que Te agrade, e faz-me entrar, com Tua misericórdia, para junto de Teus servos íntegros."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,255,'E passou em revista os pássaros. Então, disse: "Por que razão não vejo a poupa? Ou será ela dos ausentes?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,255,'"Em verdade, fá-la-ei sofrer veemente castigo ou a degolarei, a menos que me faça vir evidente comprovação."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,255,'Mas ela não tardou muito, e disse: "Abarquei aquilo que não abarcaste, e chego a ti, de Saba com informe certo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,255,'"Por certo, encontrei uma mulher reinando sobre eles e a ela foi concedido algo de todas as cousas e tem magnífico trono."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,255,'"Encontrei-a e a seu povo prosternando-se diante do sol em vez de Allah. E Satã aformoseou-Ihes as obras e afastou-os do caminho reto; então, não se guiam."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,255,'"Afastou-os, para que se não prosternassem diante de Allah, quem faz sair o recôndito nos céus e na terra, e sabe o que escondeis e o que manifestais."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,255,'"Allah, não existe deus senão Ele, O Senhor do magnífico Trono!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,255,'Salomão disse: "Olharemos se disseste a verdade ou se és dos mentirosos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,255,'"Vai com esta minha missiva, e lança-lhas; em seguida, volta-lhes as costas, e olha o que farão retornar."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,255,'A rainha disse: "Ó dignitários! Por certo, uma nobre missiva foi-me lançada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,255,'"Por certo, é de Salomão. E, por certo, assim é:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,255,'');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,255,'Ela disse: "Ó dignitários! Instruí-me a respeito de meu assunto. Jamais decidi a respeito de assunto algum sem que o testemunhásseis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,255,'Disseram: "Somos dotados de força e dotados de veemente fúria, mas de ti é a ordem. Então, olha o que ordenas."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,255,'Ela disse: "Por certo, os reis, quando entram em uma cidade, corrompem-na, e fazem aviltados os mais poderosos de seus habitantes. E, assim, fazem."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,255,'"E, por certo, estou-lhes enviando um presente e olharei com que os emissários retornarão."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,255,'E, quando a delegação chegou a Salomão, ele disse: "Quereis conceder-me riquezas? Ao passo que o que Allah me concedeu é melhor que aquilo que Ele vos concedeu. Mas vós jubilais com vosso presente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,255,'"Retorna a eles. E em verdade, chegar-lhes-emos com exército, que não poderão enfrentar, e os faremos sair dela, aviltados, e humilhados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,255,'Ele disse: "Ó dignitários! Quem de vós me fará vir seu trono, antes que me cheguem como muçulmanos, submissos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,255,'Um dos mais poderosos dos jinns disse: "Eu to farei vir, antes que te levantes de teu lugar. E, por certo, para isso, sou forte, leal."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,255,'Aquele que tinha ciência do Livro disse: "Eu to farei vir, num piscar de olhos." E, quando ele o viu estabelecido, junto de si, disse: "Isso é algo do favor de meu Senhor, para que me ponha à prova se Lhe agradeço ou sou ingrato. E quem Lhe agradece, apenas agradece em benefício de si mesmo. E quem é ingrato, por certo, Allah é Bastante a Si mesmo, Ele é Generoso."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,255,'Ele disse ainda: "Desfigurai-Ihe o trono: olharemos se ela se guia, ou é dos que não se guiam."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,255,'E, quando ela chegou, disseram-lhe: "Assim é teu trono?" Ela disse: "É como se o fora." Salomão disse: "E, a nós, foi-nos concedida a ciência, antes dela, e somos muçulmanos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,255,'E o que ela adorava em vez de Allah afastou-a do caminho reto. Por certo, ela era de um povo renegador da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,255,'Disseram-lhe: "Entra no palácio." E, quando ela o viu, supô-lo um manto d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,255,'E, com efeito, enviamos ao povo de Thamud seu irmão Sãlih. Ele disse: "Adorai a Allah." Então, ei-los divididos em dois grupos, que disputavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,255,'Disse: "Ó meu povo! Por que apressais o mal antes do bem? Que imploreis o perdão a Allah, para obter misericórdia!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,255,'Disseram: "Pressentimos mau agouro por causa de ti e de quem está contigo." Disse: "Vosso agouro é junto de Allah. Mas, sois um povo que está sendo provado."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,255,'E havia, na cidade, um agrupamento de nove homens, que semeavam a corrupção na terra, e não a reformavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,255,'Disseram: "Jurai, por Allah, que, à noite, de sobressalto, o mataremos e a sua família; em seguida, diremos a seu herdeiro:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,255,'E usaram de estratagemas, e Nós usamos de estratagemas. E eles não perceberam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,255,'Então, olha como foi o fim de seus estratagemas! Aniquilamo-los, e a seu povo, a todos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,255,'E essas suas casas estão desertas, porque eles foram injustos. Por certo, há nisso um sinal para um povo que sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,255,'E salvamos os que crêem e foram piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,255,'E lembra-lhes de Lot, quando disse a seu povo: "Vós vos achegais à obscenidade, enquanto a enxergais claramente?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,255,'"Por certo, vós vos achegais aos homens por lascívia, em vez de às mulheres! Sois, aliás, um povo ignorante."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,255,'E a resposta de seu povo não foi senão dizer: "Fazei-os sair de vossa cidade, a família de Lot. Por certo, são pessoas que se pretendem puras"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,255,'Então, salvamo-lo e a sua família, exceto sua mulher. Determinamos que ela seria dos que ficariam para trás.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,255,'E fizemos cair, sobre eles, chuva: então, que vil a chuva dos que foram admoestados!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,255,'Dize: "Louvor a Allah, e que a paz seja sobre Seus servos, que Ele escolheu! Qual é Melhor: Allah ou o que eles idolatram?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,255,'"Não é Ele Quem criou os céus e a terra e vos fez descer do céu água e, com ela, fazemos brotar pomares, plenos de viço, cujas árvores não vos é possível fazerdes brotar? Há outro deus junto de Allah? Não. Mas eles são um povo que equipara outros a Allah."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,255,'"Não é Ele Quem fez da terra um lugar de morar, e fez, através dela, rios, e fez-lhe assentes montanhas, e fez barreira entre os dois mares? Há outro deus junto de Allah? Não. Mas a maioria deles não sabe."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,255,'"Não é Ele Quem atende o infortunado, quando este O invoca, e remove o mal e vos faz sucessores, na terra? Há outro deus junto de Allah? Quão pouco meditais!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,255,'"Não é Ele Quem vos guia nas trevas da terra e do mar, e Quem envia o vento, como alvissareiro, adiante de Sua misericórdia? Há outro deus junto de Allah? Sublimado seja Allah, acima do que idolatram."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,255,'"Não é Ele Quem inicia a criação, em seguida, a repete? E quem vos dá sustento do céu e da terra? Há outro deus junto de Allah?" Dize: "Trazei vossas provanças se sois verídicos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,255,'Dize: "Ninguém daqueles que estão nos céus e na terra conhece ao Invisível, exceto Allah." E eles não percebem quando serão ressuscitados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,255,'Mas sua ciência acerca da Derradeira Vida incorporou-se. Aliás, eles estão em dúvida, a respeito dela. Ou antes, a respeito dela, estão cegos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,255,'E os que renegam a Fé dizem: "Será que quando formos pó, seremos ressuscitados, nós e nossos pais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,255,'Com efeito, foi-nos prometido isso, a nós e, antes, a nossos pais; isso não são senão fábulas dos antepassados!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,255,'Dize: "Caminhai, na terra; em seguida, olhai como foi o fim dos criminosos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,255,'E não te entristeças por eles, e não tenhas constrangimento, pelo estratagema de que usam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,255,'E dizem: "Quando será o cumprimento desta promessa, se sois verídicos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,255,'Dize: "Quiçá algo do que apressais se vos aproxime."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,255,'E, por certo, teu Senhor é Obsequioso para com os homens, mas a maioria deles não agradece.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,255,'E, por certo, teu Senhor sabe o que seus peitos ocultam, e o que manifestam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,255,'E nada há de recôndito, no céu e na terra, que não esteja no evidente Livro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,255,'Por certo, este Alcorão narra aos filhos de Israel a maioria daquilo de que discrepam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,255,'E, por certo, é orientação e misericórdia para os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,255,'Por certo, teu senhor arbitrará, entre eles, com Seu julgamento. E Ele é O Todo-Poderoso, O Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,255,'Então, confia em Allah. Por certo, tu estás fundado sobre a evidente Verdade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,255,'Por certo, não podes fazer ouvir aos mortos nem podes fazer ouvir aos surdos a convocação, quando voltam as costas, fugindo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,255,'E não podes guiar os cegos, desviando-os de seu descaminho. Não podes fazer ouvir senão a quem crê em Nossos sinais, pois são muçulmanos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,255,'E, quando o Dito se cumprir sobre eles, far-lhes-emos sair uma besta da terra, que lhes falará que os humanos não se convenciam de Nossos sinais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,255,'E um dia, reuniremos, de cada comunidade, uma turba dos que desmentem Nossos sinais, e coordenar-se-ão,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,255,'Até que, quando eles chegarem ao Ajuste de Contas, Allah dirá: "Desmentistes Meus sinais, enquanto não os abarcastes, em ciência? Ou, que fazíeis?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,255,'E o Dito cumprir-se-á sobre eles, porque foram injustos; então, nada pronunciarão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,255,'Não viram que fizemos escura a noite, para nela repousarem, e o dia, claro? Por certo, há nisso sinais para um povo que crê.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,255,'E um dia, se soprará na Trombeta; então, aterrorizar-se-á quem estiver nos céus e quem estiver na terra, exceto aquele a quem Allah quiser. E todos a Ele chegarão, humildes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,255,'E tu vês as montanhas: tu as supões imóveis, enquanto passam do mesmo modo que as nuvens. É a obra de Allah, Quem aperfeiçoou todas as cousas. Por certo, Ele é Conhecedor do que fazeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,255,'Quem chega com a boa ação terá algo melhor que esta. E estarão em segurança contra o terror desse dia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,255,'E quem chega com a má ação, suas faces serão empuxadas no Fogo. E dir-se-Ihes-á: "Não sois recompensados senão pelo que fazíeis?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,255,'Dize: "Apenas, foi-me ordenado adorar aO Senhor desta Cidade, que Ele santificou; e d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,255,'"E recitar o Alcorão." Então, quem se guia, se guiará apenas, em benefício de si mesmo. E a quem se descaminha, dize: "por certo não sou mais do que um dos admoestadores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,255,'E dize: "Louvor a Allah! Far-vos-á ver Seus sinais, e vos reconhecê-los-eis." E teu Senhor não está desatento ao que fazeis.');
+INSERT INTO chapters (id, number, quran_id) VALUES(256,28,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,256,'Ta, Sin, Mim.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,256,'Esses são os versículos do explícito Livro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,256,'Recitamos, para ti, com a verdade, algo da história de Moisés e Faraó, para beneficiar um povo que crê.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,256,'Por certo, Faraó sublimou-se em arrogância, na terra, e fez seus habitantes divididos em seitas, subjugando uma facção deles, degolando seus filhos e deixando vivas suas mulheres. Por certo, ele era dos corruptores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,256,'E Nós desejamos fazer mercê para os que foram subjugados, na terra, e fazê-los próceres e fazê-los os herdeiros do reino de Faraó,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,256,'E empossá-los, na terra, e fazer ver a Faraó e a Haman e a seus exércitos aquilo de que se precatavam, acerca deles.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,256,'E inspiramos à mãe de Moisés: "Amamenta-o. E, quando temeres por ele, lança-o na onda, e não temas, e não te entristeças. Por certo, devolver-to-emos e fá-lo-emos dos Mensageiros."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,256,'Então, a família de Faraó recolheu-o, para que lhes fosse inimigo e tristeza. Por certo, Faraó e Haman e seus exércitos estavam errados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,256,'E a mulher de Faraó disse: "Ele é, para mim e para ti, alegre frescor dos olhos. Não o mateis. Quiçá nos beneficie, ou o tomemos por filho." E não perceberam o que iria ocorrer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,256,'E o coração da mãe de Moisés amanheceu vazio. Por certo, quase o haveria mostrado, não lhe houvéssemos revigorado o coração, para que fosse dos crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,256,'E ela disse à irmã dele: "Encalça-o." Então, esta o enxergava, de longe, enquanto não percebiam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,256,'E, antes, proibimo-lhe as amas-de-leite; então, ela disse: "Quereis vos indique uma família de uma casa, a qual cuidará dele, para vós, e com ele será cautelosa?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,256,'Assim, devolvemo-lo a sua mãe, para que se lhe refrescassem os olhos de alegria e para que ela não se entristecesse e soubesse que a promessa de Allah é verdadeira; mas a maioria deles não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,256,'E, quando ele atingiu a sua força plena, e amadureceu, concedemo-lhe sabedoria e ciência. E assim, recompensamos os benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,256,'E entrou na cidade, em momento de desatenção de seus habitantes, e nela, encontrou dois homens que se combatiam: este, de sua seita, e aquele, de seus inimigos. Então, aquele de sua seita pediu-lhe socorrimento contra aquele de seus inimigos; e Moisés esmurrou-o, e pôs-lhe termo à vida. Moisés disse: "Isto é da ação de Satã. Por certo, ele é inimigo declarado, desencaminhador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,256,'Ele disse: "Senhor meu! Por certo, fui injusto comigo mesmo; então, perdoa-me." E Ele o perdoou. Por certo, Ele é O Perdoador, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,256,'Ele disse: "Senhor meu! Por aquilo com que me agraciaste, não serei coadjutor dos criminosos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,256,'E ele amanheceu, na cidade, temeroso, ficando à espreita, e eis aquele que, na véspera, lhe pedira o socorro, gritou, para que lhe valesse. Moisés disse-lhe: "Por certo, és evidente sedutor!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,256,'E quando desejou desferir golpes contra o que era inimigo de ambos, este disse: "Ó Moisés! Desejas matar-me, como mataste, ontem uma pessoa? Não desejas senão ser tirano na terra, e não desejas ser dos reformadores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,256,'E um homem chegou, do extremo da cidade, correndo. Ele disse: "Ó Moisés! Por certo, os dignitários deliberam sobre ti, para matar-te; então, sai da cidade. Por certo, sou-te dos conselheiros."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,256,'Então, ele saiu dela, temeroso, ficando à espreita. Ele disse: "Senhor meu! Salva-me do povo injusto."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,256,'E, quando se dirigiu rumo a Madian, disse: "Quiçá, meu Senhor me guie ao caminho direito."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,256,'E, quando chegou ao poço de água de Madian, encontrou, junto dele, uma multidão de homens, que abeberava os rebanhos, e encontrou, um pouco distante deles, duas mulheres, que retinham os seus. Ele disse: "Qual é vosso intuito?" Ambas disseram: "Não abeberaremos nossos rebanhos, até que os pastores partam com os seus, e nosso pai é bastante idoso."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,256,'Então, ele abeberou os rebanhos, para elas; em seguida, retirou-se à sombra, e disse: "Senhor meu! Por certo, estou necessitado do que fizeste descer de bom, para mim."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,256,'Em seguida, uma das duas mulheres chegou-lhe andando com recato. Disse: "Por certo, meu pai te convoca, para recompensar-te com o prêmio de haveres abeberado os rebanhos, por nós." E, quando chegou a ele e lhe narrou a narrativa, aquele disse: "Nada temas! Salvaste-te do povo injusto."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,256,'Uma das duas disse: "Ó meu pai! Emprega-o. Por certo, o melhor dos que empregares é o forte, o leal."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,256,'Ele disse: "Por certo, desejo esposarte com uma destas minhas duas filhas, com a condição de me servires por oito anos. E se completares dez, sê-lo-á por tua conta. E nada desejo dificultar-te. Se Allah quiser, encontrar-me-ás dos íntegros."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,256,'Moisés disse: "Isso fica entre mim e ti. Seja qual for dos dois termos que eu cumprir, nada de transgressão, contra mim. E Allah, sobre o que dizemos, é Patrono."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,256,'Então, quando Moisés encerrou o termo e partiu com sua família, entreviu um fogo do lado do Monte. Ele disse a sua família: "Permanecei, aqui - por certo, entrevejo um fogo - na esperança de fazer-vos vir dele uma notícia, ou um lenho aceso, para vos aquecerdes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,256,'E, quando chegou a ele, chamaram-no, do lado direito do vale, na região bendita da árvore: "Ó Moisés! Por certo, Eu, Eu sou Allah, O Senhor dos mundos,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,256,'"E lança tua vara." E, quando a viu mover-se, como se fora cobra, voltou as costas, fugindo, e não volveu atrás. Ele disse: "Ó Moisés! Vem, e não te atemorizes. Por certo, tu és dos que estão em segurança."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,256,'"Introduze tua mão na abertura de teu peitilho, ela sairá alva, sem mal algum, e junta a ti tua mão, para te guardares do medo. Então, estas são duas provanças de teu Senhor para Faraó e seus dignitários. Por certo, eles são um povo perverso."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,256,'Moisés disse: "Senhor meu! Por certo matei um homem deles; então, temo que me matem."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,256,'"E meu irmão Aarão, ele é mais eloqüente que eu, em linguagem; então, envia-o comigo, por adjutor, que me confirmará as palavras. Por certo, temo que me desmintam."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,256,'Allah disse: "Fortalecer-te-emos o braço com teu irmão e far-vos-emos ter poder; então, não chegarão até vós. Com Nossos sinais, vós ambos e quem vos seguir sereis os vencedores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,256,'E quando Moisés lhes chegou, com Nossos evidentes sinais, disseram: "Isto não é senão magia forjada! E jamais ouvimos algo disso, entre nossos pais antepassados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,256,'E Moisés disse: "Meu Senhor é bem Sabedor de quem chega com a orientação de Sua parte e de quem tem o final feliz da Derradeira Morada. Por certo, os injustos não serão bem-aventurados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,256,'E Faraó disse: "Ó dignitários! Não conheço, para vós, nenhum outro deus que não seja eu; então, acende-me o fogo, ó Hamam, sob o barro! E faze-me uma torre, na esperança de que eu possa subir até O Deus de Moisés; e, por certo, penso que ele é dos mentirosos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,256,'E ele se ensoberbeceu sem razão, na terra, ele e seu exército, e pensaram que a Nós não seriam retornados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,256,'Então, apanhamo-lo e a seu exército, e deitamo-los fora, na onda. Olha, pois, como foi o fim dos injustos!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,256,'E fizemo-los próceres, convocando os homens ao Fogo. E, no Dia da Ressurreição, não serão socorridos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,256,'E fizemo-los perseguidos, na vida terrena, por maldição. E, no Dia da Ressurreição, serão dos ascorosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,256,'E, com efeito, concedemos a Moisés o Livro - depois de havermos aniquilado as primeiras gerações - como clarividências para os humanos e orientação e misericórdia, para meditarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,256,'E não estavas, Muhammad, no lado oeste do Monte Sinai, quando decretamos a Moisés a Ordem, e não foste das testemunhas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,256,'Mas fizemos surgir gerações, cuja idade prolongou-se. E tu não moravas com os habitantes de Madian, para recitar Nossos versículos, para eles, mas Nós que enviamos os Mensageiros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,256,'E não estavas ao lado do Monte At-Tur, quando chamamos a Moisés, mas és enviado como misericórdia de teu Senhor, a fim de admoestares um povo - ao qual não chegou admoestador algum, antes de ti - para meditarem,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,256,'E, se uma desgraça os alcançava pelo que suas mãos anteciparam, eles diriam: "Senhor nosso! Se nos houvesses enviado um Mensageiro; haveríamos seguido teus versículos e seríamos dos crentes!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,256,'Mas agora, quando lhes chega a verdade de Nossa parte, dizem: "Que Ihe fosse concedido algo igual ao que foi concedido a Moisés!" E não renegaram o que fora concedido, antes, a Moisés? Dizem: "São duas magias que se auxiliam!" E dizem: "Por certo, somos renegadores de cada uma delas."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,256,'Dize: "Então, fazei vir um livro, da parte de Allah, o qual seja melhor guia que ambos, e eu o seguirei, se sois verídicos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,256,'E, se te não atendem, sabe então, que o que eles seguem são suas paixões. E quem mais descaminhado que aquele que segue a própria paixão, sem orientação alguma de Allah? Por certo, Allah não guia o povo injusto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,256,'E, com efeito, fizemos chegar-lhes, sucessivamente, o Dito, O Alcorão, para meditarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,256,'Aqueles aos quais concedêramos o Livro, antes deste, neste crêem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,256,'E, quando recitado, para eles, dizem: "Cremos nele: por certo, é a Verdade de nosso Senhor; por certo, éramos, antes dele, Muçulmanos".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,256,'A esses, conceder-se-lhes-á o prêmio, duas vezes, porque pacientam e revidam o mal com o bem e despendem do que lhes damos por sustento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,256,'E, quando ouvem frivolidades, dão-lhes de ombros, e dizem: "A nós, nossas obras, e a vós, vossas obras. Que a paz seja sobre vós! Não buscamos a companhia dos ignorantes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,256,'Por certo, tu, Muhammad, não podes guiar a quem quer que ames mas Allah guia a quem quer. E Ele é bem Sabedor dos que são guiados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,256,'E eles dizem: "Se seguimos a orientação contigo, arrebatar-nos-ão de nossa terra." E não os empossamos em um Santuário seguro, para o qual se levam frutos de toda espécie, como sustento de Nossa parte? Mas a maioria deles não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,256,'E que de cidades aniquilamos, que foram ingratas com sua vida. E eis suas vivendas que não foram habitadas, depois deles, senão um pouco. E Nós somos O Herdeiro deles.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,256,'E não é admissível que teu Senhor estivesse aniquilando as cidades, sem antes, haver enviado a sua metrópole um Mensageiro, que recitasse Nossos versículos para eles. E não é admissível que estivéssemos aniquilando as cidades, sem que seus habitantes fossem injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,256,'E o que quer que vos seja concedido é, apenas, gozo da vida terrena e seu ornamento. E o que está junto de Allah é melhor e mais permanente. Então, não razoais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,256,'E, será que aquele a quem prometemos bela promessa - e com ela encontrará - é como aquele a quem fizemos gozar gozo da vida terrena, em seguida, no Dia da Ressurreição, será dos trazidos ao Fogo?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,256,'E um dia, Ele os chamará e dirá: "Onde estão Meus parceiros, que vós pretendíeis serem deuses?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,256,'Aqueles contra quem se cumprirá o Dito, dirão: "Senhor nosso! São estes os que transviamos; transviamo-los como nós nos transviamos. Rompemos com eles, perante Ti. Eles a nós não adoravam."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,256,'E dir-se-lhes-á: "Convocai vossos ídolos." E eles os convocarão, mas não lhes atenderão, e verão o castigo. Se houvessem sido guiados!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,256,'E um dia, Ele os chamará e dirá: "Que respondestes aos Mensageiros?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,256,'E, nesse dia, confundir-se-Ihes-ão os informes, e eles não se interrogarão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,256,'Então, quanto a quem se voltou arrependido e creu e fez o bem, quiçá, seja ele dos bem-aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,256,'E teu Senhor cria o que quer, e escolhe o que quer. Não é admissível que a escolha seja deles. Glorificado e Sublimado seja Allah, acima do que idolatram!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,256,'E teu Senhor sabe o que seus peitos ocultam e o que manifestam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,256,'E Ele é Allah: não existe deus senão Ele, dEle é o Louvor, na primeira vida e na Derradeira. E dEle é o julgamento. E a Ele sereis retornados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,256,'Dize: "Vistes? Se Allah fizesse a noite perpétua sobre vós, até o Dia da Ressurreição, que outro deus que Allah vos faria chegar luminosidade? Então, não ouvis?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,256,'Dize: "Vistes? Se Allah fizesse o dia perpétuo sobre vós, até o Dia da Ressurreição, que outro deus que Allah vos faria chegar uma noite, em que repousásseis? Então, não o enxergais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,256,'E, de Sua misericórdia, Ele fez-vos a noite e o dia, para, naquela, repousardes, e para, neste, buscardes algo de Seu favor, e para serdes agradecidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,256,'E um dia, Ele os chamará e dirá: "Onde estão Meus parceiros, que vós pretendíeis serem deuses?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,256,'E tiraremos, de cada nação, uma testemunha, e diremos: "Trazei vossas provanças." Então, eles saberão que a Verdade é de Allah. E o que forjavam sumirá, para longe deles.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,256,'Por certo, Qarun era do povo de Moisés, e cometeu transgressão contra eles - e concedêramo-lhe, dos tesouros, aquilo cujas chaves extenuam um coeso grupo, dotado de força - quando lhe disse seu povo: "Não te jactes de teus tesouros. Por certo, Allah não ama os jactanciosos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,256,'"E busca a Derradeira Morada no que Allah te concedeu, e não esqueças tua porção, na vida terrena. E bem-faze, como Allah te bem fez. E não busques semear a corrupção na terra. Por certo, Allah não ama os corruptores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,256,'Ele disse: "Isso me foi concedido, apenas, graças a uma ciência que tenho." E não sabia ele que Allah, de fato, aniquilara, antes dele, gerações, que lhe eram mais veementes em força e mais numerosas? E os criminosos não serão interrogados acerca de seus delitos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,256,'E ele saiu a seu povo, com seus ornamentos. Os que desejavam a vida terrena disseram: "Quem dera houvesse, para nós, algo igual ao que foi concedido a Qarun! Por certo, ele é de magnífica sorte!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,256,'E aqueles, aos quais foi concedida a ciência, disseram: "Ai de vós! A retribuição de Allah é melhor para quem crê e faz o bem. E ela não é conferida senão aos que pacientam."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,256,'Então, fizemos a terra engoli-lo ele e a seu lar; e, não houve, para ele, hoste alguma que o socorresse, em vez de Allah, e ele não foi dos socorridos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,256,'E os que, na véspera, anelaram sua posição, amanheceram dizendo: "Seguramente, Allah prodigaliza o sustento a quem quer, de Seus servos, e restringe-o. Se Allah não nos houvesse feito mercê, haveria feito a terra engolir-nos. Seguramente, os renegadores da Fé não são bem-aventurados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,256,'Essa Derradeira Morada, fá-la-emos para os que não desejam soberba, na terra, nem semear nela a corrupção. E o final feliz será para os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,256,'Quem chega com a boa ação terá algo melhor que esta. E quem chega com a má ação, que ele saiba que os que fazem más ações não serão recompensados senão pelo que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,256,'Por certo, Aquele que preceituou o Alcorão, sobre ti, te devolverá no dia do Juízo. Dize: "Meu Senhor é bem Sabedor de quem chega com a orientação e de quem está em evidente descaminho."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,256,'E tu não esperavas que o Livro te fosse revelado, mas o foi por misericórdia de teu Senhor. Então, não sejas, de modo algum, coadjutor dos renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,256,'E que estes não te afastem dos versículos de Allah, após haverem sido descidos para ti. E invoca a teu Senhor. E não sejas, de modo algum dos idólatras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,256,'E não invoques, com Allah, outro deus. Não existe deus senão Ele. Todas as cousas serão aniquiladas, exceto Sua Face. DEle é o julgamento, e a Ele sereis retornados.');
+INSERT INTO chapters (id, number, quran_id) VALUES(257,29,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,257,'Alif, Lām, Mīm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,257,'Os homens supõem que, por dizerem: "Cremos", serão deixados, enquanto não provados?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,257,'- E, com efeito, provamos os que foram antes deles. E, em verdade, Allah sabe dos que dizem a verdade e sabe dos mentirosos. -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,257,'Ou os que fazem as más obras supõem que se esquivarão de Nós? Que vil o que julgam!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,257,'Quem espera o deparar de Allah, por certo, o termo de Allah chegará. E Ele é O Oniouvinte, O Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,257,'E quem luta, pela causa de Allah, apenas luta em benefício de si mesmo. Por certo, Allah é Bastante a Si mesmo. Prescindindo dos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,257,'E aos que crêem e fazem as boas obras, em verdade, remir-lhes-emos as más obras e recompensá-los-emos com prêmio melhor que aquilo que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,257,'E recomendamos ao ser humano benevolência para com seus pais. E lhe dissemos: "E, se ambos lutam contigo, para que associes a Mim o de que não tens ciência, não lhes obedeças." A Mim, será vosso retorno; então, informar-vos-ei do que fazíeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,257,'E aos que crêem e fazem as boas obras, certamente, fá-los-emos entrar na grei dos íntegros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,257,'E, dentre os homens, há quem diga: "Cremos em Allah"; então, quando molestado, por causa de Allah, considera a provação dos homens como castigo de Allah. E, se uma vitória chega de teu Senhor, dizem: "Por certo, estávamos convosco!" E não é Allah bem Sabedor do que há nos peitos dos mundos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,257,'E, em verdade, Allah sabe dos que crêem; e, em verdade, Allah sabe dos hipócritas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,257,'E os que renegam a Fé dizem aos que crêem: "Segui nosso caminho e, com certeza, carregaremos vossos erros." Mas nada carregarão de seus erros. Por certo, eles são mentirosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,257,'E, em verdade, carregarão seus pesos, e mais pesos com seus pesos . E, em verdade, serão interrogados, no Dia da Ressurreição, acerca do que forjavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,257,'E, com efeito, enviamos Noé a seu povo, e permaneceu, entre eles, um milênio menos cinqüenta anos. E desmentiram-no. Então, o dilúvio apanhou-os, enquanto injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,257,'Então, salvamo-lo, e aos companheiros da nau, e fizemos desta um sinal para os mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,257,'E Abraão, quando disse a seu povo: "Adorai a Allah e temei-O. Isso é melhor, se soubésseis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,257,'"Apenas vós adorais ídolos, em vez de Allah, e inventais mentiras. Por certo, os que adorais, em vez de Allah, não possuem, para vós, sustento algum. Então, buscai, junto de Allah, o sustento, e adorai-O e agradecei-Lhe. A Ele sereis retornados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,257,'"E se me desmentis, com efeito, nações, antes de vós, desmentiram a seus Mensageiros. E não impende ao Mensageiro senão a evidente transmissão da Mensagem."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,257,'E não viram eles como Allah inicia a criação, em seguida, a repete? Por certo, isso é fácil para Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,257,'Dize, Muhammad: "Caminhai, na terra, e olhai como Allah iniciou a criação. Em seguida, Allah fará surgir a última criação. Por certo, Allah, sobre todas as cousas, é Onipotente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,257,'Ele castiga a quem quer e tem misericórdia de quem quer, e a Ele sereis tornados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,257,'E não podeis escapar do castigo de Allah, nem na terra nem no céu. E não tendes, em vez de Allah, nem protetor nem socorredor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,257,'E os que renegam os sinais de Allah e Seu deparar, esses se desesperam de Minha misericórdia. E esses terão doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,257,'E a resposta de seu povo não foi senão dizer: "Matai-o ou queimai-o." Então, Allah salvou-o do fogo. Por certo, há nisso sinais para um povo que crê.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,257,'E Abraão disse: "Apenas, tomastes ídolos em vez de Allah, pela afeição, entre vós, na vida terrena. Em seguida, no Dia da Ressurreição, renegareis uns aos outros e vos amaldiçoareis uns aos outros; e vossa morada será o Fogo; e não tereis socorredores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,257,'Então, Lot creu nele. E ele disse: "Por certo, emigrarei para meu Senhor. Por certo, Ele é O Todo-Poderoso, O Sábio."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,257,'E dadivamo-lo com Isaque e Jacó. E fizemos haver em sua descendência, a profecia e o Livro. E concedemo-lhe sua recompensa, na vida terrena. E, por certo, na Derradeira Vida, ele será dos íntegros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,257,'E Lot, quando disse a seu povo: "Por certo, vós vos achegais à obscenidade, em que ninguém, nos mundos, se vos antecipou?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,257,'"Por certo, vós vos achegais aos homens, por lascívia, e cortais o caminho, e vos achegais ao reprovável, em vossas reuniões." Então, a resposta de seu povo não foi senão dizer: "Faze-nos vir o castigo de Allah, se és dos verídicos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,257,'Ele disse: "Senhor meu! Socorre-me contra o povo corruptor!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,257,'E, quando Nossos Mensageiros chegaram a Abraão, com alvíssaras, disseram: "Por certo, aniquilaremos os habitantes desta cidade. Por certo, seus habitantes são injustos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,257,'Ele disse: "Mas, Lot está nela." Disseram: "Somos bem sabedores de quem está nela. Em verdade, salvá-lo-emos e a sua família, exceto sua mulher. Ela será dos que ficarão para trás."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,257,'E, quando Nossos Mensageiros chegaram a Lot, ele afligiu-se com eles e sentiu-se impotente para defendê-los. E eles disseram: "Não temas, e não te entristeças. Por certo, salvar-te-emos e a tua família, exceto tua mulher: ela será dos que ficarão para trás.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,257,'"Por certo, faremos descer, sobre os habitantes desta cidade, um tormento do céu, pela perversidade que cometiam."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,257,'E, com efeito, dela deixamos evidente sinal, para um povo que razoa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,257,'E enviamos ao povo de Madian seu irmão Chuaib; então ele disse: "Ó meu povo! Adorai a Allah e esperai pelo Derradeiro Dia, e não semeeis a maldade na terra como corruptores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,257,'E eles desmentiram-no; então, o terremoto apanhou-os, e amanheceram, em seus lares, inertes, sem vida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,257,'E aniquilamos o povo de Ãd e Thamud, e isso se tornou evidente para vós, pelas ruínas de suas vivendas. E Satã aformoseara-Ihes as obras, e afastara-os do caminho certo, enquanto eram clarividentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,257,'E aniquilamos Qarun e Faraó e Haman. E, com efeito, Moisés chegou-lhes com as evidências; e eles ensoberbeceram-se na terra, e não puderam esquivar-se de Nosso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,257,'Então, a cada um deles, apanhamos, por seu delito. E, dentre eles, houve aquele contra quem enviamos um vento lastrado de seixos. E, dentre eles, houve aquele a quem o Grito apanhou. E, dentre eles, houve aquele a quem fizemos a terra engolir. E, dentre eles, houve aquele a quem afogamos. E não é admissível que Allah fosse injusto com eles; mas eles foram injustos com si mesmos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,257,'O exemplo dos que tomam protetores em vez de Allah, é como o da aranha, que construiu uma casa para proteger-se. E, por certo, a mais frágil das casas é a casa da aranha. Se soubessem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,257,'Por certo, Allah sabe todas as cousas que eles invocam em vez dEle. E Ele é O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,257,'E esses exemplos, Propomo-los, para os homens; e não os entendem senão os sabedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,257,'Allah criou os céus e a terra, com a verdade. Por certo, há nisso um sinal para os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,257,'Recita, Muhammad, o que te foi revelado do Livro e cumpre a oração. Por certo, a oração coíbe a obscenidade e o reprovável. E, certamente, a lembrança de Allah é maior que isso. E Allah sabe o que engenhais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,257,'E não discutais com os seguidores do Livro senão da melhor maneira - exceto com os que, dentre eles, são injustos - e dizei: "Cremos no que foi descido para nós e no que fora descido para vós; e nosso Deus e vosso Deus é Um só. E para Ele somos submissos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,257,'E, assim, fizemos descer para ti o Livro. Então, aqueles aos quais concedêramos o Livro nele crêem. E, dentre estes, há quem nele creia. E não negam Nossos sinais senão os renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,257,'E, antes dele, tu não recitavas livro algum nem o escrevias com tua destra; nesse caso, os defensores da falsidade haveriam duvidado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,257,'Mas ele é constituído de evidentes versículos encerrados nos peitos daqueles aos quais foi concedida a ciência. E não negam Nossos sinais senão os injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,257,'E eles dizem: "Que se faça descer sobre ele sinais de seu Senhor!" Dize, Muhammad: "Os sinais estão, apenas, junto de Allah, e sou, apenas evidente admoestador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,257,'E não lhes basta que façamos descer, sobre ti, o Livro, que se recita, para eles? Por certo, há nisso misericórdia e lembrança para um povo que crê.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,257,'Dize: "Basta Allah, por testemunha, entre mim e vós. Ele sabe o que há nos céus e na terra. E os que crêem na falsidade e renegam a Allah, esses são os perdedores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,257,'E pedem-te que apresses o castigo. E, não fora um termo designado, haver-lhes-ia chegado o castigo. E, em verdade, chegar-Ihes-á este, inopinadamente, enquanto não percebam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,257,'Pedem-te que apresses o castigo. E, por certo, a Geena estará abarcando os renegadores da Fé,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,257,'Um dia, em que os encobrir o castigo, por cima deles e por baixo de seus pés, e ele disser: "Experimentai o castigo do que fazíeis!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,257,'Ó Meus servos, que credes! Por certo, Minha terra é ampla; e a Mim, então, adorai-Me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,257,'Cada alma experimentará a morte. Em seguida, a Nós sereis retornados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,257,'E aos que crêem e fazem as boas obras, em verdade, dispô-los-emos nas câmaras etéreas do Paraíso, abaixo das quais correm os rios; nelas, serão eternos. Que excelente o prêmio dos laboriosos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,257,'São os que pacientam, e em seu Senhor confiam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,257,'E quantos seres animais não carregam seu sustento! Allah lhes dá sustento e a vós. E Ele é O Oniouvinte, O Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,257,'E, se lhes perguntas: "Quem criou os céus e a terra e submeteu o sol e a lua?", em verdade, dirão: "Allah!" Então, como podem distanciar-se da verdade?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,257,'Allah prodigaliza o sustento a quem quer de Seus servos, e restringe-lho. Por certo, Allah, de todas as cousas, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,257,'E, se lhes perguntas: "Quem faz descer água do céu, e, com ela, vivifica a terra, depois de morta?", em verdade, dirão: "Allah!" Dize: "Louvor a Allah!" Mas a maioria deles não razoa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,257,'E esta vida terrena não é senão entretenimento e diversão. E, por certo, a Derradeira Morada é ela, a Vida. Se soubessem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,257,'Então, quando eles embarcam no barco, invocam a Allah, sendo sinceros com Ele, na devoção. E, quando Ele os traz a salvo à terra, ei-los que idolatram.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,257,'Para renegar o que lhes concedemos. Gozai, pois! Logo, sabereis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,257,'E não viram eles que Nós lhes fizemos um Santuário seguro, enquanto os homens, a seu redor, são arrebatados? Então, crêem eles na falsidade e renegam a graça de Allah?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,257,'E quem mais injusto que aquele que forja mentiras acerca de Allah, ou desmente a verdade, quando esta lhe chega? Não há, na Geena, moradia para os renegadores da Fé?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,257,'E aos que lutam por Nós, certamente, guiá-los-emos a Nossos caminhos. E, por certo, Allah é com os benfeitores.');
+INSERT INTO chapters (id, number, quran_id) VALUES(258,30,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,258,'Alif, Lām, Mīm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,258,'Os Romanos foram vencidos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,258,'Na terra mais próxima. E eles, após sua derrota, vencerão,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,258,'Dentro de alguns anos. De Allah é a ordem, antes e depois. E, nesse dia os crentes jubilarão,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,258,'Com o socorro de Allah. Ele socorre a quem quer. E Ele é O Todo-Poderoso, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,258,'É a promessa de Allah. Allah não falta à Sua promessa, mas a maioria dos homens não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,258,'Eles sabem, apenas, das aparências da vida terrena. E estão desatentos à Derradeira Vida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,258,'E não refletiram eles em si mesmos? Allah não criou os céus e a terra e o que há entre ambos, senão com a verdade e termo designado. E, por certo, muitos dos homens são renegadores do deparar de seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,258,'E não caminharam eles na terra, para olhar como foi o fim dos que foram antes deles? Foram mais veementes que eles em força, e lavraram a terra, e povoaram-na mais que eles a povoaram, e seus Mensageiros chegaram-lhes com as evidências. Mas eles as negavam. Então, não é admissível que Allah fosse injusto com eles, mas eles foram injustos com si mesmos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,258,'Em seguida, o fim dos que praticaram o mal foi o pior, porque desmentiam os sinais de Allah, e deles zombavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,258,'Allah inicia a criação; em seguida, repete-a; depois, a Ele sereis retornados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,258,'E, um dia, quando a Hora advier, os criminosos emudecerão de desespero.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,258,'E não terão intercessores, entre seus ídolos, e serão renegadores de seus ídolos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,258,'E, um dia, quando a Hora advier, nesse dia eles se separarão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,258,'Então, quanto aos que crêem e fazem as boas obras, deliciar-se-ão em horto florido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,258,'E, quanto aos que renegam a Fé e desmentem Nossos sinais e o deparar da Derradeira Vida, esses serão trazidos ao castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,258,'Então, Glorificado seja Allah, quando entrardes no crepúsculo e quando entrardes na aurora!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,258,'E dEle é o Louvor, nos céus e na terra e na noite, e quando entrardes no tempo merídio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,258,'Ele faz sair o vivo do morto e faz sair o morto do vivo, e vivifica a terra, depois de morta. E, assim, far-vos-ão sair dos sepulcros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,258,'E, dentre Seus sinais, está que Ele vos criou de pó; em seguida, ei-vos homens, que vos espalhais pela terra.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,258,'E, dentre Seus sinais, está que Ele criou para vós, mulheres, de vós mesmos, para vos tranquilizardes junto delas, e fez entre vós afeição e misericórdia. Por certo, há nisso sinais para um povo que reflete.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,258,'E, dentre Seus sinais, está a criação dos céus e da terra, e a variedade de vossas línguas e de vossas cores. Por certo, há nisso sinais para os sabedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,258,'E, dentre Seus sinais, está vosso dormir à noite e de dia, e vossa busca de Seu favor. Por certo, há nisso sinais para um povo que ouve.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,258,'E, dentre Seus sinais, está o fazer-vos ver o relâmpago, com temor do raio e aspiração da chuva, e o fazer descer do céu água; então, com ela, vivifica a terra, depois de morta. Por certo, há nisso sinais para um povo que razoa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,258,'E, dentre Seus sinais, está que o céu e a terra se mantêm firmes, por Sua ordem. Em seguida, quando Ele vos convocar, com uma convocação, da terra, ei-vos que dela saireis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,258,'E d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,258,'E Ele é Quem inicia a criação; em seguida, repete-a; e isto Lhe é mais fácil. E dEle é a transcendência absoluta, nos céus e na terra. E Ele é O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,258,'Ele propõe para vós um exemplo tirado de vós mesmos. Tendes, dentre os escravos que possuís, parceiros naquilo que Nós vos damos por sustento, e, nisso, sois iguais, temendo-os como vós vos temeis reciprocamente? Assim, aclaramos os sinais a um povo que razoa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,258,'Mas os que são injustos seguem suas paixões, sem ciência alguma. Então, quem guiará aqueles a quem Allah descaminha? E eles não terão socorredores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,258,'Então, ergue tua face para a religião, sendo monoteísta sincero. Assim é a natureza feita por Allah - segundo a qual Ele criou os homens. Não há alteração na criação de Allah. - Essa é a religião reta, mas a maioria dos homens não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,258,'Voltai-vos contritos para Ele; e temei-O; e cumpri a oração, e não sejais dos idólatras,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,258,'Dos que separaram sua religião, e se dividiram em seitas, jubiloso cada partido com o que tem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,258,'E, quando um infortúnio toca os homens, invocam a seu Senhor, voltando-se contritos para Ele; em seguida, quando Ele os faz experimentar misericórdia vinda dEle, eis um grupo deles que associa ídolos a seu Senhor,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,258,'Para renegar o que lhes concedemos. Gozai, pois! Logo, sabereis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,258,'Será que Nós fizemos descer sobre eles comprovação, e esta lhes fala do que associam a Ele?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,258,'E, quando fazemos experientar aos homens misericórdia, jubilam com ela, e, se os alcança algo de mal, pelo que suas mãos anteciparam, ei-los que se desesperam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,258,'E não viram eles que Allah prodigaliza o sustento a quem quer, e restringe-o? Por certo, há nisso sinais para um povo que crê.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,258,'Então, concede ao parente o que lhe é de direito, e ao necessitado, e ao filho do caminho. Isso é melhor para os que querem a face de Allah. E esses são os bem aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,258,'E o que concedeis, de usura, para acrescentá-lo com as riquezas dos homens, não se acrescentará, junto de Allah. E o que concedeis, de az-zakah, querendo a face de Allah, ser-vos-á multiplicado. Então, esses serão os recompensados em dobro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,258,'Allah é Quem vos criou; e deu-vos sustento; em seguida, dar-vos-á a morte; depois, dar-vos-á a vida. Há, de vossos ídolos, quem faça algo disso? Glorificado e Sublimado seja Ele, acima do que idolatram!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,258,'A corrupção apareceu, na terra e no mar, pelo que as mãos dos homens cometeram, a fim de Ele fazê-los experimentar algo do que fizeram, para retornarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,258,'Dize, Muhammad: "Caminhai na terra e olhai como foi o fim dos que foram antes! A maioria deles era idólatra."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,258,'Então, ergue tua face para a religião reta, antes que chegue um dia, para o qual não haverá revogação de Allah. Nesse dia, eles se dividirão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,258,'Quem renega a Fé, sobre ele pesa sua renegação. E quem faz o bem, esses preparam para si mesmos o caminho do Paraíso,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,258,'Para que Allah recompense os que crêem e fazem as boas obras, com Seu favor. Por certo, Ele não ama os renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,258,'E, dentre Seus sinais, está que Ele envia os ventos por alvissareiros, e isso, para fazer-vos experimentar de Sua misericórdia, e para o barco correr, no mar, por Sua ordem, e para buscardes de Seu favor, e para serdes agradecidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,258,'E, com efeito, enviamos, antes de ti, Mensageiros a seus povos; e chegaram-lhes com as evidências; então, vingamo-Nos dos que foram criminosos. E foi dever, que Nos impendeu, socorrer os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,258,'Allah é Quem envia o vento, e este agita nuvens; então, Ele as estende no céu, como quer, e fá-las em pedaços; e tu vês sair a chuva de dentro delas. E quando Ele alcança, com ela, a quem quer de Seus servos, ei-los que exultam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,258,'E, com efeito, antes de fazê-la descer sobre eles, estavam emudecidos de desespero.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,258,'Então, olha para os vestígios da misericórdia de Allah: como Ele vivifica a terra, depois de morta. Por certo, Esse é Quem dá a vida aos mortos. E Ele, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,258,'E, se lhes enviamos vento prejudicial à seara, e a vêem amarelecida, certamente, permanecem, depois disso, ingratos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,258,'E, por certo, tu não podes fazer ouvir aos mortos e não podes fazer ouvir aos surdos a convocação, quando te voltam as costas, fugindo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,258,'E não podes guiar os cegos, desviando-os de seu descaminho. Não podes fazer ouvir senão a quem crê em Nossos sinais, pois são muçulmanos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,258,'Allah é Quem vos criou de fragilidade; em seguida, fez depois de fragilidade, força; em seguida fez, depois de força, fragilidade e cãs. Ele cria o que quer. E Ele é O Onisciente, O Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,258,'E, um dia, quando advier a Hora, os criminosos jurarão não haver permanecido, nos sepulcros, senão uma hora. Assim, distanciavam-se eles da verdade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,258,'E aqueles aos quais fora concedida a ciência e a Fé, dirão: "Com efeito, lá permanecestes, conforme está no Livro de Allah, até o Dia da Ressurreição. E este é o Dia da Ressurreição, mas não sabíeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,258,'Então, nesse dia, as escusas não beneficiarão aos que foram injustos, e eles não serão solicitados a Nos agradar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,258,'E, com efeito, propomos, para os homens, neste Alcorão, toda sorte de exemplos. E, se lhes chegas com um sinal, em verdade, os que renegam a Fé dirão: "Vós não sois senão defensores da falsidade."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,258,'Assim, Allah sela o coração dos que não sabem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,258,'Então, pacienta, Muhammad, por certo, a promessa de Allah é verdadeira. E que te não abalem os que se não convencem da Ressurreição.');
+INSERT INTO chapters (id, number, quran_id) VALUES(259,31,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,259,'Alif, Lām, Mīm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,259,'Esses são os versículos do explícito Livro pleno de sabedoria.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,259,'Ele é orientação e misericórdia para os benfeitores,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,259,'Que cumprem a oração e concedem a caridade e se convencem da Derradeira Vida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,259,'Esses estão em orientação de seu Senhor. E esses são os bem-aventurados');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,259,'E, dentre os homens, há quem compre falsas narrativas, para sem ciência, descaminhar os outros do caminho de Allah, e para tomá-lo por objeto de zombaria. Esses terão aviltante castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,259,'E, quando se recitam, para ele, Nossos versículos, volta-lhes as costas, ensoberbecendo-se, como se os não ouvisse, como se em seus ouvidos houvesse surdez. Então, alvissara-lhe, Muhammad, doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,259,'Por certo, os que crêem e fazem boas obras terão os Jardins da Delícia;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,259,'Neles, serão eternos. Essa é, deveras, a promessa de Allah. E Ele é O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,259,'Ele criou os céus, sem colunas que vejais. E implantou na terra assentes montanhas, para que ela se não abale convosco. E, nela, espalhou todo ser animal. E fizemos descer do céu água; então, fizemos brotar, nela, todos os casais de plantas preciosas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,259,'Essa é a criação de Allah; então, fazei-Me ver o que criaram aqueles que adorais, além d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,259,'E, com efeito, concedemos a sabedoria a Luqman, dizendo-lhe: "Agradece a Allah. E quem agradece, agradece apenas, em benefício de si mesmo. E quem é ingrato, por certo, Allah é Bastante a Si mesmo, Louvável."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,259,'E quando Luqman disse a seu filho, em o exortando: "Ó meu filho! Não associes nada a Allah. Por certo, a idolatria é formidável injustiça."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,259,'E recomendamos ao ser humano a benevolência para com seus pais; sua mãe carrega-o, com fraqueza sobre fraqueza,e sua desmama se dá aos dois anos; e dissemo-lhe: "Sê agradecido a Mim, e a teus pais. A Mim será o destino."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,259,'"E, se ambos lutam contigo, para que associes a Mim aquilo de que não tens ciência, não lhes obedeças. E acompanha-os, na vida terrena, convenientemente. E segue o caminho de quem se volta contrito para Mim. Em seguida, a Mim será vosso retorno; então, informar-vos-ei do que fazíeis"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,259,'"Ó meu filho! Por certo, se há algo do peso de um grão de mostarda e está no âmago de um rochedo, ou nos céus ou na terra, Allah fá-lo-á vir à tona. Por certo, Allah é Sutil, Conhecedor."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,259,'"Ó meu filho! Cumpre a oração e ordena o conveniente e coíbe o reprovável e pacienta, quanto ao que te alcança. Por certo, isso é da firmeza indispensável em todas as resoluções."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,259,'"E não voltes, com desdém, teu rosto aos homens, e não andes, com jactância, pela terra. Por certo, Allah não ama a nenhum presunçoso, vanglorioso."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,259,'"E modera teu andar e baixa tua voz. Por certo, a mais reprovável das vozes é a voz dos asnos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,259,'Não vistes que Allah vos submeteu o que há nos céus e o que há na terra, e vos colmou de Suas graças, aparentes e latentes? E, dentre os homens, há quem discuta acerca de Allah, sem ciência nem orientação nem Livro luminoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,259,'E quando se lhes diz: "Segui o que Allah fez descer", dizem: "Não, mas seguimos aquilo em que encontramos nossos pais." Seguí-lo-ão, ainda que Satã os convoque ao castigo do Fogo ardente?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,259,'E quem entrega sua face a Allah, enquanto benfeitor, com efeito, ater-se-á à firme alça. E a Allah é o fim de todas as determinações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,259,'E de quem renega a Fé, que te não entristeça sua renegação da Fé. A Nós será seu retorno, e informá-los-emos do que fizeram. Por certo, Allah, do íntimo dos peitos, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,259,'Fá-los-emos gozar um pouco; em seguida, obrigá-los-emos a um duro castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,259,'E, se lhes perguntas: "Quem criou os céus e a terra", em verdade, dirão: "Allah!" Dize: "Louvor a Allah!" Mas a maioria deles não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,259,'De Allah é o que há nos céus e na terra. Por certo, Allah é O Bastante a Si mesmo, O Louvável.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,259,'E, se todas as árvores, na terra, fossem cálamos, e o mar, a que se estendessem, além dele, sete mares, fosse tinta de escrever, as palavras de Allah não se exauririam. Por certo, Allah é Todo-Poderoso, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,259,'Vossa criação e vossa ressurreição não são senão como as de uma só alma. Por certo, Allah é Oniouvinte, Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,259,'Não viste que Allah insere a noite no dia e insere o dia na noite e submete o sol e a lua, cada qual correndo até um termo designado, e que Allah, do que fazeis, é Conhecedor?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,259,'Isso, porque Allah é a Verdade, e porque o que invocam, além dEle, é a falsidade, e porque Allah é O Altíssimo, O Grande.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,259,'Não viste que o barco corre, no mar, com a graça de Allah, para Ele fazer-vos ver alguns de Seus sinais? Por certo, há nisso sinais para todo constante perseverante, agradecido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,259,'E, quando os encobrem ondas, como dosséis, invocam a Allah, sendo sinceros com Ele, na devoção; então, quando Ele os traz a salvo a terra, há, dentre eles, o que é moderado e o que é negador. E não nega Nossos sinais senão todo pérfido, ingrato.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,259,'Ó humanos! Temei a vosso Senhor e receai um dia, em que um pai nada quitará por seu filho nem um filho nada quitará por seu pai. Por certo, a promessa de Allah é verdadeira. Então, que vos não iluda a vida terrena e que vos não iluda o ilusor, acerca de Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,259,'Por certo, junto de Allah, está a ciência da Hora, e Ele faz descer a chuva; e sabe o que há nas matrizes. E pessoa alguma se inteira do que logrará amanhã, e pessoa alguma se inteira de em qual terra morrerá. Por certo, Allah é Onisciente, Conhecedor.');
+INSERT INTO chapters (id, number, quran_id) VALUES(260,32,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,260,'Alif, Lām, Mīm.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,260,'A revelação do Livro, indubitável, é dO Senhor dos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,260,'Eles dizem: "Ele o forjou?" Não. Mas ele é a verdade de teu Senhor, para admoestares um povo, ao qual, antes de ti, admoestador algum chegou, para se guiarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,260,'Allah é Quem criou os céus e a terra e o que há entre ambos, em seis dias; em seguida, estabeleceu-Se no Trono. Não há, para vós, além d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,260,'Ele administra a ordem, do céu para a terra; em seguida, tudo ascende a Ele, em um dia, cuja duração é de mil anos, dos que contais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,260,'Esse é O Sabedor do invisível e do visível, O Todo-Poderoso, O Misericordiador,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,260,'Que fez perfeita cada cousa que criou, e iniciou de barro a criação do ser humano.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,260,'Em seguida, fez-lhe a descendência da quintessência de gota d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,260,'Em seguida, formou-o e, nele, soprou algo de seu espírito. E vos fez o ouvido e as vistas e os corações. Quão pouco agradeceis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,260,'E dizem: "Se nós sumirmos na terra, tornar-nos-emos, por certo, em nova criação?" Eles, aliás, são renegadores do deparar de seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,260,'Dize: "O Anjo da Morte, encarregado de vós, levar-vos-á as almas; em seguida, a vosso Senhor sereis retornados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,260,'E se tu visses quando os criminosos estiverem cabisbaixos, junto de seu Senhor! Dirão: "Senhor nosso! Enxergamos e ouvimos. Então, faze-nos retornar à terra, nós faremos o bem; por certo, estamos convictos da Ressurreição."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,260,'E, se quiséssemos, haveríamos concedido a cada alma sua orientação. Mas cumpre-se o Dito vindo de Mim: "Encherei a Geena dos jinns e dos homens, deles todos!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,260,'Dir-se-lhes-á: "Então, experimentai o castigo, porque esquecestes o deparar deste vosso dia; por certo, Nós, também, vos esquecemos. E experimentai o castigo da eternidade, pelo que fazíeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,260,'Apenas, crêem em Nossos versículos os que, ao lhes serem estes lembrados, caem em prosternação e glorificam com louvor, a seu Senhor, e não se ensoberbecem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,260,'Seus flancos apartam-se dos leitos, enquanto suplicam a seu Senhor, com temor e aspiração, e despendem do que lhes damos por sustento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,260,'E nenhuma alma sabe o que lhes é oculto do alegre frescor dos olhos, em recompensa do que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,260,'Então, quem é crente é como quem é perverso? Não, não se igualam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,260,'Quanto aos que crêem e fazem as boas obras, terão, por hospedagem, os Jardins de Refúgio pelo que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,260,'E, quanto aos que foram perversos, sua morada será o Fogo. Cada vez que desejarem sair dele, a ele fá-los-ão regressar, e se lhes dirá: "Experimentai o castigo do Fogo, que desmentíeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,260,'E, em verdade, fá-los-emos experimentar algo do castigo menor, antes do castigo maior para retornarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,260,'E quem mais injusto que aquele a quem são lembrados os versículos de seu Senhor, em seguida, dá-lhes de ombros? Por certo, vingar-Nos-emos dos criminosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,260,'E, com efeito, concedemos o Livro a Moisés; então, não estejas em contestação acerca de seu encontro.E fizemo-lo orientação para os filhos de Israel.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,260,'E fizemos deles próceres, que guiaram os homens, por Nossa ordem, quando pacientaram. E eles se convenciam de Nossos sinais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,260,'Por certo, teu Senhor decidirá, entre eles, no Dia da Ressurreição, naquilo de que discrepavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,260,'E não lhes são notórias quantas gerações aniquilamos antes deles, por cujas vivendas andam, agora? Por certo, há nisso sinais. Então, não ouvem eles a exortação de Deus?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,260,'E não viram que Nós conduzimos a água à terra árida e, com ela, fazemos sair searas, de que seus rebanhos comem, e eles mesmos? Então, não o enxergam?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,260,'E dizem: "Quando será esta sentença, se sois verídicos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,260,'Dize: "No Dia da Sentença, não beneficiará aos que renegam a Fé sua crença nem se lhes concederá dilação."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,260,'Então, dá-lhes de ombros e espera; por certo, eles, também, estão esperando.');
+INSERT INTO chapters (id, number, quran_id) VALUES(261,33,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,261,'áb. Ó Profeta! Teme a Allah e não obedeças aos renegadores da Fé e aos hipócritas. Por certo, Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,261,'E segue o que te é revelado de teu Senhor. Por certo, Allah, do que fazeis é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,261,'E confia em Allah. E basta Allah por Patrono.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,261,'Allah não fez em homem algum dois corações em seu peito. E não fez de vossas mulheres, que repudiais, proibidas como vossas mães. E não fez de vossos filhos adotivos vossos filhos verdadeiros. Isto é o dito de vossas bocas. E Allah diz a verdade, e Ele guia ao caminho reto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,261,'Chamai-os pelos nomes de seus pais: isso é mais eqüitativo, perante Allah. E, se não conheceis seus pais, eles serão vossos irmãos, na religião, e vossos aliados. E não há culpa, sobre vós, em errardes, nisso, mas no que vossos corações intentam. E Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,261,'O Profeta tem mais prevalência sobre os crentes que eles mesmos não têm entre si. E suas esposas são suas mães. E os de laços consangüíneos têm, na sucessão, mais prevalência sobre os laços que unem os crentes de Al-Madinah e os emigrantes de Makkah, segundo o Livro de Allah, a menos que queirais fazer um favor a vossos aliados. Isso está inscrito no Livro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,261,'E quando firmamos a aliança com os profetas, e contigo e com Noé e com Abraão e com Moisés e com Jesus, filho de Maria. E firmamos sólida aliança com eles,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,261,'Para que Ele interrogasse os verídicos acerca de sua verdade. E Ele preparou para os renegadores da Fé doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,261,'Ó vós que credes! Lembrai-vos da graça de Allah para convosco, quando um exército vos chegou, então, enviamos contra eles um vento e um exército de anjos, que não vistes. E Allah, do que fazeis, é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,261,'Quando eles vos chegaram, por cima de vós e por baixo de vós, e quando as vistas se vos desviaram de terror, e os corações vos chegaram às gargantas, e pensastes, acerca de Allah, pensamentos vários,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,261,'Aí, então, os crentes foram postos à prova e estremecidos por veemente estremecimento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,261,'E, quando os hipócritas e aqueles, em cujos corações há enfermidade, disseram: "Allah e seu Mensageiro não nos prometeram senão Falácias."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,261,'E, quando uma hoste, dentre eles, disse: "Ó povo de Yathrib! Não há lugar para vossa permanência aqui; então, retornai." E um grupo deles pediu permissão ao Profeta, para retornar, dizendo: "Por certo, nossas casas estão indefesas", enquanto não estavam indefesas. Eles não desejavam senão uma fuga.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,261,'E, se nela entrassem, por todas suas imediações, estando eles aí; em seguida, se lhes fosse pedida a sedição, havê-la-iam concedido, e nela não haveriam permanecido senão um pouco.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,261,'E, com efeito, pactuavam, antes, com Allah que não voltariam costas aos inimigos. E o pacto com Allah será questionado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,261,'Dize: "A fuga não vos beneficiaria, se fugísseis de morrer ou de ser mortos em combate; e, nesse caso, não vos fariam gozar senão um pouco."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,261,'Dize: "Quem é que vos defende de Allah, se Ele vos deseja um mal, ou se Ele vos deseja misericórdia?" E eles não encontrarão, para si, além de Allah, nem protetor nem socorredor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,261,'Com efeito, Allah conhece os desalentadores, dentre vós, e os que dizem a seus irmãos: "Vinde a nós!" Enquanto eles não vão à guerra, senão poucos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,261,'Sendo avarentos, em relação a vós. E, quando o medo lhes chega, tu os vês olhar para ti: revolvem-se-lhes os olhos como os de quem é desfalecido pela morte. E, quando o medo se vai, eles vos injuriam com afiadas línguas, sendo avarentos, em relação ao bem. Esses não crêem: então, Allah anulará suas obras. E isso para Allah é fácil.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,261,'Supunham que os partidos não houvessem ido embora. E, se os partidos chegassem novamente, almejariam estar, no deserto, entre os beduínos, perguntando por vossos informes. E, se estivessem entre vós, não combateriam senão um pouco.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,261,'- Com efeito, há, para vós, no Mensageiro de Allah, belo paradigma, para quem espera em Allah, e no Derradeiro Dia, e se lembra amiúde de Allah. -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,261,'E, quando os crentes viram aos partidos, disseram: "Isto é o que Allah e Seu Mensageiro nos prometeram, e Allah e Seu Mensageiro disseram a verdade." E isso não lhes acrescentou senão fé e submissão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,261,'Dentre os crentes, há homens que cumpriram o que haviam pactuado com Allah. Então, dentre eles, houve quem cumprisse seu voto. E, dentre eles, há quem espere. E não mudam mudança alguma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,261,'Foi ordenado o combate para que Allah recompensasse aos verídicos, por sua veracidade, e castigasse os hipócritas, se quisesse, ou Se voltasse para eles. Por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,261,'E Allah fez voltar os que renegam a Fé, com seu rancor: eles não alcançaram bem algum. E Allah resguardou os crentes do combate. E Allah é Forte, Todo-Poderoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,261,'E Ele fez descer, de suas fortificações os que, dentre os seguidores do Livro, os auxiliaram, e lançou-lhes o terror nos corações. A um grupo, matastes, e a outro grupo, escravizastes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,261,'E fez-vos herdar suas terras e seus lares e suas riquezas e terra outra que nunca havíeis pisado. E Allah, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,261,'Ó Profeta! Dize a tuas mulheres: "Se estais desejando a vida terrena e seus ornamentos, vinde que vos mimosearei e vos libertarei, com bela liberdade."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,261,'"E, se estais desejando a Allah e a Seu Mensageiro e à Derradeira Morada, por certo, Allah preparou para as benfeitoras, dentre vós, magnífico prêmio."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,261,'Ó mulheres do Profeta! A quem de vós cometer obscenidade, duplicar-ser-lhe-á o castigo, em redobro. E isso, para Allah, é fácil.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,261,'E a quem de vós se devota a Allah e a Seu Mensageiro, e faz o bem, conceder-lhe-emos seu prêmio duas vezes, e lhe prepararemos generoso sustento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,261,'Ó mulheres do Profeta! Não sois iguais a nenhuma das outras mulheres, se sois piedosas. Então, não mostreis sedução no dito; pois aquele, em cujo coração há enfermidade, aspirar-vos-ia; e dizei dito conveniente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,261,'E permanecei em vossas casas, e não façais exibição de vossos encantos corporais como a exibição dos idos Tempos da ignorância. E cumpri a oração e concedei as esmolas, e obedecei a Allah e a Seu Mensageiro. Apenas, Allah deseja fazer ir-se, para longe de vós, a abominação, ó família da Casa, e purificar-vos plenamente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,261,'E lembrai-vos do que se recita, em vossas casas, dos versículos de Allah e da Sabedoria. Por certo, Allah é Sutil, Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,261,'Por certo, aos muçulmanos e às muçulmanas, e aos crentes e às crentes, e aos devotos e às devotas, e aos verídicos e às verídicas, e aos perseverantes e às perseverantes, e aos humildes e às humildes, e aos esmoleres e às esmoleres, e aos jejuadores e às jejuadoras, e aos custódios de seu sexo e às custódias de seu sexo, e aos que se lembram amiúde de Allah e às que se lembram amiúde dEle, Allah preparou-lhes perdão e magnífico prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,261,'E não é admissível a crente algum nem a crente alguma - quando Allah e Seu Mensageiro decretam uma decisão, - que a escolha seja deles, por sua própria decisão. E quem desobedece a Allah e a Seu Mensageiro, com efeito, se descaminhará com evidente descaminho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,261,'E lembra-te, Muhammad, de quando disseste a quem Allah agraciou e tu agraciaste: "Retém tua mulher contigo, e teme a Allah", enquanto escondias em teu âmago o que Allah te estava mostrando, e receavas os homens, enquanto Allah é mais Digno de que O receies. Então, quando Zaid satisfez seu desejo de estar com ela, fizemo-te com ela casar, para que não houvesse, sobre os crentes, constrangimento em relação às mulheres de seus filhos adotivos, quando estes satisfazem seu desejo de estar com elas. E a ordem de Allah deve ser cumprida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,261,'Não deve haver, sobre o Profeta, constrangimento algum, em relação ao que Allah lhe preceituou. Assim, foi o procedimento de Allah com os que passaram, antes - e a ordem de Allah é decreto predeterminado -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,261,'Os que transmitiram as Mensagens de Allah e O recearam, e não recearam a ninguém senão a Allah. E Allah basta por Ajustador de contas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,261,'Muhammad não é pai de nenhum de vossos homens, mas o Mensageiro de Allah e o selo dos Profetas. E Allah, de todas as cousas, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,261,'Ó vós que credes! Invocai a Allah abundantemente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,261,'E glorificai-O, ao alvorecer e ao entardecer');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,261,'Ele é Quem vos abençoa e, também, Seus anjos, para fazer-vos sair das trevas para a Luz. E Ele, para com os crentes, é Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,261,'A saudação a estes, um dia, quando O depararem será: "Salam!", Paz! E Ele já lhes preparou generoso prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,261,'Ó Profeta! Por certo, enviamo-te por testemunha e alvissareiro e admoestador,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,261,'E convocador de Allah, com Sua permissão, e luzeiro luminoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,261,'E alvissara aos crentes que terão de Allah grande favor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,261,'E não obedeças aos renegadores da Fé e aos hipócritas, e não prestes atenção à sua moléstia e confia em Allah. E basta Allah, por Patrono.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,261,'Ó vós que credes! Quando esposardes as crentes, em seguida, delas vos divorciardes, antes de as tocardes, não lhes impenderá prazo de espera. Então, mimoseai-as e libertai-as, com bela liberdade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,261,'Ó Profeta! Por certo, tornamos lícitas, para ti, tuas mulheres, às quais concedeste seus prêmios; e as escravas que possuís, entre as que Allah te outorgou, em espólio; e as filhas de teu tio paterno e as filhas de tuas tias paternas, e as filhas de teu tio materno e as filhas de tuas tias maternas, que emigraram contigo; e toda mulher crente, caso dadive o Profeta com si mesma, se o Profeta deseja esposá-la, sendo-te isto privilégio, com exclusão dos demais crentes - com efeito, sabemos o que lhes preceituamos em relação a suas mulheres e às escravas que possuem - para que não haja constrangimento, sobre ti. E Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,261,'Podes preterir a quem quiseres, entre elas, e aconchegar a ti a quem quiseres. E, se buscas uma, entre as que afastaste, não haverá culpa sobre ti. Isso é mais adequado, para que se lhes refresquem os olhos de alegria e não se entristeçam elas, e se agradem todas do que lhes concedes. E Allah sabe o que há em vossos corações. E Allah é Onisciente, Clemente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,261,'Depois disso, não te serão lícitas as outras mulheres nem te será lícito trocá-las por outras esposas ainda que te admire sua beleza, exceto no que tange às escravas que possuis. E Allah, sobre todas as cousas, é Observante.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,261,'Ó vós que credes! Não entreis nas casas do profeta - a menos que vo-lo seja permitido - para uma refeição, sem esperardes por seu tempo de preparo; mas, se sois convocados, entrai; então, quando vos houverdes alimentado, espalhai-vos, e não vos recreando em conversações. Por certo, isso molestava o Profeta e, ele se peja de ter de fazer-vos sair. E Allah não Se peja da verdade. E, se Ihes perguntais por algo, perguntai-lhes, por trás de um véu. Isso é mais puro para vossos corações e os corações delas. E não é admissível que molesteis o Mensageiro de Allah nem esposeis jamais suas mulheres, depois dele. Por certo, isso, perante Allah, é formidável pecado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,261,'Se mostrais uma cousa, ou a escondeis, por certo, Allah, de todas as cousas, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,261,'Não há culpa sobre elas, em estarem sem véu diante de seus pais ou de seus filhos ou de seus irmãos ou dos filhos de seus irmãos ou dos filhos de suas irmãs ou de suas mulheres ou dos escravos que possuem. E temei a Allah. Por certo, Allah, de todas as cousas, é Testemunha.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,261,'Por certo, Allah e Seus anjos oram pelo Profeta. Ó vós que credes! Orai por ele e saudai-o, permanentemente;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,261,'Por certo, aos que molestam a Allah e a Seu Mensageiro, Allah amaldiçoa-os, na vida terrena e na Derradeira Vida, e preparou-lhes aviltante castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,261,'E os que molestam os crentes e as crentes, sem que nada de mal estes hajam cometido, com efeito, sobrecarregar-se-ão com infâmia e evidente pecado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,261,'Ó Profeta! Dize a tuas mulheres e a tuas filhas e às mulheres dos crentes que se encubram em suas roupagens. Isso é mais adequado, para que sejam reconhecidas e não sejam molestadas. E Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,261,'Em verdade, se os hipócritas e aqueles, em cujos corações há enfermidade, e os propagadores de boatos em Al-Madinah não se abstêm de seus maus ditos, açular-te-emos contra eles; em seguida, não te avizinharão, nela, senão por pouco tempo');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,261,'Amaldiçoados. Onde quer que se acharem serão apanhados e mortos inexoravelmente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,261,'Assim, foi o procedimento de Allah com os que passaram, antes. E não encontrarás, no procedimento de Allah, mudança alguma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,261,'Os homens perguntam-te pela Hora. Dize: "Sua ciência está, apenas, junto de Allah." E o que te faz inteirar-te de que a Hora, talvez, esteja próxima?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,261,'Por certo, Allah amaldiçoou os renegadores da Fé, e preparou-lhes um Fogo ardente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,261,'Nele, serão eternos, para todo o sempre. Eles não encontrarão nem protetor nem socorredor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,261,'Um dia, quando lhes forem reviradas as faces no Fogo, dirão: "Quem dera houvéssemos obedecido a Allah e houvéssemos obedecido ao Mensageiro!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,261,'E dirão: "Senhor nosso! Por certo, obedecemos a nossos senhores e a nossos magnates: então, eles descaminharam-nos do caminho reto."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,261,'"Senhor nosso! Concede-lhes o redobro do castigo, e amaldiçoa-os, com grande maldição."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,261,'Ó vós que credes! Não sejais como os que molestaram a Moisés; então, Allah absolveu-o do que disseram. E ele era honorável, perante Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,261,'Ó vós que credes! Temei a Allah e dizei, sempre, dito adequado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,261,'Ele vos emendará as obras e vos perdoará os delitos. E quem obedece a Allah e a Seu Mensageiro, com efeito, triunfará, com magnífico triunfo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,261,'Por certo, Nós expusemos a responsabilidade aos céus e à terra e às montanhas; então, recusaram encarregar-se dela e, dela, se atemorizaram, enquanto o ser humano encarregou-se dela. Por certo, ele é muito injusto e muito ignorante.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,261,'Assim foi, para que Allah castigasse os hipócritas e as hipócritas e os idólatras e as idólatras, e Se voltasse para os crentes e as crentes. E Allah é Perdoador, Misericordiador.');
+INSERT INTO chapters (id, number, quran_id) VALUES(262,34,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,262,'suratu sabaa. Louvor a Allah, de Quem é o que há nos céus e na terra. E d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,262,'Ele sabe o que penetra na terra e o que dela sai, e o que desce do céu e o que a ele ascende. E Ele é O Misericordiador, O Perdoador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,262,'E os que renegam a Fé dizem: "A Hora não nos chegará". Dize: "Sim! Por meu Senhor! Com certeza chegar-vos-á. PelO Sabedor do Invisível. Não escapa dEle peso algum de átomo, nos céus nem na terra. E nada há menor que isto nem maior, que não esteja no evidente Livro."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,262,'Para compensar os que crêem e fazem as boas obras. Esses terão perdão e generoso sustento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,262,'E os que se esforçam em negar Nossos sinais, intentando escapar de Nosso castigo, esses terão castigo de doloroso tormento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,262,'E aqueles, aos quais fora concedida a ciência, vêem que o que foi descido para ti de teu Senhor é a Verdade, e que ele guia à senda dO Todo-Poderoso, dO Louvável.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,262,'E os que renegam a Fé dizem: "Indicar-vos-emos um homem, que vos informe de que, quando vos desintegrardes, com toda desintegração, sereis, por certo, transmudados em novas criaturas?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,262,'"Forja ele mentiras acerca de Allah, ou há nele loucura?" Não. Mas os que não crêem na Derradeira Vida estão no castigo e no profundo descaminho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,262,'E não viram eles o que está adiante deles e o que está detrás deles, seja do céu ou da terra? Se quiséssemos, faríamos a terra engoli-los, ou faríamos cair sobre eles pedaços do céu. Por certo, há nisso um sinal para todo servo contrito.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,262,'E, com efeito, concedemos a Davi favor vindo de Nós, e dissemos: "Ó montanhas! Repeti, com ele, o louvor a Allah, junto dos pássaros." E tornamos dúctil o ferro, para ele,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,262,'E dissemos: "Faze cotas de malha e entrelaça bem as malhas, e fazei o bem. Por certo, do que fazeis, sou Onividente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,262,'E submetemos a Salomão o vento, cujo percurso matinal era de um mês, e cujo percurso vespertino era de um mês. E fizemo-lhe fluir a fonte de cobre fundido. E houve, dentre os gênios, quem trabalhasse as sua ordens, com a permissão de seu Senhor. E a quem, dentre eles, se desviasse de Nossa ordem, fazíamo-lo experimentar o castigo do Fogo ardente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,262,'Faziam-lhe o que queria: santuários e estátuas e alguidares grandes como os tanques, e caldeirões assentes. E dissemos: "Laborai, ó família de Davi, em agradecimento." Enquanto poucos, dentre Meus servos, são os agradecidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,262,'E, quando Ihe decretamos a morte, nada Ihes indicou sua morte senão a térmite que lhe devorou o báculo. Então, quando ele caiu, tornou-se evidente para os jinns que, se soubessem do Invisível, não haveriam permanecido no aviltante castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,262,'Com efeito, havia para Saba, em seu habitat, um Sinal: dois jardins, à direita e à esquerda. Foi-lhes dito: "Comei do sustento de vosso Senhor e agradecei-Lhe. Tendes uma plaga benigna e um Senhor Perdoador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,262,'Então, eles deram de ombros a isso; e enviamos contra eles a torrente da barragem de Al-Arim, e trocamo-lhes os dois jardins por outros dois jardins, de frutas amargas e tamárices e cousa pouca de açoifaifa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,262,'Com isso recompensamo-los, por sua ingratidão. E não recompensamos, assim, senão ao ingrato?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,262,'E tínhamos feito, entre eles e as cidades que tínhamos abençoado, cidades aparentes e tínhamos determinado, nelas, a caminhada, na justa medida. E dissemos: "Caminhai, em segurança, durante dias e noites."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,262,'Então, disseram: "Senhor nosso! Torna grande a distância entre nossas viagens." E foram injustos com si mesmos; então, fizemo-los tema de conversa, e desintegramo-los, com toda desintegração. Por certo, há nisso sinais para todo perseverante, agradecido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,262,'E, com efeito, Iblis comprovou sua conjectura acerca deles; então, seguiram-no, exceto um grupo de crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,262,'E ele não tinha poder algum sobre eles; mas assim foi, para que soubéssemos distinguir quem cria na Derradeira Vida de quem estava em dúvida, a respeito dela. E teu Senhor, sobre todas as cousas, é Custódio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,262,'Dize: "Invocai os que pretendeis serem deuses, além de Allah. Eles não possuem o peso de um átomo, nem nos céus nem na terra. E, nestes, eles não têm participação alguma. E Ele não tem, entre eles, coadjutor algum."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,262,'E a intercessão, junto d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,262,'Dize: "Quem vos dá sustento dos céus e da terra?" Dize: "Allah! E, por certo, nós ou vós estamos na orientação ou em evidente descaminho."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,262,'Dize: "Não sereis interrogados acerca dos crimes que cometemos, nem seremos interrogados acerca do que fazeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,262,'Dize: "Nosso Senhor juntar-nos-á; em seguida, sentenciará, entre nós, com a verdade. E Ele é O Sentenciador, O Onisciente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,262,'Dize: "Fazei-me ver os que ajuntais a Ele, como parceiros. Em absoluto, não o conseguireis. Aliás, Ele é Allah, O Todo-Poderoso, O Sábio."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,262,'E não te enviamos Muhammad, senão a toda a humanidade, por alvissareiro e admoestador, mas a maioria dos homens não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,262,'E dizem: "Quando será o cumprimento desta promessa, se sois verídicos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,262,'Dize: "Haverá, para vós, o encontro de um dia, em relação ao qual não podereis retardar-vos, uma hora sequer, nem adiantar-vos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,262,'E os que renegam a Fé dizem: "Jamais creremos neste Alcorão nem no que houve antes dele." E se visses quando os injustos forem postos diante de seu Senhor, uns refutando o dito dos outros! Os que foram subjugados dirão aos que se ensoberbeceram: "Se não fôsseis vós, seríamos crentes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,262,'Os que se ensoberbeceram dirão aos que foram subjugados: "Será que fomos nós que vos afastamos da boa orientação, após haver-vos chegado? Não. Mas vós próprios éreis criminosos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,262,'E os que foram subjugados dirão aos que se ensoberbeceram: "Não. Mas, vossos estratagemas, noite e dia, desgraçaram-nos, quando nos ordenáveis renegássemos a Allah e Lhe fizéssemos semelhantes." E eles guardarão segredo do arrependimento, quando virem o castigo. E Nós poremos as gargalheiras nos pescoços dos que renegaram a Fé. Não serão eles recompensados senão pelo que faziam?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,262,'E não enviamos a uma cidade admoestador algum, sem que seus opulentos habitantes dissessem: "Por certo, somos renegadores do com que sois enviados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,262,'E eles disseram: "Somos mais privilegiados em riquezas e filhos, e não seremos castigados ."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,262,'Dize: "Por certo, meu Senhor prodigaliza o sustento a quem quer, e restringe-o; mas a maioria dos homens não sabe."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,262,'E não são vossas riquezas nem vossos filhos que vos aproximarão, bem perto de Nós; mas quem crê e faz o bem, esses terão o dobro da recompensa, pelo que fizeram e estarão, em segurança, nas câmaras etéreas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,262,'E os que se esforçam em negar Nossos sinais, intentando escapar de Nós, esses serão trazidos ao castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,262,'Dize: "Por certo, meu Senhor prodigaliza o sustento a quem quer, de Seus servos, e restringe-lho. E o que quer que despendais, Ele vo-lo restituirá. E Ele é O melhor dos sustentadores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,262,'E um dia, Ele os reunirá a todos; em seguida, dirá aos anjos: "São estes que vos adoravam?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,262,'Eles dirão: "Glorificado sejas! Tu és nosso Protetor, em vez deles. Ao contrário, eles adoravam os gênios. A maioria deles era crente neles."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,262,'Então, nesse dia, nenhum de vós possuirá, para o outro, benefício nem prejuízo; e diremos aos que foram injustos: "Experimentai o castigo do Fogo, que desmentíeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,262,'E, quando Nossos evidentes versículos se recitam, para eles, dizem: "Este não é senão um homem que quer afastar-vos do que vossos pais adoravam." E dizem: "Este não é senão mentira forjada." E dizem os que renegam a Fé, acerca da verdade, quando ela lhe chega: "Isto não é senão evidente magia!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,262,'E Nós não lhes concedêramos livros que estudassem. E não lhes enviáramos, antes de ti, admoestador algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,262,'E os que foram antes deles desmentiram a Mensagem - e não chegam eles, em poder e riqueza, ao décimo do que concedêramos àqueles - e desmentiram a Meus Mensageiros. Então, como foi Minha reprovação?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,262,'Dize: "Apenas, exorto-vos a uma única questão: a vos manterdes, diante de Allah, de dois em dois ou de um em um, em seguida a refletirdes. Não há loucura em vosso companheiro. Ele não vos é senão um admoestador, que está adiante de veemente castigo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,262,'Dize: "O que vos peço, em prêmio, o será para vós. Meu prêmio não impende senão a Allah. E Ele, sobre todas as cousas, é Testemunha."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,262,'Dize: "Por certo, meu Senhor é Quem lança a Verdade. Ele, das cousas invisíveis, é Profundo Sabedor."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,262,'Dize: "A Verdade chegou, e a falsidade nada inicia nem repete ."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,262,'Dize: "Se eu me descaminho, descaminhar-me-ei, apenas, em prejuízo de mim mesmo. E, se me guio, será pelo que meu Senhor me revelou. Por certo, Ele é Oniouvinte, e está Próximo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,262,'E se visses quando se aterrorizarem! Para eles não haverá escapatória, e serão apanhados em lugar próximo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,262,'E dirão: "Cremos nele." Mas como poderão alcançar a Fé, de lugar tão longínquo?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,262,'E, com efeito, renegaram-no antes, e conjeturam o Invisível, de lugar tão longínquo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,262,'E interpor-se-á uma barreira entre eles e o que apetecem, como se fez, antes, a seus semelhantes. Por certo, estavam em dúvida tormentosa.');
+INSERT INTO chapters (id, number, quran_id) VALUES(263,35,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,263,'Louvor a Allah, O Criador dos céus e da terra, Que faz dos anjos Mensageiros, dotados de asas: duas, ou três, ou quatro. Ele acresce, na criação, o que quer. Por certo, Allah, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,263,'O que Allah franqueia aos homens, em misericórdia, ninguém pode retê-lo. E o que Ele retém, ninguém, depois dEle, pode enviá-lo. E Ele é O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,263,'Ó humanos! Lembrai-vos da graça de Allah para convosco. Há criador outro que Allah, que vos dê sustento do céu e da terra? Não existe deus senão Ele. Então, como dEIe vos distanciais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,263,'E, se eles te desmentem, Muhammad, com efeito, foram desmentidos outros Mensageiros, antes de ti. E a Allah são retornadas as determinações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,263,'Ó humanos! Por certo, a promessa de Allah é verdadeira. Então, não vos iluda a vida terrena e não vos iluda o ilusor, acerca de Allah!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,263,'Por certo, Satã vos é inimigo; então, tomai-o por inimigo. Ele, apenas, convoca os de seu partido, para que sejam dos companheiros do Fogo ardente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,263,'Os que renegam a Fé terão veemente castigo. E os que crêem e fazem as boas obras terão perdão e grande prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,263,'Será que aquele, para quem é aformoseada sua má ação, e a vê como boa, é como aquele a quem Allah guia? E, por certo, Allah descaminha a quem quer e guia a quem quer. Então, que tua alma não se consuma em aflições por eles. Por certo, Allah, do que eles engenham, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,263,'E Allah é Quem envia o vento, e este agita nuvens; em seguida, conduzimo-las a uma plaga morta e, com elas, vivificamos a terra, depois de morta. Assim será a Ressurreição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,263,'Quem deseja o poder, saiba que é de Allah todo o poder. A Ele ascendem as palavras benignas; e a boa ação, Ele a eleva. E os que armam maus estratagemas terão veemente castigo. E o estratagema desses falhará.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,263,'E Allah criou-vos de pó; em seguida, de gota seminal; depois, fez-vos casais. E nenhuma varoa concebe, nem dá à luz senão com Sua ciência. E não se prolonga a vida de longevo algum nem se lhe diminui a idade, sem que isso esteja num Livro. Por certo, isso, para Allah, é fácil.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,263,'E os dois mares não se igualam. Este é doce, sápido, suave de beber, e aquele é salso, amargo. E, de cada um comeis carne tenra e extraís adornos, que usais. E tu vês o barco sulcando-os, para buscardes algo de Seu favor. E para serdes agradecidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,263,'Ele insere a noite no dia e insere o dia na noite. E submeteu o sol e a lua; cada qual corre até um termo designado. Esse é Allah, vosso Senhor: d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,263,'Se os convocais, não ouvirão vossa convocação. E, se a ouvissem, não vos atenderiam. E, no Dia da Ressurreição, renegarão vossa idolatria. E ninguém te informa da Verdade como Um Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,263,'Ó humanos! Vós sois pobres diante de Allah, e Allah é O Bastante a Si mesmo, O Louvável.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,263,'Se Ele quisesse, far-vos-ia ir e faria chegar novas criaturas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,263,'E isso não é, para Allah, penoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,263,'E nenhuma alma pecadora arca com o pecado de outra. E, se uma alma sobrecarregada convoca outra, para aliviar-lhe a carga, nada desta será carregado, ainda que o convocado seja parente. Tu, apenas, admoestas os que receiam a seu Senhor, ainda que Invisível, e que cumprem a oração. E quem se dignifica, se dignifica, apenas, em benefício de si mesmo. E a Allah será o destino.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,263,'E o cego e o vidente não se igualam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,263,'Nem as trevas e a luz.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,263,'Nem a sombra e o calor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,263,'E não se igualam os vivos e os mortos. Por certo, Allah faz ouvir a Verdade a quem Ele quer. E tu não podes fazer ouvir os que estão nos sepulcros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,263,'Tu não és senão admoestador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,263,'Por certo, Nós te enviamos, com a Verdade, por alvissareiro e admoestador. E nunca houve nação, sem que nela passasse um admoestador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,263,'E, se eles te desmentem, com efeito, os que foram antes deles desmentiram aos Mensageiros. Chegaram-lhes Seus Mensageiros com as evidências, e com os Salmos, e com o Livro Luminoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,263,'Em seguida, apanhei os que renegaram a Fé. Então, como foi Minha reprovação?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,263,'Não viste que Allah faz descer, do céu, água e, com ela, fazemos sair frutos, de cores variadas, e, que, entre as montanhas, há-as de estratos brancos e vermelhos, de cores variadas, e as que são nigérrimas como corvos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,263,'E que, dentre os homens e os seres animais e os rebanhos, há os, também, de cores variadas? Apenas, os sábios receiam a Allah, dentre Seus servos. Por certo, Allah é Todo-Poderoso, Perdoador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,263,'Por certo, os que recitam o Livro de Allah e cumprem a oração e despendem, secreta ou manifestamente, do que lhes damos por sustento, esperam por comércio, que não perecerá,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,263,'Para que Ele os recompense com seus prêmios, e lhes acrescente algo de Seu favor. Por certo, Ele é Perdoador, Agradecido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,263,'E o que te revelamos, do Livro, é a Verdade, que confirma o que havia antes dele. Por certo, Allah, de Seus servos, é Conhecedor, Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,263,'Em seguida, fizemos herdar o Livro aos que escolhemos de Nossos servos. E, dentre eles, há o que é injusto com si mesmo. E dentre eles, há o que é moderado. E, dentre eles, há o que é precursor das boas cousas, com a permissão de Allah. Esse é o grande favor,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,263,'Os Jardins do Éden; neles, entrarão; neles, serão enfeitados com braceletes de ouro e com pérolas; e, neles, suas vestimentas serão de seda.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,263,'E dirão: "Louvor a Allah, Quem fez ir-se, para longe de nós, a tristeza! Por certo, nosso Senhor é Perdoador, Agradecido."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,263,'"Ele é Quem, por Seu favor, nos fez habitar a Morada da Permanência. Nenhuma fadiga nos toca, nela, nem nos toca, nela, exaustão."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,263,'E os que renegam a Fé terão o Fogo da Geena; não se lhes porá termo à vida para que eles morram; e nada se lhes aliviará do castigo. Assim, recompensamos todo ingrato.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,263,'E, nele, gritarão: "Senhor nosso! Faze-nos sair daqui, nós faremos bem outro que o que fazíamos." Ele dirá: "E não vos deixamos viver um tempo, em que pudesse meditar quem quisesse meditar? E o admoestador chegou-vos. Então, experimentai o castigo. E não há para os injustos socorredor algum."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,263,'Por certo, Allah é Sabedor do Invisível dos céus e da terra. Por certo, do íntimo dos peitos, Ele é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,263,'Ele é Quem faz de vós sucessores na terra. Então, quem renega a Fé, sua renegação será em prejuízo de si mesmo. E a renegação dos renegadores da Fé não lhes acrescenta senão abominação, junto de seu Senhor. E a renegação dos renegadores da Fé não lhes acrescenta senão perdição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,263,'Dize: "Vistes vossos ídolos, que invocais além de Allah? Fazei-me ver o que criaram, na terra. Ou têm eles participação nos céus? Ou lhes concedemos um Livro, e se fundamentam em uma evidência dele?" Não. Mas os injustos não prometem, uns aos outros, senão falácia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,263,'Por certo, Allah sustém os céus e a terra, para que não se desloquem. E, se ambos se deslocassem, ninguém, depois dEle, os sustentaria. Por certo, Ele é Clemente, Perdoador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,263,'E eles juraram, por Allah com seus mais solenes juramentos, que se lhes chegasse um admoestador, seriam mais bem guiados que qualquer outra das comunidades. Então, quando um admoestador lhes chegou, isso não lhes acrescentou senão repulsa,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,263,'Soberba, na terra, e maus estratagemas. E os maus estratagemas não envolvem senão a seus autores. Então, não esperam eles senão os procedimentos punitivos dos antepassados? E não encontrarás, no procedimento de Allah, mudança alguma. E não encontrarás, no procedimento de Allah, alteração alguma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,263,'E não caminharam eles na terra, para olhar como foi o fim dos que foram antes deles, e que foram mais veementes que eles, em força. E não é admissível que cousa alguma escape a Allah, nem nos céus nem na terra. Por certo, Ele é Onisciente, Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,263,'E, se Allah culpasse os homens pelo que cometaram, não deixaria sobre sua superfície ser animal algum; mas concede-lhes prazo, até um termo designado. E quando seu termo chegar, por certo, Allah, de Seus servos, é Onividente.');
+INSERT INTO chapters (id, number, quran_id) VALUES(264,36,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,264,'suratu ya-sin. Ya-Sin.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,264,'Pelo Alcorão pleno de sabedoria,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,264,'Por certo, Muhammad, tu és dos Mensageiros,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,264,'Em senda reta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,264,'Ele é a revelação descida dO Todo-Poderoso, dO Misericordiador,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,264,'Para admoestares um povo, cujos pais não foram admoestados: então, estão desatentos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,264,'Com efeito, o Dito cumpriu-se contra a maioria deles: então, não crêem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,264,'Por certo, pusemo-lhes, nos pescoços, gargalheiras, e estas lhes chegam aos queixos; então, têm as cabeças forçadas para cima.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,264,'E fizemos uma barreira adiante deles e uma barreira detrás deles; e nevoamo-lhes as vistas: então, nada enxergam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,264,'E lhes é igual que os admoestes ou não os admoestes; eles não crerão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,264,'Tu, apenas, admoestas a quem segue a Mensagem e receia aO Misericordioso, ainda que Invisível. Então, alvissara-lhe perdão e generoso prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,264,'Por certo, somos Nós Que damos a vida aos mortos, e escrevemos o que eles anteciparam, e seus vestígios. E toda cousa, enumeramo-la em um evidente Livro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,264,'E propõe-lhes um exemplo: os habitantes da cidade quando lhes chegaram os Mensageiros,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,264,'Quando lhes enviamos dois Mensageiros, e eles os desmentiram, então, fortalecemo-los com um terceiro, eles disseram: "Por certo, fomos enviados a vós."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,264,'Os habitantes da cidade disseram: "Vós não sois senão mortais como nós, e O Misericordioso nada fez descer; vós nada fazeis senão mentir."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,264,'Os Mensageiros disseram: "Nosso Senhor sabe que, por certo, fomos enviados a vós,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,264,'"E não nos impende senão a evidente transmissão da Mensagem."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,264,'Disseram: "Pressentimos mau agouro, por vossa causa. Em verdade, se não vos abstendes disso, apedrejar-vos-emos, e doloroso castigo tocar-vos-á, de nossa parte."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,264,'Eles disseram: "Vosso mau agouro está em vós. Se sois admoestados, pressentis mau agouro e descredes? Mas, sois um povo entregue a excessos!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,264,'E um homem chegou, do extremo da cidade, correndo. Disse: "Ó meu povo! Segui os Mensageiros"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,264,'"Segui a quem não vos pede prêmio algum, e são guiados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,264,'"E por que razão não adoraria eu a Quem me criou e a Quem vós sereis retornados?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,264,'"Tomaria, em vez d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,264,'"Por certo, nesse caso, estaria em evidente descaminho."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,264,'"Por certo, creio em vosso Senhor. Então, ouvi-me."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,264,'Foi-Ihe dito: "Entra no Paraíso." Ele disse: "Quem dera meu povo soubesse!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,264,'"Do perdão de meu Senhor para mim, e de que me fez dos honrados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,264,'E não fizemos descer sobre seu povo, depois dele, exército algum do céu; e não é admissível que o fizéssemos descer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,264,'Não houve senão um só Grito; então, ei-los extintos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,264,'Que aflição para os servos! Não lhes chegou Mensageiro algum, sem que dele zombassem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,264,'Não viram quantas gerações aniquilamos, antes deles? As quais a eles jamais retornarão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,264,'E, por certo, todos reunidos, serão trazidos para junto de Nós.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,264,'E é um sinal, para eles, a terra morta: vivificamo-la e dela fazemos sair grãos; então, deles comem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,264,'E, nela, fazemos jardins de tamareiras e videiras e, dela, fazemos emanar fontes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,264,'Para que eles comam de seus frutos e do que suas próprias mãos fazem. Então, não agradecem?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,264,'Glorificado seja Quem criou todos os casais do que a terra brota, e deles mesmos e do que não sabem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,264,'E é um sinal para eles a noite, da qual esfolamos o dia: então, ei-los imersos nas trevas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,264,'E o sol corre para uma morada pertencente a ele: essa é a determinação dO Todo-Poderoso, dO Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,264,'E a lua, determinamo-lhe fases, até tornar-se como o velho racemo da tamareira.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,264,'Não é concebível ao sol atingir a lua, nem à noite antecipar-se ao dia. E cada qual voga, em uma órbita.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,264,'E é um sinal para eles havermos carregado seus antepassados no barco repleto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,264,'E criamo-lhes, à sua semelhança, aquilo em que montam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,264,'E, se quiséssemos, afogá-los-íamos; então não haveria, para eles, salvador algum, e não serão salvos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,264,'Exceto por misericórdia vinda de Nós, e para gozo, até certo tempo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,264,'E, quando se lhes diz: "Guardai-vos do que está adiante de vós e do que está detrás de vós na esperança de obterdes misericórdia", voltam as costas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,264,'E não Ihes chega sinal algum dos sinais de seu Senhor, sem que lhes estejam dando de ombros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,264,'E, quando se lhes diz: "Despendei do que Allah vos deu por sustento", os que renegam a Fé dizem aos que crêem: "Alimentaremos nós aquele que Allah alimentaria, se quisesse? Não estais senão em evidente descaminho."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,264,'E dizem: "Quando será o cumprimento desta promessa, se sois verídicos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,264,'Não esperam eles senão um só Grito, que os apanhará, enquanto estiverem disputando uns com outros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,264,'Então, não poderão fazer testamento nem retornar a suas famílias.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,264,'E soprar-se-á na Trombeta: então, ei-los que, das tumbas, sairão açodados para junto de seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,264,'Dirão: "Ai de nós! Quem nos ressuscitou de nosso lugar de descanso? Isto é o que O Misericordioso prometera, e os Mensageiros disseram a verdade."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,264,'Não houve senão um só Grito; então, ei-los que serão trazidos todos, para junto de Nós.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,264,'Então, nesse dia, nenhuma alma nada sofrerá de injustiça, e não sereis recompensados senão pelo que fazíeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,264,'Por certo, os companheiros do Paraíso, nesse dia, estarão absortos em delícias, alegres.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,264,'Eles e suas mulheres estarão na sombra, reclinados sobre coxins.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,264,'Nele, terão frutas e terão o que cobiçarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,264,'"Salam!", Paz. É um dito que ouvirão de Um Senhor Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,264,'E Ele dirá: "Separai-vos, ó criminosos, neste dia!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,264,'"Não vos recomendei, ó filhos de Adão, que não adorásseis a Satã? Por certo, ele vos era inimigo declarado"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,264,'"E que Me adorásseis? Esta é uma senda reta."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,264,'"E, com efeito, ele descaminhou grande multidão de vós. Então, não razoáveis?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,264,'"Eis a Geena, que vos era prometida!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,264,'"Sofrei sua queima, hoje, porque renegáveis a Fé."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,264,'Nesse dia, selar-lhes-emos as bocas, e suas mãos Nos falarão, e suas pernas testemunharão o que cometiam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,264,'E, se quiséssemos, apagar-Ihes-íamos os olhos, então, precipitar-se-iam na senda; como poderiam, pois, enxergar algo?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,264,'E, se quiséssemos, transfigurá-los-íamos, no lugar em que estivessem: então, não poderiam ir adiante nem retornar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,264,'E, a quem tornamos longevo, fá-lo-emos regredir em sua criação. Então, não razoam?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,264,'E não Ihe ensinamos a poesia, e ela não lhe é concebível. Esse não é senão Mensagem e evidente Alcorão,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,264,'Para que admoeste quem está vivo e para que o Dito se cumpra contra os renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,264,'E não viram eles que, entre o que fizeram Nossas mãos, Nós lhes criamos rebanhos, então, deles são possuidores?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,264,'E os tornamos dóceis a eles; então, deles, há-os para a sua montaria, e, deles, há-os que eles comem;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,264,'E têm, neles, proveitos e bebidas. Então, não agradecem?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,264,'E tomam deuses, além de Allah, para serem por eles socorridos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,264,'Estes não poderão socorrê-los, e serão um exército, trazido, contra eles, no Dia do Juízo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,264,'Então, que seu dito não te entristeça. Por certo, sabemos o de que guardam segredo e o que manifestam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,264,'E o ser humano não viu que o criamos de gota seminal? Então, ei-lo adversário declarado!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,264,'E, esquecendo sua criação, propõe, para Nós, um exemplo. Diz: "Quem dará vida aos ossos enquanto resquícios?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,264,'Dize: "Quem os fez surgir, da vez primeira, dar-lhes-á a vida - e Ele, de todas as criaturas, é Onisciente -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,264,'"Aquele Que vos fez fogo, das árvores verdes, então, ei-vos que, com elas, acendeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,264,'E Aquele Que criou os céus e a terra não é Poderoso para criar seus iguais? Sim! E Ele é O Criador, O Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,264,'Sua ordem, quando deseja alguma cousa, é, apenas, dizer-lhe: "Sê", então, é.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,264,'Então, glorificado seja Aquele, em Cuja mão está o reino de todas as cousas! E a Ele sereis retornados.');
+INSERT INTO chapters (id, number, quran_id) VALUES(265,37,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,265,'Pelos enfileirados, em fileiras,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,265,'E pelos repulsores do mal, com força.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,265,'E pelos recitadores de Mensagem,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,265,'Por certo, vosso Deus é Único,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,265,'O Senhor dos céus e da terra e do que há entre ambos, e O Senhor dos Levantes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,265,'Por certo, Nós ornamentamos o céu mais próximo, com um ornamento: os astros,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,265,'E para custodiá-lo, contra todo demônio rebelde.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,265,'Eles não podem ouvir a corte altíssima, e são arrojados, por todos os lados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,265,'Rechaçados. E terão castigo perpétuo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,265,'Exceto quem arrebatar algo: então, persegui-lo-á uma bólide perfurante.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,265,'E consulta-os: "Quem é mais difícil, em criação, eles ou outros seres que criamos?" Por certo, criamo-los de barro viscoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,265,'Mas tu admiras que te desmintam, e eles disso escarnecem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,265,'E, quando lembrados do Alcorão, dele não se lembram.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,265,'E, quando vêem um sinal, excedem-se em escárnio,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,265,'E dizem: "Isto não é senão evidente magia."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,265,'Dizem: "Quando morrermos e formos pó e ossos, seremos ressuscitados?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,265,'"E nossos pais antepassados, também?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,265,'Dize, Muhammad: "Sim, e sereis humilhados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,265,'Então, haverá apenas, um só Clangor, e ei-los que olharão, estarrecidos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,265,'E dirão: "Ai de nós! Este é o Dia do Juízo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,265,'Os anjos dirão: "Este é o Dia da Decisão, que desmentíeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,265,'Ele dirá: "Reuni os que foram injustos, e a suas mulheres e ao que adoravam,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,265,'Além de Allah, e guiai-os à senda do Inferno,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,265,'E detende-os. Por certo, serão interrogados:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,265,'"Por que razão não vos socorreis uns aos outros?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,265,'Mas, nesse dia, eles serão rendidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,265,'E dirigir-se-ão, uns aos outros interrogando-se.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,265,'Dirão: "Por certo, sempre, chegáveis a nós do lado direito, para renegar a Fé."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,265,'Os chefes dirão: "Mas não éreis crentes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,265,'"E não tínhamos poder algum sobre vós. Mas éreis um povo transgressor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,265,'"Então, o Dito de nosso Senhor cumpriu-se, contra nós. Por certo, haveremos de experimentar o castigo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,265,'"E transviamo-vos: por certo, nós éramos desviados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,265,'Então, por certo, nesse dia, eles serão partícipes no castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,265,'Por certo, assim agimos com os criminosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,265,'Por certo, quando se lhes dizia: "Não há deus senão Allah", ensoberbeciam-se,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,265,'E diziam: "Abandonaremos nossos deuses por um poeta louco?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,265,'Não. Mas ele chegou com a Verdade e confirmou as palavras dos Mensageiros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,265,'Por certo, havereis de experimentar o doloroso castigo');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,265,'— E não sereis recompensados senão pelo que fazíeis -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,265,'Exceto os servos prediletos de Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,265,'Esses terão determinado sustento:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,265,'Frutas. E serão honrados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,265,'Nos Jardins da Delícia,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,265,'Estarão em leitos, frente a frente;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,265,'Far-se-á circular, entre eles, taças de vinho de fonte fluida,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,265,'Branco, deleitoso para quem o bebe,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,265,'Nele, não haverá mal súbito; e, com ele, não se embriagarão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,265,'E, junto deles, estarão aquelas de belos grandes olhos, de olhares restritos a seus amados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,265,'Assemelham-se a ovos resguardados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,265,'E uns aos outros dirigir-se-ão, interrogando-se.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,265,'Um deles dirá: "Por certo, eu tinha um acompanhante.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,265,'Que dizia:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,265,'');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,265,'Ele dirá: "Quereis avistá-lo?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,265,'Então, avistou e viu-o no meio do Inferno.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,265,'Dirá: "Por Allah! Por certo, quase me arruinaste,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,265,'"E, não fora a graça de meu Senhor, seria dos trazidos ao Fogo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,265,'"Será que jamais morreremos');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,265,'Senão aquela nossa primeira morte, e não seremos castigados?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,265,'Por certo, este é o magnífico triunfo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,265,'Então, para recompensa igual a essa, que laborem os laboriosos!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,265,'Será isso melhor por hospedagem ou a árvore de Zaqqum?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,265,'Por certo, fizemo-la como provação para os injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,265,'Por certo, é uma árvore que surge do fundo do Inferno,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,265,'Suas espatas são como as cabeças de demônios.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,265,'E, por certo, dela comerão e dela encherão os ventres.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,265,'Em seguida, sobre ela, terão mistura de água ebuliente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,265,'Depois, seu retorno será ao Inferno.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,265,'Por certo, eles encontraram seus pais descaminhados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,265,'Então, em suas pegadas, prosseguem impetuosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,265,'E, com efeito, antes deles, a maioria dos antepassados descaminhou-se.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,265,'- E, com efeito, enviamo-Ihes admoestadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,265,'Então, olha como foi o fim dos que foram admoestados! -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,265,'Exceto os servos prediletos de Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,265,'E, com efeito, Noé chamou-nos; então, quão Excelentes fomos em atendê-lo!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,265,'E salvamo-lo e a sua família da formidável angústia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,265,'E fizemos de sua descendência os sobreviventes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,265,'E deixamos esta bênção sobre ele, na posteridade:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,265,'"Que a paz seja sobre Noé, nos mundos!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,265,'Por certo, assim recompensamos os benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,265,'Por certo, ele era de Nossos servos crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,265,'Em seguida, afogamos os outros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,265,'E, por certo, Abraão era de sua seita,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,265,'Quando chegou a seu Senhor, com um coração imaculado,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,265,'Quando disse a seu pai e a seu povo: "O que adorais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,265,'"Desejais a mentira: adorar deuses em vez de Allah?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,265,'"E qual vosso pensamento acerca do Senhor dos mundos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,265,'Então, ele deu uma olhada nas estrelas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,265,'E disse: "Por certo, estou doente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,265,'Então, voltaram-lhe as costas, fugindo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,265,'E foi ter, sorrateiramente, com seus deuses, e disse: "Não comeis?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,265,'"Por que não falais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,265,'E foi ter, sorrateiramente, com eles, batendo-lhes, com a destra.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,265,'Então, eles se dirigiram a ele, diligentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,265,'Disse-lhes: "Adorais o que esculpis,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,265,'Enquanto Allah vos criou e ao que fazeis?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,3,265,'Disseram: "Edificai, para ele, uma edificação e lançai-o no Inferno."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,3,265,'E desejaram armar-lhe insídias; então, fizemo-los os mais rebaixados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,3,265,'E ele disse: "Por certo, vou aonde meu Senhor me ordena; Ele me guiará."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,3,265,'"Senhor meu! Dadiva-me com um filho, dos íntegros;"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,3,265,'Então, alvissaramo-lhe um filho clemente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,3,265,'E, quando atingiu a idade de labutar com ele, este disse: "Ó meu filho! Por certo, vi em sonho que te imolava. Então, olha, que pensas disso?" Ismael disse: "Ó meu pai! Faze o que te é ordenado. Encontrar-me-ás entre os perseverantes, se Allah quiser."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,3,265,'E, quando ambos se resignaram, e o fez tombar, com a fronte na terra, lívramo-lo');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,3,265,'E chamamo-lo: "Ó Abraão!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,3,265,'"Com efeito, confirmaste o sonho." Por certo, assim recompensamos os benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,3,265,'Por certo, essa é a evidente prova.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,3,265,'E resgatamo-lo com imolado magnífico.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,3,265,'E deixamos esta bênção sobre ele, na posteridade:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,3,265,'"Que a paz seja sobre Abraão!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,3,265,'Assim, recompensamos os benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,3,265,'Por certo, ele era de Nossos servos crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,3,265,'E alvissaramo-lhe Isaque, como profeta, entre os íntegros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,3,265,'E abençoamo-lo e a Isaque. E, na descendência de ambos, houve quem fosse benfeitor e quem fosse um declarado injusto com si mesmo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,3,265,'E, com efeito, Nós fizemos mercê a Moisés e a Aarão,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,3,265,'E salvamo-los, a ambos, e a seu povo, da formidável angústia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,3,265,'E socorremo-los; então, foram eles os vencedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,3,265,'E concedemo-lhes o Livro, assaz evidente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,3,265,'E guiamo-los à senda reta');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,3,265,'E deixamos esta bênção sobre ambos, na posteridade:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,3,265,'"Que a paz seja sobre Moisés e Aarão"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,3,265,'Por certo, assim recompensamos os benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,3,265,'Por certo, eram ambos de Nossos servos crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,3,265,'E, por certo, Elias era dos Mensageiros,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,3,265,'Quando disse a seu povo: "Não temeis a Allah?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,3,265,'"Invocais o ídolo e deixais O Melhor dos criadores,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,3,265,'"Allah, vosso Senhor e O Senhor de vossos pais antepassados!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,3,265,'E desmentiram-no; então, serão trazidos ao castigo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,3,265,'Exceto os servos prediletos de Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,3,265,'E deixamos esta bênção sobre ele, na posteridade:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,3,265,'"Que a paz seja sobre o Elias."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,3,265,'Por certo, assim recompensamos os benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,3,265,'Por certo, ele era de Nossos servos crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,3,265,'E, por certo, Lot era dos Mensageiros,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,3,265,'Quando o salvamos e a sua família, a todos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,3,265,'Exceto uma anciã, dentre os que ficaram para trás.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,3,265,'Em seguida, profligamos os outros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,3,265,'E, por certo, passais por eles, ao amanhecer');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,3,265,'E à noite. Não razoais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,3,265,'E, por certo, Jonas era dos Mensageiros,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,3,265,'Quando fugiu, no barco repleto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,3,265,'Então, ele tirou à sorte, e foi dos refutados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,3,265,'Então, a baleia engoliu-o, enquanto merecedor de censura.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,3,265,'E, se não fora ele dos glorificadores,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,3,265,'Haveria permanecido em seu ventre, até um dia, em que serão ressuscitados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,3,265,'Então, deitamo-lo fora, em ermo lugar, enquanto indisposto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,3,265,'E fizemos brotar sobre ele um arbusto de abóbora.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,3,265,'E enviamo-lo a cem mil homens, ou mais;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,3,265,'E creram em Allah, e fizemo-los gozar até certo tempo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,3,265,'Então, consulta-os: "São de teu Senhor as filhas, e deles, os filhos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,3,265,'Ou criamos Nós os anjos como seres femininos e eles foram testemunhas disso?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,3,265,'Ora, por certo, entre suas mentiras, dizem:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,3,265,'"Allah gerou". E, por certo, são mentirosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,3,265,'Escolheu Ele as filhas, de preferência aos filhos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,3,265,'Que há convosco? Como julgais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,3,265,'Então, não meditais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,3,265,'Ou tendes evidente comprovação?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,3,265,'Então, fazei vir vosso livro, se sois verídicos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,3,265,'E fizeram, entre Ele e os gênios, parentesco. E, com efeito, sabem os gênios que serão trazidos ao castigo');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,3,265,'- Glorificado seja Allah, acima do que alegam! -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,3,265,'Exceto os servos prediletos de Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,3,265,'Então, por certo, vós e o que adorais');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,3,265,'Não sereis sedutores de ninguém contra Ele,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,3,265,'Exceto de quem sofrer a queima do Inferno.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,3,265,'E os anjos dizem: "E não há ninguém entre nós que não tenha posição determinada."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,3,265,'"E, por certo, somos os enfileirados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,3,265,'E, por certo, somos os glorificadores!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,3,265,'E, por certo, eles diziam:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,3,265,'"Se tivéssemos uma Mensagem dos antepassados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,3,265,'Seríamos os servos prediletos de Allah."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,3,265,'E renegam-na. Então, logo saberão!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,3,265,'E, com efeito, Nossa Palavra antecipou-se a Nossos servos, os Mensageiros,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,3,265,'Por certo, eles serão os socorridos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,3,265,'E, por certo, Nossos exércitos serão os vencedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,3,265,'Então, volta-lhes as costas, até certo tempo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,3,265,'E enxerga-os, na derrota: então, eles enxergarão teu triunfo!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,3,265,'E querem eles apressar Nosso castigo?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,3,265,'Então, quando ele descer a seus arredores, que vil será a manhã dos admoestados!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,3,265,'Então, volta-lhes as costas, até certo tempo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,3,265,'E enxerga sua derrota: então, eles enxergarão teu triunfo!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,3,265,'Glorificado seja teu Senhor, O Senhor do Poder, acima do que alegam!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,3,265,'E que a paz seja sobre os Mensageiros!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,3,265,'E louvor a Allah, O Senhor dos mundos!');
+INSERT INTO chapters (id, number, quran_id) VALUES(266,38,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,266,'suratu Sad. Sad. Pelo Alcorão, portador da Mensagem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,266,'Os que renegam a Fé estão, aliás, imersos em arrogância e discórdia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,266,'Que de gerações aniquilamos, antes deles! Então, bradavam, enquanto não havia mais tempo para escapar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,266,'E eles se admiram de haver-Ihes chegado um admoestador vindo deles. E os renegadores da Fé dizem: "Este é um mágico mentiroso,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,266,'Faz ele dos deuses um único Deus? Por certo, isso é cousa admirável!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,266,'E os dignitários, entre eles, foram adiante, dizendo uns aos outros: "Andai e pacientai quanto a vossos deuses. Por certo, isso é cousa desejada."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,266,'"Jamais ouvimos falar disso, na última crença. Isso não é senão invenção!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,266,'"Foi descida a Mensagem, somente sobre ele, dentre nós?" Mas eles estão em dúvida acerca de Minha Mensagem. Aliás, ainda, não experimentaram Meu castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,266,'Ou têm eles os cofres da misericórdia de teu Senhor, O Todo-Poderoso, O Dadivoso?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,266,'Ou deles é a soberania dos céus e da terra e do que há entre ambos? Então, que ascendam aos céus, pelos meios de acesso!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,266,'É um exército desprezível dos partidos, que aí mesmo, será derrotado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,266,'Antes deles, desmentiram aos Mensageiros o povo de Noé e de Ãd e Faraó, o possuidor das estacas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,266,'E o povo de Thamud e o povo de Lot e os habitantes da Al-Aykah. Eram esses os partidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,266,'Cada qual nada fez senão desmentir os Mensageiros. Então, minha punição cumpriu-se.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,266,'E não esperam esses senão um só Grito, que não terá intermitência.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,266,'E dizem: "Senhor nosso! Apressa, para nós, nossa porção do castigo, antes do Dia da Conta."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,266,'Pacienta, Muhammad, quanto ao que dizem e menciona Nosso servo Davi, dotado de vigor. Por certo, ele era devotado a Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,266,'Por certo, submetemos as montanhas, para com ele, glorificarem a Allah, ao anoitecer e ao nascer do sol.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,266,'E submetemo-lhe os pássaros reunidos, tudo Lhe era devotado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,266,'E fortalecemo-lhe a soberania e concedemo-lhe a sabedoria e o falar peremptório.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,266,'E chegou-te o informe dos disputantes, quando escalaram o muro do santuário?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,266,'Quando entraram junto de Davi, então, aterrou-se com eles. Disseram: "Não te atemorizes. Somos dois disputantes, um de nós cometeu transgressão contra outro. Então, julga entre nós, com a verdade, e não sejas parcial; e guia-nos à senda direita."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,266,'"Por certo, este é meu irmão; ele tem noventa e nove ovelhas, e eu tenho uma só ovelha. Então, disse:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,266,'Davi disse: "Com efeito, ele cometeu injustiça contigo, ao te pedir juntasses tua ovelha a suas ovelhas. E, por certo, muitos dos associados cometem transgressão uns contra outros, exceto os que crêem e fazem as boas obras. E quão poucos são eles!" E Davi pensou que Nós o provássemos; então, implorou perdão a seu Senhor e caiu em prosternação, e voltou-se contrito para Nós.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,266,'Então, perdoamo-lhe isso. E, por certo, ele terá, junto de Nós, um lugar próximo, e aprazível retorno.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,266,'E inspiramo-lhe: "Ó Davi! Por certo, Nós te fizemos califa na terra; então, julga, entre os homens, com a justiça, e não sigas a paixão: senão, descaminhar-te-ia do caminho de Allah." Por certo, os que se descaminham do caminho de Allah terão veemente castigo, por seu esquecimento do Dia da Conta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,266,'E não criamos, em vão, o céu e a terra e o que há entre ambos. Essa é a conjetura dos que renegam a Fé. Então, ai dos que renegam a Fé, por causa do Fogo!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,266,'Consideraríamos os que crêem e fazem as boas obras como os corruptores, na terra? Ou consideraríamos os piedosos como os ímpios?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,266,'Este é um Livro bendito, que fizemos descer, para ti, a fim de que eles ponderem seus versículos e a fim de que os dotados de discernimento meditem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,266,'E dadivamos a Davi com Salomão. Que excelente servo! Por certo, ele era devotado a Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,266,'Quando, ao anoitecer, lhe foram apresentados os nobres corcéis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,266,'Então, ele disse: "Por certo, preferi o amor dos bens à lembrança de meu Senhor, até que se acobertou o sol com o véu da noite.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,266,'Devolvei-mos". Então, começou a acariciar-lhes os curvilhões e os pescoços.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,266,'E, com efeito, provamos a Salomão e lançamos um corpo sobre seu trono; em seguida, voltou-se contrito para Nós.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,266,'Ele disse: "Senhor meu! Perdoa-me e dadiva-me com uma soberania, que a ninguém, depois de mim, seja concebível ter. Por certo, Tu, Tu és O Dadivoso."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,266,'Então, submetemo-lhe o vento; corria suave, por sua ordem, para onde quer que ele visasse,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,266,'E os demônios, de toda especialidade, construtores e mergulhadores,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,266,'E outros aos pares, atados a grilhões.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,266,'E dissemo-Ihe: "Este é Nosso Dom. Então, faze mercê dele ou retém-no, sem que dês conta disso."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,266,'E, por certo, ele terá, junto de Nós, um lugar próximo e aprazível retorno.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,266,'E menciona Nosso servo Jó, quando chamou por seu Senhor: "Por certo, Satã tocou-me com quebrantamento e castigo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,266,'Ordenamo-Ihe: "Bate na terra com o pé: eis uma água fresca para te lavares e beberes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,266,'- E dadivamo-lo com sua família e, com ela, outra igual por misericórdia vinda de Nós e lembrança para os dotados de discernimento -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,266,'"E apanha, com tua mão, um feixe de gramínea; então, bate-Ihe com ele, e não violes teu juramento." Por certo, encontramo-lo perseverante. Que excelente servo! Por certo, ele era devotado a Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,266,'E menciona Nossos servos Abraão e Isaque e Jacó, dotados de vigor e visão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,266,'Por certo, Nós os privilegiamos, com um privilégio: a lembrança da Derradeira Morada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,266,'E, por certo, estão junto de Nós, entre os melhores dos escolhidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,266,'E menciona Ismael e Al Yassa e Zal-Kifl. E todos eles estão entre os melhores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,266,'Esta é uma Mensagem. E, por certo, haverá, para os piedosos, aprazível retorno:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,266,'Os Jardins do Éden, de portas abertas para eles;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,266,'Neles, ficarão reclinados; neles, requestarão abundantes frutas e bebidas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,266,'E, junto deles, haverão aquelas de olhares restritos a seus amados, todas da mesma idade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,266,'Isto é o que vos é prometido, para o Dia da Conta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,266,'Por certo, este será Nosso sustento, inesgotável.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,266,'Isto, para os bem-aventurados. E, por certo, haverá, para os transgressores, um pior retorno:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,266,'A Geena; nela se queimarão. Então, que execrável leito!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,266,'Eis ali; então, que eles o experimentem: água ebuliente e um vazar purulento,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,266,'E outros castigos da mesma espécie, de tipos vários.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,266,'Dir-se-lhes-á: "Esta é uma turba despenhada convosco no Fogo." Dirão: "Para ela, não haverá boas-vindas. Por certo, sofrerá a queima do fogo!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,266,'Eles dirão: "Ao contrário, para vós é que não haverá boas-vindas! Sois vós que no-lo antecipastes. Então, que execrável lugar de permanência!";');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,266,'Dirão: "Senhor nosso! A quem no-lo antecipou, acrescenta-lhe o duplo castigo, no Fogo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,266,'E dirão eles: "Por que razão não vemos uns homens que considerávamos dos malfeitores?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,266,'Tomamo-los por objeto de escárnio por engano, ou se nos desviaram deles as vistas?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,266,'Por certo, isso será verdade: a disputa dos companheiros do Fogo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,266,'Dize, Muhammad: "Sou, apenas, admoestador. E não há deus senão Allah, O Único, O Dominador,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,266,'O Senhor dos céus e da terra e do que há entre ambos, O Todo-Poderoso, O Constante Perdoador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,266,'Dize: "Ele é um magnífico informe,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,266,'"Ao qual estais dando de ombros."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,266,'"Eu não tinha ciência alguma da corte altíssima, quando disputavam."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,266,'"Não me é revelado senão que sou, apenas, evidente admoestador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,266,'Quando teu Senhor disse aos anjos: "Por certo, vou criar de barro um homem"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,266,'"E, quando o houver formado e, nele, houver soprado algo de Meu Espírito, então, caí prosternados, diante dele"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,266,'E todos os anjos prosternaram-se, juntos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,266,'Exceto Iblis. Ele se ensoberbeceu e foi dos infiéis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,266,'Allah disse: "Ó Iblís! O que te impediu de prosternar-te diante daquele que criei com as Próprias mãos? Ensoberbeceste-te, ou és de alta grei?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,266,'Iblis disse: "Sou melhor que ele. Criaste-me de fogo e criaste-o de barro."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,266,'Allah disse: "Então, sai dele e, por certo, és maldito".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,266,'"E, por certo, Minha maldição será sobre ti, até o Dia do Juízo"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,266,'Iblís disse: "Senhor meu! Concede-me dilação, até um dia, em que eles serão ressuscitados"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,266,'Allah disse: "Por certo, és daqueles aos quais será concedida dilação"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,266,'"Até o dia do tempo determinado"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,266,'Iblís disse: "Então, por Teu poder! Eu os farei incorrer no mal, a todos');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,266,'Exceto Teus servos prediletos, entre eles"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,266,'Allah disse: "Então, a verdade emana de Mim, e a verdade Eu digo:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,266,'"Com certeza, encherei a Geena de ti e dos que, entre eles, te seguirem, de todos vós."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,266,'Dize, Muhammad: "Não vos peço prêmio algum por ele, e não sou dos dissimulados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,266,'Ele não é senão lembrança para os mundos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,266,'"E, em verdade, sabereis de seus informes, após certo tempo".');
+INSERT INTO chapters (id, number, quran_id) VALUES(267,39,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,267,'A revelação do Livro é de Allah, O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,267,'Por certo, Nós fizemos descer, para ti, Muhammad, O Livro, com a verdade. Então, adora a Allah, sendo sincero com Ele, na devoção.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,267,'Ora, de Allah é a pura devoção. E os que tomam protetores, além d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,267,'Se Allah desejasse tomar para Si um filho, Ele escolheria o que quisesse, dentre quanto cria. Glorificado seja Ele! Ele é Allah, O Único, O Dominador');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,267,'Ele criou os céus e a terra, com a verdade. Ele enrola a noite no dia e enrola o dia na noite. E submeteu o sol e a lua; cada qual corre até um termo designado. Ora, Ele é O Todo-Poderoso, O Perdoador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,267,'Ele vos criou de uma só pessoa; em seguida, deste, fez sua mulher. E criou, para vós, dos rebanhos, oito reses acasaladas. Ele vos cria, nos ventres de vossas mães, criação após criação, em trevas tríplices. Esse é Allah, vosso Senhor. DEle é a soberania. Não existe deus senão Ele. Então, como dEle vos desviais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,267,'Se renegais a Fé, por certo, Allah é Bastante a Si mesmo, Prescindindo de vós e, por seus servos, Ele não Se agradará da renegação da Fé. E, se agradeceis, disso Se agradará Ele, por vós. E nenhuma alma pecadora arca com o pecado de outra. Em seguida, a vosso Senhor será vosso retorno; então, Ele vos informará do que fazíeis. Por certo, Ele, do íntimo dos peitos, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,267,'E, quando um infortúnio toca ao ser humano, ele invoca a seu Senhor, voltando-se contrito para Ele; em seguida, quando Ele lhe outorga uma graça, vinda dEle, ele esquece aquilo pelo qual O invocara, antes, e faz semelhantes a Allah, para descaminhar os homens de Seu caminho. Dize: "Goza tua renegação da Fé, por pouco tempo. Por certo, serás dos companheiros do Fogo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,267,'Salvar-se-á este ou quem, durante a noite, é devoto, prosternando-se ou orando de pé, precatando-se da Derradeira Vida e esperando pela misericórdia de seu Senhor? Dize: "Igualam-se os que sabem e os que não sabem?" Apenas, meditam os dotados de discernimento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,267,'Dize: "Ó servos Meus, que credes! Temei a vosso Senhor. Para os que bem-fazem, nesta vida, há algo de bom. E a terra de Allah é ampla. Apenas, os que pacientam serão recompensados, sem conta, com seus prêmios."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,267,'Dize: "Por certo, foi-me ordenado adorar a Allah, sendo sincero com Ele, na devoção,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,267,'"E foi-me ordenado ser o primeiro dos muçulmanos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,267,'Dize: "Por certo, temo, se desobedecer a meu Senhor, o castigo de um formidável dia"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,267,'Dize: "A Allah adoro, sendo sincero com Ele, em minha devoção."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,267,'"Então adorai o que quiserdes, além dEle." Dize: "Por certo, os perdedores são os que perderão a si mesmos e a sua família, no Dia da Ressurreição." Ora, essa é a evidente perdição!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,267,'Terão, acima deles, camadas de Fogo, e, abaixo deles, camadas de Fogo. Com isso, Allah amedronta a Seus servos. Ó servos Meus! Então, temei-Me.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,267,'E os que evitam a adoração de At-Taghut e se voltam contritos para Allah terão alvíssaras. Então, alvissara o Paraíso a Meus servos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,267,'Aos que ouvem o Dito e dele seguem o que há de melhor. Esses são os que Allah guia. E esses são os dotados de discernimento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,267,'E aquele, contra quem se cumpriu a palavra do castigo, podes tu salvá-lo? Então, salvas tu a quem está no Fogo?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,267,'Mas os que temem a seu Senhor terão câmaras etéreas acima das quais há outras câmaras etéreas edificadas abaixo das quais correm os rios. É a promessa de Allah. Allah não falta à promessa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,267,'Não viste que Allah faz descer do céu água, e fá-la introduzir em nascentes, na terra? Em seguida, faz sair, com ela, searas de variadas cores; depois, ressecam-se; então, tu as vês amarelecidas; em seguida, Ele as torna pulvéreas. Por certo, há nisso lembrança para os dotados de discernimento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,267,'Será que aquele, a quem Allah dilata o peito para o Islam e está em luz de seu Senhor, é como quem tem o coração selado? Então, ai daqueles cujos corações estão endurecidos para a Mensagem de Allah! Esses estão em evidente descaminho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,267,'Allah fez descer a mais bela narrativa: um Livro de partes semelhantes, reiterativo. De ouvi-lo, as peles dos que receiam a seu Senhor arrepiam-se; em seguida, suas peles e seus corações tornam-se dúcteis à menção de Allah. Essa é a orientação de Allah, com que guia a quem quer. E aquele, a quem Allah descaminha, não terá guia algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,267,'E quem, no Dia da Ressurreição, se guardar, com sua face, do pior castigo será como quem estará a salvo, no Paraíso? E dir-se-á aos injustos: "Experimentai o castigo, pelo que cometíeis!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,267,'Os que foram antes deles desmentiram aos Mensageiros; então, o castigo chegou-lhes por onde não perceberam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,267,'E Allah fê-los experimentar a ignomínia na vida terrena. E, em verdade, o castigo da Derradeira Vida é maior. Se soubessem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,267,'E, com efeito, propomos, para os homens, neste Alcorão, toda sorte de exemplos, para meditarem,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,267,'Sendo Alcorão árabe, sem tortuosidade alguma, para serem piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,267,'Allah propõe um exemplo: um homem que pertence a sócios litigantes, e um homem que pertence, inteiramente, a um só homem. Igualam-se ambos, como exemplo? Louvor a Allah! Mas a maioria deles não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,267,'Por certo, tu morrerás, e, por certo, eles morrerão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,267,'Em seguida, por certo, no Dia da Ressurreição, disputareis, junto de vosso Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,267,'Então, quem mais injusto que aquele que mente acerca de Allah, e desmente a verdade, quando esta lhe chega? Não é, na Geena, que há moradia para os renegadores da Fé?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,267,'E aquele que chegou com a verdade e aqueles que a confirmaram esses são os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,267,'Terão o que quiserem junto de seu Senhor. Essa é a recompensa dos benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,267,'Para que Allah remisse o mal que fizeram, e os recompensasse com prêmio melhor que aquilo que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,267,'Allah não basta a Seu servo? E eles te amedrontam com os que adoram além d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,267,'E aquele, a quem Allah guia, não terá descaminhador. Não é Allah Todo-Poderoso, Possuidor de vindita?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,267,'E, se lhes perguntas: "Quem criou os céus e a terra", em verdade, dirão: "Allah!" Dize: "Vistes os que invocais, além de Allah? Se Allah me deseja um infortúnio, serão eles removedores de Seu infortúnio? Ou, se Ele me deseja misericórdia, serão eles retentores de Sua misericórdia?" Dize: "Allah basta-me. NEle confiam os confiantes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,267,'Dize: "Ó meu povo! Fazei o que puderdes: por certo, farei o que puder. Logo, sabereis"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,267,'"A quem chegará um castigo, que o ignominiará e sobre quem cairá castigo permanente"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,267,'Por certo, Nós fizemos descer, sobre ti, o Livro, com a verdade, para orientação dos homens. Então, quem se guia, se guiará em benefício de si mesmo. E quem se descaminha se descaminhará, apenas, em prejuízo de si mesmo. E tu, sobre eles, não és patrono.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,267,'Allah leva as almas, ao morrerem, e a que não morre, Ele a leva, durante seu sono. Então, Ele retém aquela para quem decretou a morte, e reenvia aqueloutra, até um termo designado. Por certo, há nisso sinais para um povo que reflete.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,267,'Ou tomam eles intercessores, além de Allah? Dize: "E ainda que estes nada possuam nem razoem?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,267,'Dize: "De Allah é toda intercessão. DEle é a soberania dos céus e da terra. Em seguida, a Ele sereis retornados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,267,'E, quando se menciona Allah, só Ele, confrangem-se os corações dos que não crêem na Derradeira Vida; e, quando os que eles adoram além dEle são mencionados, ei-los que exultam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,267,'Dize: "Ó Allah, Criador dos céus e da terra. Sabedor do invisível e do visível! Tu julgarás, entre Teus servos, naquilo de que discrepavam."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,267,'E, se os injustos tivessem tudo o que há na terra e mais outro tanto, com isso, eles resgatar-se-iam do pior castigo, no Dia da Ressurreição. E mostrar-se-lhes-á, da parte de Allah, o que nunca haviam suposto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,267,'E mostrar-se-lhes-ão as más obras que cometiam. E envolvê-los-á aquilo de que zombavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,267,'E, quando um infortúnio toca ao ser humano, ele Nos invoca; em seguida, quando lhe outorgamos uma graça, vinda de Nós, diz: "Isso me foi concedido, apenas, por minha própria ciência." Ao contrário, esta é uma provação, mas a maioria deles não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,267,'Com efeito, os que foram antes deles disseram-no, e o que eles logravam de nada lhes valeu.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,267,'Então, as más obras que cometeram alcançaram-nos. E aos que são injustos, dentre estes, as más obras que cometeram alcançá-los-ão, e não poderão escapar disso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,267,'E não sabem eles que Allah prodigaliza o sustento a quem quer, e restringe-o? Por certo, há nisso sinais para um povo que crê.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,267,'Dize: "Ó Meus servos, que vos excedestes em vosso próprio prejuízo, não vos desespereis da misericórdia de Allah. Por certo, Allah perdoa todos os delitos. Por certo, Ele é O Perdoador, O Misericordiador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,267,'E voltai-vos contritos para vosso Senhor e islamizai-vos, para Ele, antes que o castigo vos chegue, em seguida, não sereis socorridos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,267,'E segui o melhor do que foi descido, para vós, de vosso Senhor, antes que o castigo vos chegue, inopinadamente, enquanto não percebeis;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,267,'Antes que uma alma diga: "Que aflição a minha, porque descurei de minhas obrigações para com Allah! E, por certo, eu era dos escarnecedores"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,267,'Ou antes que diga: "Se Allah me houvesse guiado, haveria sido dos piedosos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,267,'Ou antes que diga, quando vir o castigo: "Se eu tivesse retorno à vida, seria dos benfeitores"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,267,'Allah dirá: "Sim! Com efeito, Meus sinais chegaram-te e desmentiste-os e te ensoberbeceste e foste dos renegadores da Fé."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,267,'E, no Dia da Ressurreição, verás os que mentiram acerca de Allah, com as faces enegrecidas. Não é, na Geena, que há moradia para os assoberbados?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,267,'E Allah salvará os que foram piedosos, por seu empenho em se salvarem; o mal não os tocará nem se entristecerão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,267,'Allah é O Criador de todas as cousas. E Ele, sobre todas as cousas, é Patrono.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,267,'DEle são as chaves dos céus e da terra. E os que renegam os sinais de Allah, esses são os perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,267,'Dize: "Então, ordenais, que eu adore outro que Allah, ó ignorantes?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,267,'E, com efeito, foi-te revelado e aos que foram antes de ti: "Em verdade, se idolatras, teus atos anular-se-ão e, certamente, serás dos perdedores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,267,'"Mas adora, então, só a Allah, e sê dos agradecidos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,267,'E eles não estimam a Allah como se deve estimá-LO, enquanto, no Dia da Ressurreição, toda terra estará em Seu punho, e os céus estarão, dobrados, em Sua destra. Glorificado e Sublimado seja Ele, acima do que idolatram!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,267,'E soprar-se-á na Trombeta; então, quem estiver nos céus e quem estiver na terra, cairão fulminados, exceto quem Allah quiser. Em seguida, soprar-se-á nela, outra vez: então, ei-los de pé olhando, estarrecidos!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,267,'E a terra iluminar-se-á, com a luz de seu Senhor; e o Livro por-se-á à vista; e far-se-á chegar os profetas e as testemunhas; e, arbitrar-se-á, entre eles com a justiça. E eles não sofrerão injustiça alguma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,267,'E cada alma será compensada com o que fez. E Ele é bem Sabedor do que obram.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,267,'E os que renegam a Fé serão conduzidos à Geena, em grupamentos, até que, quando chegarem a ela, suas portas abrir-se-ão, e seus guardiães lhes dirão: "Não vos chegaram Mensageiros vindos de vós, os quais recitaram, para vós, os versículos de vosso Senhor e vos admoestaram do deparar deste vosso dia?" Dirão: "Sim! Mas a Palavra do castigo cumpriu-se contra os renegadores da Fé."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,267,'Dir-se-lhes-á: "Entrai pelas portas da Geena. Nela, sereis eternos. E que execrável, em verdade, a moradia dos assoberbados!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,267,'E os que temeram a seu Senhor serão conduzidos ao Paraíso, em grupamentos, até que, quando chegarem a ele, exultarão e suas portas abrir-se-Ihes-ão, e seus guardiães lhes dirão: "Que a paz seja sobre vós! Fostes benignos; então, entrai nele, sendo aí eternos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,267,'E dirão: "Louvor a Allah, Que confirmou Sua promessa para conosco e nos fez herdar a terra, dispondo do Paraíso, como quisermos! Então, que excelente o prêmio dos laboriosos!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,267,'E tu verás os anjos em círculo, ao redor do Trono, glorificando, com Louvor, a seu Senhor. E arbitrar-se-á, entre eles, com a justiça. E dir-se-á: "Louvor a Allah, O Senhor dos mundos!"');
+INSERT INTO chapters (id, number, quran_id) VALUES(268,40,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,268,'Ha, Mim.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,268,'A revelação do Livro é de Allah, O Todo-Poderoso, O Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,268,'O Perdoador do delito e O Aceitador do arrependimento, O Veemente na punição, O Dotado de posses. Não existe deus senão Ele. A Ele será o destino.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,268,'Não discutem acerca dos sinais de Allah senão os que renegam a Fé. Então, não te iluda, Muhammad, sua prosperidade, nas terras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,268,'Antes deles, o povo de Noé e os partidos, depois deles, desmentiram aos Mensageiros. E cada comunidade intentou contra seu Mensageiro, para apanhá-lo. E discutiram, com a falsidade, para com esta, refutar a verdade; então, apanhei-os. E, como foi Minha punição?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,268,'E assim, a Palavra de teu Senhor cumpre-se, contra os que renegam a Fé: "Por certo, eles serão os companheiros do Fogo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,268,'Os que carregam o Trono e os que estão a seu redor glorificam, com louvor, a seu Senhor e nEle crêem, e imploram perdão para os que crêem: "Senhor nosso! Tu abranges, em misericórdia e ciência, todas as cousas; então, perdoa os que se voltam arrependidos e seguem Teu caminho, e guarda-os do castigo do Inferno"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,268,'"Senhor Nosso! E faze-os entrar nos Jardins do Éden, que lhes prometeste, e a quem é íntegro dentre seus pais e suas mulheres e sua descendência. Por certo, Tu, Tu és O Todo-Poderoso, O Sábio."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,268,'"E guarda-os das más obras. E a quem Tu guardas das más obras, nesse dia, com efeito, deles terás misericórdia. E isso é o magnífico triunfo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,268,'Por certo, os que renegam a Fé serão chamados, ao entrarem no Fogo: "Em verdade, a abominação de Allah contra vós é maior que vossa abominação contra vós mesmos, quando éreis convocados á Fé e a renegáveis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,268,'Dirão: "Senhor nosso! Deste-nos a morte, duas vezes, e deste-nos a vida, outras duas, e reconhecemos nossos delitos; então, haverá caminho para sair daqui?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,268,'Isso, porque, quando era invocado Allah, só Ele, vós O renegáveis; e, se a Ele se associavam ídolos, vós críeis. Então, o Julgamento é de Allah, O Altíssimo, O Grande.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,268,'Ele é Quem vos faz ver Seus sinais e vos faz descer, do céu, sustento. E não medita senão quem se volta contrito para Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,268,'Então, invocai a Allah, sendo sinceros com Ele, na devoção, ainda que os renegadores da Fé o odeiem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,268,'Ele é O Alto de escalões, O Possuidor do Trono. Ele lança, por Sua ordem, o Espírito sobre quem Ele quer, dentre Seus servos, para que admoeste os homens do Dia do Encontro,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,268,'Um dia, em que eles ficarão expostos. Não se esconderá de Allah cousa alguma deles. De quem é a soberania, hoje? De Allah, O Único, O Dominador!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,268,'Nesse dia, cada alma será recompensada pelo que logrou. Não haverá injustiça, nesse dia. Por certo, Allah é Destro no ajuste de contas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,268,'E admoesta-os do dia da Hora iminente, quando os corações estarão nas gargantas, angustiados. Não haverá para os injustos íntimo algum nem intercessor a quem se obedecerá.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,268,'Allah sabe da traição dos olhos e do que os peitos escondem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,268,'E Allah arbitra com justiça. E os que eles invocam, além d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,268,'E não caminharam na terra, para olhar como foi o fim dos que foram antes deles? Aqueles foram mais veementes que estes, em força e em vestígios deixados na terra; então, Allah apanhou-os, por seus delitos, e não tiveram, contra o castigo de Allah, protetor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,268,'Isso, porque lhes chegavam os Mensageiros com as evidências, e renegaram a Fé; então, Allah apanhou-os. Por certo, Ele é Forte, Veemente na punição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,268,'E, com efeito, enviamos Moisés com Nossos sinais e evidente comprovação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,268,'A Faraó e a Haman e a Qarun; então, disseram: "Ele é um mágico, mentiroso!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,268,'E, quando a verdade lhes chegou, de Nossa parte, disseram: "Matai os filhos dos que crêem, com ele, e deixai-lhes vivas as mulheres." E a insídia dos renegadores da Fé não está senão em descaminho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,268,'E Faraó disse: "Deixai-me matar Moisés, e que ele invoque a seu Senhor. Por certo, temo que ele troque vossa religião, ou que faça aparecer, na terra, a corrupção."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,268,'E Moisés disse: "Por certo, refugio-me em meu Senhor e vosso Senhor, contra todo assoberbado que não crê no Dia da Conta!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,268,'E um homem crente, da família de Faraó, o qual ocultava sua fé, disse: "Vós matais um homem, porque disse:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,268,'"Ó meu povo! Hoje, de vós é a soberania, em sendo vós vitoriosos na terra; então, quem nos socorrerá do suplício de Allah, se este nos chega?" Faraó disse: "Não vos faço ver senão o que vejo e não vos guio senão ao caminho da retidão."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,268,'E aquele que cria disse: "Ó meu povo! Por certo, temo, por vós, algo igual ao dia dos partidos".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,268,'"Igual ao procedimento do povo de Noé e de Ãd e de Thamud e dos que foram depois deles. E Allah não deseja injustiça para os servos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,268,'"E ó meu povo! Por certo, temo, por vós, o Dia da Chamada mútua,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,268,'"Um dia, em que voltareis as costas, fugindo; não tereis defensor algum contra o castigo de Allah. E aquele, a quem Allah descaminha, não terá guia algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,268,'"E, com efeito, antes, José chegou-vos, com as evidências, e não cessastes de estar em dúvida acerca daquilo com que ele vos chegou, até que, quando morreu, dissestes:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,268,'Os que discutem acerca dos sinais de Allah, sem que comprovação alguma lhes haja chegado, grave é isso, em sendo abominação perante Allah e perante os que crêem! Assim, Allah sela o coração de todo assoberbado, tirano.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,268,'E Faraó disse: "Ó Haman! Edifica, para mim, uma torre, na esperança de eu alcançar os meios,".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,268,'"Os meios de acesso aos céus; então, poderei avistar O Deus de Moisés, e, por certo, penso que ele é mentiroso." E, assim, para Faraó, foi aformoseado o mal de seu ato, e ele foi afastado do caminho reto. E a insídia de Faraó não foi senão em vão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,268,'E aquele que cria disse: "Ó meu povo! Segui-me, Eu vos guiarei ao caminho da retidão."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,268,'"Ó meu povo! Esta vida é, apenas, gozo. E, por certo, a Derradeira Vida é a Morada da permanência eterna."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,268,'"Quem faz um mal não será recompensado senão com seu equivalente. E quem faz um bem, seja varão ou varoa, enquanto crente, esses entrarão no Paraíso; nele, dar-se-lhes-á sustento, sem conta."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,268,'"E ó meu povo! Por que razão vos convoco à salvação enquanto vós me convocais ao Fogo?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,268,'"Vós me convocais, para que eu renegue a Allah e Lhe associe o de que não tenho ciência enquanto eu vos convoco aO Todo-Poderoso, aO Perdoador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,268,'"É inconteste que aquilo a que me convocais não pode atender a uma convocação, na vida terrena nem na Derradeira Vida, e que nosso regresso é a Allah e que os entregues a excessos são os companheiros do Fogo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,268,'"Então, lembrar-vos-eis do que vos digo. E entrego minha sorte a Allah. Por certo, Allah, dos servos, é Onividente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,268,'Então, Allah guardou-o dos maus estratagemas de que usaram. E o pior castigo envolveu ao povo de Faraó:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,268,'O Fogo, a ele serão expostos, ao amanhecer e ao anoitecer. E, um dia, quando a Hora advier, dir-se-á: "Fazei o povo de Faraó entrar no mais veemente castigo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,268,'E, quando argumentarem entre eles, no Fogo, então, os subjugados dirão aos que se ensoberbeceram: "Por certo, éramos vossos seguidores. Então, podeis valer-nos contra uma só porção do Fogo?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,268,'Os que se ensoberbeceram dirão: "Por certo, todos estamos nele. Por certo, Allah, com efeito, julgou, entre os servos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,268,'E os que estiverem no Fogo dirão aos guardiães da Geena: "Suplicai a vosso Senhor nos alivie um dia do castigo!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,268,'Eles dirão: "E vossos Mensageiros não vos chegaram, com as evidências?" Dirão: "Sim!" Os guardiães dirão: "Então, suplicai-o, vós!" E a súplica dos renegadores da Fé não está senão em aberração.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,268,'Por certo, Nós socorremos Nossos Mensageiros e os que crêem na vida terrena e em um dia, em que as testemunhas se levantarão,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,268,'Um dia, em que as escusas não beneficiarão aos injustos. Enquanto eles terão a maldição, e terão a pior morada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,268,'E, com efeito, concedemos a Moisés a orientação, e fizemos herdar aos filhos de Israel o Livro,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,268,'Como orientação e lembrança para os dotados de discernimento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,268,'Então, pacienta; Por certo, a promessa de Allah é verdadeira. E implora perdão de teu delito. E glorifica, com louvor, a teu Senhor, ao anoitecer e ao alvorecer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,268,'Por certo, os que discutem, acerca dos sinais de Allah, sem que comprovação alguma lhes haja chegado, não há, em seus peitos, senão soberba aspiração, que jamais atingirão. Então, procura refúgio em Allah. Por certo, Ele é O Oniouvinte, O Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,268,'Em verdade, a criação dos céus e da terra é maior que a criação dos humanos, mas a maioria dos homens não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,268,'E o cego e o vidente não se igualam, nem os que crêem e fazem as boas obras e o malfeitor. Quão pouco meditais!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,268,'Por certo, a Hora está prestes a chegar, indubitavelmente, mas a maioria dos homens não crê.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,268,'E vosso Senhor disse: "Suplicai-Me, Eu vos atenderei. Por certo, os que se ensoberbecem diante de Minha adoração entrarão na Geena, humilhados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,268,'Allah é Quem vos fez a noite, para nela repousardes, e o dia, claro. Por certo, Allah é Obsequioso para com os humanos, mas a maioria dos homens não agradece.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,268,'Esse é Allah, vosso Senhor, Criador de todas as cousas. Não existe deus senão Ele. Então, como dEle vos distanciais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,268,'Assim, os que negavam os sinais de Allah foram distanciados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,268,'Allah é Quem vos fez da terra um lugar de morar, e do céu um teto edificado; e configurou-vos, e fez perfeita vossa configuração, e deu-vos, por sustento, das cousas benignas. Esse é Allah, vosso Senhor. Então, Bendito seja Allah, O Senhor dos mundos!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,268,'Ele é O Vivente. Não existe deus senão Ele. Então, adorai-O, sendo sinceros com Ele, na devoção. Louvor a Allah, O Senhor dos mundos!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,268,'Dize: "Por certo, foi-me coibido de adorar os que invocais, além de Allah, quando as evidências me chegaram. E foi-me ordenado islamizar-me, para O Senhor dos mundos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,268,'Ele é Quem vos criou de pó; em seguida, de gota seminal; depois, de aderência; em seguida, faz-vos sair como crianças, para, depois, atingirdes vossa força para, depois, serdes anciãos e há, entre vós, quem morra antes e para atingirdes um termo designado. E tudo isso para que razoeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,268,'Ele é Quem dá a vida e dá a morte. Então, quando decreta algo, apenas, diz-lhe: "Sê", então, é.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,268,'Não viste os que discutem acerca dos sinais de Allah, como se desviam deles?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,268,'Os que desmentem o Livro e o com que enviamos Nossos Mensageiros. Então, logo, saberão,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,268,'Quando as gargalheiras estiverem em seus pescoços, e com as correntes eles serão arrastados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,268,'Na água ebuliente; em seguida, no Fogo, serão abrasados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,268,'Em seguida, dir-se-lhes-á: "Onde estão os que idolatráveis",');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,268,'"Além de Allah?" Dirão: "Sumiram, para longe de nós. Aliás, não invocávamos nada antes." Assim, Allah descaminha os renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,268,'Dir-se-lhes-á: "Isso porque vos jubiláveis, na terra, sem razão, e porque disso vos jactáveis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,268,'"Entrai pelas portas da Geena; Nela, sereis eternos. E que execrável, em verdade, a moradia dos assoberbados!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,268,'Então, pacienta, Muhammad. Por certo, a promessa de Allah é verdadeira. E, quer te façamos ver algo do que lhes prometemos, quer te levemos a alma, antes, a Nós eles serão retornados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,268,'E, com efeito, enviamos Mensageiros, antes de ti. Dentre eles, há os de que te fizemos menção, e, dentre eles, há os de que não te fizemos menção. E não é admissível que um Mensageiro chegasse com um sinal, senão com a permissão de Allah. Então, quando chegar a ordem de Allah, arbitrar-se-á com a justiça, e, aí, os defensores da falsidade perder-se-ão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,268,'Allah é Quem vos fez os rebanhos, para neles cavalgardes e deles comerdes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,268,'- E tendes neles outros proveitos - e para, montados neles, atingirdes algum desejo de vossos peitos. E, sobre eles e sobre os barcos, sois carregados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,268,'E Ele vos faz ver Seus sinais. Então, qual dos sinais de Allah negais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,268,'E não caminharam eles na terra, para olhar como foi o fim dos que foram antes deles? Foram mais numerosos que eles e mais veementes em força e em vestígios deixados na terra; então, o que logravam, de nada lhes valeu.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,268,'E quando seus Mensageiros lhes chegaram com as evidências, jubilaram com o que possuíam de ciência e aquilo de que zombavam envolveu-os.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,268,'E quando viram Nosso suplício, disseram: "Cremos em Allah, só nEle, e renegamos aquilo que Lhe associávamos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,268,'Então, sua fé não os beneficiou quando viram Nosso suplício. Assim, é o procedimento de Allah, o qual já passou, em relação a Seus servos. E aí,os renegadores da Fé perderam-se.');
+INSERT INTO chapters (id, number, quran_id) VALUES(269,41,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,269,'Ha, Mim.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,269,'Esta é uma Revelação descida dO Misericordioso, dO Misericordiador');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,269,'Um Livro, cujos versículos são aclarados em Alcorão árabe, para um povo que sabe,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,269,'E sendo alvissareiro e admoestador. Mas a maioria deles dá-lhe de ombros; então, não ouvem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,269,'E eles dizem: "Nossos corações estão velados daquilo a que nos convocas e, em nossos ouvidos, há surdez e, entre nós e ti, há um véu; então, faze o que quiseres; por certo, faremos o que quisermos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,269,'Dize, Muhammad: "Sou, apenas, homem como vós; revela-se-me que vosso Deus é Deus Único. Então, sede retos com Ele, e implorai-Lhe perdão." E, ai dos idólatras,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,269,'Que não concedem a caridade e são renegadores da Derradeira Vida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,269,'Por certo, os que crêem e fazem boas obras terão prêmio incessante.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,269,'Dize: "Renegais Aquele Que criou a terra, em dois dias, e fazeis-Lhe semelhantes? Esse é O Senhor dos mundos",');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,269,'E fez nela assentes montanhas, em cima de sua superfície, e abençoou-a; e, ao término de quatro dias exatos, determinou, nela, suas vitualhas, para os que solicitam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,269,'Em seguida, dirigiu-se ao céu, enquanto fumo, e disse-lhe e à terra: "Vinde ambos, de bom ou de mau grado." Ambos disseram: "Viemos obedientes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,269,'Então, decretou fossem sete céus, em dois dias, e revelou a cada céu sua condição. E aformoseamos o céu mais próximo com lâmpadas, e custodiamo-lo. Essa foi a determinação dO Todo-Poderoso, dO Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,269,'Então, se eles te dão de ombros, dize: "Admoesto-vos de que haverá um raio igual ao raio de Ãd e Thamud."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,269,'Quando os Mensageiros lhes chegaram, por diante deles e por detrás deles, dizendo: "Não adoreis senão a Allah", disseram: "Se Nosso Senhor quisesse, haveria feito descer anjos; e, por certo, somos renegadores do com que sois enviados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,269,'Então, quanto ao povo de Ãd, ensoberbeceram-se, sem razão, na terra, e disseram: "Quem é mais veemente que nós, em força?" E não viram que Allah, Que os criou, é mais Veemente que eles, em força? E renegavam Nossos sinais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,269,'Então, enviamos contra eles estridente vento glacial, em dias funestos, para fazê-los experimentar o castigo da ignomínia, na vida terrena. E, em verdade, o castigo da Derradeira Vida é mais ignominioso. E Eles não serão socorridos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,269,'E, quanto ao povo de Thamud, guiamo-los, mas amaram mais a cegueira que a orientação; então, o raio do aviltante castigo apanhou-os, pelo que cometiam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,269,'E salvamos os que criam e eram piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,269,'E um dia, os inimigos de Allah serão reunidos com destino ao Fogo; então, se coordenarão,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,269,'Até que, quando chegarem a ele, seu ouvido e suas vistas e suas peles testemunharão contra eles, pelo que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,269,'E dirão a suas peles: "Por que testemunhastes contra nós?" Elas dirão: "Fez-nos falar Allah, Aquele Que faz falar a todas as cousas. E Ele é Quem vos criou, da vez primeira, e a Ele sois retornados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,269,'"E não podíeis esconder-vos de tal modo que nem vosso ouvido nem vossas vistas nem vossas peles não testemunhassem contra vós; mas pensáveis que Allah não sabia muito do que fazíeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,269,'"E esse vosso pensamento, que pensastes de vosso Senhor, arruinou-vos, e assim, tornaste-vos dos perdedores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,269,'Então, mesmo se pacientarem, o Fogo será sua moradia. E, se pedirem escusas, não serão absolvidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,269,'E destinamo-lhes acompanhantes; então, estes aformosearam, para eles, o que estava adiante deles e o que estava detrás deles. E o Dito cumprir-se-á, contra eles, junto de outras comunidades de gênios e de humanos, que passaram antes deles. Por certo, eles foram perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,269,'E os que renegam a Fé dizem: "Não ouçais este Alcorão, e fazei barulho durante sua recitação, na esperança de vencerdes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,269,'Então, em verdade, faremos experimentar aos que renegam a Fé veemente castigo, e recompensá-los-emos com algo pior que aquilo que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,269,'Essa é a recompensa dos inimigos de Allah: o Fogo. Nele, terão a morada da Eternidade, em recompensa de haverem negado Nossos sinais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,269,'E os que renegam a Fé dirão: "Senhor nosso! Faze-nos ver as duas hostes, de jinns e de humanos, que nos descaminharam, assim, nós os colocaremos sob nossos pés, para serem dos rebaixados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,269,'Por certo, os que dizem: "Nosso Senhor é Allah", em seguida, são retos, os anjos descerão sobre eles, freqüentemente, dizendo: "Não temais e não vos entristeçais; e exultai com o Paraíso, que vos era prometido."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,269,'"Somos vossos protetores, na vida terrena e na Derradeira Vida. E tereis, nela, o que vossas almas apetecerem; e tereis nela, o que cobiçardes,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,269,'"Como hospedagem de Um Perdoador, Misericordiador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,269,'E quem melhor, em dito, que aquele que convoca os homens a Allah e faz o bem e diz: "Por certo, sou dos submissos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,269,'E o bom e o mau não se igualam. Revida o mal com o que é melhor: então, eis aquele entre o qual e ti há inimizade, como íntimo aliado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,269,'E isto não se confere senão aos que pacientam. E isto não se confere senão ao dotado de magnífica sorte.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,269,'E se, em verdade, te instiga alguma instigação de Satã, procura refúgio em Allah. Por certo, Ele é Oniouvinte, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,269,'E, entre Seus sinais, está a noite e o dia e o sol e a lua. Não vos prosterneis diante do sol nem da lua, e prosternai-vos diante de Allah, Quem os criou, se só a Ele adorais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,269,'E, se eles se ensoberbecem, os que estão junto de teu Senhor O glorificam, noite e dia, enquanto não se enfadam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,269,'E, dentre Seus sinais, está que tu vês a terra humilde, e, quando fazemos descer, sobre ela a água, move-se e cresce. Por certo, Aquele, que a vivifica, dará a vida aos mortos. Por certo, Ele, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,269,'Por certo, os que profanam Nossos sinais não se escondem de Nós. Então, quem é melhor: aquele que será lançado no Fogo, ou aquele que virá a Nós, em segurança, no Dia da Ressurreição? Fazei o que quiserdes. Por certo, Ele, do que fazeis, é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,269,'Por certo, aos que renegam a Mensagem, quando esta lhes chega, castigá-los-emos. E, por certo, ele é um Livro poderoso;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,269,'A falsidade não lhe chega, nem por diante nem por detrás dele. É a revelação descida de Um Sábio, Louvável.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,269,'Não se te diz senão o que já foi dito aos Mensageiros, antes de ti. Por certo, teu Senhor é Possuidor de perdão e Possuidor de dolorosa punição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,269,'E, se o houvéssemos feito um Alcorão em língua forânea, eles haveriam dito: "Que, ao menos, seus versículos fossem aclarados! Um livro forâneo e um Mensageiro árabe?!" Dize: "Ele é, para os que crêem, orientação e cura. E os que não crêem, há surdez em seus ouvidos, e ele lhes é cegueira. Esses estão como se fossem chamados de longínquo lugar."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,269,'E, com efeito, concedêramos a Moisés o Livro, e discreparam dele. E, não fora uma Palavra antecipada de teu Senhor, haver-se-ia arbitrado entre eles. E, por certo, estão em dúvida tormentosa acerca dele.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,269,'Quem faz o bem o faz em benefício de si mesmo. E quem faz o mal o faz em prejuízo de si mesmo. E teu Senhor não é injusto com os servos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,269,'A Ele cabe a ciência da Hora. E nenhum fruto sai de seu invólucro, e nenhuma varoa concebe, nem dá à luz senão com Sua ciência. E, um dia, quando Ele os chamar e disser: "Onde estão Meus parceiros?", dirão: "Notificamo-Te: não há testemunha alguma disso, entre nós."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,269,'E o que, antes, invocavam, sumirá, para longe deles, e pensarão que não terão fugida alguma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,269,'O ser humano não se enfada de suplicar o bem e, se o mal o toca, fica desesperado, desalentado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,269,'E, em verdade, se o fazemos experimentar uma misericórdia, vinda de Nós, após um infortúnio, que o haja atingido, dirá: "Isso se deve a mim, e não penso que a Hora advenha; e, em verdade, se eu for retornado a meu Senhor, por certo, terei, junto dEle, a mais bela recompensa." Então, em verdade, informaremos os que renegam a Fé do que fizeram e, em verdade, fá-los-emos experimentar duro castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,269,'E, quando agraciamos o ser humano, ele dá de ombros e se distancia, sobranceiro. E, quando o mal o toca, ei-lo com largas súplicas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,269,'Dize: "Vistes? Se ele é de Allah, em seguida, renegai-lo, quem é mais descaminhado que o que está em profunda discórdia?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,269,'Fá-los-emos ver Nossos sinais nos horizontes e neles mesmos, até que se torne evidente, para eles, que ele, Alcorão, é a Verdade. E não basta que teu Senhor, sobre todas as cousas, seja Testemunha?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,269,'Ora, por certo, eles estão em contestação acerca do deparar de seu Senhor. Ora, por certo, Ele está, sempre, abarcando todas as cousas.');
+INSERT INTO chapters (id, number, quran_id) VALUES(270,42,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,270,'Ha, Mim.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,270,'Ain, Sin, Qaf.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,270,'Assim, Allah, O Todo-Poderoso, O Sábio, faz revelações a ti e aos que foram antes de ti.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,270,'DEle é o que há nos céus e o que há na terra. E, por certo, Allah é O Bastante a Si Mesmo, O Louvável.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,270,'Quase os céus se espedaçam, de cima abaixo, por Sua magnificência. E os anjos glorificam, com louvor, a seu Senhor, e imploram perdão Para quem está na terra. Ora, por certo, Allah, Ele é O Perdoador, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,270,'E os que tomam, além dEle, protetores, Allah sobre eles é Custódio; e tu, Muhammad, sobre eles, não és patrono.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,270,'E, assim, revelamo-te um Alcorão árabe, para admoestares a Mãe das cidades e a quem está a seu redor; e para os admoestares do indubitável dia do juntar. Um grupo estará no Paraíso, e um grupo estará no Fogo ardente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,270,'E, se Allah quisesse, haveria feito deles uma só comunidade, mas Ele faz entrar em Sua misericórdia a quem quer. E os injustos não terão nem protetor nem socorredor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,270,'Tomam eles, além dEle, protetores? Então, Allah é O Único Protetor. E Ele dá a vida aos mortos. E Ele, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,270,'Seja o que for de que discrepeis, seu julgamento é de Allah. Dize: "Esse é Allah, meu Senhor. N');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,270,'Ele é O Criador dos céus e da terra. Ele vos fez, de vós mesmos, casais, e dos rebanhos, casais; com isso, multiplica-vos. Nada é igual a Ele. E Ele é O Oniouvinte, O Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,270,'DEle são as chaves dos céus e da terra. Ele prodigaliza o sustento a quem quer, e restringe-o. Por certo, Ele, de todas as cousas, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,270,'Da religião, Ele legislou, para vós, o que recomendara a Noé, e o que te revelamos, e o que recomendáramos a Abraão e a Moisés e a Jesus: "Observai a religião e, nela, não vos separeis." É grave para os idólatras aquilo a que os convocas. Allah atrai, para Ele, quem Ele quer, e guia, para Ele, quem se Lhe volta contrito.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,270,'E eles não se separaram senão após haver-lhes chegado a ciência, movidos por rivalidade, entre eles. E, não fora uma Palavra antecipada de teu Senhor, postergando seu julgamento até um termo designado, arbitrar-se-ia, entre eles. E, por certo, aqueles, aos quais se fez herdar o Livro, depois deles, estão em dúvida tormentosa acerca dele.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,270,'Então, por isso, convoca, pois, os homens. E sê reto, como te foi ordenado, e não sigas suas paixões. E dize: "Creio nos Livros que Allah fez descer. E foi-me ordenado fazer justiça, entre vós. Allah é nosso Senhor e vosso Senhor. A nós, nossas obras, e a vós, vossas obras. Não há argumentação entre nós e vós. Allah nos juntará. E a Ele será o destino."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,270,'E os que argumentam, sobre Allah, após haver sido Ele atendido, seu argumento é refutado perante seu Senhor e, sobre eles, é uma ira; e terão veemente castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,270,'Allah é Quem fez descer o Livro, com a verdade, e a balança. E o que te faz inteirar-te de que a Hora, talvez, esteja próxima?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,270,'Os que nela não crêem procuram apressá-la. E os que crêem estão dela amedrontados, e sabem que ela é a verdade. Ora, por certo, os que altercam sobre a Hora estão em profundo descaminho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,270,'Allah é Sutil para com Seus servos. Ele dá sustento a quem quer. E Ele é O Forte, O Todo-Poderoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,270,'A quem deseja as searas da Derradeira Vida, acrescentamo-Ihe suas searas. E a quem deseja as searas da vida terrena, concedemo-Ihe algo dela, e não terá, na Derradeira Vida, porção alguma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,270,'Ou têm eles parceiros que legislaram, para eles, o que da religião, Allah não permitiu? E, não fora a Palavra da decisão haver-se-ia arbitrado entre eles. E, por certo, os injustos terão doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,270,'Verás os injustos amedrontados do que cometeram, enquanto ele estiver caindo sobre eles. E os que crêem e fazem as boas obras estarão nos floridos campos dos Jardins. Terão o que quiserem, junto de seu Senhor. Esse é o grande favor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,270,'Isto é o que Allah alvissara a Seus servos que crêem e fazem as boas obras. Dize: "Não vos peço prêmio algum por isso, senão a afeição para com os parentes." E, quem pratica boa ação, Nós, a esta, acrescentaremos algo de bom. Por certo, Allah é Perdoador, Agradecido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,270,'Ou dizem: "Ele forjou mentira acerca de Allah?" Então, se Allah quisesse, selar-te-ia o coração. E Allah cancela a falsidade e estabelece, com Suas palavras, a Verdade. Por certo, Ele, do íntimo dos peitos, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,270,'E Ele é Quem aceita o arrependimento de Seus servos, e indulta as más obras, e sabe o que fazeis;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,270,'E Ele atende aos que crêem e fazem as boas obras, e acrescenta-lhes algo de seu favor. E os renegadores da Fé terão veemente castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,270,'E, se Allah prodigalizasse o sustento a Seus servos, haveriam cometido transgressão na terra; mas Ele faz descer, na justa medida, o que quer. Por certo, Ele, de Seus servos, é Conhecedor, Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,270,'E Ele é Quem faz descer a chuva, após se desesperarem; e Ele esparge Sua Misericórdia. E Ele é O Protetor, O Louvável.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,270,'E, entre Seus sinais, está a criação dos céus e da terra, e dos seres animais, que, em ambos, espalha. E Ele, para juntá-los quando quiser, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,270,'E o que quer que vos alcance de desgraça, é pelo que vossas mãos cometem. E Ele indulta a muitos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,270,'E não podeis escapar do castigo de Allah na terra. E não tendes, em vez de Allah, nem protetor nem socorredor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,270,'E, entre Seus sinais, estão as naus correntes no mar, elevadas como as montanhas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,270,'Se quisesse, faria deter-se o vento: então, permaneceriam elas quedas, em sua superfície por certo, há nisso sinais para todo perseverante, agradecido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,270,'Ou as faria naufragar com seus viajores, pelo que cometeram. E a muitos indultaria.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,270,'Isso, para exortar os crentes e para que os que discutem acerca de Nossos sinais saibam que não terão fugida alguma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,270,'Então, o que quer que vos seja concedido é, apenas, gozo da vida terrena. Mas o que está junto de Allah é melhor e mais permanente para os que crêem e confiam em seu Senhor,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,270,'E para os que evitam os grandes pecados e as obscenidades e que, quando irados, perdoam,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,270,'E para os que atendem a seu Senhor, e cumprem a oração, e cuja conduta é a consulta, entre eles, e despendam daquilo que lhes damos por sustento,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,270,'E para os que se defendem, quando a opressão os alcança.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,270,'E a recompensa de má ação é má ação igual a ela. E quem a indulta e se emenda, seu prêmio impenderá a Allah. Por certo, Ele não ama os injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,270,'E, em verdade, os que se defendem, após haverem sofrido injustiça, a esses não caberá repreensão,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,270,'Apenas, cabe a repreensão aos que praticam injustiça contra os homens e cometem, sem razão, transgressão na terra. Esses terão doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,270,'E, em verdade, quem pacienta e perdoa, por certo, isso é da firmeza indispensável em todas as resoluções.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,270,'E aquele, a quem Allah descaminha, não terá, depois dEle, protetor algum. E tu verás os injustos, quando virem o castigo, dizer: "Há caminho para revogação disso?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,270,'E tu vê-los-ás expostos a ele, sendo humilhados pela vileza, olhando de soslaio. E os que crêem dirão: "Por certo, os perdedores são os que se perderam a si mesmos e a suas famílias, no Dia da Ressurreição." Ora, por certo, os injustos estarão em permanente castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,270,'E não terão protetores que os socorram, além de Allah. E aquele a quem Allah descaminha não terá caminho algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,270,'Atendei a vosso Senhor, antes que chegue um dia, para o qual não haverá revogação da parte de Allah. Nesse dia, não tereis refúgio algum e não tereis negação alguma de vossos pecados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,270,'E, se te dão de ombros, não te enviamos, sobre eles, por custódio. Não te impende senão a transmissão da Mensagem. E, por certo, quando fazemos experimentar ao ser humano misericórdia vinda de Nós, com ela jubila. E, se uma má ação os alcançar, pelo que suas mãos anteciparam, por certo, o ser humano se torna ingrato.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,270,'De Allah é a soberania dos céus e da terra. Ele cria o que quer. Ele dadiva a quem quer com meninas, e dadiva a quem quer com os meninos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,270,'Ou os reúne em casais de meninos e meninas. E faz estéril a quem quer. Por certo, Ele é Onisciente, Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,270,'E não é admissível a um mortal que Allah lhe fale, senão por revelação, ou por trás de um Véu, ou pelo envio de um Mensageiro; então, este revela, com Sua permissão, o que Ele quer. Por certo, Ele é Altíssimo, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,270,'E, assim, revelamo-te um Espírito de Nossa ordem. Tu não estavas inteirado do que era o Livro nem do que era a Fé, mas Nós o fizemos, como luz, com que guiamos a quem queremos de Nossos servos. E, por certo, tu guias os homens à uma senda reta,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,270,'À senda de Allah, de Quem é o que há nos céus e o que há na terra. Ora, a Allah destinam-se as determinações!');
+INSERT INTO chapters (id, number, quran_id) VALUES(271,43,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,271,'Ha, Mim.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,271,'Pelo Livro explícito!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,271,'Por certo, Nós o fizemos um Alcorão árabe, para razoardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,271,'E, por certo, estando na Mãe do Livro, junto de Nós, ele é altíssimo, sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,271,'Então, privar-vos-íamos da Mensagem, abandonando-vos, por que sois um povo entregue a excessos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,271,'E quantos profetas enviamos aos antepassados!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,271,'E não lhes chegou profeta algum, sem que dele zombassem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,271,'Então, aniquilamos os mais temíveis que eles; e já precedeu exemplo dos antepassados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,271,'E, se lhes perguntas: "Quem criou os céus e a terra?", em verdade, dirão: "Criou-os O Todo-Poderoso, O Onisciente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,271,'Ele é Quem faz da terra leito e, nela, fez-vos caminhos, para vos guiardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,271,'E Ele é Quem faz descer do céu água, na justa medida e, com ela revivescemos uma plaga morta. Assim, far-vos-ão sair dos sepulcros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,271,'E Ele é Quem criou todos os casais de seres, e vos fez do barco e dos rebanhos aquilo em que montais,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,271,'Para vos instalardes sobre seus dorsos; em seguida, para vos lembrardes da graça de vosso Senhor, quando vos instalardes neles e disserdes: "Glorificado seja Quem nos submeteu tudo isto, enquanto jamais seríamos capazes de fazê-lo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,271,'"E Por certo, seremos tornados a nosso Senhor."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,271,'E fizeram-Lhe parte de Seus servos. Por certo, o ser humano é um ingrato declarado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,271,'Será que tomou Ele filhas, para Si, dentre o que criou, e escolheu, para vós, os filhos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,271,'E, quando a um deles se lhe alvissara o nascimento de um semelhante ao que ele atribui aO Misericordioso, torna-se-lhe a face enegrecida, enquanto fica angustiado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,271,'E como atribuir-Lhe quem cresce entre adornos e não é argüente, na disputa?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,271,'E fizeram dos anjos, que são servos dO Misericordioso, seres femininos. Testemunharam eles sua criação? Seu testemunho será inscrito, e serão interrogados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,271,'E dizem: "Se O Misericordioso quisesse, nós não os adoraríamos." Eles não têm ciência alguma disso. Eles nada fazem senão imposturar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,271,'Ou Nós lhes concedêramos um Livro, antes dele, e a ele se ativeram? Não.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,271,'Mas dizem: "Por certo, encontramos nossos pais em um credo e, por certo, em suas pegadas, estamos sendo guiados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,271,'E, assim, antes de ti, Muhammad, jamais enviamos a uma cidade admoestador algum, sem que seus opulentos habitantes dissessem: "Por certo, encontramos nossos pais em um credo e, por certo, estamos seguindo suas pegadas."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,271,'Ele disse: "E ainda que eu vos chegue com algo que guia melhor que aquilo em que encontrastes vossos pais?" Disseram: "Por certo, somos renegadores do com que sois enviados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,271,'E vingamo-nos deles; então olha como foi o fim dos desmentidores!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,271,'E quando Abraão disse a seu pai e a seu povo: "Por certo, estou em rompimento com o que adorais"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,271,'"Exceto com Quem me criou; então, por certo, Ele me guiará."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,271,'E fez disto uma palavra permanente em sua prole, para retornarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,271,'Mas Eu fiz gozar a esses e a seus pais, até que lhes chegou a Verdade e um evidente Mensageiro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,271,'E, quando a Verdade lhes chegou, disseram: "Isto é magia. E somos renegadores dela."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,271,'E disseram: "Que este Alcorão houvesse sido descido sobre um homem notável, das duas cidades!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,271,'Partilham eles a misericórdia de teu Senhor? Nós é que partilhamos, entre eles, seus meios de subsistência, na vida terrena. E elevamos, em escalões, alguns deles acima de outros, para que uns tomem a outros, por servos. E a misericórdia de teu Senhor é melhor que tudo o que juntam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,271,'E, não fora porque os humanos se tornariam uma só comunidade de renegadores da Fé, haveríamos feito para quem renega O Misericordioso tetos de prata, para suas casas, e degraus de prata em que subissem;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,271,'E, ainda, portas, para suas casas, e leitos sobre os quais se reclinassem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,271,'E ornamento. E tudo isso não é senão gozo da vida terrena. E a Derradeira Vida, junto de teu Senhor, será para os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,271,'E a quem fica desatento à lembrança dO Misericordioso, destinamo-lhe um demônio, e este lhe será um acompanhante');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,271,'- E, por certo, eles os afastam do caminho, enquanto supõem estar sendo guiados -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,271,'Até que, quando chegar a Nós, dirá ao demônio: "Quem dera houvesse, entre mim e ti, a distância de dois levantes!" E que execrável acompanhante!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,271,'E isso de nada vos beneficiará, nesse dia - uma vez que fostes injustos - porque sereis partícipes, no castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,271,'Então, podes tu fazer ouvir os surdos, ou podes tu guiar os cegos e a quem esteja em evidente descaminho?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,271,'E, se te fazemos ir, por certo, vingar-nos-emos deles;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,271,'Ou se te fazemos ver o que lhes prometemos, vê-lo-ás, por certo, Nós, sobre eles somos Potentíssimo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,271,'Então, atém-te ao que te foi revelado. Por certo, estás na senda reta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,271,'E, por certo, ele é honra para ti e para teu povo. E sereis interrogados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,271,'E pergunta aos que, de Nossos Mensageiros, enviamos, antes de ti: "Se Nós fizemos, além dO Misericordioso, deuses, para serem adorados?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,271,'E, com efeito, enviamos Moisés, com Nossos sinais, a Faraó e a seus dignitários. Então, disse: "Por certo, sou Mensageiro do Senhor dos mundos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,271,'E quando ele lhes chegou com Nossos sinais, ei-los que se riram deles.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,271,'E não os fizemos ver sinal algum, sem que fosse maior que seu precedente. E apanhamo-los com o castigo, para retornarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,271,'E disseram: "Ó Mágico! Suplica, por nós, a teu Senhor, pelo que Ele te recomendou. Por certo, seremos guiados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,271,'E, quando removemos deles o castigo, ei-los que violaram sua promessa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,271,'E Faraó clamou a seu povo. Disse: "Ó meu povo! Não é minha a soberania do Egito e estes rios que correm a meus pés? Então, não o enxergais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,271,'"Não sou eu melhor que este, que é mísero e quase não pode expressar-se."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,271,'"Que sobre ele houvesse lançado bracelete de ouro, ou com ele houvessem chegado os anjos acompanhantes!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,271,'E ele atordoou seu povo; então, obedeceram-no. Por certo, eles eram um povo perverso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,271,'E, quando eles Nos indignaram, vingamo-nos deles; então, afogamo-los todos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,271,'E fizemos deles um precedente e exemplo para a posteridade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,271,'E, quando o filho de Maria é citado como exemplo, eis teu povo fazendo dele alarido de alegria.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,271,'E dizem: "São melhores nossos deuses ou ele?" Eles não to dão como exemplo senão para contenderem; aliás, são um povo disputante.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,271,'Ele não é senão um servo, a quem agraciamos e de quem fizemos um exemplo para os filhos de Israel.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,271,'E, se quiséssemos, haveríamos feito de vós anjos para vos sucederem, na terra.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,271,'E, por certo, ele será indício da Hora; então, não a contesteis, e segui-me. Isto é uma senda reta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,271,'E que Satã não vos afaste dela. Por certo, ele vos é inimigo declarado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,271,'E, quando Jesus chegou com as evidências, disse: "Com efeito, cheguei-vos com a Sabedoria e para tornar evidente, para vós, algo daquilo de que discrepais. Então, temei a Allah e obedecei-me."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,271,'"Por certo, Allah é meu Senhor e vosso Senhor. Então, adorai-O. Essa é a senda reta."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,271,'E os partidos discreparam entre eles. E ai dos injustos por um castigo de doloroso dia!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,271,'Não esperam eles senão que lhes chegue a Hora, inopinadamente, enquanto não percebam?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,271,'Nesse dia, os amigos serão inimigos uns dos outros, exceto os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,271,'"Ó Meus servos! Nada haverá que temer por vós, hoje, nem vos entristecereis,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,271,'"São os que creram em Nossos sinais e foram muçulmanos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,271,'"Entrai no Paraíso, vós e vossas mulheres: lá, deliciar-vos-eis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,271,'"Far-se-á circular, entre eles, baixelas de ouro e copos. E, nele, haverá tudo que as almas apetecem e com que os olhos se deleitam. E vós, nele, sereis eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,271,'"E eis o Paraíso, que vos fizeram herdar, pelo que fazíeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,271,'"Nele, tereis frutas abundantes: delas comereis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,271,'Por certo, os criminosos serão eternos, no castigo da Geena,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,271,'O qual não se entibiará para eles, e lá, ficarão mudos de desespero.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,271,'E não fomos injustos com eles, mas eles mesmos é que foram injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,271,'E clamarão: "Ó Malik! Que teu Senhor nos ponha termo à vida!" Dirá ele: "Por certo, aí, sereis permanentes!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,271,'"Com efeito, chegamo-vos com a Verdade, mas a maioria de vós estava odiando a Verdade."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,271,'Ou urdiram eles algo? Então, Nós, também, urdimos algo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,271,'Ou supõem que Nós não ouvimos seus segredos e suas confidências? Sim! E Nossos Mensageiros celestiais, junto deles, escrevem o que fazem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,271,'Dize: "Se O Misericordioso tivesse um filho, eu seria o primeiro dos adoradores dele."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,271,'Glorificado seja O Senhor dos céus e da terra, O Senhor do Trono, acima do que eles alegam!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,271,'Então, deixa-os confabular e se divertirem, até depararem seu dia, que lhes é prometido,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,271,'E é Ele Quem, no céu, é Deus e, na terra, é Deus. E Ele é O Sábio, O Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,271,'E Bendito seja Aquele de Quem é a soberania dos céus e da terra e do que há entre ambos; e, junto dEle, há a ciência da Hora, e a Ele sereis retornados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,271,'E os que eles invocam, além dEle, não possuem a intercessão, exceto os que testemunham a verdade, enquanto sabem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,271,'E, se lhes perguntas: "Quem os criou?", em verdade, dirão: "Allah!" Então, como se distanciam da verdade?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,271,'E, por sua fala: "Ó Senhor meu!", por certo, estes são um povo que não crê.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,271,'Então, indulta-os e dize: "Salam!", Paz! E eles logo saberão!');
+INSERT INTO chapters (id, number, quran_id) VALUES(272,44,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,272,'Ha, Mim.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,272,'Pelo Livro explícito!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,272,'Surat Ad-Dukhan. Por certo, Nós o fizemos descer em uma noite bendita, por certo, somos Admoestadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,272,'Nela, decide-se toda sábia ordem,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,272,'Como ordem de Nossa parte. Por certo, Somos Nós Que enviamos a Mensagem,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,272,'Como misericórdia de teu Senhor. Por certo, Ele é O Oniouvinte, O Onisciente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,272,'O Senhor dos céus e da terra e do que há entre ambos, se estais convictos disso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,272,'Não existe deus senão Ele. Ele dá a vida e dá a morte. Ele é Vosso Senhor e O Senhor de vossos pais antepassados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,272,'Mas eles, mergulhados em dúvida, se divertem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,272,'Então, fica na expectativa de um dia, em que o céu chegará com um fumo evidente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,272,'Que encobrirá os homens. Dirão: "Este é um doloroso castigo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,272,'"Senhor nosso! Remove de nós o castigo: por certo, somos crentes!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,272,'Como poderão ter a lembrança disso, enquanto com efeito, lhes chegou um evidente Mensageiro,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,272,'Em seguida, voltaram-lhe as costas e disseram: "Ele está sendo instruído, é um louco."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,272,'Por certo, removeremos por um pouco, o castigo, mas por certo, à descrença voltareis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,272,'Um dia, desferiremos o maior golpe; por certo, deles Nos vingaremos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,272,'E, com efeito, prováramos, antes deles, o povo de Faraó; e já lhes havia chegado um nobre Mensageiro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,272,'Que dissera: "Entregai-me os servos de Allah. Por certo, sou-vos leal Mensageiro."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,272,'"E não vos sublimeis em arrogância para com Allah. Por certo, eu vos chego com evidente comprovação."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,272,'"E, por certo, refugio-me em meu Senhor e vosso Senhor, contra o me apedrejardes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,272,'"E, se não credes em mim, apartai-vos de mim."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,272,'Então, ele invocou o seu Senhor: "Por certo, estes são um povo criminoso."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,272,'Allah disse: "Então, parte com Meus servos, durante a noite. Por certo, sereis perseguidos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,272,'"E deixa o mar como está, calmo: por certo, eles serão um exército afogado."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,272,'Que de jardins e fontes deixaram.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,272,'E searas, e nobre residência,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,272,'E graça, em que estavam hílares,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,272,'Assim foi. E fizemos herdá-los um outro povo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,272,'Então, nem o céu nem a terra choraram por eles, e lhes não foi concedida dilação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,272,'E, com efeito, salvamos os filhos de Israel do aviltante castigo');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,272,'De Faraó. Por certo, ele era altivo, entre os que se entregavam a excessos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,272,'E, com efeito, escolhemo-los com ciência, acima dos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,272,'E concedemo-lhes, dentre os sinais, aquilo em que havia evidente prova.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,272,'Por certo, estes dizem:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,272,'"Não há senão nossa primeira morte, e não seremos ressuscitados');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,272,'Então, fazei vir vossos pais, se sois verídicos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,272,'São eles melhores ou o povo de Tubba e os que foram antes deles? Nós os aniquilamos. Por certo, eram criminosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,272,'E não criamos os céus e a terra e o que há entre ambos, por diversão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,272,'Não os criamos, a ambos, senão com a verdade, mas a maioria deles não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,272,'Por certo, o Dia da Decisão será seu tempo marcado, de todos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,272,'Um dia, em que nenhum aliado de nada valerá a outro aliado; e eles não serão socorridos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,272,'Exceto aquele de quem Allah tiver misericórdia. Por certo, Ele é O Todo-Poderoso, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,272,'Por certo, a árvore de Zaqqum');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,272,'Será o alimento do pecador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,272,'Como o metal em fusão, ferverá nos ventres');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,272,'Como o ferver da água ebuliente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,272,'Dir-se-á aos anjos: "Apanhai-o, e puxai-o para o meio do Inferno;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,272,'Em seguida, entornai, sobre sua cabeça, algo do castigo da água ebuliente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,272,'Dir-se-lhe-á: "Experimentai-o! Por certo, tu te imaginavas o todo-poderoso, o nobre."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,272,'Por certo, este é o que contestáveis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,272,'Por certo, os piedosos estarão em segura morada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,272,'Entre Jardins e fontes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,272,'Vestir-se-ão de fina seda e de brocado; eles estarão frente a frente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,272,'Assim será. E fá-los-emos se casarem com húris de belos grandes olhos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,272,'Neles, em segurança, requestarão toda espécie de frutas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,272,'Neles, não experimentarão mais a morte, exceto a primeira morte. E Ele os guardam do castigo do Inferno,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,272,'Como favor de teu Senhor. Esse é o magnífico triunfo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,272,'E, apenas, facilitamo-lo, em tua língua, para meditarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,272,'Então, expecta. Por certo, eles estão expectando.');
+INSERT INTO chapters (id, number, quran_id) VALUES(273,45,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,273,'Ha, Mim.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,273,'Surat Az-Zumar. A revelação do Livro é de Allah, O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,273,'Por certo, nos céus e na terra, há sinais para os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,273,'E, em vossa criação, e nos seres animais, que Ele espalha, há sinais para um povo que se convence da Ressurreição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,273,'E, na alternância da noite e do dia, e no sustento que Allah faz descer do céu e com que vivifica a terra, depois de morta, e na distribuição dos ventos, há sinais para um povo que razoa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,273,'Esses são os versículos de Allah: recitamo-los, para ti, Muhammad, com a verdade. Então, em que mensagem crerão eles, depois da de Allah e de Seus versículos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,273,'Ai de todo constante impostor, pecador!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,273,'Ele ouve os versículos de Allah, que se recitam, para ele; em seguida, obstina-se na descrença, ensoberbecendo-se, como se os não houvesse ouvido. Então, alvissara-Ihe doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,273,'E, quando sabe algo de Nossos sinais, toma-os por objeto de zombaria. Esses terão aviltante castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,273,'Diante deles, está a Geena. E de nada lhes valerá o que lograram nem aqueles que tomaram por aliados, além de Allah. E terão formidável castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,273,'Este é Orientação. E os que renegam os sinais de seu Senhor terão castigo de doloroso tormento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,273,'Allah é Quem vos submete o mar, para, nele correr o barco, por Sua ordem, e para nele, buscardes algo de Seu favor e para serdes agradecidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,273,'E submete-vos o que há nos céus e o que há na terra: tudo é dEle. Por certo, há nisso sinais para um povo que reflete.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,273,'Dize aos que crêem que perdoem aos que não esperam pelos dias de Allah, para que Ele mesmo recompense um povo, pelo que lograva.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,273,'Quem faz o bem o faz em benefício de si mesmo. E quem faz o mal o faz em prejuízo de si mesmo. Em seguida, a vosso Senhor, sereis retornados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,273,'E, com efeito, concedemos aos filhos de Israel o Livro e a sabedoria e a profecia, e demo-lhes, por sustento, das cousas benignas, e preferimo-los a todos os mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,273,'E concedemo-lhes evidências da ordem. Então, eles não discreparam senão após haver-lhes chegado a ciência, movidos por agressão entre eles. Por certo, teu Senhor arbitrará, entre eles, no Dia da Ressurreição, acerca daquilo de que discrepavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,273,'Em seguida, fizemo-te estar sobre uma legislação de ordem; então, segue-a. E não sigas as paixões dos que não sabem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,273,'Por certo, eles de nada te valerão, diante de Allah. E, por certo, os injustos são aliados uns aos outros. E Allah é O Protetor dos piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,273,'Isto são clarividências para os humanos, e orientação e misericórdia para um povo que se convence da Derradeira Vida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,273,'Ou supõem os que perpetram as más obras que Nós os faremos iguais, em sua vida e em sua morte, aos que crêem e fazem as boas obras? Que vil o que julgam!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,273,'E Allah criou os céus e a terra, com a verdade. E fê-lo, para que cada alma seja recompensada pelo que houver logrado; e eles não sofrerão injustiça alguma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,273,'E viste aquele que tomou por deus sua paixão, e Allah o descaminhou, com ciência, e lhe selou o ouvido e o coração e lhe fez névoa sobre a vista? E quem o guiará, depois de Allah? Então, não meditais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,273,'E eles dizem: "Não há senão nossa vida terrena: morremos e vivemos, e nada nos aniquila senão o tempo." E eles não têm disso ciência alguma. Eles nada fazem senão conjeturar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,273,'E, quando se recitam, para eles, Nossos evidentes versículos, seu argumento não é senão dizer: "Fazei vir nossos pais, se sois verídicos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,273,'Dize: "Allah vos dá a vida; depois, Ele vos dá a morte; em seguida, juntar-vos-á, no Indubitável Dia da Ressurreição"; mas a maioria dos homens não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,273,'E de Allah é a soberania dos céus e da terra. E, um dia, quando advier a Hora, nesse dia, perder-se-ão os defensores da falsidade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,273,'E tu verás cada comunidade genuflexa. Cada comunidade será convocada para seu Livro. Dir-se-lhes-á: "Hoje, sereis recompensados, pelo que fazíeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,273,'"Este Nosso Livro fala sobre vós, com a verdade. Por certo, Nós inscrevíamos o que fazíeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,273,'Então, quanto aos que crêem e fazem as boas obras, seu Senhor fá-los-á entrar em Sua misericórdia. Esse é o evidente triunfo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,273,'E, quanto aos que renegam a Fé, dir-se-Ihes-á: "E não se recitavam, para vós, Meus versículos, então, ensoberbecestes-vos e fostes um povo criminoso?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,273,'E, quando se disse: "Por certo, a promessa de Allah é verdadeira e a Hora é indubitável", dissestes: "Não estamos inteirados do que seja a Hora; não conjeturamos senão conjeturas, e, disso, não estamos convictos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,273,'E mostrar-se-lhes-ão as más obras que cometiam. E envolvê-los-á aquilo de que zombavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,273,'E dir-se-lhes-á: "Hoje, esquecemo-vos como vós esquecestes o deparar deste vosso dia, e vossa morada é o Fogo. E não tendes socorredores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,273,'"Isso, porque tomastes os sinais de Allah, por zombaria, e porque a vida terrena vos iludiu." Então, nesse dia, não os farão sair dele, e não serão absolvidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,273,'E, louvor a Allah, O Senhor dos céus e O Senhor da terra, O Senhor dos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,273,'E dEle é a grandeza, nos céus e na terra. E Ele é O Todo-Poderoso, O Sábio.');
+INSERT INTO chapters (id, number, quran_id) VALUES(274,46,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,274,'Ha, Mim.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,274,'A revelação do Livro é de Allah, O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,274,'Não criamos os céus e a terra e o que há entre ambos senão com a verdade e com um termo designado. E os que renegam a Fé estão dando de ombros àquilo de que são admoestados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,274,'.Dize: "Vistes os que convocais, além de Allah? Fazei-me ver o que eles criaram da terra. Ou têm eles participação nos céus? Fazei-me vir um Livro, anterior a este, ou algum vestígio de ciência, se sois verídicos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,274,'E quem mais descaminhado que aquele que invoca, além de Allah, os que nunca o atenderão, até o Dia da Ressurreição, e estão desatentos a sua invocação?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,274,'E, quando os humanos forem reunidos, eles ser-lhes-ão inimigos e renegadores de sua adoração.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,274,'E, quando se recitam, para eles, Nossos evidentes versículos, os que renegam a Fé dizem da verdade, quando lhes chega: "Isto é evidente magia."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,274,'Ou dizem eles: "Ele o forjou?" Dize: "Se eu o houvesse forjado, nada poderíeis fazer por mim, diante de Allah. Ele é bem Sabedor do que vos empenhais em dizer dele. Basta Ele, por Testemunha, entre mim e vós. E Ele é O Perdoador, O Misericordiador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,274,'Dize: "Não sou uma inovação, entre os Mensageiros. E não me inteiro do que será feito de mim nem de vós. Não sigo senão o que me é revelado, e não sou senão evidente admoestador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,274,'Dize: "Vistes? Se ele é de Allah, e vós o renegais - enquanto uma testemunha dos filhos de Israel o reconhece e nele crê - e vos ensoberbeceis, não estareis sendo injustos? Por certo, Allah não guia o povo injusto."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,274,'E os que renegam a Fé dizem dos que crêem: "Se ele fosse um bem, eles não nos haveriam antecipado, nisso." E, uma vez que eles não se guiam por ele, dirão: "Isto é uma velha mentira!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,274,'E, antes dele, houve o Livro de Moisés, como diretriz e misericórdia. E este é um Livro confirmador dos outros, em língua árabe, para admoestar os que são injustos; e é alvíssaras para os benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,274,'Por certo, os que dizem: "Nosso Senhor é Allah", em seguida, são retos, então, nada haverá que temer por eles, e eles não se entristecerão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,274,'Esses são os companheiros do Paraíso; nele, serão eternos, como recompensa pelo que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,274,'E recomendamos ao ser humano benevolência para com seus pais. Sua mãe carrega-o penosamente, e o dá à luz, penosamente. E sua gestação e sua desmama são, ao todo, de trinta meses; e ele desenvolve-se, até que, quando atinge sua força plena e atinge os quarenta anos, diz : "Senhor meu! Induz-me a agradecer-Te a graça, com que me agraciaste, a mim e a meus pais, e a fazer o bem que Te agrade; e emenda-me a descendência. Por certo, volto-me arrependido para Ti e, por certo, sou dos muçulmanos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,274,'Esses, de quem acolhemos o melhor que fizeram, e de quem toleramos as más obras, estarão junto dos companheiros do Paraíso. É a verdadeira promessa que lhes era prometida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,274,'E aquele que diz a seus pais: "Ufa a vós! Ambos me prometeis que serei ressuscitado, enquanto, antes de mim, passaram as gerações, sem que, ainda, fossem ressuscitados?" - E ambos imploram socorrimento de Allah, e dizem ao filho: "Ai de ti! Crê tu! Por certo, a promessa de Allah é verdadeira!" Então, ele diz: "Isto não são senão fábulas dos antepassados."-');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,274,'Esses são os contra quem o Dito, sentença, se cumprirá, junto de outras comunidades de jinns e de humanos que, com efeito, passaram antes deles. Por certo, eles serão perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,274,'E, para cada um desses, haverá escalões, segundo o que fizeram. E isso, para compensá-los por suas obras. E eles não sofrerão injustiça.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,274,'E, um dia, quando os que renegam a Fé forem expostos ao Fogo, dir-se-lhes-á: "Fizestes irem-se vossas boas cousas, em vossa vida terrena e, com elas, vos deliciastes. Então, hoje, sereis recompensados com o castigo da vileza, porque vos ensoberbecíeis, na terra, sem razão, e porque cometíeis perversidade."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,274,'E menciona o irmão de Ãd, quando admoestou seu povo, em Al-Ahqaf - enquanto, com efeito, haviam passado os admoestadores adiante dele e detrás dele - dizendo: "Não adoreis senão a Allah. Por certo, temo, por vós, o castigo de um formidável dia."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,274,'Disseram: "Chegaste a nós para distanciar-nos de nossos Deuses? Então, faze-nos vir o que prometes se és dos verídicos"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,274,'Ele disse: "A ciência disso está, apenas, junto de Allah. E eu transmito-vos o com que sou enviado, mas eu vos vejo um povo ignorante."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,274,'Então, quando o viram, como nuvem, que se dirigia a seus vales, disseram: "Isto é uma nuvem prestes a trazer-nos chuva." Ao contrário! É o que apressastes: um vento em que há doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,274,'Ele profliga todas as cousas, com a ordem de seu Senhor; então, amanheceram mortos: não se viam senão suas vivendas. Assim, recompensamos o povo criminoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,274,'E, com efeito, empossamo-los naquilo em que vos não empossamos. E fizemo-lhes ouvido e vistas e corações. E de nada lhes valeram seu ouvido nem suas vistas nem seus corações, pois negavam os sinais de Allah; e envolveu-os aquilo de que zombavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,274,'E, com efeito, aniquilamos as cidades a vosso redor, e patenteamos os sinais para retornarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,274,'Então, que os que eles tomaram por deuses, além de Allah, como meio de aproximação dEle, os houvessem socorrido! Ao contrário, eles sumiram para longe deles. Essa foi sua mentira e o que forjavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,274,'E lembra-lhes de quando dirigimos a ti um pequeno grupo de jinns, para ouvirem a leitura do Alcorão. E, quando a presenciaram, disseram: "Escutai!" Então, quando foi encerrada, retiraram-se a seu povo, admoestando-o.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,274,'Disseram: "Ó nosso povo! Por certo, ouvimos um Livro, que foi descido depois de Moisés, que confirma o que havia antes dele; ele guia à verdade e a uma vereda reta."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,274,'"Ó nosso povo! Atendei o convocador de Allah e crede nEle, que Ele vos perdoará parte dos delitos e vos protegerá de doloroso castigo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,274,'"E quem não atender ao convocador de Allah, não escapará ao castigo, na terra, e não terá protetores, além dEle. Estes estarão em evidente descaminho."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,274,'E não viram eles que Allah, Que criou os céus e a terra, e não Se extenuou com sua criação, é Poderoso para dar a vida aos mortos? Sim! Por certo, Ele, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,274,'E, um dia, quando forem expostos ao Fogo os que renegam a Fé, dir-se-lhes-á: "Não é esta a Verdade?" Dirão: "Sim, por nosso Senhor!" Ele dirá: "Então, experimentai o castigo, porque renegáveis a Fé"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,274,'Então, pacienta, como pacientaram os dotados de firmeza, entre os Mensageiros, e não lhes apresses o castigo. Um dia, quando virem o que lhes foi prometido, estarão como se não houvessem permanecido, nos sepulcros, senão por uma hora de um dia. Ele é transmissão da Verdade. Então, não será aniquilado senão o povo perverso?');
+INSERT INTO chapters (id, number, quran_id) VALUES(275,47,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,275,'Aos que renegam a Fé e afastam os homens do caminho de Allah, Ele lhes fará sumir as boas obras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,275,'E aos que crêem e fazem as boas obras e crêem no que foi descido a Muhammad - e isto é a Verdade de seu Senhor - Ele lhes remirá as más obras e lhes emendará a condição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,275,'Isso, porque os que renegam a Fé seguem a falsidade, e porque os que crêem seguem a Verdade de seu Senhor. Assim, Allah propõe, para os homens, seus exemplos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,275,'Então, quando deparardes, em combate, os que renegam a Fé, golpeai-lhes os pescoços, até quando os dizimardes, então, acorrentai-os firmemente. Depois, ou fazer-Ihes mercê ou aceitar-lhes resgate, até que a guerra deponha seus fardos. Essa é a determinação. E, se Allah quisesse, defender-Se-ia deles, mas Ele vos ordenou a guerra, para pôr-vos à prova, uns com outros. E aos que são mortos, no caminho de Allah, Ele não lhes fará sumir as boas obras:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,275,'Guiá-los-á e emendar-lhes-á a condição;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,275,'E, fá-los-á entrar no Paraíso, que Ele os fizera conhecer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,275,'Ó vós que credes! Se socorreis a Allah, Ele vos socorrerá e vos tornará firmes os passos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,275,'E aos que renegam a Fé, a eles, a desgraça! E Ele lhes fará sumir as obras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,275,'Isso, porque odeiam o que Allah fez descer. Então, Ele lhes anulará as obras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,275,'Então, não caminharam eles na terra, para olhar como foi o fim dos que foram antes deles? Allah profligou-os. E, para os renegadores da Fé, haverá fim igual a este.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,275,'Isso, porque Allah é Protetor dos que crêem, e porque os renegadores da Fé não têm protetor algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,275,'Por certo, Allah, aos que crêem e fazem boas obras, fará entrar em Jardins, abaixo dos quais correm os rios; E os que renegam a Fé gozam, nesta vida, e comem como comem os rebanhos; e o Fogo lhes será moradia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,275,'E quantas cidades, mais fortes que tua cidade que te fez sair, aniquilamos! E não houve, para eles, socorredor algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,275,'Então, será que quem está fundado sobre evidência de seu Senhor é como aqueles, para os quais é ornamentada sua má obra, e seguem suas paixões?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,275,'Eis o exemplo do Paraíso, prometido aos piedosos: nele, há rios de água nunca malcheirosa, e rios de leite, cujo sabor não se altera, e rios de vinho, deleitoso para quem o bebe, e rios de mel purificado. E, nele, terão todo tipo de frutos, e perdão de seu Senhor. São esses como os que, no Fogo, serão eternos, e aos quais se dará de beber água ebuliente, que lhes despedaçará os intestinos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,275,'E, entre eles, há os que te ouvem, até que, quando saem de perto de ti, dizem àqueles aos quais foi concedida a ciência: "O que ele disse há pouco?" Esses são aqueles cujos corações Allah selou, e seguem suas paixões');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,275,'E aos que se guiam, Ele lhes acresce orientação e lhes concede piedade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,275,'Então, não esperam eles senão que a Hora lhes chegue, inopinadamente? E, com efeito, chegaram seus prenúncios. E, quando ela lhes chegar, como lhes servirá sua lembrança?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,275,'Então, sabe que não há deus senão Allah. E implora perdão para teu delito e para os crentes e para as crentes. E Allah sabe de vossas atividades e de vossas últimas moradias.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,275,'E os que crêem dizem: "Que seja descida uma sura!" E, quando é descida uma sura precisa e em que o combate é mencionado, tu vês aqueles, em cujos corações há enfermidade, olhar-te com o olhar do desfalecido pela morte. Então, valer-lhes-ia mais');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,275,'Obediência e dito conveniente. E, quando a ordem se confirmou, se houvessem sido verídicos com Allah, haver-lhes-ia sido melhor');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,275,'Então, se voltásseis as costas, quiçá, semeásseis a corrupção na terra e cortásseis vossos laços consanguíneos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,275,'Esses são os que Allah amaldiçoou: então, Ele os ensurdeceu e lhes encegueceu as vistas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,275,'E não ponderam eles o Alcorão, ou há cadeados em seus corações?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,275,'Por certo, aos que voltaram atrás, após haver-se tornado evidente, para eles, a orientação, Satã os alicia a isso, e lhes dá vãs esperanças.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,275,'Isso, porque eles disseram aos que odeiam o que Allah fez descer: "Obedecer-vos-emos, em parte da ordem". E Allah sabe seus segredos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,275,'Então, como estarão, quando os anjos lhes levarem as almas, golpeando-lhes as faces e as nádegas?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,275,'Isso, porque eles seguiram o que encoleriza a Allah, e odiaram Seu agrado; então, Ele anulou suas obras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,275,'Será que aqueles, em cujos corações há enfermidade, supõem que Allah não fará sair à luz seus rancores?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,275,'E, se quiséssemos, far-te-íamos vê-los, e, em verdade, reconhecê-los-ias por seu semblante. E, em verdade, tu os reconhecerias por seu modo de falar. E Allah sabe de vossas obras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,275,'E, certamente, por-vos-emos à prova, até saber dos lutadores, dentre vós, e dos perseverantes e até provar vossas notícias.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,275,'Por certo, os que renegam a Fé e afastam os homens do caminho de Allah e discordam do Mensageiro, após haver-se tornado evidente, para eles, a orientação, em nada prejudicam a Allah, e Ele anulará suas obras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,275,'Ó vós que credes! Obedecei a Allah e obedecei ao Mensageiro, e não derrogueis vossas obras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,275,'Por certo, os que renegam a Fé e afastam os homens do caminho de Allah; em seguida, morrem, enquanto renegadores da Fé, Allah não os perdoará.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,275,'Então, não vos desanimeis e não convoqueis os inimigos à paz, enquanto sois superiores, e Allah está convosco e não vos subtrai as obras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,275,'A vida terrena é, apenas, diversão e entretenimento. E, se credes e sois piedosos, Ele vos concederá vossos prêmios, e não vos pedirá vossas riquezas;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,275,'Se Ele vo-las pedisse e, sobre isso, insistisse convosco, haver-vos-íeis mostrado avaros, e Ele haveria feito sair à luz vossos rancores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,275,'Ei-vos convocados a despender no caminho de Allah; então, há dentre vós, quem se mostre avaro. E quem se mostra avaro se mostra avaro, apenas, em prejuízo de si mesmo. E Allah é O Bastante a Si Mesmo, e vós sois os pobres. E, se voltais as costas, Ele vos substituirá por outro povo; em seguida, eles não serão iguais a vós.');
+INSERT INTO chapters (id, number, quran_id) VALUES(276,48,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,276,'Por certo, Nós te asseguramos evidente vitória,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,276,'Para que Allah te perdoasse o que se antecipou de teu delito e o que se atrasou e que completasse Sua graça para contigo, e te guiasse a uma senda reta,.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,276,'E que Allah te socorresse com poderoso socorro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,276,'Ele é Quem fez descer a serenidade, nos corações dos crentes, para que acrescentassem fé a sua fé; e de Allah são os exércitos dos céus e da terra. E Allah é Onisciente, Sábio');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,276,'Para que Ele fizesse os crentes e as crentes entrar em Jardins, abaixo dos quais correm os rios, sendo nesses eternos, e lhes remisse as más obras; - e isso é, perante Allah, magnífico triunfo -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,276,'E para que Ele castigasse os hipócritas e as hipócritas e os idólatras e as idólatras pensantes de maus pensamentos, acerca de Allah. - Que sobre eles recaia o revés do mal. - E Allah Se irou contra eles, e os amaldiçoou, e lhes preparou a Geena. E que vil destino!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,276,'E de Allah são os exércitos dos céus e da terra, e Allah é Todo-Poderoso, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,276,'Por certo, Nós te enviamos por testemunha e alvissareiro e admoestador,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,276,'Para que vós creiais em Allah e em Seu Mensageiro, e o ampareis e o honreis. E para que O glorifiqueis, ao alvorecer e ao entardecer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,276,'Por certo, os que com aperto de mão, se comprometem a segundar-te, apenas, comprometem-se a segundar a Allah. A mão de Allah está sobre suas mãos. Então, quem viola sua promessa a violará, apenas, em prejuízo de si mesmo. E a quem é fiel ao pacto que fez com Allah, Ele lhe concederá magnífico prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,276,'Dir-te-ão os que, dentre os beduínos, ficaram para trás: "Nossas riquezas e nossas famílias ocuparam-nos; então, implora perdão para nós." Eles dizem, com suas línguas, o que não há em seus corações. Dize: "Então, quem vos poderia fazer algo diante de Allah, se Ele vos desejasse um infortúnio, ou vos desejasse um benefício?" Mas Allah, do que fazeis, é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,276,'"Aliás, vós pensastes que o Mensageiro e os crentes jamais tornariam a suas famílias, e isso foi ornamentado, em vossos corações, e pensastes maus pensamentos: e, assim, sois um povo perdido."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,276,'E quem não crê em Allah e em Seu Mensageiro, por certo, para os renegadores da Fé, Nós preparamos Um Fogo ardente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,276,'E de Allah é a soberania dos céus e da terra. Ele perdoa a quem quer e castiga a quem quer. E Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,276,'Os que ficaram para trás dirão, quando caminhardes para os restos de guerra, a fim de tomá-los: "Deixai-nos seguir-vos." Eles desejam alterar a fala de Allah. Dize: "Não nos seguireis. Assim, Allah disse, antes." Então, dirão: "Mas vós nos invejais." Aliás, eles nada entendem, exceto poucos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,276,'Dize aos que, dentre os beduínos, ficaram para trás: "Sereis convocados a combater contra um povo dotado de veemente fúria; combatê-los-eis, ou se islamizarão. Então, se obedeceis, Allah conceder-vos-á belo prêmio. E, se voltais as costas como voltastes as costas, antes, Ele castigar-vos-á com doloroso castigo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,276,'Não há falta no cego e não há falta no coxo e não há falta no enfermo, por não combaterem. E a quem obedece a Allah e a Seu Mensageiro, Ele o fará entrar em Jardins, abaixo dos quais correm os rios. E a quem Lhe volta as costas, Ele o castigará com doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,276,'Com efeito, Allah agradou-Se dos crentes, quando, debaixo da árvore, com aperto de mão, comprometeram-se a segundar-te; então, Ele soube o que havia em seus corações e fez descer a serenidade sobre eles; e retribuiu-lhes uma vitória próxima.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,276,'E muitos restos de guerra, para os tomarem. E Allah é Todo-Poderoso, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,276,'Allah prometeu-vos muitos restos de guerra, para tomardes, e apressou, para vós, esta e deteve as mãos dos homens, afastando-as de vós; e fê-lo, para que isso fosse um sinal para os crentes, e para que Ele vos guiasse a uma senda reta;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,276,'E outros, ainda, de que não vos apossastes, os quais Allah, com efeito, abarca. E Allah, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,276,'E, se os que renegam a Fé vos combatessem, voltar-vos-iam as costas; em seguida, não encontrariam nem protetor nem socorredor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,276,'Assim, foi o procedimento de Allah, o que passou, antes. E não encontrarás, no procedimento de Allah, mudança alguma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,276,'E Ele é Quem, no vale de Makkah, deteve suas mãos, afastando-as de vós, e vossas mãos, afastando-as deles, após haver-vos dado o triunfo sobre eles. E Allah, do que fazeis, é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,276,'Eles são os que renegam a Fé, e que vos afastaram da Mesquita Sagrada, e afastaram as oferendas, entravadas, impedindo-as de atingirem seu local de imolação. E, não estivessem, entre eles, homens crentes e mulheres crentes - que, não os conhecendo, poderíeis pisá-los e, por causa disso, alcançar-vos-ia escândalo, sem que o soubésseis - Ele vos permitia combatê-los; mas não o permitiu, para que Allah fizesse entrar em Sua Misericórdia a quem quisesse. Se eles estivessem separados, haveríamos castigado, com doloroso castigo, os que dentre eles, renegaram a Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,276,'Quando os que renegaram a Fé fizeram existir,em seus corações, o ardor, o ardor da ignorância, então, Allah fez descer Sua serenidade sobre Seu Mensageiro e sobre os crentes,e impôs-lhes a Palavra da piedade; e dela eram mais merecedores e a ela mais achegados. E Allah, de todas as cousas, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,276,'Com efeito, Allah confirmou com a verdade, o sonho de Seu Mensageiro: "Certamente, entrareis, em segurança, na Mesquita Sagrada, se Allah quiser, estando com vossas cabeças rapadas ou curtos vossos cabelos, nada temendo." Então, Ele sabia o que não sabíeis, e fez, para vós, além disso, uma vitória próxima.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,276,'Ele é Quem enviou Seu Mensageiro com a Orientação e a religião da verdade, para fazê-la prevalecer sobre todas as religiões. E basta Allah por Testemunha.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,276,'Muhammad é o Mensageiro de Allah. E os que estão com ele são severos para com os renegadores da Fé, misericordiadores, entre eles. Tu os vês curvados, prosternados, buscando um favor de Allah e agrado. Suas faces são marcadas pelo vestígio deixado pela prosternação. Esse é seu exemplo, na Torá. E seu exemplo, no Evangelho, é como planta, que faz sair seus ramos, e esses a fortificam, e ela se robustece e se levanta sobre seu caule. Ela faz se admirarem dela os semeadores. Assim, Allah fez, para suscitar, por causa deles, o rancor dos renegadores da Fé. Allah promete aos que crêem e fazem as boas obras, dentre eles, perdão e magnífico prêmio.');
+INSERT INTO chapters (id, number, quran_id) VALUES(277,49,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,277,'Ó vós que credes! Não vos antecipeis a Allah e a Seu Mensageiro. E temei a Allah. Por certo, Allah é Oniouvinte, Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,277,'Ó vós que credes! Não eleveis vossas vozes acima da voz do Profeta, e não alteeis o tom, ao lhe falardes, como alteais, uns com os outros, para que vossas obras se não anulem, enquanto não percebeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,277,'Por certo, os que baixam suas vozes diante do Mensageiro de Allah, esses são aqueles cujos corações Allah pôs à prova, para a piedade. Eles terão perdão e magnífico prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,277,'Por certo, os que te chamam, de fora dos aposentos, sua maioria não razoa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,277,'E, se eles pacientassem, até que tu saísses a seu encontro, ser-Ihes-ia melhor. E Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,277,'Ó vós que credes! Se vos chega um perverso com um informe, certificai-vos disso para não lesar por ignorância, certas pessoas: então, tornar-vos-íeis arrependidos do que havíeis feito.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,277,'E sabei que, entre vós, está o Mensageiro de Allah. Se ele vos obedecesse, em muitos dos assuntos, embaraçar-vos-íeis. Mas Allah vos fez amar a Fé e aformoseou-a, em vossos corações, e vos fez odiar a renegação da Fé e a perversidade e a desobediência. Esses são os assisados,.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,277,'Por favor e graça de Allah. E Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,277,'E, se duas facções dos crentes pelejam, reconciliai-as. E, se uma delas comete transgressão contra a outra, combatei a que transgride, até que ela volte para a ordem de Allah. Então, se ela volta, reconciliai-as, com a justiça, e sede equânimes. Por certo, Allah ama os equânimes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,277,'Os crentes não são que irmãos. Então, reconciliai vossos dois irmãos que pelejarem. E temei a Allah, na esperança de obterdes misericórdia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,277,'Ó vós que credes! Que um grupo não escarneça de outro grupo - quiçá, este seja melhor que aquele - nem mulheres, de mulheres - quiçá, estas sejam melhores que aquelas - e não vos difameis, mutuamente, e não vos injurieis, com epítetos depreciativos. Que execrável a designação de "perversidade", depois da Fé! E os que se não arrependem, esses são os injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,277,'Ó vós que credes! Evitai muitas das conjeturas. Por certo, uma parte das conjecturas é pecado. E não vos espieis. E não faleis mal, uns dos outros, pelas costas. Algum de vós gostaria de comer a carne de seu irmão morto? Pois, odiá-la-íeis! E temei a Allah. Por certo, Allah é Remissório, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,277,'Ó homens! Por certo, Nós vos criamos de um varão e de uma varoa, e vos fizemos como nações e tribos, para que vos conheçais uns aos outros. Por certo, o mais honrado de vós, perante Allah é o mais piedoso. Por certo, Allah é Onisciente, Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,277,'Os beduínos dizem: "Cremos." Dize: "Vós não credes, mas dizei:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,277,'Os autênticos crentes são, apenas, os que crêem em Allah e em seu Mensageiro; em seguida, de nada duvidam, e lutam com suas riquezas e com si mesmos, no caminho de Allah. Esses são os verídicos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,277,'Dize: "Ensinareis a Allah vossa religião, enquanto Allah sabe o que há nos céus e o que há na terra?" E Allah, de todas as cousas, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,277,'Eles consideram que te fazem mercê, por se islamizarem. Dize: "Não considereis vossa islamização como mercê para mim. Ao contrário, Allah vos fez mercê, por haver-vos guiado à Fé, se sois verídicos!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,277,'Por certo, Allah sabe o Invisível dos céus e da terra. E Allah, do que fazeis, é Onividente.');
+INSERT INTO chapters (id, number, quran_id) VALUES(278,50,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,278,'Pelo glorioso Alcorão, tu és, Muhammad, o Mensageiro de Allah!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,278,'Mas eles se admiram de haver-Ihes chegado um admoestador vindo deles. Então os renegadores da Fé dizem: "Isto é cousa admirável!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,278,'"Quando morrermos e formos pó, ressuscitaremos? Esse é um retorno distante!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,278,'Com efeito, sabemos o que a terra diminui deles. E, junto de Nós, há um Livro custódio de tudo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,278,'Mas desmentem a Verdade, quando ela lhes chega: então, ei-los, em inextricável situação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,278,'Então, não olharam eles para o céu, acima deles, como o edificamos e o aformoseamos, e como não há fresta alguma nele?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,278,'E a terra, estendemo-la e,nela, implantamos assentes montanhas e nela, fazemos germinar de toda espécie de esplêndidos casais de plantas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,278,'Como prova evidente e lembrança para todo servo contrito.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,278,'E fazemos descer do céu água bendita, e, com ela fazemos germinar jardins e grãos de ceifar,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,278,'E as tamareiras, altas, de espatas com frutas ordenadas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,278,'Como o sustento para os servos; e, com ela, vivificamos uma plaga morta. Assim, será a saída dos sepulcros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,278,'Antes deles, desmentiram aos Mensageiros o povo de Noé e os companheiros de Ar-Rass e o povo de Thamud');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,278,'E de Ãd, e Faraó, e os irmãos de Lot.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,278,'E os habitantes de Al-Aykah e o povo de Tubba. Todos desmentiram aos Mensageiros; então, cumpriu-se Minha cominação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,278,'Então, extenuamo-Nos, com a criação primeira? Não. Mas eles estão em confusão diante de uma nova criação!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,278,'E, com efeito, criamos o ser humano e sabemos o que a alma lhe sussurra. E Nós estamos mais Próximos dele que a veia jugular,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,278,'Quando os dois anjos recolhedores, sentados a sua direita e a sua esquerda, recolhem tudo o que ele diz e faz.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,278,'Ele não profere dito algum sem que haja, junto dele, um observante presente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,278,'E a embriaguez da morte chegará, com a verdade. Dir-se-á ao moribundo: "Isso é o de que te arredavas!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,278,'E se soprará na Trombeta. Esse será o Dia da Cominação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,278,'E cada alma chegará, estando com ela um condutor e uma testemunha.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,278,'Dir-se-lhe-á: "Com efeito, estavas em desatenção a isto, e removemo-te a venda; então, hoje, tua vista é aguda."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,278,'E seu acompanhante dirá: "Eis o que tenho presente, junto de mim."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,278,'Dir-se-á a ambos os anjos: "Lançai na Geena todo ingrato obstinado,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,278,'"Constante impedidor do bem, agressor, duvidador,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,278,'"Que fez, junto de Allah, outro deus. Então, lançai-o, no veemente castigo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,278,'Seu acompanhante dirá: "Senhor meu! Não o fiz cometer transgressão, mas ele estava em profundo descaminho."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,278,'Allah dirá: "Não disputeis junto de Mim. E, com efeito, antecipei-vos a cominação."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,278,'"O Dito não se altera, junto de Mim, e não sou injusto com os servos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,278,'Um dia, diremos à Geena: "Já estás repletas?" E ela dirá: "Há mais, ainda?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,278,'E far-se-á o Paraíso aproximar-se dos piedosos, não longe dali.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,278,'Dir-se-lhes-á: "Eis o que vos foi prometido, a todo devoto, custódio"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,278,'"Que receou aO Misericordioso, ainda que Invisivel, e chegou, com o coração contrito, à Derradeira Vida"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,278,'"Entrai nele, em paz. Esse é o dia da eternidade!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,278,'Nele, terão o que quiserem e, junto de Nós, haveria ainda mais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,278,'E que de gerações aniquilamos, antes deles, mais temíveis que eles, e vaguearam a terra. Houve, para eles, fugida?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,278,'Por certo, há nisso lembrança para quem tem coração, ou dá ouvidos à exortação, enquanto testemunha.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,278,'E, com efeito, criamos os céus e a terra e o que há entre ambos, em seis dias, e nos não tocou exaustão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,278,'Pacienta, pois, Muhammad, quanto ao que dizem, e glorifica, com louvor, a teu Senhor, antes do nascer do sol e antes do ocaso;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,278,'E, durante parte da noite, glorifica-O, e após a prosternação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,278,'E ouve um dia, quando o pregador chamar de um lugar próximo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,278,'Um dia, quando ouvirem o Grito com a verdade, esse será o dia da saída dos sepulcros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,278,'Por certo, Nós damos a vida e damos a morte. E a Nós será o destino.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,278,'Um dia, quando a terra se fender, dela sairão, com destreza. Essa é uma reunião fácil para Nós.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,278,'Nós somos bem Sabedor do que dizem. E tu, sobre eles, não és tirano. Então, lembra o Alcorão a quem teme Minha cominação.');
+INSERT INTO chapters (id, number, quran_id) VALUES(279,51,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,279,'Pelos ventos que dispersam intensamente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,279,'Pelas carregadoras de carga!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,279,'Pelas corredoras, facilmente!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,279,'Pelos distribuidores de ordem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,279,'Por certo, o que vos é prometido é verídico,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,279,'E, por certo, o Juízo sobrevirá.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,279,'Pelo céu de vias perfeitas!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,279,'Por certo, vós estais divididos em ditos divergentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,279,'Distancia-se dele quem se distancia da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,279,'Malditos sejam os impostores!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,279,'Os que estão em confusão, alheados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,279,'Perguntam: "Quando será o Dia do Juízo?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,279,'Um dia, quando forem provados sobre o Fogo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,279,'Dir-se-á: "Experimentai vossa provação. Isto é o que apressáveis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,279,'Por certo, os piedosos estarão entre jardins e fontes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,279,'Tomando o que seu Senhor lhes conceder. Por certo, antes disso, eram benfeitores:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,279,'De noite, dormiam pouco,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,279,'E, nas madrugadas, imploravam perdão de Allah');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,279,'E, em suas riquezas, havia, de direito, parte para o mendigo e para o desprovido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,279,'E, na terra, há sinais para os que estão convictos da Fé,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,279,'E há-os em vós mesmos. Então, não os enxergais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,279,'E, no céu, há vosso sustento e o que vos é prometido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,279,'Então, pelo Senhor do céu e da terra, por certo, isto é uma verdade tanto quanto o fato que vos falais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,279,'Chegou-te o relato dos honrados hóspedes de Abraão?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,279,'Quando entraram junto dele e disseram: "Salam!", Paz! Disse ele: "Salam, povo desconhecido."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,279,'Então, foi ele ter, sorrateiramente, com sua família, e chegou com um bezerro gordo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,279,'E aproximou-o deles. Disse: "Não comeis?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,279,'Então, teve medo deles. Disseram: "Não te atemorizes!" E alvissararam-lhe um filho sapiente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,279,'E sua mulher dirigiu-se, aos gritos, e bateu na sua face e disse: "Eu? Uma anciã estéril!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,279,'Disseram: "Assim, teu Senhor disse. Por certo, Ele é O Sábio, O Onisciente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,279,'Disse ainda: "Qual é vosso intuito, ó Mensageiros?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,279,'Disseram: "Por certo, estamos sendo enviados a um povo criminoso"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,279,'Para lançar, sobre eles, pedras de barro,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,279,'"Marcadas junto de teu Senhor, para os entregues a excessos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,279,'Então, fizemos sair dela quem nela estava dos crentes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,279,'E, nela, não encontramos senão uma casa de muçulmanos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,279,'E, nela, deixamos um sinal, para os que temem o doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,279,'E, em Moisés, deixamos um sinal, quando o enviamos, com evidente comprovação, a Faraó,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,279,'E, ele, com seu esteio, lhe voltou as costas e disse: "É mágico ou louco!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,279,'Então, apanhamo-lo, a ele e a seu exército, e deitamo-los fora, na onda, enquanto censurado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,279,'E, no povo de Ãd, deixamos um sinal, quando enviamos contra eles o vento estéril.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,279,'Que não deixa cousa alguma, pela qual passe, sem fazer dela resquício.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,279,'E, no povo de Thamud, deixamos um sinal, quando lhes foi dito: "Gozai, até certo tempo!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,279,'E transgrediram desmesuradamente, a ordem de seu Senhor; então, o raio apanhou-os, enquanto olhavam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,279,'E não puderam levantar-se, e não foram socorridos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,279,'E, antes, aniquiláramos o povo de Noé. Por certo, era um povo perverso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,279,'E o céu, edificamo-lo com vigor e, por certo, somos Nós Que o estamos ampliando.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,279,'E a terra, estendemo-la; então, que Excelente Aplainador somos Nós!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,279,'E, de cada cousa, criamos um casal, para meditardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,279,'Dize-lhes, Muhammad: "Então, refugiai-vos em Allah. Por certo, dEle, sou-vos evidente admoestador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,279,'"E não façais, junto de Allah, outro deus. Por certo, dEle, sou-vos evidente admoestador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,279,'Assim, não chegou aos que foram antes deles Mensageiro algum sem que dissessem: "É mágico ou louco!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,279,'Recomendaram-no um ao outro? Não. Mas eles são um povo rebelde.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,279,'Então, volta-lhes as costas e não serás censurado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,279,'E adverte, pois a advertência beneficia os crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,279,'E não criei os jinns e os humanos senão para Me adorarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,279,'Não desejo deles sustento algum, e não desejo que Me alimentem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,279,'Por certo, Allah é O Sustentador, O Possuidor da força, O Fortíssimo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,279,'E, por certo, há, para os que são injustos, porção de castigo igual à porção de seus companheiros das outras nações; então, que não Me apressem quanto ao castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,279,'E ai dos que renegam a Fé, por seu dia, que lhes é prometido!');
+INSERT INTO chapters (id, number, quran_id) VALUES(280,52,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,280,'Pelo Monte de At-Tur!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,280,'E por um Livro escrito');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,280,'Em pergaminho desenrolado!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,280,'E pela casa povoada!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,280,'E pelo teto elevado!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,280,'E pelo mar abrasado!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,280,'Por certo, o castigo de teu Senhor sobrevirá.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,280,'Ninguém poderá detê-lo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,280,'Um dia, quando o céu se agitar energicamente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,280,'E as montanhas caminharem realmente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,280,'Então, nesse dia, ai dos desmentidores,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,280,'Que estão em confabulações, divertindo-se!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,280,'Um dia, serão arremessados no Fogo da Geena, vigorosamente:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,280,'"Este é o Fogo que desmentíeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,280,'"Então, isto é magia, ou vós nada enxergais?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,280,'"Sofrei sua queima! Pacientai ou não pacienteis, ser-vos-á igual. Apenas, sois recompensados pelo que fazíeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,280,'Por certo, os piedosos estarão em jardins e delícia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,280,'Hílares, pelo que seu Senhor lhes conceder - e seu Senhor guardá-los-á do castigo do Inferno.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,280,'Dir-se-lhes-á: "Comei e bebei com deleite, pelo que fazíeis!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,280,'Reclinados sobre leitos alinhados. E fá-los-emos casados com húris de belos grandes olhos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,280,'E aos que crêem - e que sua descendência os segue, com Fé - ajuntar-lhes-emos sua descendência, e nada lhes diminuiremos de suas obras. Cada qual será penhor do que houver logrado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,280,'E prover-lhes-emos frutas e carnes, do que apetecerem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,280,'Neles, mutuarão taças, em que não há frivolidade nem ato pecaminoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,280,'E circularão, entre eles, para servi-los, mancebos belos como pérolas resguardadas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,280,'E dirigir-se-ão, uns aos outros interrogando-se.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,280,'Dirão: "Por certo, antes, em nossas famílias, estávamos atemorizados do Castigo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,280,'"Depois, Allah fez-nos mercê e guardou-nos do castigo do Samum."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,280,'"Por certo, antes, nós O invocávamos. Por certo, Ele é O Blandicioso, O Misericordiador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,280,'Então, Muhammad, adverte e, pela graça de teu Senhor, tu não és adivinho nem louco.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,280,'Ou dizem eles: "É um poeta, de quem aguardamos a surpresa da morte"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,280,'Dize: "Aguardai-a! Por certo, sou dos aguardadores, convosco."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,280,'Será que suas mentes lhes ordenam isso? Ou são um povo transgressor?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,280,'Ou dizem: "Ele o inventou?" Não. Mas eles não crêem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,280,'Então, que façam vir uma mensagem igual a ele se são verídicos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,280,'Ou foram eles criados do nada, ou são eles os criadores?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,280,'Ou criaram os céus e a terra? Não. Mas não se convencem disso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,280,'Ou têm os cofres de teu Senhor? Ou são eles os donos absolutos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,280,'Ou têm uma escada, por meio da qual escutam os segredos do céu? Então que aquele que escuta para eles faça chegar evidente comprovação!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,280,'Ou são d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,280,'Ou lhes pedes um prêmio, então, estão sobrecarregados de ônus?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,280,'Ou têm eles a ciência do Invisível, então, escrevem o que querem?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,280,'Ou desejam armar insídias? Então, os que renegam a Fé, serão eles os insidiados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,280,'Ou têm deus outro que Allah? Glorificado seja Allah, acima do que idolatram!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,280,'E se vissem cair um pedaço do céu, diriam: "São nuvens aglomeradas".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,280,'Então, deixa-os, até depararem seu dia, em que cairão fulminados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,280,'Um dia em que nada lhes valerá sua insídia; e não serão socorridos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,280,'E, por certo, além disso, há castigo para os que são injustos; mas a maioria deles não sabe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,280,'E pacienta quanto ao julgamento de teu Senhor, pois estás diante de Nossos olhos. E glorifica com louvor, a teu Senhor, quando te levantares.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,280,'E, durante parte da noite, glorifica-O, então, e após se desvanecerem as estrelas.');
+INSERT INTO chapters (id, number, quran_id) VALUES(281,53,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,281,'Pela estrela, quando declina!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,281,'Vosso companheiro não se descaminhou nem se transviou,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,281,'E não fala, por paixão;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,281,'"Sua fala não é senão revelação a ele revelada."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,281,'Ensina-lhe, o Anjo Gabriel, o veemente em força');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,281,'Possuidor de sensatez; então, apareceu-lhe estático, em sua imagem original,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,281,'Enquanto estava no horizonte mais alto;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,281,'Em seguida, aproximou-se e achegou-se a ele,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,281,'E ficou à distância de dois arcos, ou mais próximo, ainda.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,281,'Então, Ele revelou a Seu servo o que lhe revelou.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,281,'O coração de Muhammad não desmentiu o que viu.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,281,'Então, altercais, com ele, sobre o que vê?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,281,'E, com efeito, viu-o, outra vez,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,281,'Junto da Sidrat Al Muntaha;(árvore existente embaixo do Trono)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,281,'Junto dela, está o Jardim de Al Mawa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,281,'Quando encobriu as-Sidrata o que a encobriu,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,281,'A vista não se lhe desviou nem foi além.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,281,'Com efeito, ele viu algo dos grandiosos sinais de seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,281,'Vistes, então, al-Lat e al-Uzza.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,281,'E a outra Manat, a terceira, que nada podem?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,281,'É de vós o varão e dEle, a varoa?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,281,'Esta é, nesse caso, uma partilha iníqua.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,281,'Os ídolos não são senão nomes que nomeastes - vós e vossos pais - dos quais Allah não fez descer comprovação alguma. Eles não seguem senão as conjeturas e aquilo pelo qual as almas se apaixonam. E, com efeito, chegou-lhes a Orientação de seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,281,'Será que o ser humano tem o que ambiciona?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,281,'Então, de Allah é a Derradeira Vida e a primeira.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,281,'E quantos anjos há, nos céus, cuja intercessão de nada valerá, senão após Allah permiti-la a quem quiser e a quem Lhe agradar!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,281,'Por certo, os que não crêem na Derradeira Vida nomeiam os anjos com nomes de varoa,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,281,'E disso eles não têm ciência alguma. Não seguem senão as conjeturas. E, por certo, as conjecturas de nada valem diante da verdade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,281,'Então, Muhammad, dá de ombros a quem volta as costas a Nossa Mensagem e não deseja senão a vida terrena.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,281,'Esse é seu alcance da ciência. Por certo, teu Senhor é bem Sabedor de quem se descaminha de Seu caminho. E Ele é bem Sabedor de quem se guia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,281,'E é de Allah o que há nos céus e o que há na terra, para recompensar os que mal-fazem, pelo que fazem, e recompensar os que bem-fazem, com a mais bela recompensa,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,281,'Estes são os que evitam os maiores pecados e as obscenidades, exceto as faltas menores. Por certo, teu Senhor é de munificente perdão. Ele é bem Sabedor de vós, quando vos fez surgir da terra e quando éreis embriões nos ventres de vossas mães. Então, não vos pretendais dignos: Ele é bem Sabedor de quem é piedoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,281,'Então, viste aquele que voltou as costas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,281,'E deu um pouco e parou por avareza?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,281,'Tem ele a ciência do Invisível, então o vê?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,281,'Não foi ele informado do que há nas páginas de Moisés,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,281,'E nas de Abraão, que cumpriu seu dever?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,281,'Que nenhuma alma pecadora arca com o pecado de outra,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,281,'E que não há, para o ser humano, senão o que adquire com seu esforço,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,281,'E que seu esforço será visto,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,281,'Em seguida, será recompensado com a mais completa recompensa,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,281,'E que a teu Senhor será o término de tudo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,281,'E que Ele é Quem faz rir e faz chorar,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,281,'E que Ele é Quem dá a morte e dá a vida,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,281,'E que Ele é Quem criou o casal: o varão e a varoa,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,281,'De gota seminal, quando ejaculada,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,281,'E que impende a Ele o derradeiro surgimento,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,281,'E que Ele é Quem enriquece e empobrece,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,281,'E que Ele é Quem é O Senhor da Sirius.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,281,'E que Ele é Quem aniquilou os primeiros povos de Ãd');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,281,'E de Thamud - então, a ninguém deixou ficar -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,281,'E o povo de Noé, antes - por certo, eram mais injustos e mais transgressores -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,281,'E as cidades tombadas fê-las cair,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,281,'E encobriu-as o que as encobriu.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,281,'Então, qual das mercês de teu Senhor tu, homem, altercas?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,281,'Este é um admoestador dentre os primeiros admoestadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,281,'Aproxima-se a Hora iminente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,281,'Ninguém, além de Allah, poderá descobri-la.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,281,'Então, admirai-vos desta Mensagem?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,281,'E rides, e não chorais,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,281,'Enquanto estais brincando');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,281,'Então, prosternai-vos diante de Allah, e adorai-O.');
+INSERT INTO chapters (id, number, quran_id) VALUES(282,54,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,282,'A Hora aproxima-se, e a lua fendeu-se.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,282,'E, contudo, se eles vêem um sinal, dão de ombros e dizem: "É magia constante."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,282,'E desmentem a Mensagem e seguem suas paixões. E toda ordem tem seu tempo de ser');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,282,'E, com efeito, chegou-lhes, dos informes, aquilo em que há repulsa à descrença:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,282,'Uma terminante sabedoria. Mas de nada lhes valem as admoestações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,282,'Então, Muhammad, volta-lhes as costas. Um dia, quando o convocador os convocar a uma Terrível cousa,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,282,'Com as vistas humildemente baixas, sairão dos sepulcros, como gafanhotos espalhados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,282,'Correndo, infrenes, de olhos fitos no convocador. Os renegadores da Fé dirão: "Este é um dia difícil."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,282,'Antes deles, o povo de Noé desmentiu a Mensagem; então, desmentiram Nosso servo e disseram: "É um louco!", e foi repulsado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,282,'E ele suplicou a seu Senhor: "Por certo, estou vencido. Então, socorre-me."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,282,'Então, abrimos as portas do céu com água torrencial,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,282,'E fizemos a terra emanando em fontes. Então, depararam-se as águas, conforme ordem determinada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,282,'E carregamo-lo sobre a Arca de tábuas e pregos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,282,'Ela corria diante de Nossos olhos. E fizemo-lo, como recompensa a quem fora renegado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,282,'E, com efeito, deixamo-la como sinal. Então, há quem disso se recorde?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,282,'Então, como foi Meu castigo e Minhas admoestações?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,282,'- E, com efeito, facilitamos o Alcorão, para a recordação. Então, há quem disso se recorde? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,282,'O povo de Ãd desmentiu aos Mensageiros; então, como foi Meu castigo e Minhas admoestações?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,282,'Por certo, enviamos contra eles, em um dia funesto e interminável, estridente vento glacial.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,282,'Arrancava os homens como se foram troncos de tamareiras desarraigadas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,282,'Então, como foi Meu castigo e Minhas admoestações?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,282,'- E, com efeito, facilitamos o Alcorão, para a recordação. Então, há quem disso se recorde? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,282,'O povo de Thamud desmentiu aos admoestadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,282,'E disseram: "Seguiremos um só mortal, dentre nós? Nesse caso, estaremos, por certo, em descaminho e em loucura.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,282,'"Foi-lhe transmitida a Mensagem, só a ele, dentre nós? Mas ele é mentiroso, enfatuado."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,282,'Dissemos: "Saberão, amanhã quem é o mentiroso, o enfatuado."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,282,'Por certo, enviar-lhes-emos o camelo fêmea, por provação. Então, fica na expectativa deles e pacienta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,282,'E informa-os de que a água será partilhada entre eles e o camelo fêmea; cada porção de bebida será presenciada por aquele a quem ela pertence.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,282,'Depois, eles chamaram seu companheiro e este incumbiu-se de agir, e abateu-o.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,282,'Então, como foi Meu castigo e Minhas admoestações?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,282,'Por certo, enviamos contra eles um só Grito, e ficaram como resíduos de palha seca, de quem faz estábulos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,282,'- E, com efeito, facilitamos o Alcorão, para a recordação. Então, há quem disso se recorde? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,282,'O povo de Lot desmentiu as admostações,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,282,'Por certo, enviamos contra eles um vento lastrado de seixos, exceto contra a família de Lot. Salvamo-los, na madrugada,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,282,'Por graça de Nossa parte. Assim, recompensamos a quem agradece.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,282,'E, com efeito, ele admoestou-os de Nosso golpe; então, altercaram as admoestações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,282,'E, com efeito, tentaram seduzi-lo, no tocante a seus hóspedes; então, apagamo-lhes os olhos. Dissemos: "Experimentai, pois, Meu castigo e Minhas admoestações."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,282,'E, com efeito, de manhã, na alvorada, um castigo permanente surpreendeu-os.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,282,'"Então, experimentai Meu castigo e Minhas admoestações."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,282,'- E, com efeito, facilitamos o Alcorão, para a recordação. Então, há quem disso se recorde? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,282,'E, de fato, chegaram os admoestadores ao povo de Faraó.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,282,'Eles desmentiram todos Nossos sinais; então, apanhamo-los, com o apanhar de Um Todo-Poderoso, Potentíssimo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,282,'Será que vossos renegadores da Fé, ó Quraich, são melhores que aqueles, ou tendes absolvição, nas Escrituras?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,282,'Ou dizem: "Somos uma multidão vitoriosa"?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,282,'A multidão será derrotada e fugirão eles, voltando as costas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,282,'Aliás, a Hora é seu tempo prometido; e a Hora é mais horrenda e mais amarga.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,282,'Por certo, os criminosos estão em descaminho e em loucura.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,282,'Um dia, quando, no Fogo, forem arrastados sobre suas faces, dir-se-lhes-á: "Experimentai o toque de Saqar !"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,282,'Por certo, Nós criamos cada cousa, na justa medida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,282,'E Nossa ordem não é senão uma só palavra, rápida como o piscar da vista.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,282,'- E, com efeito, aniquilamos vossos semelhantes. Então, há quem disso se recorde? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,282,'E cada cousa que fizeram está nos registros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,282,'E cada cousa, pequena e grande, ali é escrita.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,282,'Por certo, os piedosos estarão em Jardins e entre rios,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,282,'Em verdadeiro lugar de permanência, junto de Um Rei Potentíssimo.');
+INSERT INTO chapters (id, number, quran_id) VALUES(283,55,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,283,'Surat Ar-Rahman. O Misericordioso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,283,'Ensinou o Alcorão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,283,'Criou o ser humano,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,283,'Ensinou-o a expressar-se.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,283,'O sol e a lua movem-se com cômputo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,283,'E a grama e as árvores prosternam-se.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,283,'E o céu, Ele o elevou; e estabeleceu a balança,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,283,'Para que, na balança, não cometais transgressão:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,283,'E, assim, cumpri o peso com equidade, e não defraudeis na balança.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,283,'E a terra, pô-la à disposição dos viventes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,283,'Nela, há frutas, e as tamareiras de invólucros,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,283,'E os grãos em palhas, e as plantas aromáticas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,283,'Ele criou o ser humano de argila sonorosa, como a cerâmica,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,283,'E criou o jinn de pura chama de fogo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,283,'O Senhor dos dois levantes e O Senhor dos dois poentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,283,'Desenleia os dois mares, para se depararem;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,283,'Entre ambos, há uma barreira; nenhum dos dois comete transgressão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,283,'De ambos saem as pérolas e o coral.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,283,'E são dEle as naus correntes, por vós feitas, como montanhas, no mar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,283,'Tudo o que está sobre ela é finito,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,283,'E só permanecerá a face de teu Senhor, Possuidor de majestade e honorabilidade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,283,'Pede-lhe benevolência quem está nos céus e na terra. Em cada dia, Ele executa uma obra nova.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,283,'Nós nos dedicaremos a vós ambos, ó humanos e gênios.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,283,'Ó coorte de jinns e humanos! Se podeis atravessar os limites dos céus e da terra, atravessai-os. Vós não os atravessareis senão com um poder.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,283,'Enviar-se-ão contra vós ambos chamas de fogo e cobre fundido; e não sereis socorridos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,283,'E, quando o céu fender e se tornar róseo como a pele,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,283,'Então, nesse dia, não será interrogado, acerca de seu delito, nem humano nem jinn.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,283,'Serão reconhecidos os criminosos por seus semblantes e serão apanhados pelos topetes e pelos pés.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,283,'Dir-se-Ihes-á: "Eis a Geena que os criminosos desmentiam."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,283,'Eles circularão entre ela e água ebuliente, escaldante.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,283,'E para quem teme a preeminência de seu senhor, haverá dois Jardins.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,283,'Ambos de ramos florescentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,283,'Em ambos, correm duas fontes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,283,'Em ambos, há, de cada fruta, duas espécies.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,283,'Reclinados estarão sobre acolchoados, cujos forros são de brocado. E os frutos de ambos os Jardins estarão à mão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,283,'Neles, haverá donzelas de olhares restritos a seus amados. Não as tocou, antes deles, nem humano nem jinn.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,283,'Como se fossem o rubi e o coral.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,283,'Há outra recompensa da benevolência senão benevolência?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,283,'E, além de ambos, haverá dois outros Jardins.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,283,'Ambos verde-escuros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,283,'Em ambos, haverá duas fontes jorrando.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,283,'Em ambos, haverá frutas, e tamareiras, e romãs.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,283,'Neles, haverá fidalgas, formosas');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,283,'Húris, reclusas nas tendas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,283,'Não as tocou, antes deles, nem humano nem jinn.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,283,'Reclinados estarão sobre almofadas verdes e formosos tapetes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,283,'- Então, qual das mercês de vosso Senhor vós ambos desmentis? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,283,'Bendito seja o Nome de teu Senhor, Possuidor de majestade e honorabilidade!');
+INSERT INTO chapters (id, number, quran_id) VALUES(284,56,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,284,'Quando o acontecimento sobrevier,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,284,'Não haverá de sua sobrevença alma desmentidora.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,284,'Ele será rebaixador, ele será elevador,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,284,'Quando a terra for sacudida violentamente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,284,'E as montanhas forem esmigalhadas totalmente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,284,'Então, tornar-se-ão partículas espalhadas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,284,'E vós sereis de três espécies:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,284,'Então, os companheiros da direita - que excelentes os companheiros da direita! -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,284,'E os companheiros da esquerda - que execráveis os companheiros da esquerda! -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,284,'E os precursores da Fé serão os precursores;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,284,'Estes serão os achegados a Allah,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,284,'Nos Jardins da Delícia,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,284,'Uma multidão dos primeiros,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,284,'E um pouco dos derradeiros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,284,'Estarão sobre leitos de tecidos ricamente bordados;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,284,'Neles reclinados, frente a frente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,284,'Circularão, entre eles, mancebos, eternamente jovens,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,284,'Com copos e jarros e taça de fonte fluida');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,284,'- Com essa, não sofrerão dor cefálica nem se embriagarão -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,284,'E com frutas de quanto escolherem,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,284,'E com carne de aves de quanto apetecerem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,284,'E haverá húris de belos grandes olhos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,284,'Iguais a pérolas resguardadas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,284,'Em recompensa do que faziam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,284,'Neles não ouvirão frivolidades nem algo pecaminoso');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,284,'Senão o dito: "Salam! Salam!", Paz! Paz!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,284,'E os companheiros da direita - que excelentes os companheiros da direita! -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,284,'Estarão entre açofaifas não espinhosas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,284,'E árvores de bananeira bem ordenadas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,284,'E sombra extensa,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,284,'E água sempre fluente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,284,'E frutas abundantes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,284,'Não cortadas nem proibidas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,284,'E acolchoados elevados');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,284,'Por certo, fizemo-las surgir, perfeitamente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,284,'E fizemo-las virgens,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,284,'Meigas, da mesma idade,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,284,'Para os companheiros da direita:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,284,'Uma multidão dos primeiros,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,284,'E uma multidão dos derradeiros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,284,'E os companheiros da esquerda - que execráveis os companheiros da esquerda! -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,284,'Estarão no castigo do Samum e em água ebuliente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,284,'E em sombra de nigérrima fumaça,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,284,'Nem fresca nem benfazeja.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,284,'Por certo, antes disso, eram opulentos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,284,'E obstinavam-se no formidável erro,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,284,'E diziam: "Quando morrermos e formos pó e ossos, seremos ressuscitados?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,284,'"E nossos pais antepassados, também?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,284,'Dize: "Por certo, os primeiros e os derradeiros,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,284,'Serão juntados em um tempo marcado de dia determinado."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,284,'Em seguida, por certo, ó vós descaminhados, desmentidores,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,284,'Comereis, certamente, da árvore de Zaqqum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,284,'E dela enchereis os ventres,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,284,'E, por cima, bebereis da água ebuliente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,284,'E bebereis como camelos sequiosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,284,'Esta será sua hospedagem no Dia do juízo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,3,284,'Nós vos criamos. Que vós, então confirmeis a Ressurreição!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,3,284,'E vistes o que ejaculais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,3,284,'Sois vós que o criais, ou somos Nós O Criador?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,3,284,'Nós determinamos estar a morte entre vós, e Nós não seremos Impedidos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,3,284,'De trocar-vos por semelhantes a vós e fazer-vos surgir em algo que não sabeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,3,284,'E, com efeito, sabeis do primeiro surgimento. Então, que vós mediteis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,3,284,'E vistes o que lavrais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,3,284,'Sois vós que o semeais, ou somos Nós O Semeador?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,3,284,'Se quiséssemos, fá-lo-íamos pulvéreo, então permaneceríeis exclamando:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,3,284,'"certo, estamos onerados!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,3,284,'"Ou, aliás, desprovidos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,3,284,'E vistes a água que bebeis?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,3,284,'Sois vós que a fazeis descer dos nimbos, ou somos Nós Que a fazemos descer?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,3,284,'Se quiséssemos, fá-la-íamos salsíssima. Então, que vós agradeçais!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,3,284,'E vistes o fogo que ateais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,3,284,'Sois vós que fazeis surgir sua árvore, ou somos Nós Que a fazemos surgir?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,3,284,'Nós o fizemos como lembrança e proveito para os viajantes do deserto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,3,284,'Então, glorifica o nome de teu Magnífico Senhor!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,3,284,'E juro pelas posições das estrelas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,3,284,'- E, por certo, é magnífico juramento, se soubésseis. -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,3,284,'Por certo, este é um Alcorão nobre,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,3,284,'Em Livro resguardado,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,3,284,'Não o tocam senão os purificados;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,3,284,'É revelação do Senhor dos Mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,3,284,'Então, estais refusando esta Mensagem,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,3,284,'E fazendo do desmentir o agradecimento de vosso sustento?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,3,284,'Então, que quando a alma atingir à garganta de um moribundo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,3,284,'Enquanto, nesse momento, o olhais,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,3,284,'- E Nós estamos mais Próximos dele, que vós, mas vós não o enxergais -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,3,284,'Então, se não deveis ser julgados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,3,284,'Que a façais retornar, se sois verídicos!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,3,284,'E, se ele é dos achegados a Allah,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,3,284,'Então, terá descanso, e alegria, e Jardim da Delícia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,3,284,'E, se ele é dos companheiros da direita,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,3,284,'Então, terá a saudação: "A paz seja contigo", dos companheiros da direita.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,3,284,'E, se ele é dos desmentidores, descaminhados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,3,284,'Então, terá hospedagem de água ebuliente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,3,284,'E de queima no Inferno.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,3,284,'Por certo, esta é a verdade certa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,3,284,'Então, glorifica o nome de teu Magnífico Senhor!');
+INSERT INTO chapters (id, number, quran_id) VALUES(285,57,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,285,'O que há nos céus e na terra glorifica a Allah. E Ele é O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,285,'DEle é a soberania dos céus e da terra. Ele dá a vida e dá a morte. E Ele, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,285,'Ele é O Primeiro e O Derradeiro, e O Aparente e O Latente. E Ele, de todas as cousas, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,285,'Ele é Quem criou os céus e a terra, em seis dias; em seguida, estabeleceu-Se no Trono. Ele sabe o que penetra na terra e o que dela sai; e o que desce do céu e o que a ele ascende. E Ele é convosco, onde quer que estejais. E Allah, do que fazeis, é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,285,'E dEle é a soberania dos céus e da terra. E a Allah são retornadas as determinações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,285,'Ele insere a noite no dia e insere o dia na noite. E Ele, do íntimo dos peitos, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,285,'Crede em Allah e em Seu Mensageiro; e despendei, daquilo de que vos fez sucessores. Então, os que crêem, dentre vós, e despendem, terão grande prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,285,'E por que razão não credes em Allah, enquanto o Mensageiro vos convoca para crerdes em vosso Senhor? E enquanto, com efeito, Ele tomou vossa aliança, se sois crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,285,'Ele é Quem faz descer sobre Seu servo evidentes versículos, para fazer-vos sair das trevas para a luz. E, por certo, Allah, para convosco, é Compassivo, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,285,'E por que razão não despendeis na senda de Allah, enquanto de Allah é a herança dos céus e da terra? Não se iguala, dentre vós, quem despendeu e combateu antes da conquista a quem despendeu e combateu após. Esses têm escalão mais elevado que os que combateram após. E, a ambos, Allah promete a mais bela recompensa. E Allah, do que fazeis, é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,285,'Quem empresta bom empréstimo a Allah, Ele lho multiplicará, e ele terá generoso prêmio,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,285,'Um dia, quando vires os crentes e as crentes, com sua luz que lhes correrá adiante e à direita, dir-se-lhes-á: "Vossas alvíssaras, hoje, são Jardins, abaixo dos quais correm os rios; nesses, sereis eternos. Esse é o magnífico triunfo"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,285,'Um dia, quando os hipócritas e as hipócritas disserem aos que creram: "Esperai por nós, nós adquiriremos algo de vossa luz", dir-se-lhes-á: "Para trás, retornai e requestai luz, em outro lugar." Então, estender-se-á, entre eles, uma grade com porta; em seu interior, haverá a misericórdia, e, em seu exterior, defronte, haverá o castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,285,'Eles os chamarão: "Não estávamos convosco?" Dirão: "Sim, mas vós vos provastes, a vós mesmos e aguardastes nossa ruína, e duvidastes da Mensagem, e as vãs esperanças iludiram-vos, até que chegou a ordem de Allah. E o ilusor iludiu-vos, acerca de Allah."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,285,'"Então, hoje, não se tomará de vós resgate algum nem dos que renegaram a Fé. Vossa morada será o Fogo: será ele vosso protetor. E que execrável destino!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,285,'Não é tempo, para os que crêem, de se lhes humilharem os corações à lembrança de Allah e ao que desceu da verdade? E não serem como aqueles aos quais, outrora, fora concedido o Livro - e para quem se lhes tornou longínquo o termo - então, se lhes endureceram os corações. E muitos deles foram perversos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,285,'Sabei que Allah vivifica a terra depois de morta. Com efeito, tornamos evidente, para vós, os sinais, para razoardes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,285,'Por certo, aos esmoleres e às esmoleres, e aos que emprestam bom empréstimo a Allah, ser-lhes-á multiplicada a retribuição, e terão generoso prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,285,'E os que crêem em Allah e em Seus Mensageiros, esses são os veracíssimos. E os mártires, junto de seu Senhor, terão seu prêmio e sua luz. Enquanto os que renegam a Fé e desmentem Nossos sinais, esses serão os companheiros do Inferno.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,285,'Sabei que a vida terrena é, apenas, diversão e entretenimento e ornamento e vanglória, entre vós, e ostentação acerca das riquezas e dos filhos. Ela é como chuva: as plantas nascidas, com esta, causam admiração aos cultivadores; em seguida, ressecam, e tu as vês amarelecidas; depois, tornam-se pulvéreas. E, na Derradeira Vida, haverá veemente castigo, e perdão de Allah, e agrado. E a vida terrena não é senão gozo falaz.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,285,'Emulai-vos por um perdão de vosso Senhor e por um Paraíso, cuja amplidão é como a do céu e da terra, preparado para os que crêem em Allah e em Seus Mensageiros. Esse é o favor de Allah: concede-o a quem quer. E Allah é Possuidor de favor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,285,'Nenhuma desgraça ocorre, na terra, nem em vós mesmos, sem que esteja em um Livro antes mesmo de Nós a criarmos. Por certo, isso, para Allah é fácil.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,285,'Assim é, para que vos não aflijais com o que perdestes nem jubileis com o que Ele vos concedeu. E Allah não ama a nenhum presunçoso, vanglorioso,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,285,'Aos que são avaros e ordenam a avareza aos homens. E quem volta as costas à caridade, por certo, Allah é O Bastante a Si Mesmo, O Louvável.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,285,'Com efeito, enviamos Nossos Mensageiros com as evidências, e por eles, fizemos descer o Livro e a balança para que os homens observem a eqüidade. E criamos o ferro; nele, há veemente força e benefícios para os humanos. E isso, para que Allah saiba quem O socorre a Ele, ainda que Invisível e a Seus Mensageiros. Por certo, Allah é Forte, Todo-Poderoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,285,'E, com efeito, enviamos Noé e Abraão, e fizemos haver na descendência de ambos, a Profecia e o Livro. Então, entre eles, houve guiados. Enquanto muitos deles foram perversos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,285,'Em seguida, fizemos seguir, em suas pegadas, Nossos Mensageiros. E fizemos seguir Jesus, filho de Maria, e concedemo-Ihe o Evangelho. E fizemos, nos corações dos que o seguiram, compaixão e misericórdia. - E o monacato, inventaram-no. Nós não lhos prescrevemos, mas o fizeram em busca do agrado de Allah; e não o respeitaram como deveria ser respeitado. - Então, concedemos aos que creram, dentre eles, seu prêmio. E muitos deles foram perversos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,285,'Ó vós que credes! Temei a Allah e crede em Seu Mensageiro, Ele vos concederá dupla partilha de Sua misericórdia, e vos fará luz, com que andareis, e vos perdoará. E Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,285,'Isso, para que os seguidores do Livro saibam que nada podem sobre o favor de Allah, e que o favor está na mão de Allah: concede-o a quem quer. E Allah é Possuidor do magnífico favor.');
+INSERT INTO chapters (id, number, quran_id) VALUES(286,58,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,286,'Com efeito, Allah ouviu o dito daquela que discutia contigo, acerca de seu marido, e se queixava a Allah. E Allah ouviu vosso diálogo. Por certo, Allah é Oniouvinte, Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,286,'Aqueles, dentre vós, que repudiam suas mulheres, com az-zihar, saibam que elas não são suas mães. Suas mães não são senão as que os deram à luz. E, por certo, eles dizem dito reprovável e falso. E, por certo, Allah é Indulgente, Perdoador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,286,'E aqueles que repudiam suas mulheres com az-zihar, em seguida voltam atrás no que disseram, então, que alforriem um escravo, antes que ambos se toquem. Isso é o com que sois exortados. E Allah, do que fazeis, é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,286,'E quem não encontrar meio de fazê-lo, que jejue, por dois meses seguidos, antes que ambos se toquem. E quem não puder jejuar, que alimente sessenta necessitados. Isso, para que creiais em Allah e em Seu Mensageiro. E esses são os limites de Allah. E, para os renegadores da Fé, haverá doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,286,'Por certo, os que se opõem a Allah e a Seu Mensageiro serão desbaratados como foram desbaratados os que foram antes deles. E, com efeito, fizemos descer evidentes versículos. E, para os renegadores da Fé, haverá aviltante castigo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,286,'Um dia, quando Allah os ressuscitar, a todos, então, informá-los-á do que fizeram. Allah o enumerara, e eles o esqueceram. E Allah, sobre todas as cousas, é Testemunha.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,286,'Não viste que Allah sabe o que há nos céus e o que há na terra? Não existe confidência alguma entre três, sem que Ele seja O quarto deles; nem entre cinco, sem que Ele seja O sexto deles; nem menos que isso, nem mais, sem que Ele seja com eles, onde quer que estejam. Em seguida, informá-los-á, no Dia da Ressurreição, do que fizeram. Por certo, Allah, de todas as cousas, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,286,'Não viste os que foram coibidos da confidência? Em seguida, voltaram-se para o de que foram coibidos, e confidenciam, uns aos outros, o pecado e a agressão e a desobediência ao Mensageiro. E, quando te chegam, saúdam-te com aquilo com que Allah não te saudou, e dizem a si mesmos: "Que Allah nos castigue pelo que dizemos!" Basta-lhes a Geena: nela se queimarão. E que execrável destino!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,286,'Ó vós que credes! Quando confidenciardes uns com os outros, não confidencieis o pecado e a agressão e a desobediência ao Mensageiro, e confidenciai a bondade e a piedade. E temei a Allah, a Quem sereis reunidos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,286,'A confidência é apenas de Satã, para entristecer os que crêem e, em nada ele pode prejudicá-los senão com a permissão de Allah. E que os crentes, então, confiem em Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,286,'Ó vós que credes! Quando se vos diz: "Dai espaço.", nas assembléias dai espaço. Allah vos dará espaço no Paraíso. E quando se diz: "Erguei-vos", erguei-vos. Allah elevará, em escalões, os que crêem dentre vós, e àqueles aos quais é concedida a ciência. E Allah, do que fazeis, é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,286,'Ó vós que credes! Quando confidenciardes com o Mensageiro, antecipai uma esmola a vossa confidência. Isso vos é melhor e mais puro. E, se não encontrais meio de fazê- lo, por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,286,'Atemorizai-vos por antecipar esmolas a vossa confidência? Então, se não o fazeis, e Allah se volta para vós, cumpri a oração, e concedei az-zakat, a ajuda caridosa, e obedecei a Allah e a Seu Mensageiro. E Allah, do que fazeis, é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,286,'Não viste os que se aliaram a um povo contra quem Allah se irou? Eles não são de vós nem deles, e juram mentirosamente, enquanto sabem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,286,'Allah preparou-lhes veemente castigo. Por certo, que vil o que faziam!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,286,'Tomaram seus juramentos por escudo e afastaram os homens do caminho de Allah; então, terão aviltante castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,286,'Nem suas riquezas nem seus filhos de nada lhes valerão, diante de Allah. Esses são os companheiros do Fogo. Nele, serão eternos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,286,'Um dia, quando Allah os ressuscitar, a todos, então, jurar-Lhe-ão, como vos juram, supondo que estão fundados sobre algo. Ora, por certo, eles são os mentirosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,286,'Satã dominou-os e fê-los esquecer a lembrança de Allah. Esses são o partido de Satã. Ora, por certo, os do partido de Satã, são eles os perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,286,'Por certo, os que se opõem a Allah e a Seu Mensageiro, esses estarão entre os mais vis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,286,'Allah prescreveu: "Em verdade, vencerei Eu e Meus Mensageiros." Por certo, Allah é forte, Todo-Poderoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,286,'Tu não encontrarás um povo, que creia em Allah e no Derradeiro Dia, o qual tenha afeição para quem se oponha a Allah e a Seu Mensageiro, ainda que sejam seus pais ou seus filhos ou seus irmãos ou seus familiares. A esses, Allah prescreveu a Fé nos corações, e amparou-os com Espírito vindo dEle, e fá-los-á entrar em Jardins, abaixo dos quais correm os rios; nesses, serão eternos. Allah Se agradará deles, e eles se agradarão dEle. Esses são o partido de Allah. Ora, por certo, os do partido de Allah, são eles os bem-aventurados.');
+INSERT INTO chapters (id, number, quran_id) VALUES(287,59,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,287,'O que há nos céus e o que há na terra glorificam a Allah. E Ele é O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,287,'Ele é Quem fez sair, de seus lares, os que renegaram a Fé, dentre os seguidores do Livro, quando do primeiro êxodo. Não pensastes que eles sairiam. E eles pensaram que suas fortalezas os abrigariam de Allah. Mas Allah chegou-lhes por onde não supunham, e arrojou o terror em seus corações: arruinaram suas casas, com as próprias mãos e com as mãos dos crentes. Então, tomai lição disso, ó vós dotados de visão!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,287,'E não lhes houvesse Allah prescrito o desterro, havê-los-ia castigado, na vida terrena. E terão, na Derradeira Vida, o castigo do Fogo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,287,'Isso, porque discordaram de Allah e de Seu Mensageiro. E quem discorda de Allah, por certo, Allah é Veemente na punição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,287,'O que cortastes de tamareiras, ou o que delas deixastes de pé foi com a permissão de Allah e para ignominiar os perversos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,287,'E o que de seus espólios Allah fez chegar a Seu Mensageiro, sem combate, vós, para isso, não estimulastes nem cavalos nem camelos; mas Allah dá a Seus Mensageiros dominação sobre quem Ele quer. E Allah, sobre todas as cousas, é Onipotente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,287,'O que dos espólios dos habitantes das aldeias Allah faz chegar, sem combate, a Seu Mensageiro, é de Allah, e do Mensageiro, e dos parentes deste, e dos órfãos, e dos necessitados, e do filho do caminho para que isso não seja alternado entre os ricos dos vossos. E o que o Mensageiro vos conceder, tomai-o; e o de que vos coibir, abstende-vos dele. E temei a Allah. Por certo, Allah é Veemente na punição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,287,'Os espólios são, também, dos pobres emigrantes, que foram expulsos de seus lares e privados de suas riquezas, ao buscarem favor de Allah e agrado, e ao socorrerem a Allah e a Seu Mensageiro. Esses são os verídicos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,287,'E os que habitaram o lar e abraçaram a Fé, antes deles, amam os que emigraram para eles, e não encontraram em seus peitos cobiça do que Ihes foi concedido. E preferem-nos a si mesmos, mesmo estando em necessidade. E quem se guarda de sua própria mesquinhez, esses são os bem aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,287,'E os que chegaram, depois deles, dizem: "Senhor nosso! Perdoa-nos e a nossos irmãos, que se nos anteciparam, na Fé, e não faças existir, em nossos corações, ódio para com os que crêem. Senhor nosso! Por certo, és Compassivo, Misericordiador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,287,'Não viste os que são hipócritas? Dizem a seus irmãos que renegam a Fé, dentre os seguidores do Livro: "Em verdade, se vos fizerem sair, sairemos convosco e jamais obedeceremos a alguém contra vós; e, se fordes combatidos, socorrer-vos-emos." E Allah testemunha que, por certo, eles são mentirosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,287,'Em verdade, se os fizerem sair, não sairão com eles; e, se forem combatidos, não os socorrerão. E, se os socorressem, fugiriam voltando as costas; em seguida, eles não seriam socorridos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,287,'Em verdade, vós sois mais veementes, em causar pavor em seus peitos, que Allah. Isso, porque são um povo que não entende.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,287,'Juntos, não vos combaterão, senão em aldeias fortificadas, ou atrás de muros. Sua fúria, entre eles é veemente. Tu os supões unidos, enquanto seus corações estão dispersos. Isso, porque são um povo que não razoa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,287,'São iguais aos que foram antes deles, há pouco. Experimentaram a nefasta conseqüência de sua conduta, e terão doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,287,'São iguais a Satã, quando disse ao ser humano: "Renega a Fé!" Então, quando renegou a Fé, disse aquele: "Por certo, estou em rompimento contigo; por certo, temo a Allah, O Senhor dos mundos!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,287,'Então, o fim de ambos é estarem no Fogo; nele serão eternos. E esta é a recompensa dos injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,287,'Ó vós que credes! Temei a Allah, e que toda alma olhe o que ela antecipou, para o amanhã. E temei a Allah. Por certo, Allah, do que fazeis, é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,287,'E não sejais como os que esqueceram a Allah; então, Ele os fez esquecer a si mesmos. Esses são os perversos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,287,'Não se igualam os companheiros do Fogo e os companheiros do Paraíso. Os companheiros do Paraíso são os triunfadores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,287,'Se houvéssemos feito descer este Alcorão sobre uma montanha, vê-la-ias humilde, rachada, por receio de Allah. E estes exemplos, propomo-los, para os homens, a fim de refletirem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,287,'Ele é Allah. Não existe deus senão Ele, O Sabedor do invisível e do visível, Ele é O Misericordioso, O Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,287,'Ele é Allah. Não existe deus senão Ele, O Rei, O Puro, A Paz, O Confortador, O Predominante, O Todo-Poderoso, O Transcendente, O Orgulhoso. Glorificado seja Allah, acima do que idolatram!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,287,'Ele é Allah, O Criador, O Iniciador da criação, O Configurador; dEle são os mais belos nomes. O que há nos céus e na terra glorifica-O. E Ele é O Todo-Poderoso, O Sábio.');
+INSERT INTO chapters (id, number, quran_id) VALUES(288,60,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,288,'Ó vós que credes! Não tomeis Meus inimigos e vossos inimigos por aliados - lançando-lhes afeição, enquanto eles renegam o que vos chegou da Verdade, fazendo sair o Mensageiro e a vós, porque credes em Allah, vosso Senhor - se saístes de vosso lar para lutar em Meu caminho e para buscar Meu agrado. Vós lhes transmitis, secretamente, afeição, enquanto sou bem Sabedor do que escondeis e do que manifestais. E quem de vós o faz, com efeito, descaminha-se do caminho certo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,288,'Se eles vos dominarem, serão inimigos de vós e contra vós estenderão as mãos e a língua, com o mal. E almejarão que renegueis a Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,288,'Nem vossos laços de parentesco nem vossos filhos vos beneficiarão. No Dia da Ressurreição, Ele decidirá, entre vós. E Allah, do que fazeis é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,288,'Com efeito, há para vós belo paradigma em Abraão, e nos que estavam com ele, quando disseram a seu povo: "Por certo, estamos em rompimento convosco e com o que adorais, em vez de Allah; renegamo-vos, e a inimizade e a aversão mostrar-se-ão, para sempre, entre nós e vós, até que creiais em Allah, só nEle", exceto no dito de Abraão a seu pai: "Em verdade, implorarei perdão para ti, e nada te poderei fazer, junto de Allah". "Senhor nosso! Confiamos em Ti, e para Ti nos voltamos contritos. E a Ti será o destino."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,288,'"Senhor nosso! Não faças de nós vítimas da provação dos que renegam a Fé, e perdoa-nos. Senhor nosso! Por certo, Tu, Tu és O Todo-Poderoso, O Sábio."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,288,'Com efeito, há neles, belo paradigma para vós, para quem espera em Allah e no Derradeiro Dia. E quem volta as costas, por certo, Allah é O Bastante a Si Mesmo, O Louvável.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,288,'Quiçá, Allah faça existir afeto entre vós e aqueles com quem vos inimizastes, dentre eles. E Allah é Onipotente. E Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,288,'Allah não vos coíbe de serdes blandiciosos e equânimes para com os que não vos combateram, na religião, e não vos fizeram sair de vossos lares. Por certo, Allah ama os equânimes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,288,'Apenas, Allah coíbe-vos de serdes aliados aos que vos combateram, na religião e vos fizeram sair de vossos lares, e auxiliaram expulsar-vos. E quem se alia a eles, esses são os injustos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,288,'Ó vós que credes! Quando as crentes vos chegarem, como emigrantes, examinai-as. Allah é bem Sabedor de sua Fé! Então, se as considerais crentes, não as façais retornar aos renegadores da Fé. Elas não lhes são lícitas nem eles lhes são lícitos. E concedei-lhes o que despenderam. E não há culpa, sobre vós, em as esposardes, quando lhes concedeis seu prêmio. E não retenhais os laços matrimoniais das renegadoras da Fé; e pedi o que despendestes, e que eles peçam o que despenderam. Esse é o julgamento de Allah. Ele julga entre vós. E Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,288,'E, se uma de vossas mulheres vos abandona, indo para os renegadores da Fé e, após um combate, obtendes espólios, concedei àqueles, cujas mulheres se foram, o equivalente ao que despenderam. E temei a Allah, de Quem sois crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,288,'Ó Profeta! Quando as crentes te chegarem, para se comprometerem a nada associar a Allah e a não roubar e a não adulterar e a não matar a seus filhos e a não cometer infâmia, que forjam entre as próprias mãos e os pés e a não te desobedecer no que for conveniente, aceita seu compromisso e implora a Allah perdão para elas. Por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,288,'Ó vós que credes! Não vos alieis a um povo contra quem Allah Se irou; com efeito, eles se desesperaram da Derradeira Vida, como os renegadores da Fé se desesperaram dos companheiros dos sepulcros.');
+INSERT INTO chapters (id, number, quran_id) VALUES(289,61,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,289,'O que há nos céus e o que há na terra glorificam a Allah. E Ele é O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,289,'Ó vós que credes! Por que dizeis o que não fazeis?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,289,'Grave é, em sendo abominação perante Allah, que digais o que não fazeis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,289,'Por certo, Allah ama os que combatem em Seu caminho, em fileira, como se fossem edificações ligadas por chumbo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,289,'E quando Moisés disse a seu povo: "Ó meu povo! Por que me molestais, enquanto, com efeito, sabeis que sou para vós o Mensageiro de Allah?" Então, quando se desviaram, Allah desviou-lhes os corações. E Allah não guia o povo perverso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,289,'E quando Jesus, filho de Maria, disse: "Ó filhos de Israel! Por certo, sou para vós o Mensageiro de Allah, para confirmar a Torá, que havia antes de mim, e anunciar um Mensageiro, que virá depois de mim, cujo nome é Ahmad." Então, quando lhes chegou com as evidências, disseram: "Isso é evidente magia!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,289,'E quem mais injusto que aquele que forja a mentira acerca de Allah, enquanto convocado para o Islam? E Allah não guia o povo injusto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,289,'Desejam apagar, com o sopro das bocas, a luz de Allah e Allah completará Sua luz, ainda que o odeiem os renegadores da Fé.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,289,'Ele é Quem enviou Seu Mensageiro, com a Orientação e a religião da Verdade, para fazê-la prevalecer sobre todas as religiões, ainda que o odeiem os idólatras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,289,'Ó vós que credes! Indicar-vos-ei um comércio, que vos salvará de doloroso castigo?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,289,'Crerdes em Allah e em Seu Mensageiro, e lutardes no caminho de Allah com vossas riquezas e com vós mesmos. Isso vos é melhor. Se soubésseis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,289,'Se o fizerdes, Ele vos perdoará os delitos e vos fará entrar em Jardins, abaixo dos quais correm os rios, e em esplêndidas vivendas, nos Jardins do Éden. - Isso é o magnífico triunfo -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,289,'E conceder-vos-á outra graça, que amais: socorro de Allah e vitória próxima. E alvissara-o aos crentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,289,'Ó vós que credes! Sede aliados a Allah, da mesma maneira como Jesus, filho de Maria, disse aos discípulos: "Quem são meus aliados à causa de Allah". Os discípulos disseram: "Nós somos os aliados a Allah". Então, uma facção dos filhos de Israel creu, e uma facção renegou a Fé. Amparamos, pois, os que creram contra seus inimigos, e foram prevalecentes.');
+INSERT INTO chapters (id, number, quran_id) VALUES(290,62,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,290,'O que há nos céus e o que há na terra glorificam a Allah, O Rei, O Puro, O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,290,'Ele é Quem lhes enviou um Mensageiro vindo deles, o qual recita Seus versículos para eles, e os dignifica e lhes ensina o Livro e a Sabedoria. E por certo, antes, estavam em evidente descaminho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,290,'E a outros deles que, ainda, não se lhes ajuntaram. E Ele é O Todo-Poderoso, O Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,290,'Esse é o favor de Allah: concede-o a quem quer. E Allah é O Possuidor de magnífico favor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,290,'O exemplo dos que foram encarregados da Torá, em seguida, não a aplicaram, é como o do asno, carregado de grandes livros. Que execrável o exemplo do povo que desmente os sinais de Allah! E Allah não guia o povo injusto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,290,'Dize: "Ó vós que praticais o judaísmo! Se pretendeis ser aliados a Allah, com exclusão de outros homens, anelai à morte, se sois verídicos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,290,'E jamais a anelarão pelo que suas mãos anteciparam. E Allah dos injustos é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,290,'Dize: "Por certo, a morte da qual fugis,vos deparará. Em seguida, sereis levados aO Sabedor do invisível e do visível, e Ele vos informará do que fazíeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,290,'Ó vós que credes! Quando se chama à oração da Sexta-feira, ide, depressa, para a lembrança de Allah, e deixai a venda. Isto vos é melhor. Se soubésseis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,290,'E quando a oração se encerrar, espalhai-vos pela terra e buscai algo do favor de Allah; e lembrai-vos de Allah, amiúde, na esperança de serdes bem-aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,290,'E, quando eles vêem oportunidade de comércio ou entretenimento, debandam, rumo a isto, e te deixam de pé. Dize: "O que há junto de Allah é melhor que o entretenimento e o comércio. E Allah é O Melhor dos sustentadores."');
+INSERT INTO chapters (id, number, quran_id) VALUES(291,63,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,291,'Quando os hipócritas te chegam, dizem: "Testemunhamos que, por certo, tu és O Mensageiro de Allah." E Allah sabe que, por certo, tu és Seu Mensageiro, e Allah testemunha que, por certo, os hipócritas são mentirosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,291,'Tomaram seus juramentos por escudo e afastaram-se do caminho de Allah. Por certo, que vil o que faziam!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,291,'Isso, porque creram; em seguida, renegaram a Fé; então, selaram-se-lhes os corações: e eles nada entendem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,291,'E, quando os vês, tu te admiras de seus corpos. E, se falam, ouves seu dito. São como madeiras encostadas. Supõem ser contra eles todo grito. Eles são os inimigos: então, precata-te deles. Que Allah os aniquile! Como se distanciam da Verdade!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,291,'E, quando se lhes diz: "Vinde, que o Mensageiro de Allah implorará perdão para vós", meneiam as cabeças, e tu os vês se afastarem, enquanto soberbos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,291,'É-lhes igual que implores perdão para eles ou não implores perdão para eles: Allah não os perdoará. Por certo, Allah não guia o povo perverso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,291,'Eles são os que dizem: "Não despendais com os que estão junto do Mensageiro de Allah, até que debandem." E de Allah são os cofres dos céus e da terra, mas os hipócritas não entendem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,291,'Dizem: "Se retornarmos a Al-Madinah, em verdade, o mais poderoso de nós fará sair o mais desprezado." E de Allah é o poder, e de Seu Mensageiros, e dos crentes, mas os hipócritas não sabem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,291,'Ó vós que credes! Que vossas riquezas e vossos filhos não vos entretenham, da lembrança de Allah. E quem o faz, esses são os perdedores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,291,'E despendei do que vos damos por sustento, antes que a morte chegue a um de vós e que ele diga: "Senhor meu! Que me concedas prazo até um termo próximo; então, darei esmola e serei dos íntegros."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,291,'E Allah não concederá prazo a uma alma, quando seu termo chegar. E Allah, do que fazeis, é Conhecedor.');
+INSERT INTO chapters (id, number, quran_id) VALUES(292,64,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,292,'O que há nos céus e o que há na terra glorificam a Allah. DEle é a soberania e d');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,292,'Ele é Quem vos criou; e, dentre vós, há renegadores da Fé, e, dentre vós há crentes. E Allah, do que fazeis, é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,292,'Ele criou os céus e a terra, com a verdade. E configurou-vos, e benfez vossa configuração. E a Ele será o destino.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,292,'Ele sabe o que há nos céus e na terra. E sabe o de que guardais segredo e o que manifestais. E Allah, do íntimo dos peitos, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,292,'Não vos chegou o informe dos que, antes de vós, renegaram a Fé? Então, experimentaram a nefasta conseqüência de sua conduta; e terão doloroso castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,292,'Isso porque seus Mensageiros lhes chegavam com as evidências, então diziam: "São mortais que nos guiarão?" E renegaram a Fé e voltaram as costas. E Allah deles prescindiu. E Allah é Bastante a Si Mesmo, Louvável.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,292,'Os que renegam a Fé pretendem que não serão ressuscitados. Dize: "Sim! Por meu Senhor, sereis ressuscitados; em seguida, sereis informados do que fizestes. E isso, para Allah, é fácil."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,292,'Então, crede em Allah e em Seu Mensageiro e na Luz que fizemos descer. E Allah, do que fazeis é Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,292,'Um dia, quando Ele vos juntar, no Dia da Junta, esse será o dia do mútuo engano. E quem crê em Allah e faz o bem, Ele lhe remirá as más obras e o fará entrar em Jardins, abaixo dos quais correm os rios; nesses serão eternos, para todo o sempre. Esse é o magnífico triunfo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,292,'E os que renegam a Fé e desmentem Nossos sinais, esses serão os companheiros do Fogo; nele, serão eternos. E que execrável destino!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,292,'Nenhuma desgraça ocorre sem que seja com a permissão de Allah. E quem crê em Allah, Ele lhe guiará o coração. E Allah, de todas as cousas, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,292,'E obedecei a Allah e obedecei ao Mensageiro. E, se voltais as costas, sabei que impende apenas a Nosso Mensageiro a evidente transmissão da Mensagem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,292,'Allah, não existe deus senão Ele. E que os crentes, então, confiem em Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,292,'Ó vós que credes! Por certo, há, entre vossas mulheres e vossos filhos, inimigos de vós; então, precatai-vos deles. E, se os indultais e tolerais e perdoais, por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,292,'Vossas riquezas e vossos filhos não são que provação. E, junto de Allah, haverá magnífico prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,292,'Então, temei a Allah quanto puderdes. E ouvi e obedecei e despendei: é-vos melhor, para vós mesmos. E quem se guarda de sua própria mesquinhez, esses são os bem-aventurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,292,'Se emprestais um bom empréstimo a Allah, Ele vo-lo multiplicará e vos perdoará. E Allah é Agradecido, Clemente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,292,'O Sabedor do invisível e do visível, O Todo-Poderoso, O Sábio.');
+INSERT INTO chapters (id, number, quran_id) VALUES(293,65,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,293,'Ó Profeta! Quando vos divorciardes das mulheres, divorciai-vos delas no início de sua iddah, seu tempo de espera. E enumerai a iddah. E temei a Allah, vosso Senhor. Não façais sair de suas casas, e que elas não saiam, exceto se cometerem evidente obscenidade. E esses são os limites de Allah. E quem transgride os limites de Allah, com efeito, fará injustiça a si mesmo. - Tu não te inteiras: provavelmente, Allah faça surgir, depois disso, algo -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,293,'Então, quando elas chegarem às proximidades de seu termo, retende-as convenientemente, ou separai-vos delas convenientemente; e fazei testemunhá-lo dois homens justos dos vossos, e cumpri com equanimidade, o testemunho por Allah. Isso é o com que é exortado quem crê em Allah e no Derradeiro Dia. E quem teme a Allah, Ele lhe fará saída digna,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,293,'E lhe dará sustento, por onde não suporá. E quem confia em Allah, Ele lhe bastará. Por certo, Allah atinge o que quer de Sua ordem, Allah fez para cada cousa uma medida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,293,'E aquelas de vossas mulheres, que não mais esperam o mênstruo, sua iddah, se duvidais, será de três meses e, assim também a das que não menstruam. E as mulheres grávidas, seu termo será o deporem suas cargas. E quem teme a Allah, Ele lhe fará facilidade em sua condição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,293,'Essa é a ordem de Allah, que Ele fez descer. E quem teme a Allah, Ele lhe remirá as más obras e lhe tornará magnífico o prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,293,'Fazei-as habitar onde habitais, conforme vossos recursos, e não as prejudiqueis, para constrangê-las. E, se elas vos amamentam o filho, concedei-lhes seus prêmios. E que, entre vós, haja deliberações mútuas, de modo conveniente. E, se estais em dificuldade, outra lhe amamentará o filho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,293,'Que aquele, que tem prosperidade, despenda conforme sua prosperidade. E aquele, cujo sustento é restrito, que ele despenda do que Allah lhe concede. Allah não impõe a alma alguma senão o que Ele lhe concede. Allah fará, após dificuldade, facilidade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,293,'E que de cidades transgrediram, desmesuradamente, a ordem de seu Senhor e de Seus Mensageiros! Então, fizemo-las dar severa conta, e castigamo-las com terrível castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,293,'Então, experimentaram a nefasta consequência de sua conduta; e o fim de sua conduta foi perdição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,293,'Allah preparou-lhes veemente castigo. Então, temei a Allah, ó vós dotados de discernimento, vós que credes! Com efeito, Allah fez descer, para vós, uma Mensagem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,293,'E enviou um Mensageiro, que recita, para vós, os versículos de Allah, evidentes para fazer sair das trevas para a luz, os que crêem e fazem as boas obras. E a quem crê em Allah e faz o bem, Ele o fará entrar em Jardins, abaixo dos quais correm os rios; nesses, serão eternos para todo o sempre. Com efeito, Allah lhe fará belo sustento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,293,'Allah é Quem criou sete céus, e da terra, outras tantas, entre as quais a ordem desce, para que saibais que Allah, sobre todas as cousas, é Onipotente, e que Allah, com efeito, abarca todas as cousas, em ciência.');
+INSERT INTO chapters (id, number, quran_id) VALUES(294,66,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,294,'Ó Profeta! Por que proíbes o que Allah tornou lícito para ti? Buscas o agrado de tuas mulheres? E Allah é Perdoador, Misericordiador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,294,'Com efeito, Allah preceituou, para vós, reparação de vossos juramentos não cumpridos. E Allah é vosso Protetor. E Ele é O Onisciente, O Sábio');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,294,'E quando o Profeta confiou em segredo uma conversa a uma de suas mulheres; e, quando esta informou a outra disso, e Allah lho fez aparecer, ele fez conhecer uma parte, e deu de ombros à outra parte. E, quando a informou disso, ela disse: "Quem te informou disso?" Disse: "Informou-me O Onisciente, O Conhecedor."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,294,'Se ambas vos voltais arrependidas para Allah, Ele vos remirá pois, com efeito, vossos corações se inclinaram a isso. E se vos auxiliais, mutuamente, contra ele, por certo, Allah é seu Protetor e Gabriel e os íntegros dentre os crentes. E os anjos, após isso, serão coadjutores dele.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,294,'Quiçá, se ele se divorcia de vós, seu Senhor lhe dê em troca mulheres melhores que vós, muçulmanas, crentes, devotas, arrependidas, adoradoras, jejuadoras, que forem casadas, ou que sejam virgens.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,294,'Ó vós que credes! Guardai-vos, a vós mesmos e a vossas famílias, de um Fogo, cujo combustível são os homens e as pedras; sobre ele, haverá anjos irredutíveis, severos: não desobedecem a Allah, a Sua ordem, e fazem o que lhes é ordenado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,294,'Dir-se-á: "Ó vós que renegastes a Fé! Não vos desculpeis. Hoje, sereis recompensados, apenas, pelo que fazíeis."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,294,'Ó vós que credes! Voltai-vos arrependidos para Allah, com arrependimento sincero. Quiçá, vosso Senhor vos remita as más obras e vos faça entrar em Jardins, abaixo dos quais correm os rios, um dia, em que Allah não ignominiará ao Profeta e aos que, com ele, crêem. Sua luz lhes correrá adiante e á direita. Dirão: "Senhor nosso! Completa, para nós, nossa luz, e perdoa-nos. Por certo, Tu, sobre todas as cousas, és Onipotente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,294,'Ó Profeta! Luta contra os renegadores da Fé e os hipócritas, e sê duro para com eles. E sua morada será a Geena. E que execrável destino!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,294,'Allah propõe um exemplo, para os que renegam a Fé: a mulher de Noé e a mulher de Lot. Ambas estavam sob a autoridade de dois servos íntegros, de Nossos servos; e ambas os traíram; então, eles de nada lhes valeram, diante de Allah; e foi-lhes dito: "Entrai ambas no Fogo com os que aí entram."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,294,'E Allah propõe um exemplo, para os que crêem: a mulher de Faraó, quando disse: "Senhor meu! Edifica, para mim, junto de Ti, uma casa no Paraíso, e salva-me de Faraó e de sua obra, e salva-me do povo injusto";');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,294,'E Maria, filha de Imrãn, que escudou sua virgindade; então, sopramos nela algo de Nosso Espírito, e ela confirmou as palavras de seu Senhor e Seus Livros, e era dos devotos.');
+INSERT INTO chapters (id, number, quran_id) VALUES(295,67,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,295,'Bendito Aquele em Cujas mãos está a Soberania - e Ele, sobre todas as cousas, é Onipotente -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,295,'Aquele que criou a morte e a vida, para pôr à prova qual de vós é melhor em obras - e Ele é O Todo-Poderoso, O Perdoador -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,295,'Aquele Que criou sete céus superpostos! Não vês desarmonia alguma na criação dO Misericordioso. Então, torna a vista para o céu: vês nele alguma greta?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,295,'Em seguida, torna a vista, duas vezes, que a vista se voltará para ti, malogrado e exausto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,295,'E, com efeito, aformoseamos o céu mais próximo com lâmpadas e delas fizemos mísseis contra os demônios. E preparamo-lhes o castigo do Fogo ardente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,295,'E, para os que renegam seu Senhor, haverá o castigo da Geena. - E que execrável destino! -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,295,'Quando nela forem lançados, dela ouvirão soluços, enquanto ela ferverá.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,295,'Ela quase rebentará de rancor. Cada vez que nela for lançada uma turba, seus guardiães perguntar-Ihes-ão: "Não vos chegou um admoestador?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,295,'Dirão: "Sim, com efeito, um admoestador chegou-nos; então, desmentimo-lo e dissemos:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,295,'E dirão: "Se houvéssemos ouvido ou razoado, não estaríamos entre os companheiros do Fogo ardente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,295,'E reconhecerão seus delitos; então extintos sejam os companheiros do Fogo ardente!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,295,'Por certo, os que receiam a seu Senhor, ainda que Invisível, terão perdão e grande prêmio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,295,'E guardai segredo de vosso dito, ou declarai-o! Por certo, Ele, do íntimo dos peitos, é Onisciente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,295,'Não saberá Ele a quem criou? E Ele é O Sutil, O Conhecedor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,295,'Ele é Quem vos fez a terra dócil; então, andai, por seus flancos e comei de Seu sustento. E a Ele será a Ressurreição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,295,'Estais seguros de que Quem está no céu não fará a terra engolir-vos, então, de súbito, agitar-se?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,295,'Ou estais seguros de que Quem está no céu não enviará, sobre vós, um vento lastrado de seixos? Então, sabereis como é Minha admoestação!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,295,'E, com efeito, os que foram antes deles desmentiram aos Mensageiros. Então, como foi minha reprovação?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,295,'E não viram eles os pássaros, acima deles, pairando no ar, e adejando? Não os sustém senão O Misericordioso. Por certo, Ele, de todas as cousas, é Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,295,'Mas quem é este exército que, aliado a vós, vos socorrerá, além dO Misericordioso? Os renegadores da Fé não estão senão em falácia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,295,'Ou quem é este que vos dará sustento, se Ele retém Seu sustento? Mas eles persistem em desobediência e em repulsa à Verdade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,295,'Então, quem é mais bem guiado? Aquele que anda cabisbaixo ou quem anda erguido, em senda reta?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,295,'Dize: "Ele é Quem vos fez surgir e vos fez o ouvido e as vistas e os corações. Quão pouco agradeceis!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,295,'Dize: "Ele é Quem vos fez multiplicar na terra, e a Ele sereis reunidos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,295,'E dizem: "Quando será o cumprimento desta promessa, se sois verídicos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,295,'Dize: "A ciência está, apenas, junto de Allah e sou, apenas, evidente admoestador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,295,'Então, quando o virem próximo, as faces dos que renegaram a Fé tornar-se-ão aflitas, e dir-se-Ihes-á: "Isto é o que cobiçáveis!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,295,'Dize: "Vistes? Se Allah me aniquila e a quem está comigo, ou se Ele tem misericórdia de nós, quem protegerá os renegadores da Fé de doloroso castigo?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,295,'Dize: "Ele é O Misericordioso; nEle cremos e nEle confiamos. Então, sabereis quem está em evidente descaminho!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,295,'Dize: "Vistes? Se vossa água se torna subtérrea, então, quem vos fará vir água fluida?"');
+INSERT INTO chapters (id, number, quran_id) VALUES(296,68,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,296,'Nūn. Pelo cálamo e pelo que eles escrevem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,296,'Tu, Muhammad, pela graça de teu Senhor, não és louco.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,296,'E, por certo, há para ti, prêmio incessante.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,296,'E, por certo, és de magnífica moralidade.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,296,'Então, tu enxergarás, e eles enxergarão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,296,'Qual de vós é o alienado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,296,'Por certo, teu Senhor é bem Sabedor de quem se descaminha de Seu caminho, e Ele é bem Sabedor de quem são os guiados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,296,'Então, não obedeças aos desmentidores,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,296,'Eles almejam que sejas flexível: então, serão flexíveis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,296,'E não obedeças a nenhum mísero constante jurador,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,296,'Incessante difamador, grande semeador de maledicência,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,296,'Constante impedidor do bem, agressor, pecador,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,296,'Grosseiro e, além disso, filho espúrio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,296,'Por ser ele possuidor de riquezas e filhos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,296,'Quando se recitam, para ele, Nossos versículos, diz: "São fábulas dos antepassados!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,296,'Marcá-lo-emos, no focinho.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,296,'Por certo, pusemo-los à prova como puséramos à prova os donos do jardim, quando juraram que colheriam seus frutos, ao amanhecer,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,296,'E não fizeram a ressalva: "Se Allah quiser."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,296,'Então, um flagelo de teu Senhor circulou nele, enquanto estavam dormindo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,296,'E, de manhã, ficou como a negra noite.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,296,'E, ao amanhecer, chamaram uns aos outros:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,296,'"Ide, cedo, a vosso campo lavrado, se sois colhedores."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,296,'Então, foram adiante, enquanto murmuravam:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,296,'"Que nenhum necessitado entre a vós, hoje, lá."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,296,'E foram cedo, com má intenção, poderosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,296,'E, quando o viram, disseram: "Por certo, estamos descaminhados!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,296,'"Ou, aliás, desprovidos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,296,'O mais moderado deles disse: "Não vos dissera eu:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,296,'Disseram: "Glorificado seja nosso Senhor! Por certo, fomos injustos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,296,'Então, dirigiram-se uns aos outros, lamentando-se.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,296,'Disseram: "Ai de nós! Por certo, fomos transgressores!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,296,'"Quiçá, nosso Senhor no-lo troque por um melhor que este. Por certo, a nosso Senhor estamos rogando."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,296,'Assim é o castigo. E, em verdade, o castigo da Derradeira Vida é maior. Se soubessem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,296,'Por certo, haverá para os piedosos, junto de seu Senhor, os Jardins da Delícia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,296,'Então, será que consideramos os muçulmanos como os criminosos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,296,'Que há convosco? Como julgais?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,296,'Ou tendes um livro, em que ledes');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,296,'Que tereis o que escolherdes?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,296,'Ou tendes, de Nós, terminantes juramentos, até o Dia da Ressurreição, de que tereis o que julgardes?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,296,'Pergunta-lhes: "Qual deles é fiador disso?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,296,'Ou têm eles parceiros nisso? Então, que façam vir seus parceiros, se são verídicos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,296,'Um dia, as canelas das pernas se descobrirão, e serão convocados a se prosternarem, e não o poderão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,296,'Com suas vistas humildemente baixas, uma vileza cobri-los-á. E, com efeito, haviam sido convocados a prosternar-se, enquanto sãos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,296,'Então, deixa-Me com aqueles que desmentem esta Mensagem. Fá-los-emos se abeirarem de seu aniquilamento, por onde não saibam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,296,'E conceder-lhes-ei prazo. Por certo, Minha insídia é fortíssima.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,296,'Ou lhes pedes um prêmio, então, estão sobrecarregados de ônus?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,296,'Ou têm eles a ciência do Invisível, então, escrevem o que querem?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,296,'Então, pacienta quanto ao julgamento de teu Senhor. E não sejas como o companheiro da baleia quando Nos chamou, enquanto angustiado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,296,'Não o atingira uma graça de seu Senhor, haveria sido atirado à terra nua, enquanto infamado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,296,'Então, seu Senhor elegeu-o, e fê-lo dos íntegros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,296,'E, por certo, os que renegam a Fé quase te derrubam com suas vistas, quando ouvem a Mensagem, e dizem: "Por certo, é um louco!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,296,'E ela não é senão Mensagem para os mundos.');
+INSERT INTO chapters (id, number, quran_id) VALUES(297,69,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,297,'A Incontestável!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,297,'Que é a Incontestável?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,297,'- E o que te faz inteirar-te do que é a Incontestável? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,297,'O povo de Thamud e de Ãd desmentiram o estrondo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,297,'Então, quanto ao povo de Thamud, foram aniquilados pelo Grito transgressor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,297,'E, quanto ao povo de Ãd, foram aniquilados por estridente, desmesurado vento glacial.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,297,'Allah submeteu-o, contra eles, durante sete noites e oito dias seqüentes; então, podias ver neles as pessoas prostradas, como ocos troncos de tamareiras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,297,'Então, tu vês deles algum remanescente?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,297,'E Faraó e os que foram antes dele e os habitantes das cidades tombadas, chegaram com o nefando erro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,297,'E desobedeceram ao Mensageiro de seu Senhor; então, Ele os apanhou, violentamente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,297,'Por certo, quando as águas transbordaram, carregamo-vos, na corrente nau,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,297,'Para fazermos dela lembrança para vós, e para a atentarem ouvidos atentos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,297,'Então, quando se soprar na Trombeta, um só sopro,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,297,'E forem carregadas a terra e as montanhas, e forem pulverizados, de um só golpe,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,297,'Então, nesse dia, sobrevirá o Acontecimento, o Dia do Juízo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,297,'E o céu fender-se-á, e será frágil, nesse dia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,297,'E os anjos estarão em seus confins, enquanto oito carregarão o Trono de teu Senhor, acima deles, nesse dia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,297,'Nesse dia, sereis expostos; nenhum segredo vosso se ocultará.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,297,'Então, quanto àquele a quem for concedido seu livro, em sua destra, dirá: "Vinde, lede meu livro!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,297,'"Por certo, já pensara deparar minha conta."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,297,'Estará em vida agradável:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,297,'Estarão em um alto Jardim;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,297,'Seus frutos estarão à mão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,297,'Dir-se-Ihes-á: "Comei e bebei, com deleite, pelo que adiantastes nos dias passados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,297,'E, quanto àquele a quem for concedido seu livro, em sua sestra, dirá: "Quem dera, não me houvesse sido concedido meu livro,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,297,'"E me não inteirasse de minha conta:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,297,'Quem dera fosse ela o decisivo fim.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,297,'De nada me valeram minhas riquezas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,297,'Foi-se minha autoridade para longe de mim!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,297,'Dir-se-á: "Apanhai-o e agrilhoai-o;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,297,'"Em seguida, fazei-o entrar no Inferno');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,297,'"Em seguida, prendei-o, então, em corrente de setenta côvados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,297,'"Por certo, ele não cria no Magnífico Allah,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,297,'E não incitava ninguém a alimentar o necessitado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,297,'"Então, hoje, ele não terá, aqui, íntimo algum,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,297,'"Nem alimento algum, exceto o ghislín,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,297,'"Não o comerão senão os errados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,297,'Então, juro pelo que enxergais,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,297,'E pelo que não enxergais,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,297,'Por certo, ele é o dito de um nobre Mensageiro,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,297,'E não um dito de poeta; Quão pouco credes!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,297,'Nem um dito de adivinho; Quão pouco meditais!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,297,'É revelação do Senhor dos Mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,297,'E, se ele Nos atribuísse certos ditos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,297,'Apanhá-lo-íamos pela destra,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,297,'Em seguida, cortar-lhe-íamos a aorta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,297,'Então, nenhum de vós seria barreira contra sua punição.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,297,'E, por certo, ele é lembrança para os piedosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,297,'E, por certo, sabemos que, entre vós, há desmentidores;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,297,'E, por certo, ele é motivo de aflição para os renegadores da Fé,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,297,'E, por certo, ele é a Verdade certa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,297,'Então, glorifica o nome de teu Magnífico Senhor!');
+INSERT INTO chapters (id, number, quran_id) VALUES(298,70,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,298,'Um interrogante pergunta por um castigo, prestes a sobrevir,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,298,'Aos renegadores da Fé. Nada poderá detê-lo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,298,'Ele vem de Allah, Possuidor dos degraus.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,298,'Os anjos e o Espírito a Ele ascendem, em um dia, cuja duração é de cinqüenta mil anos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,298,'Então, pacienta, Muhammad, com bela paciência.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,298,'Por certo, eles o vêem longe,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,298,'E Nós o vemos próximo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,298,'Ocorrerá, um dia, quando o céu for como o metal em fusão,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,298,'E as montanhas forem como a lã corada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,298,'E nenhum íntimo interrogará a outro íntimo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,298,'Embora se enxerguem. O criminoso almejará resgatar-se do castigo desse dia, com o sacrifício de seus filhos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,298,'E de sua companheira e de seu irmão,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,298,'E de seu clã, que o abrigava,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,298,'E de todos que estão na terra, para, em seguida, isso o salvar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,298,'Em absoluto, não se salvará. Por certo, o Inferno é uma flama.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,298,'Tiradora de couro cabeludo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,298,'Ele convocará quem se virou e voltou as costas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,298,'E juntou a riqueza e a entesourou.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,298,'Por certo, o ser humano foi criado incoerente:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,298,'Aflito, quando o mal o toca;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,298,'E avaro, quando o bem o toca.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,298,'Exceto os orantes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,298,'Que são assíduos em suas orações,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,298,'E aqueles em cujas riquezas há, de direito, parte determinada');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,298,'Para o mendigo e para o desprovido;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,298,'E os que confirmam o Dia do Juízo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,298,'E os que estão amedrontados do castigo de seu Senhor');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,298,'- Por certo, não há garantia alguma contra o castigo de seu Senhor; -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,298,'E os que são custódios de seu sexo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,298,'Exceto com suas mulheres, ou com as escravas que possuem; então, por certo, não serão censurados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,298,'E quem busca algo, além disso, esses são os agressores -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,298,'E que respeitam fielmente seus depósitos, a eles confiados, e honram seus pactos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,298,'E os que são cumpridores de seus testemunhos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,298,'E os que são custódios de suas orações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,298,'Esses serão honrados, em Jardins.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,298,'Então, por que razão os que renegam a Fé correm, em tua direção, de olhos fitos em ti,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,298,'Dividindo-se em bandos, à direita e à esquerda?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,298,'Aspirará cada qual deles a entrar no Jardim da Delícia?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,298,'Em absoluto, não devem aspirá-lo. Por certo, criamo-los do que eles sabem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,298,'Então, juro pelO Senhor dos Levantes e dos Poentes: somos Poderoso,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,298,'Para trocá-los por quem é melhor que eles, e não seremos impedidos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,298,'Então, deixa-os confabular e se divertirem, até depararem seu dia, que lhes é prometido,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,298,'Um dia, em que sairão, com destreza, dos jazigos, como se se estivessem precipitando as pedras levantadas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,298,'Com suas vistas humildemente baixas, enquanto os cobrir uma vileza. Esse é o dia que lhes era prometido.');
+INSERT INTO chapters (id, number, quran_id) VALUES(299,71,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,299,'Por certo, enviamos Noé a seu povo: "Admoesta teu povo, antes que lhe chegue doloroso castigo!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,299,'Ele disse: "Ó meu povo! Por certo, sou-vos evidente admoestador:"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,299,'"Adorai a Allah, e temei-O, e obedecei a mim,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,299,'"Ele vos perdoará parte de vossos delitos e vos concederá prazo, até um termo designado. Por certo, o termo de Allah, quando chegar, não será adiado. Se soubésseis!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,299,'Ele disse: "Senhor meu! Por certo, convoquei meu povo, durante a noite e durante o dia;"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,299,'"E minha convocação não lhes acrescentou senão fuga."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,299,'"E, por certo, cada vez que os convocava, para que Tu os perdoasses, tapavam com os dedos os ouvidos, e encobriam-se em seus trajes e obstinavam-se no erro, e ensoberbeciam-se duma maneira exagerada."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,299,'"Em seguida, convoquei-os, declaradamente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,299,'"Em seguida, manifestei-lhes minha pregação e segredei-lhas discretamente."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,299,'"E disse:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,299,'');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,299,'');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,299,'');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,299,'');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,299,'');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,299,'');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,299,'');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,299,'');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,299,'');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,299,'');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,299,'Noé disse: "Senhor meu! Por certo eles me desobedeceram e seguiram aquele, cujas riquezas e filhos não lhe acrescentaram senão perdição."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,299,'"E eles usaram de grandes estratagemas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,299,'"E disseram:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,299,'"E, com efeito, descaminharam a muitos. E não acrescentes aos injustos senão descaminho!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,299,'Por causa de seus erros, foram afogados, então, fizeram-nos entrar no Fogo: e não encontraram, para eles, além de Allah, socorredores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,299,'E Noé disse: "Senhor meu! Não deixes, sobre a terra, nenhum dos renegadores da Fé."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,299,'"Por certo, se os deixas, descaminharão Teus servos e não procriarão senão ímpios, ingratos."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,299,'"Senhor meu! Perdoa-me e a meus pais e a quem entrar em minha casa, sendo crente, e aos crentes e às crentes. E não acrescentes aos injustos senão perdição!"');
+INSERT INTO chapters (id, number, quran_id) VALUES(300,72,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,300,'Dize: "Foi-me revelado que um pequeno grupo de jinns ouviu minha recitação; então, disseram:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,300,'"Ele guia à retidão: então, nele cremos. E não associaremos ninguém a nosso Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,300,'"E que:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,300,'"E que:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,300,'"E que:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,300,'"E que:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,300,'"E que:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,300,'"E que:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,300,'"E que:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,300,'"E que:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,300,'"E que:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,300,'"E que:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,300,'"E que:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,300,'"E que:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,300,'"E, quanto aos iníquos, serão lenha para a Geena.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,300,'- E, se eles permanecessem retos, no caminho da Verdade, fá-los-íamos beber água abundante,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,300,'Para, com isso, prová-los. E a quem dá de ombros à Mensagem de seu Senhor, Ele o introduzirá em castigo sempre crescente. -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,300,'E foi-me revelado que as mesquitas são de Allah: então, não invoqueis, com Allah, a ninguém.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,300,'E que, ao levantar-se o Servo de Allah para invocá-LO, quase se lançaram sobre ele, aglomerados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,300,'Dize: "Invoco, apenas, a meu Senhor, e não associo ninguém a Ele."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,300,'Dize: "Por certo, não possuo, para vós, prejuízo nem retidão"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,300,'- Dize: "Por certo, ninguém me protegerá de Allah, e não encontrarei, fora dEle, refugio algum"-');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,300,'"Exceto uma transmissão vinda de Allah e Suas Mensagens. E quem desobedece a Allah e a Seu Mensageiro, por certo, terá o fogo da Geena; nela será eterno, para todo o sempre."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,300,'- Eles permanecerão descrentes até que, quando virem o que lhes foi prometido, saberão quem está com socorredor mais frágil e inferior em número -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,300,'Dize: "Não estou inteirado de que o quê vos é prometido esteja próximo, ou de que meu Senhor lhe faça longínquo termo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,300,'Ele é O Sabedor do invisível e não faz aparecer Seu invisível a ninguém,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,300,'Exceto a um Mensageiro, de quem Se agrade; então, por certo, Ele introduzirá guardiães adiante dele e detrás dele,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,300,'Para saber se eles, com efeito, transmitiram as Mensagens de seu Senhor; e Ele abarca o que há junto deles, e enumera todas as cousas, em exato número.');
+INSERT INTO chapters (id, number, quran_id) VALUES(301,73,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,301,'Ó envolto nas vestes!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,301,'Levanta-te e ora durante a noite, exceto durante um pouco;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,301,'Sua metade, ou diminui dela um pouco;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,301,'Ou acrescenta-lho. E recita o Alcorão, lenta e claramente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,301,'Por certo, lançaremos, sobre ti, um dito ponderoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,301,'Por certo, a oração no início da noite é mais eficiente, e mais escorreita, em recitação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,301,'Por certo, há para ti, durante o dia, longo percurso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,301,'E lembra-te do nome de teu Senhor, e consagra-te a Ele inteiramente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,301,'Ele é O Senhor do Levante e do Poente: não existe deus senão Ele. Então, toma-O por Patrono.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,301,'E pacienta quanto ao que dizem e abandona-os, com belo abandono.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,301,'E deixa-Me com os desmentidores, dotados de bens terreais; e dá-lhes um pouco de prazo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,301,'Por certo, há, junto de Nós, pesadas correntes e Inferno');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,301,'E alimento, que provoca engasgo, e doloroso castigo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,301,'Um dia, quando a terra e as montanhas estremecerão, e as montanhas forem como colunas de areia, desfeitas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,301,'Por certo, enviamo-vos um Mensageiro, por testemunha de vós, como enviáramos um Mensageiro a Faraó.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,301,'E Faraó desobedeceu ao Mensageiro; então, apanhamo-lo com trágica maneira.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,301,'Então, se renegais a Fé, como vos guardareis do castigo de um dia, que fará das crianças anciãs encanecidas?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,301,'Nele, o céu espedaçar-se-á. Sua promessa será cumprida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,301,'Por certo, estes são uma lembrança. Então, quem quiser, tomará um caminho para seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,301,'Por certo, teu Senhor sabe que te levantas para orar, durante menos de dois terços da noite,ou durante sua metade, ou seu terço, e também, uma facção dos que estão contigo. E Allah determina a noite e o dia. Ele sabe que não podereis enumerá-la então, voltou-Se para vós. Lede, pois, o que vos for possível do Alcorão. Ele sabe que existirão, entre vós, enfermos e outros que percorrerão a terra, buscando algo do favor de Allah, e outros que combaterão no caminho de Allah. Então, lede o que for possível dele. E cumpri a oração e concedei as esmolas e emprestai a Allah um bom empréstimo. E tudo de bom, que antecipardes a vós mesmos, o encontrareis junto de Allah, melhor e mais grandioso em prêmio. E implorai perdão a Allah. Por certo, Allah é Perdoador, Misericordiador.');
+INSERT INTO chapters (id, number, quran_id) VALUES(302,74,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,302,'Ó agasalhado!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,302,'Levanta-te e admoesta os incréus.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,302,'E a teu Senhor, magnifica-O.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,302,'E a teus trajes, purifica-os.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,302,'E ao abominável, abandona-o.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,302,'E não faças mercê, esperando receber mais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,302,'E, quanto à determinação de teu Senhor, pacienta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,302,'Então, quando se tocar a Corneta,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,302,'Esse dia será um difícil dia,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,302,'Para os renegadores da Fé não será fácil.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,302,'Deixa-Me Só, com quem Eu criei,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,302,'E para quem fiz riquezas extensas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,302,'E filhos sempre presentes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,302,'E para quem tudo aplainei, plenamente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,302,'Em seguida, ele aspira a que Eu lho acrescente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,302,'Em absoluto, não lho acrescentarei! Por certo, quanto a Nossos sinais, ele foi obstinado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,302,'Obrigá-lo-ei a penosa escalada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,302,'Por certo, ele refletiu, e decidiu.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,302,'Que ele morra! Como decidiu!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,302,'Mais uma vez, que ele morra, como decidiu!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,302,'Em seguida, ele olhou.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,302,'Depois, carranqueou, e ensombrou-se-lhe o semblante.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,302,'Depois, voltou as costas, e ensoberbeceu-se;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,302,'Então, disse: "Isso não é senão magia herdada dos antepassados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,302,'"Isto não é senão o dito dos mortais."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,302,'Fá-lo-ei queimar-se em Saqar,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,302,'- E o que te faz inteirar-te do que é Saqar? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,302,'Ele nada mantém e nada deixa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,302,'Carbonizador da pele.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,302,'Sobre ele, há dezenove guardiães.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,302,'- E não fizemos por guardiães do Fogo senão anjos. E não fizemos seu número senão como provação para os que renegam a Fé, para que aqueles aos quais fora concedido o Livro se convençam disso; e para que os que crêem se acrescentem em fé; e para que aqueles aos quais fora concedido o Livro e os crentes não duvidem; e para que aqueles, em cujos corações há enfermidade, e os renegadores da Fé, digam: "Que deseja Allah com isto, como exemplo?" Assim, Allah descaminha a quem quer e guia a quem quer. E ninguém sabe dos exércitos de teu Senhor senão Ele. - E ela não é senão lembrança para os mortais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,302,'De fato! Pela lua!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,302,'E pela noite, quando se vai!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,302,'E pela manhã, quando clareia!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,302,'Por certo, ele é uma das calamidades,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,302,'Em sendo admoestação para os mortais.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,302,'Para quem, entre vós quer antecipar-se ou atrasar-se.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,302,'Cada alma será o penhor do que houver logrado,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,302,'Exceto os companheiros da direita:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,302,'Estarão em Jardins, interrogando-se,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,302,'Sobre os criminosos:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,302,'"O que vos fez entrar em Saqar?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,302,'Dirão: "Não estávamos entre os orantes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,302,'E não alimentávamos o necessitado"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,302,'"E confabulámos com os confabuladores,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,302,'"E desmentíamos o Dia do Juízo"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,302,'"Até que nos chegou a Certeza."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,302,'Então, não os beneficiará a intercessão dos intercessores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,302,'E por que razão estão dando de ombros à lembrança?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,302,'Como se foram asnos assustados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,3,302,'Que fogem de leão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,3,302,'Aliás, cada um deles desejaria lhe fossem concedidas páginas desenroladas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,3,302,'Em absoluto, não serão concedidas! Mas eles não temem a Derradeira Vida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,3,302,'Não! Ele, por certo, é uma lembrança.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,3,302,'- Então, quem quiser, disso se lembrará -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,3,302,'E não se lembrarão, a não ser que Allah o queira. Ele é O Dono da piedade e O Dono do perdão.');
+INSERT INTO chapters (id, number, quran_id) VALUES(303,75,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,303,'Juro pelo Dia da Ressurreição!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,303,'E juro pela alma, constante censora de si mesma, que ressuscitareis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,303,'O ser humano supõe que não lhe juntaremos os ossos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,303,'Sim! Juntar-lhos-emos, sendo Nós Poderoso para refazer-lhe as extremidades dos dedos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,303,'Mas o ser humano deseja ser ímpio, nos dias que tem à sua frente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,303,'Ele interroga: "Quando será o Dia da Ressurreição?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,303,'Então, quando a vista se assombrar,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,303,'E a lua se eclipsar,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,303,'E o sol e a lua se juntarem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,303,'O ser humano nesse dia dirá: "Para onde fugir?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,303,'Em absoluto! Nada de refúgio!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,303,'Nesse dia, a teu Senhor será o lugar de estar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,303,'O ser humano será informado, nesse dia, do que antecipou e atrasou.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,303,'Mas o ser humano será a prova evidente de si mesmo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,303,'Ainda que lance suas escusas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,303,'- Não movimentes, com ele, tua língua, para te apressares a recitá-lo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,303,'Por certo, impende-Nos juntá-lo e lê-lo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,303,'E, quando o lermos, segue sua leitura.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,303,'Em seguida, por certo, impende-Nos evidenciá-lo. -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,303,'Não! Mas vós amais a vida transitória,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,303,'E deixais a Derradeira Vida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,303,'Haverá, nesse dia, faces rutilantes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,303,'De seu Senhor olhadoras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,303,'E, haverá, nesse dia, faces sombrias,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,303,'Pensarão que lhes sucederá uma ruina');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,303,'Não! Quando a alma atingir as clavículas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,303,'E se disser: "Quem é exorcista?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,303,'E ele pensar que é a separação,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,303,'E a canela da perna se enlaçar a outra canela,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,303,'A teu Senhor, nesse dia, que tu serás conduzido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,303,'Então, ele não acreditou na Mensagem nem orou;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,303,'Mas desmentiu e voltou as costas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,303,'Em seguida, jactando-se, foi ter com sua família.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,303,'Ai de ti! E, ai de ti!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,303,'Mais uma vez, ai de ti! E, ai de ti!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,303,'O ser humano supõe que será deixado negligenciado?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,303,'Não era ele uma gota de esperma ejaculada?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,303,'Em seguida, uma aderência. Então, Ele o criou e o formou.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,303,'E fez dele o casal: o varão e a varoa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,303,'Esse não é Poderoso para dar a vida aos mortos?');
+INSERT INTO chapters (id, number, quran_id) VALUES(304,76,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,304,'Com efeito, transcorreu, para o ser humano, um lapso de enorme tempo, em que não era cousa mencionada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,304,'Por certo, criamos o ser humano de gota seminal, mesclada para pô-lo à prova; então, fizemo-lo ouvinte, vidente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,304,'Por certo, guiamo-lo ao caminho, fosse grato, fosse ingrato.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,304,'Por certo, preparamos, para os renegadores da Fé, correntes e gargalheiras e Fogo ardente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,304,'Por certo, os virtuosos beberão de uma taça cuja mistura é de kafur,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,304,'Uma fonte, de que os servos de Allah beberão, fazendo-a emanar, abundantemente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,304,'Porque são fiéis aos votos e temem um dia, cujo mal será alastrante.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,304,'E cedem o alimento - embora a ele apegados - a um necessitado e a um órfão e a um cativo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,304,'Dizendo: "Apenas, alimentamo-vos por amor de Allah. Não desejamos de vós nem recompensa nem agradecimento.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,304,'Por certo, tememos, da parte de nosso Senhor, um dia austero, consternador."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,304,'Então, Allah guardá-los-á do mal desse dia e conferir-lhes-á rutilância e alegria.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,304,'E recompensá-los-á, por sua paciência, com Paraíso e vestes de seda.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,304,'Nele, estarão reclinados sobre coxins. Lá, não verão nem sol nem frio glacial.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,304,'E suas sombras estarão estendidas sobre eles, e seus frutos penderão docilmente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,304,'E far-se-á circular, entre eles, recipientes de prata e copos cristalinos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,304,'Cristalinos de prata: enchê-los-ão, na justa medida, conforme o desejo de cada um.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,304,'E, nele, dar-se-lhes-ão de beber taça cuja mistura é de gengibre,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,304,'De uma fonte que, lá, se chama Salsabil!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,304,'E, circularão, entre eles, mancebos eternos; se os vires, suporás serem pérolas espalhadas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,304,'E, se vires o que há lá, verás delícia e grande soberania.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,304,'Sobre eles, haverá trajes de fina seda, verdes, e de brocado. E estarão enfeitados com braceletes de prata. E seu Senhor dar-lhes-á de beber puríssima bebida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,304,'Dir-se-lhes-á: "Por certo, isso é recompensa para vós, e vosso esforço foi reconhecido."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,304,'Por certo, fizemos descer o Alcorão sobre ti, com gradual descida.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,304,'Então, pacienta quanto ao julgamento de teu Senhor e não obedeças, dentre eles, a pecador nem a ingrato algum.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,304,'E lembra-te do nome de teu Senhor, ao alvorecer e ao entardecer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,304,'E, durante a noite, prosterna-te diante dEle; e glorifica-O, durante a longa noite.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,304,'Por certo, estes amam a vida transitória e deixam, diante deles, um pesado dia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,304,'Nós os criamos e lhes fortificamos a compleição. E, se quiséssemos, trocá-los-íamos por seus semelhantes, facilmente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,304,'Por certo, estes são uma lembrança. Então, quem quiser, tomará um caminho para seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,304,'E não o querereis, a não ser que Allah o queira. Por certo, Allah é Onisciente, Sábio.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,304,'Ele faz entrar em Sua misericórdia a quem quer. E para os injustos preparou doloroso castigo.');
+INSERT INTO chapters (id, number, quran_id) VALUES(305,77,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,305,'Pelos enviados, sucessivamente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,305,'E tempestuosos, vigorosamente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,305,'Pelos desenroladores, perfeitamente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,305,'E separadores, totalmente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,305,'E lançadores de lembrança,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,305,'Para escusar ou admoestar,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,305,'Por certo, o que vos é prometido sobrevirá!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,305,'Então, quando as estrelas se apagarem,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,305,'E quando o céu tiver frestas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,305,'E quando as montanhas se desintegrarem,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,305,'E quando os Mensageiros se reunirem, em tempo marcado,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,305,'- Para que dia foram estes postergados?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,305,'Para o Dia da Decisão!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,305,'E o que te faz inteirar-te do que é o Dia da Decisão? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,305,'Nesse dia, ai dos desmentidores!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,305,'Não aniquilamos os antepassados?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,305,'Em seguida, fizemo-los seguidos pelos derradeiros?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,305,'Assim agimos com os criminosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,305,'Nesse dia, ai dos desmentidores!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,305,'Não vos criamos de uma água desprezível,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,305,'E fizemo-la estar em lugar estável, seguro,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,305,'Até um tempo determinado?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,305,'Então, determinamos a criação. Quão Excelente Poderoso somos Nós!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,305,'Nesse dia, ai dos desmentidores!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,305,'Não fizemos a terra contenedora de todos');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,305,'Vivos e mortos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,305,'E, nela, fizemos assentes montanhas altíssimas, e demo-vos de beber água sápida?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,305,'Nesse dia, ai dos desmentidores!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,305,'Dir-se-Ihes-á: "Ide ao que desmentíeis!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,305,'"Ide a uma sombra de três ramificações;"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,305,'"Não é umbrátil nem vale contra a Labareda."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,305,'Por certo, ela atira faíscas enormes como toros,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,305,'Como se fossem camelos amarelos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,305,'Nesse dia, ai dos desmentidores!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,305,'Esse será um dia em que eles não falarão,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,305,'Nem se lhes dará permissão para isso: então, não se escusarão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,305,'Nesse dia, ai dos desmentidores!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,305,'Dir-se-lhes-á: "Este é o Dia da Decisão. Juntamo-vos, e aos antepassados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,305,'"Então, se tendes insídia, insidiai-Me."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,305,'Nesse dia, ai dos desmentidores!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,305,'Por certo, os piedosos estarão entre sombras e fontes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,305,'E frutas de quanto apetecerem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,305,'Dir-se-lhes-á: "Comei e bebei com deleite, pelo que fazíeis!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,305,'Por certo, assim recompensamos os benfeitores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,305,'Nesse dia, ai dos desmentidores!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,305,'Ó íncréus, comei e gozai um pouco, por certo, sois criminosos!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,3,305,'Nesse dia, ai dos desmentidores!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,3,305,'E, quando se lhes diz: "Curvai-vos", não se curvam.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,3,305,'Nesse dia, ai dos desmentidores!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,3,305,'Então, em que Mensagem, depois dele crerão?');
+INSERT INTO chapters (id, number, quran_id) VALUES(306,78,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,306,'Sobre o que eles se interrogam mutuamente?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,306,'Sobre o formidável Informe;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,306,'De que são discrepantes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,306,'Não! Eles logo saberão!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,306,'Mais uma vez, não! Eles logo saberão!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,306,'Não fizemos da terra leito?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,306,'E das montanhas estacas?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,306,'E vos criamos casais,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,306,'E fizemos de vosso sono descanso,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,306,'E fizemos da noite vestimenta,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,306,'E fizemos do dia tempo de vida,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,306,'E edificamos, acima de vós, sete sólidos céus.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,306,'E fizemos um luzeiro reverberante,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,306,'E fizemos descer, das nuvens carregadas, água copiosa,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,306,'Para, com ela, fazer sair grãos e plantas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,306,'E frondosos jardins.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,306,'Por certo, o Dia da Decisão é um tempo marcado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,306,'Um dia, em que se soprará na Trombeta; então, chegareis em turbas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,306,'E abrir-se-á o céu e tornar-se-á em portas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,306,'E mover-se-ão as montanhas, então, serão miragem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,306,'Por certo, a Geena será lugar de espreita,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,306,'Morada para os transgressores.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,306,'Nela, permanecerão por séculos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,306,'Nela, não experimentarão frescor nem bebida,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,306,'Exceto água ebuliente e vazar purulento,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,306,'Como adequada recompensa.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,306,'Por certo, eles não esperavam prestar conta,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,306,'E desmentiram Nossos sinais, constantemente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,306,'E cada cousa, enumeramo-la por escrito.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,306,'Dir-se-lhes-á: "Então, experimentai a recompensa, pois não vos acrescentaremos senão castigo."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,306,'Por certo, haverá para os piedosos triunfo:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,306,'Pomares e videiras,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,306,'E donzelas, de incipientes seios, da mesma idade,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,306,'E taça repleta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,306,'- Neles, não ouvirão frivolidades nem mentira -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,306,'Como recompensa de teu Senhor, dádiva bastante');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,306,'DO Senhor dos céus e da terra e do que há entre ambos, dO Misericordioso. Não terão o poder de falar-Lhe.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,306,'Um dia, quando o Espírito e os anjos se colocarem em fileiras, não falarão, exceto aquele a quem O Misericordioso permitir, e que dirá o que é certo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,306,'Esse será o verdadeiro dia. Então, quem quiser, tomará retorno a seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,306,'Por certo, Nós vos admoestamos de um castigo próximo. Um dia, em que o homem olhará o que suas mãos anteciparam, e o renegador da Fé dirá: "Quem dera fosse eu pó!"');
+INSERT INTO chapters (id, number, quran_id) VALUES(307,79,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,307,'Surat An-Naziaat Pelos que tiram a alma com força!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,307,'Pelos que a desprendem com suavidade!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,307,'Pelos que correm livremente!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,307,'E avançam rapidamente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,307,'E deliberam uma ordem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,307,'Um dia, quando o primeiro soar da Trombeta fizer tudo estremecer,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,307,'Seguindo-o o segundo soar,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,307,'Nesse dia, haverá corações turbulentos;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,307,'Suas vistas estarão humildemente baixas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,307,'Dizem: "Seremos levados à nossa vida primeira?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,307,'"Quando formos osso ocos, ressuscitaremos?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,307,'Dizem: "Nesse caso, essa será uma volta perdida!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,307,'Então, haverá, apenas, um único Clangor,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,307,'E ei-los na terra plana.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,307,'Chegou-te o relato de Moisés?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,307,'Quando seu Senhor o chamou, no vale sagrado de Tuwa:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,307,'"Vai a Faraó. Por certo, ele cometeu transgressão."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,307,'"Então, dize:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,307,'');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,307,'E fê-lo ver o grande sinal.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,307,'Então, desmentiu-o e desobedeceu.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,307,'Em seguida, voltou as costas, correndo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,307,'E reuniu os homens e clamou,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,307,'E disse: "Sou vosso senhor, o altíssimo".');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,307,'Então, Allah apanhou-o, como castigo exemplar, pelo derradeiro dito e pelo primeiro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,307,'Por certo, há nisso lição para quem receia a Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,307,'Sois vós mais difíceis, em criação, ou o céu? Ele o edificou,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,307,'Elevou seu teto e formou-o;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,307,'E fez escura sua noite, e fez sair a plena luz de sua manhã.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,307,'E a terra, após isso, estendeu-a.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,307,'Dela, fez sair sua àgua e seus pastos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,307,'E as montanhas, assentou-as,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,307,'Tudo, para o gozo de vós e de vossos rebanhos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,307,'Então, quando chegar a grande Catástrofe,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,307,'Um dia, quando o ser humano se lembrar daquilo em que se esforçou,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,307,'E se fizer expor o Inferno a quem puder ver,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,307,'Então, quanto a quem cometeu transgressão');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,307,'E deu preferência à vida terrena,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,307,'Por certo, o Inferno lhe será morada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,307,'E, quanto a quem temeu a preeminência de seu Senhor e coibiu a alma das paixões,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,307,'Por certo, o Paraíso lhe será morada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,307,'Perguntam-te pela Hora: "Quando será sua ancoragem?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,3,307,'- Que sabes tu acerca de sua lembrança? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,3,307,'A teu Senhor pertence seu término.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,3,307,'Tu és, apenas, admoestador de quem a receia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,3,307,'Um dia, quando a virem, parecer-lhes-á como se não houvessem permanecido nos sepulcros senão o tempo de um anoitecer ou de seu amanhecer.');
+INSERT INTO chapters (id, number, quran_id) VALUES(308,80,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,308,'Ele carranqueou e voltou as costas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,308,'Por que o cego lhe chegou.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,308,'E o que te faz inteirar-te que ele, talvez se dignifique?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,308,'Ou se lembre da Mensagem, e a lembrança o beneficie?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,308,'Quanto ao que prescinde de ajuda,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,308,'Tu o ouves, atentamente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,308,'E nada te impende se ele não dignifica.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,308,'E, quanto ao que te chega correndo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,308,'Enquanto receia a Allah,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,308,'Dele te desinteressas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,308,'Em absoluto, não o faças mais! Por certo, esses são uma lembrança.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,308,'- Então, quem quiser, disso se lembrará -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,308,'Registada em páginas honradas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,308,'Elevadas, puras,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,308,'Em mãos de escribas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,308,'Honoráveis, virtuosos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,308,'Que morra o ser humano! Como é ingrato!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,308,'De que cousa Ele o criou?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,308,'De gota seminal, Ele o criou; então, determinou-o;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,308,'Em seguida, facilitou-lhe o caminho;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,308,'Em seguida, fê-lo morrer e fê-lo sepulto;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,308,'Depois, quando Ele quiser, ressuscitá-lo-á.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,308,'Mas, em absoluto, ele ainda não realizou o que Ele lhe ordenou.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,308,'Então, que o ser humano olhe para seu alimento:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,308,'Nós fizemos entornar a água abundantemente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,308,'Em seguida, fendemos a terra, suficientemente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,308,'E, nela fizemos brotar grãos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,308,'E videiras e hortaliças,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,308,'E oliveiras e tamareiras,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,308,'E pomares entrelaçados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,308,'E frutas e pastagens,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,308,'Tudo, para o gozo de vós e de vossos rebanhos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,308,'Então, quando chegar o soar ensurdecedor,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,308,'Um dia, quando a pessoa fugir de seu irmão,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,308,'E de sua mãe e de seu pai,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,308,'E de sua companheira e de seus filhos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,3,308,'Nesse dia, para cada um destes, haverá uma situação que o preocupará.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,3,308,'Haverá, nesse dia, faces radiantes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,3,308,'Sorridentes, exultantes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,3,308,'E, nesse dia, haverá faces cobertas de poeira.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,3,308,'Cobri-las-á um negrume.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,3,308,'Esses serão os renegadores da Fé, os ímpios.');
+INSERT INTO chapters (id, number, quran_id) VALUES(309,81,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,309,'Quando o sol for enrolado,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,309,'E quando as estrelas se tombarem,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,309,'E quando as montanhas forem movidas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,309,'E quando os camelos fêmeas, prestes a dar à luz, forem descurados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,309,'E quando as feras forem reunidas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,309,'E quando os mares forem abrasados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,309,'E quando as almas forem parelhadas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,309,'E quando a filha, enterrada viva, for interrogada,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,309,'Por que delito fora morta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,309,'E quando as páginas forem desenroladas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,309,'E quando o céu for esfolado,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,309,'E quando o Inferno for atiçado,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,309,'E quando o Paraíso for aproximado,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,309,'Toda alma saberá o que realizou.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,309,'Então, juro pelos planetas absconsos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,309,'Que correm e se escondem!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,309,'E pela noite, quando se vai!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,309,'E pela manhã, quando respira!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,309,'Por certo, ele é o dito de um nobre Mensageiro,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,309,'De grande força, prestigiado junto do Possuidor do Trono,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,309,'A quem se obedece, lá; leal.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,309,'E vosso companheiro não é louco;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,309,'E, com efeito, ele o viu, no evidente horizonte.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,309,'E ele não é avaro quanto ao Invisível.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,309,'E ele não é um dito de demônio maldito.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,309,'Então, aonde ides?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,309,'Ele não é senão lembrança para os mundos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,309,'Para quem, dentre vós, queira ser reto');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,309,'Mas não o querereis, a não ser que Allah, O Senhor dos mundos, o queira.');
+INSERT INTO chapters (id, number, quran_id) VALUES(310,82,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,310,'Quando o céu se espedaçar,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,310,'E quando os astros se dispersarem,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,310,'E quando os mares forem abertos, mesclando-se,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,310,'E quando os sepulcros forem revolvidos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,310,'Toda alma saberá o que antecipou e atrasou.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,310,'Ó ser humano! O que te ilude quanto a teu Senhor, O Generoso,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,310,'Que te criou e te formou e te endireitou?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,310,'Na forma que Ele quis, Ele te compôs');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,310,'Em absoluto, não vos iludais! Mas vós desmentis o Juízo;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,310,'E, por certo, há, sobre vós, anjos custódios,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,310,'Honoráveis escribas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,310,'Eles sabem o que fazeis.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,310,'Por certo, os virtuosos estarão na delícia,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,310,'E, por certo, os ímpios estarão no Inferno,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,310,'Nele se queimarão, no Dia do Juízo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,310,'E dele nunca estarão ausentes.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,310,'- E o que te faz inteirar-te do Dia do Juízo?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,310,'Mais uma vez, o que te faz inteirar-te do Dia do Juízo? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,310,'Um dia, em que alma nenhuma nada poderá fazer por outra alma. E a ordem, nesse dia, será de Allah.');
+INSERT INTO chapters (id, number, quran_id) VALUES(311,83,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,311,'Ai dos fraudadores,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,311,'Que, quando compram algo, por medida, aos homens, a exigem exata,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,311,'E, quando lhes vendem algo, por medida ou peso, fraudam-nos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,311,'Esses não pensam que serão ressuscitados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,311,'Em um formidável dia?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,311,'Um dia, em que os humanos se levantarão, para estar diante do Senhor dos mundos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,311,'Em absoluto, não pensam! Por certo, o livro dos ímpios está no Sijjin.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,311,'- E o que te faz inteirar-te do que é o Sijjin? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,311,'É um livro gravado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,311,'Nesse dia, ai dos desmentidores!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,311,'Que desmentem o Dia do Juízo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,311,'E não o desmente senão todo agressor, pecador:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,311,'Quando se recitam, para ele, Nossos versículos, diz: "São fábulas dos antepassados!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,311,'Em absoluto, não o são! Mas, o que eles cometiam lhes enferrujou os corações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,311,'Ora, por certo, nesse dia, serão vedados da misericórdia de seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,311,'Em seguida, por certo, sofrerão a queima do Inferno;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,311,'Depois, dir-se-Ihes-á: Eis o que desmentíeis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,311,'Ora, por certo, o livro dos virtuosos está no Illiyin');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,311,'- E o que te faz inteirar-te do que é o Illiyun?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,311,'É um livro gravado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,311,'Testemunham-no os achegados a Allah.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,311,'Por certo, os virtuosos estarão na delícia,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,311,'Sobre coxins, olhando as maravilhas do Paraíso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,311,'Reconhecerás em suas faces a rutilância da delícia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,311,'Dar-se-lhes-á de beber licor puro, selado,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,311,'Seu selo é de almíscar - e que os competidores se compitam, então, para isso -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,311,'E sua mistura é de Tasnim,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,311,'Uma fonte de que os achegados a Allah beberão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,311,'Por certo, os que cometeram crimes riam dos que criam,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,311,'E, quando por eles passavam, piscavam os olhos, uns aos outros,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,3,311,'E, quando tornavam a suas famílias, tornavam hílares,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,3,311,'E, quando os viam, diziam: "Por certo, estes estão descaminhados."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,3,311,'E não foram enviados, sobre eles, por custódios.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,3,311,'Então, hoje, os que crêem se riem dos renegadores da Fé,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,3,311,'Sobre coxins, olhando as maravilhas do Paraíso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,3,311,'Os renegadores da Fé não serão retribuídos pelo que faziam?');
+INSERT INTO chapters (id, number, quran_id) VALUES(312,84,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,312,'Quando o céu se fender,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,312,'E obedecer a seu Senhor, e o fizer devidamente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,312,'E, quando a terra for estendida');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,312,'E lançar o que há nela, e se esvaziar,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,312,'E obedecer a seu Senhor, e o fizer devidamente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,312,'Ó ser humano! Por certo, tu te estás empenhando, em tuas ações, esforçadamente, para deparar teu Senhor: tu depará-LO-ás.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,312,'Então, quanto àquele a quem for concedido seu livro, em sua destra,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,312,'Fá-lo-á dar conta, facilmente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,312,'E tornará alegre a sua família.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,312,'E, quanto àquele a quem for concedido seu livro por trás de suas costas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,312,'Suplicará um extinguir.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,312,'E queimar-se-á em Fogo ardente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,312,'Por certo, fora alegre, em sua família.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,312,'Por certo, ele pensava que não voltaria a seu Senhor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,312,'Sim. Por certo, seu Senhor era, dele, Onividente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,312,'Então, juro pelo crepúsculo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,312,'E pela noite e pelos que ela congrega,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,312,'E pela lua quando cheia,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,312,'Em verdade, passareis de estado após estado!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,312,'Então, por que razão eles não crêem?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,312,'E, quando lhes é lido o Alcorão, não se prosternam?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,312,'Mas, os que renegam a Fé desmentem o Dia do Juízo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,312,'E Allah é bem Sabedor do que trazem no íntimo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,312,'Então, alvissara-lhes doloroso castigo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,312,'Exceto aos que crêem e fazem as boas obras: eles terão prêmio incessante.');
+INSERT INTO chapters (id, number, quran_id) VALUES(313,85,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,313,'Pelo céu das constelações!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,313,'E pelo dia prometido!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,313,'E por uma testemunha e um testemunhado!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,313,'Que morram os companheiros do fosso,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,313,'Do fogo, cheio de combustível.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,313,'Quando estavam sentados a seu redor,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,313,'E eram testemunhas do que faziam com os crentes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,313,'E não os censuravam senão por crerem em Allah, O Todo-Poderoso, O Louvável,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,313,'De Quem é a soberania dos céus e da terra. E Allah, sobre todas as cousas, é Testemunha.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,313,'Por certo, os que provaram os crentes e as crentes, em seguida, não se voltaram arrependidos, terão o castigo da Geena, e terão o castigo da Queima.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,313,'Por certo, os que crêem e fazem as boas obras terão Jardins, abaixo dos quais correm os rios. Esse é o grande triunfo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,313,'Por certo, o desferir golpes de teu Senhor é veemente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,313,'Por certo, Ele inicia a criação e a repete.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,313,'E Ele é O Perdoador, O Afetuoso,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,313,'O Possuidor do Trono, O Glorioso,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,313,'Fazedor do que Ele quer.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,313,'Chegou-te o relato dos exércitos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,313,'De Faraó e do povo de Thamud?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,313,'Mas os que renegam a Fé estão mergulhados no desmentir.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,313,'E Allah os está abarcando, por todos os lados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,313,'Mas este é um Alcorão glorioso,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,313,'Registado em tábua custódia.');
+INSERT INTO chapters (id, number, quran_id) VALUES(314,86,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,314,'Pelo céu e pelo astro noturno,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,314,'- E o que te faz inteirar-te do que é o astro noturno?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,314,'É a estrela fulgurante. -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,314,'Por certo, sobre cada alma há um anjo custódio!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,314,'Então, que o ser humano olhe aquilo de que foi criado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,314,'Foi criado de água emitida,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,314,'Que sai de entre a espinha dorsal e os ossos do peito.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,314,'Por certo, Ele, sobre seu retorno, é Poderoso.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,314,'Um dia, quando forem postos à prova os segredos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,314,'Então, ele não terá nem força nem socorredor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,314,'Pelo céu do retorno da chuva!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,314,'E pela terra de gretas!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,314,'Por certo, ele é um dito decisivo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,314,'E não um gracejo!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,314,'Por certo, eles armam insídias,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,314,'E, também, armo insídias.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,314,'Então, dá prazo aos renegadores da Fé: dá-lhes um pouco de prazo.');
+INSERT INTO chapters (id, number, quran_id) VALUES(315,87,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,315,'Glorifica o nome de teu Senhor, O Altíssimo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,315,'Que tudo criou e formou,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,315,'E Que tudo determinou e guiou,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,315,'E Que fez sair a pastagem,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,315,'E fê-la feno enegrecido.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,315,'Nós far-te-emos ler, e de nada te esquecerás,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,315,'Exceto do que Allah quiser. - Por certo, Ele sabe o declarado e o que se oculta -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,315,'E facilitar-te-emos o acesso ao caminho fácil,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,315,'Então, lembra-lhes, se a lembrança os beneficiar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,315,'Lembrar-se-á quem receia a Allah,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,315,'E evitá-lo-á o mais infeliz,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,315,'Que se queimará no Fogo maior,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,315,'Em seguida, nele, não morrerá nem viverá.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,315,'Com efeito, bem aventurado é quem se dignifica');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,315,'E se lembra do nome de seu Senhor e ora.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,315,'Mas vós dais preferência à vida terrena,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,315,'Enquanto a Derradeira Vida é melhor e mais permanente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,315,'Por certo, isto está nas primeiras Páginas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,315,'Nas Páginas de Abraão e de Moisés');
+INSERT INTO chapters (id, number, quran_id) VALUES(316,88,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,316,'Chegou-te o relato da Envolvente?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,316,'Nesse dia, haverá faces humilhadas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,316,'Preocupadas, fatigadas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,316,'Queimar-se-ão em um Fogo incandescente.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,316,'Dar-se-lhes-á de beber de escaldante fonte.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,316,'Para eles, não haverá alimento, senão o de uma árvore seca esinhosa,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,316,'Que não engorda e de nada vale contra a fome.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,316,'Nesse dia, haverá faces cheias de graça,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,316,'Agradadas de seu esforço.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,316,'Estarão em um alto Jardim;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,316,'Nele, tu não ouvirás frivolidade alguma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,316,'Nele, haverá uma fonte corrente;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,316,'Nele, haverá leitos elevados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,316,'E copos dispostos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,316,'E almofadas enfileiradas');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,316,'E tapetes espalhados.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,316,'E não olham eles aos camelos, como foram criados?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,316,'E ao céu, como foi elevado?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,316,'E às montanhas, como foram armadas?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,316,'E à terra, como foi distendida?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,316,'Então, lembra-lhes o Alcorão. És, apenas lembrador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,316,'Não és, sobre eles, dono absoluto.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,316,'Mas a quem volta as costas e renega a Fé,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,316,'Allah castigá-lo-á com o castigo maior.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,316,'Por certo, a Nós será sua volta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,316,'Em seguida, por certo, impender-Nos-á sua conta.');
+INSERT INTO chapters (id, number, quran_id) VALUES(317,89,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,317,'Pela aurora!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,317,'E pelas dez noites!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,317,'Pelo par e pelo ímpar!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,317,'E pela noite, quando se escoa!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,317,'Há nisso um juramento para quem de bom senso?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,317,'Não viste como teu Senhor agiu com o povo de Ãd,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,317,'Com Iram das colunas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,317,'Igual à qual nada foi criado, nas cidades?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,317,'E com o povo de Thamud, que escavou os rochedos, no vale?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,317,'E com Faraó das estacas?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,317,'São eles que cometeram transgressão nos países deles,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,317,'E, neles, multiplicaram a corrupção.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,317,'Então, teu Senhor entornou sobre eles vários tipos de castigo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,317,'Por certo, teu Senhor está sempre à espreita.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,317,'Então, quanto ao ser humano, quando seu Senhor o põe à prova, e o honra, e o agracia, diz: "Meu Senhor honra-me."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,317,'E, quando o põe à prova e lhe restringe o sustento, diz: "Meu Senhor avilta-me."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,317,'Em absoluto, isso não é certo! Mas, vós não honrais o órfão,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,317,'E não vos incitais, mutuamente, a alimentar o necessitado,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,317,'E devorais as heranças com indiscriminada voracidade,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,317,'E amais as riquezas, com excessivo amor.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,317,'Em absoluto, isso não é certo! Quando a terra for pulverizada, pulvérea, pulvereamente,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,3,317,'E teu Senhor chegar, e os anjos, em fileiras após fileiras,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,3,317,'E for trazida, nesse dia, a Geena; nesse dia, o ser humano lembrar-se-á de seu erro. E como a lembrança haverá de beneficiá-lo?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,3,317,'Dirá ele: "Quem dera houvesse eu antecipado as boas obras a minha vida!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,3,317,'Então, nesse dia, ninguém castigará como Seu castigar,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,3,317,'E ninguém acorrentará como Seu acorrentar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,3,317,'Dir-se-á: "Ó alma tranquila!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,3,317,'"Retorna a teu Senhor, agradada e agradável;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,3,317,'"Então, entra para junto de Meus servos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,3,317,'"E entra em Meu Paraíso."');
+INSERT INTO chapters (id, number, quran_id) VALUES(318,90,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,318,'Juro por esta Cidade!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,318,'- E tu estás residente nesta Cidade -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,318,'E por um genitor e por um gênito!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,318,'Com efeito, criamos o ser humano em tribulações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,318,'Supõe ele que ninguém tem poder sobre ele?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,318,'Diz: "Aniquilei riquezas acumuladas."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,318,'Supõe ele que ninguém o viu?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,318,'Não Ihe fizemos dois olhos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,318,'E uma língua e dois lábios?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,318,'E indicamo-lhe os dois rumos?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,318,'Então, ele não enfrenta o obstáculo!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,318,'E o que te faz inteirar-te do que é o obstáculo?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,318,'E libertar um escravo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,318,'Ou alimentar, em dia de penúria,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,318,'Um órfão aparentado,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,318,'Ou um necessitado empoeirado pela miséria.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,318,'Em seguida, é ser dos que crêem e se recomendam, mutuamente, a paciência, e se recomendam, mutuamente, a misericórdia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,318,'Esses são os companheiros da direita.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,318,'E os que renegam a Fé e desmentem Nossos sinais, esses são os companheiros da esquerda.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,318,'Haverá, sobre eles, um Fogo cerrado.');
+INSERT INTO chapters (id, number, quran_id) VALUES(319,91,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,319,'Pelo sol e por sua plena luz matinal!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,319,'E pela lua, quando o sucede!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,319,'E pelo dia, quando o mostra, em plenitude!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,319,'E pela noite, quando o encobre!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,319,'E pelo céu e por Quem o edificou!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,319,'E pela terra e por Quem a distendeu!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,319,'E pela alma e por Quem a formou!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,319,'Então, lhe inspirou sua impiedade e sua piedade!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,319,'Com efeito, bem aventurado é quem a dignifica.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,319,'E, com efeito, mal aventurado é quem a degrada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,319,'O povo de Thamud, por sua transgressão, desmentiu ao Mensageiro.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,319,'Quando o mais infeliz deles partiu, empenhado em matar o camelo fêmea,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,319,'Então, o Mensageiro de Allah disse-lhes: "Deixai o camelo fêmea - vindo de Allah - e sua porção de bebida."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,319,'E desmentiram-no e abateram-no. Então, por seu delito, seu Senhor esmigalhou-lhes as casas sobre eles, e nivelou-as.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,319,'E Ele não teme as conseqüências disso.');
+INSERT INTO chapters (id, number, quran_id) VALUES(320,92,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,320,'Pela noite, quando tudo encobre!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,320,'Pelo dia, quando se mostra, em plenitude!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,320,'E por Quem criou o varão e a varoa!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,320,'Por certo, vossos esforços são vários.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,320,'Então, quanto a quem dá e teme a Allah');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,320,'E confirma a mais bela Verdade,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,320,'A esse, facilitar-lhe-emos o acesso ao caminho fácil.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,320,'E, quanto a quem é avaro e prescinde da ajuda de Allah,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,320,'E desmente a mais bela Verdade,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,320,'A esse, facilitar-lhe-emos o acesso ao caminho difícil,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,320,'E de nada lhe valerão suas riquezas, quando se abismar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,320,'Por certo, impende-Nos a orientação;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,320,'E, por certo, são Nossas a Derradeira Vida e a primeira.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,320,'Então, admoesto-vos de um Fogo que flameja;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,320,'Nele, não se queimará senão o mais infeliz,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,320,'Que haja desmentido ao Mensageiro e voltado as costas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,320,'E far-se-á evitá-lo ao mais piedoso,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,320,'Que concede sua riqueza, para dignificar-se,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,320,'E a ninguém faz uma graça, que deva ser quitada');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,3,320,'Senão para buscar a face de seu Senhor, O Altíssimo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,3,320,'E, em verdade, agradar-se-á de sua recompensa.');
+INSERT INTO chapters (id, number, quran_id) VALUES(321,93,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,321,'Pela plena luz matinal!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,321,'E pela noite, quando serena!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,321,'Teu Senhor não te abandonou nem te detestou.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,321,'E, em verdade, a Derradeira Vida te é melhor que a primeira.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,321,'E, em verdade, teu Senhor dar-te-á graças, e disso te agradarás.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,321,'Não te encontrou órfão e te abrigou?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,321,'E não te encontrou descaminhado e te guiou?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,321,'E não te encontrou infortunado e te enriqueceu?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,321,'Então, quanto ao órfão, não o oprimas');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,321,'E, quanto ao mendigo, não o maltrates.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,321,'E, quanto à graça de teu Senhor, proclama-a.');
+INSERT INTO chapters (id, number, quran_id) VALUES(322,94,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,322,'Não te dilatamos o peito?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,322,'E não te depusemos o fardo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,322,'Que te vergava as costas?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,322,'E não te elevamos a fama?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,322,'Então, por certo, com a dificuldade, há facilidade!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,322,'Por certo, com a dificuldade, há facilidade!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,322,'Então, quando estiverdes livre, esforça-te em orar,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,322,'E dirige-te a teu Senhor em rogos.');
+INSERT INTO chapters (id, number, quran_id) VALUES(323,95,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,323,'Pelo figo e pela oliva!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,323,'E pelo Monte Sinai!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,323,'E por esta Cidade segura!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,323,'Com efeito, criamos o ser humano na mais bela forma.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,323,'Em seguida, levamo-lo ao mais baixo dos baixos degraus,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,323,'Exceto aos que crêem e fazem as boas obras: eles terão prêmio incessante.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,323,'Então, o que te leva, depois disso a desmentir o Dia do Juízo?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,323,'Não é Allah O mais Sábio dos juízes?');
+INSERT INTO chapters (id, number, quran_id) VALUES(324,96,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,324,'Lê, em nome de teu Senhor, que criou,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,324,'Que criou o ser humano de uma aderência.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,324,'Lê, e teu Senhor é O mais Generoso,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,324,'Que ensinou a escrever com o cálamo,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,324,'Ensinou ao ser humano o que ele não sabia.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,324,'Ora, por certo, o ser humano a tudo transgride,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,324,'Desde que ele se vê prescindindo de ajuda.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,324,'Por certo, a teu Senhor será o retorno.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,324,'Viste aquele que coíbe');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,324,'Um servo de orar, quando este ora?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,324,'Viste se ele está na Orientação,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,3,324,'Ou se ordena a piedade?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,3,324,'Viste se te desmente e te volta as costas?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,3,324,'Não sabe ele que Allah a tudo vê?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,3,324,'Em absoluto, não o sabe! Em verdade, se ele não se detiver, arrastá-lo-emos pelo topete,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,3,324,'Topete mentiroso, errado.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,3,324,'Então, que convoque seus partidários.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,3,324,'Convocaremos os verdugos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,3,324,'Em absoluto, não lhe obedeças; e prosterna-te e aproxima-te de Allah.');
+INSERT INTO chapters (id, number, quran_id) VALUES(325,97,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,325,'Por certo, fizemo-lo descer, na noite de al-Qadr.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,325,'E o que te faz inteirar-te do que é a noite de al-Qadr? -');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,325,'A noite de al-Qadr é melhor que mil meses.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,325,'Nela, descem os anjos e o Espírito, com a permissão de seu Senhor, encarregados de toda ordem.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,325,'Paz é ela, até o nascer da aurora.');
+INSERT INTO chapters (id, number, quran_id) VALUES(326,98,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,326,'Os que renegam a Fé, dentre os seguidores do Livro, e os idólatras não estavam propensos a renunciar a seus cultos, até que lhes chegasse a evidente prova:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,326,'Um mensageiro de Allah, que recitasse páginas purificadas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,326,'Em que houvesse escritos retos.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,326,'E aqueles, os quais fora concedido o Livro, não se separaram senão após haver-lhes chegado a evidente prova.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,326,'E não lhes fora ordenado senão adorar a Allah, sendo sinceros com Ele na devoção, sendo monoteístas, e cumprir a oração e conceder az-zakah (a ajuda caridosa). E essa é a religião reta.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,326,'Por certo, os que renegam a Fé, dentre os seguidores do Livro, e os idólatras estarão no Fogo da Geena: nela serão eternos. Esses são os piores de toda a criação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,326,'Por certo, os que crêem e fazem as boas obras, esses são os melhores de toda criação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,326,'Sua recompensa, junto de seu Senhor, são os Jardins do Éden, abaixo dos quais correm os rios; nesses, serão eternos para todo o sempre. Allah se agradará deles, e eles se agradarão dEle. Isso para quem receia a seu Senhor.');
+INSERT INTO chapters (id, number, quran_id) VALUES(327,99,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,327,'Quando a terra for tremida por seu tremor,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,327,'E a terra fizer sair seus pesos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,327,'E o ser humano disser: "O que há com ela?"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,327,'Nesse dia, ela contará suas notícias,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,327,'Conforme seu Senhor lho inspirou.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,327,'Nesse dia os humanos camparecerão, separadamente, para os fazerem ver suas obras.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,327,'Então quem houver feito um peso de àtomo de bem o verá,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,327,'E quem houver feito um peso de átomo de mal o verá.');
+INSERT INTO chapters (id, number, quran_id) VALUES(328,100,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,328,'Pelos corcéis arquejantes,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,328,'E chispeantes, com seus cascos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,328,'E atacantes, pela manhã,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,328,'Então, levantam, com isso, nuvens de poeira');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,328,'E permeiam, com isso, uma inimiga multidão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,328,'Por certo, o ser humano é ingrato a seu Senhor;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,328,'E, por certo, ele é testemunha disso;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,328,'E, por certo, ele é veemente no amor à riqueza.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,328,'Então, não sabe ele que será recompensado, quando for revolvido o que há nos sepulcros,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,328,'E for recolhido o que há nos peito?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,328,'Por certo, nesse dia, o seu Senhor deles será Conhecedor.');
+INSERT INTO chapters (id, number, quran_id) VALUES(329,101,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,329,'O estrondo!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,329,'Que é o estrondo?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,329,'E o que te faz inteirar-te do que é o estrondo?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,329,'Ocorrerá, um dia, quando os humanos forem como as borboletas espalhadas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,329,'E as montanhas, como a lã corada, cardada.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,329,'Então, quanto àquele, cujos pesos em boas ações forem pesados,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,329,'Estará em vida agradável;');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,329,'E quanto áquele, cujos pesos em boas ações forem leves,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,329,'Sua morada será um Abismo.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,3,329,'E o que te faz inteirar-te do que é este Abismo?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,3,329,'É Fogo incandescente!');
+INSERT INTO chapters (id, number, quran_id) VALUES(330,102,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,330,'A ostentação entretém-vos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,330,'Até visitardes os sepulcros.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,330,'Em absoluto, não vos ostenteis! Vós logo sabereis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,330,'Mais uma vez, em absoluto, não vos ostenteis! Vós logo sabereis!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,330,'Ora, se soubésseis a ciência da Certeza, renunciaríeis a ostentação.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,330,'Em verdade, vereis o Inferno.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,330,'Em seguida, certamente, vê-lo-eis, com os olhos da certeza.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,330,'Depois, sereis, em verdade, nesse dia, interrogados das delícias da vida.');
+INSERT INTO chapters (id, number, quran_id) VALUES(331,103,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,331,'Pelo tempo!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,331,'Por certo, o ser humano está em perdição,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,331,'Exceto aos que crêem e fazem as boas obras e se recomendam mutuamente a verdade, e se recomendam mutuamente a paciência.');
+INSERT INTO chapters (id, number, quran_id) VALUES(332,104,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,332,'Ai de todo difamador, caluniador.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,332,'Que junta riquezas e, com deleite, as conta,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,332,'Supõe que suas riquezas o tornarão eterno.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,332,'Em absoluto, não o tornarão! Em verdade, ele será deitado fora, em al-Hutama.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,332,'E o que te faz inteirar-te do que é al-Hutamah?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,332,'É o fogo aceso, de Allah,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,332,'O qual sobe até os corações.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,3,332,'Por certo, será cerrado sobre eles,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,3,332,'Em colunas extensas.');
+INSERT INTO chapters (id, number, quran_id) VALUES(333,105,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,333,'Não viste como teu Senhor agiu com os donos do elefante?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,333,'Não fez Ele sua insídia ficar em descaminho?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,333,'E contra eles enviou pássaros, em bandos,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,333,'Que lhes atiravam pedras de sijjil?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,333,'Então, tornou-os como folhas devoradas.');
+INSERT INTO chapters (id, number, quran_id) VALUES(334,106,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,334,'Por causa do pacto dos Quraich,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,334,'De seu pacto da viagem de inverno e de verão.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,334,'Que eles adorem, então, o Senhor desta Casa,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,334,'Que os alimentou contra a fome e os pôs em segurança contra o medo!');
+INSERT INTO chapters (id, number, quran_id) VALUES(335,107,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,335,'Viste quem desmente o Dia do Juízo?');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,335,'Esse é o que repele o órfão,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,335,'E não incitava ninguém a alimentar o necessitado."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,335,'Então, ai dos orantes');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,335,'Que são distraídos de suas orações,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,335,'Que, por ostentação, só querem ser vistos orando,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,3,335,'E impedem o adjutório.');
+INSERT INTO chapters (id, number, quran_id) VALUES(336,108,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,336,'Por certo, Nós te demos Al-Kawthar.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,336,'Então, ora a teu Senhor e imola as oferendas.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,336,'Por certo, quem te odeia será ele o sem posteridade.');
+INSERT INTO chapters (id, number, quran_id) VALUES(337,109,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,337,'Dize: "Ó renegadores da Fé!"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,337,'"Não adoro o que adorais."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,337,'"Nem adorareis o que adoro."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,337,'"Nem adorarei o que adorastes."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,337,'"Nem adorareis o que adoro."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,337,'"A vós vossa religião e, a mim, minha religião."');
+INSERT INTO chapters (id, number, quran_id) VALUES(338,110,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,338,'Quando chegar o socorro de Allah e também a vitória,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,338,'E vires os homens entrarem na religião de Allah, em turbas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,338,'Então glorifica, com louvor, a teu Senhor e implora-Lhe perdão. Por certo, Ele é O remissório.');
+INSERT INTO chapters (id, number, quran_id) VALUES(339,111,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,339,'Que pereçam ambas as mãos de Abu Lahab, e que ele mesmo pereça.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,339,'De nada lhe valerá sua riqueza e o que ele logrou.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,339,'Queimar-se-á em Fogo de labaredas,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,339,'E, também, sua mulher, a carregadora de lenha,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,339,'Em seu pescoço, haverá uma corda de massad.');
+INSERT INTO chapters (id, number, quran_id) VALUES(340,112,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,340,'Dize: "Ele é Allah, Único."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,340,'"Allah é O Solicitado."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,340,'"Não gerou e não foi gerado."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,340,'"E não há ninguém igual a Ele."');
+INSERT INTO chapters (id, number, quran_id) VALUES(341,113,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,341,'Dize: "Refugio-me no Senhor da Alvorada,');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,341,'"Contra o mal daquilo que Ele criou,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,341,'"E contra o mal da noitequando entenebrece,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,341,'"E contra o mal das sopradoras dos nós."');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,341,'"E contra o mal do invejoso, quando inveja."');
+INSERT INTO chapters (id, number, quran_id) VALUES(342,114,3);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,3,342,'Dize: "Refugio-me nO Senhor dos homens,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,3,342,'"O Rei dos homens,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,3,342,'"O Deus dos homens,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,3,342,'"Contra o mal do sussurrador, o absconso"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,3,342,'"Que sussurra perfídias nos peitos dos homens,"');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,3,342,'"Seja ele dos jinns, seja ele dos homens."');
+INSERT INTO qurans (locale) VALUES('fa');
+INSERT INTO chapters (id, number, quran_id) VALUES(343,1,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,343,'به نام خداوند بخشنده بخشایشگر');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,343,'ستایش مخصوص خداوندی است که پروردگار جهانیان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,343,'(خداوندی که) بخشنده و بخشایشگر است (و رحمت عام و خاصش همگان را فرا گرفته).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,343,'(خداوندی که) مالک روز جزاست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,343,'(پروردگارا!) تنها تو را میپرستیم؛ و تنها از تو یاری میجوییم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,343,'ما را به راه راست هدایت کن...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,343,'راه کسانی که آنان را مشمول نعمت خود ساختی؛ نه کسانی که بر آنان غضب کردهای؛ و نه گمراهان.');
+INSERT INTO chapters (id, number, quran_id) VALUES(344,2,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,344,'الم (بزرگ است خداوندی که این کتاب عظیم را، از حروف ساده الفبا به وجود آورده).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,344,'آن کتاب با عظمتی است که شک در آن راه ندارد؛ و مایه هدایت پرهیزکاران است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,344,'(پرهیزکاران) کسانی هستند که به غیب [=آنچه از حس پوشیده و پنهان است] ایمان میآورند؛ و نماز را برپا میدارند؛ و از تمام نعمتها و مواهبی که به آنان روزی دادهایم، انفاق میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,344,'و آنان که به آنچه بر تو نازل شده، و آنچه پیش از تو (بر پیامبران پیشین) نازل گردیده، ایمان میآورند؛ و به رستاخیز یقین دارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,344,'آنان بر طریق هدایت پروردگارشانند؛ و آنان رستگارانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,344,'کسانی که کافر شدند، برای آنان تفاوت نمیکند که آنان را (از عذاب الهی) بترسانی یا نترسانی؛ ایمان نخواهند آورد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,344,'خدا بر دلها و گوشهای آنان مهر نهاده؛ و بر چشمهایشان پردهای افکنده شده؛ و عذاب بزرگی در انتظار آنهاست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,344,'گروهی از مردم کسانی هستند که میگویند: «به خدا و روز رستاخیز ایمان آوردهایم.» در حالی که ایمان ندارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,344,'میخواهند خدا و مؤمنان را فریب دهند؛ در حالی که جز خودشان را فریب نمیدهند؛ (اما) نمیفهمند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,344,'در دلهای آنان یک نوع بیماری است؛ خداوند بر بیماری آنان افزوده؛ و به خاطر دروغهایی که میگفتند، عذاب دردناکی در انتظار آنهاست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,344,'و هنگامی که به آنان گفته شود: «در زمین فساد نکنید» میگویند: «ما فقط اصلاحکنندهایم»!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,344,'آگاه باشید! اینها همان مفسدانند؛ ولی نمیفهمند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,344,'و هنگامی که به آنان گفته شود: «همانند (سایر) مردم ایمان بیاورید!» میگویند: «آیا همچون ابلهان ایمان بیاوریم؟!» بدانید اینها همان ابلهانند ولی نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,344,'و هنگامی که افراد باایمان را ملاقات میکنند، و میگویند: «ما ایمان آوردهایم!» (ولی) هنگامی که با شیطانهای خود خلوت میکنند، میگویند: «ما با شمائیم! ما فقط (آنها را) مسخره میکنیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,344,'خداوند آنان را استهزا میکند؛ و آنها را در طغیانشان نگه میدارد، تا سرگردان شوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,344,'آنان کسانی هستند که «هدایت» را به «گمراهی» فروختهاند؛ و (این) تجارت آنها سودی نداده؛ و هدایت نیافتهاند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,344,'آنان [= منافقان] همانند کسی هستند که آتشی افروخته (تا در بیابان تاریک، راه خود را پیدا کند)، ولی هنگامی که آتش اطراف او را روشن ساخت، خداوند (طوفانی میفرستد و) آن را خاموش میکند؛ و در تاریکیهای وحشتناکی که چشم کار نمیکند، آنها را رها میسازد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,344,'آنها کران، گنگها و کورانند؛ لذا (از راه خطا) بازنمیگردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,344,'یا همچون بارانی از آسمان، که در شب تاریک همراه با رعد و برق و صاعقه (بر سر رهگذران) ببارد. آنها از ترس مرگ، انگشتانشان را در گوشهای خود میگذارند؛ تا صدای صاعقه را نشنوند. و خداوند به کافران احاطه دارد (و در قبضه قدرت او هستند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,344,'(روشنائی خیره کننده) برق، نزدیک است چشمانشان را برباید. هر زمان که (برق جستن میکند، و صفحه بیابان را) برای آنها روشن میسازد، (چند گامی) در پرتو آن راه میروند؛ و چون خاموش میشود، توقف میکنند. و اگر خدا بخواهد، گوش و چشم آنها را از بین میبرد؛ چرا که خداوند بر هر چیز تواناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,344,'ای مردم! پروردگار خود را پرستش کنید؛ آن کس که شما، و کسانی را که پیش از شما بودند آفرید، تا پرهیزکار شوید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,344,'آن کس که زمین را بستر شما، و آسمان [= جو زمین] را همچون سقفی بالای سر شما قرار داد؛ و از آسمان آبی فرو فرستاد؛ و به وسیله آن، میوهها را پرورش داد؛ تا روزی شما باشد. بنابر این، برای خدا همتایانی قرار ندهید، در حالی که میدانید (هیچ یک از آنها، نه شما را آفریدهاند، و نه شما را روزی میدهند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,344,'و اگر در باره آنچه بر بنده خود [= پیامبر] نازل کردهایم شک و تردید دارید، (دست کم) یک سوره همانند آن بیاورید؛ و گواهان خود را - غیر خدا - برای این کار، فرا خوانید اگر راست میگویید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,344,'پس اگر چنین نکنید - که هرگز نخواهید کرد - از آتشی بترسید که هیزم آن، بدنهای مردم (گنهکار) و سنگها [= بتها] است، و برای کافران، آماده شده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,344,'به کسانی که ایمان آورده، و کارهای شایسته انجام دادهاند، بشارت ده که باغهایی از بهشت برای آنهاست که نهرها از زیر درختانش جاریست. هر زمان که میوهای از آن، به آنان داده شود، میگویند: «این همان است که قبلا به ما روزی داده شده بود. (ولی اینها چقدر از آنها بهتر و عالیتر است.)» و میوههایی که برای آنها آورده میشود، همه (از نظر خوبی و زیبایی) یکسانند. و برای آنان همسرانی پاک و پاکیزه است، و جاودانه در آن خواهند بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,344,'خداوند از این که (به موجودات ظاهرا کوچکی مانند) پشه، و حتی کمتر از آن، مثال بزند شرم نمیکند. (در این میان) آنان که ایمان آوردهاند، میدانند که آن، حقیقتی است از طرف پروردگارشان؛ و اما آنها که راه کفر را پیمودهاند، (این موضوع را بهانه کرده) میگویند: «منظور خداوند از این مثل چه بوده است؟!» (آری،) خدا جمع زیادی را با آن گمراه، و گروه بسیاری را هدایت میکند؛ ولی تنها فاسقان را با آن گمراه میسازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,344,'فاسقان کسانی هستند که پیمان خدا را، پس از محکم ساختن آن، میشکنند؛ و پیوندهایی را که خدا دستور داده برقرار سازند، قطع نموده، و در روی زمین فساد میکنند؛ اینها زیانکارانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,344,'چگونه به خداوند کافر میشوید؟! در حالی که شما مردگان (و اجسام بیروحی) بودید، و او شما را زنده کرد؛ سپس شما را میمیراند؛ و بار دیگر شما را زنده میکند؛ سپس به سوی او بازگردانده میشوید. (بنابر این، نه حیات و زندگی شما از شماست، و نه مرگتان؛ آنچه دارید از خداست).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,344,'او خدایی است که همه آنچه را (از نعمتها) در زمین وجود دارد، برای شما آفرید؛ سپس به آسمان پرداخت؛ و آنها را به صورت هفت آسمان مرتب نمود؛ و او به هر چیز آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,344,'(به خاطر بیاور) هنگامی را که پروردگارت به فرشتگان گفت: «من در روی زمین، جانشینی [= نمایندهای] قرار خواهم داد.» فرشتگان گفتند: «پروردگارا!» آیا کسی را در آن قرار میدهی که فساد و خونریزی کند؟! (زیرا موجودات زمینی دیگر، که قبل از این آدم وجود داشتند نیز، به فساد و خونریزی آلوده شدند. اگر هدف از آفرینش این انسان، عبادت است،) ما تسبیح و حمد تو را بجا میآوریم، و تو را تقدیس میکنیم.» پروردگار فرمود: «من حقایقی را میدانم که شما نمیدانید.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,344,'سپس علم اسماء [= علم اسرار آفرینش و نامگذاری موجودات] را همگی به آدم آموخت. بعد آنها را به فرشتگان عرضه داشت و فرمود: «اگر راست میگویید، اسامی اینها را به من خبر دهید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,344,'فرشتگان عرض کردند: «منزهی تو! ما چیزی جز آنچه به ما تعلیم دادهای، نمیدانیم؛ تو دانا و حکیمی.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,344,'فرمود: «ای آدم! آنان را از اسامی (و اسرار) این موجودات آگاه کن.» هنگامی که آنان را آگاه کرد، خداوند فرمود: «آیا به شما نگفتم که من، غیب آسمانها و زمین را میدانم؟! و نیز میدانم آنچه را شما آشکار میکنید، و آنچه را پنهان میداشتید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,344,'و (یاد کن) هنگامی را که به فرشتگان گفتیم: «برای آدم سجده و خضوع کنید!» همگی سجده کردند؛ جز ابلیس که سر باز زد، و تکبر ورزید، (و به خاطر نافرمانی و تکبرش) از کافران شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,344,'و گفتیم: «ای آدم! تو با همسرت در بهشت سکونت کن؛ و از (نعمتهای) آن، از هر جا میخواهید، گوارا بخورید؛ (اما) نزدیک این درخت نشوید؛ که از ستمگران خواهید شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,344,'پس شیطان موجب لغزش آنها از بهشت شد؛ و آنان را از آنچه در آن بودند، بیرون کرد. و (در این هنگام) به آنها گفتیم: «همگی (به زمین) فرود آیید! در حالی که بعضی دشمن دیگری خواهید بود. و برای شما در زمین، تا مدت معینی قرارگاه و وسیله بهره برداری خواهد بود.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,344,'سپس آدم از پروردگارش کلماتی دریافت داشت؛ (و با آنها توبه کرد.) و خداوند توبه او را پذیرفت؛ چرا که خداوند توبهپذیر و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,344,'گفتیم: «همگی از آن، فرود آیید! هرگاه هدایتی از طرف من برای شما آمد، کسانی که از آن پیروی کنند، نه ترسی بر آنهاست، و نه غمگین شوند.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,344,'و کسانی که کافر شدند، و آیات ما را دروغ پنداشتند اهل دوزخند؛ و همیشه در آن خواهند بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,344,'ای فرزندان اسرائیل! نعمتهایی را که به شما ارزانی داشتم به یاد آورید! و به پیمانی که با من بستهاید وفا کنید، تا من نیز به پیمان شما وفا کنم. (و در راه انجام وظیفه، و عمل به پیمانها) تنها از من بترسید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,344,'و به آنچه نازل کردهام [= قرآن] ایمان بیاورید! که نشانههای آن، با آنچه در کتابهای شماست، مطابقت دارد؛ و نخستین کافر به آن نباشید! و آیات مرا به بهای ناچیزی نفروشید! (و به خاطر درآمد مختصری، نشانههای قرآن و پیامبر اسلام را، که در کتب شما موجود است، پنهان نکنید!) و تنها از من (و مخالفت دستورهایم) بترسید (نه از مردم)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,344,'و حق را با باطل نیامیزید! و حقیقت را با اینکه میدانید کتمان نکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,344,'و نماز را بپا دارید، و زکات را بپردازید، و همراه رکوع کنندگان رکوع کنید (و نماز را با جماعت بگزارید)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,344,'آیا مردم را به نیکی (و ایمان به پیامبری که صفات او آشکارا در تورات آمده) دعوت میکنید، اما خودتان را فراموش مینمایید؛ با اینکه شما کتاب (آسمانی) را میخوانید! آیا نمیاندیشید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,344,'از صبر و نماز یاری جوئید؛ (و با استقامت و مهار هوسهای درونی و توجه به پروردگار، نیرو بگیرید؛) و این کار، جز برای خاشعان، گران است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,344,'آنها کسانی هستند که میدانند دیدارکننده پروردگار خویشند، و به سوی او بازمیگردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,344,'ای بنی اسرائیل! نعمتهایی را که به شما ارزانی داشتم به خاطر بیاورید؛ و (نیز به یاد آورید که) من، شما را بر جهانیان، برتری بخشیدم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,344,'و از آن روز بترسید که کسی مجازات دیگری را نمیپذیرد و نه از او شفاعت پذیرفته میشود؛ و نه غرامت از او قبول خواهد شد؛ و نه یاری میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,344,'و (نیز به یاد آورید) آن زمان که شما را از چنگال فرعونیان رهایی بخشیدیم؛ که همواره شما را به بدترین صورت آزار میدادند: پسران شما را سر میبریدند؛ و زنان شما را (برای کنیزی) زنده نگه میداشتند. و در اینها، آزمایش بزرگی از طرف پروردگارتان برای شما بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,344,'و (به خاطر بیاورید) هنگامی را که دریا را برای شما شکافتیم؛ و شما را نجات دادیم؛ و فرعونیان را غرق ساختیم؛ در حالی که شما تماشا میکردید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,344,'و (به یاد آورید) هنگامی را که با موسی چهل شب وعده گذاردیم؛ (و او، برای گرفتن فرمانهای الهی، به میعادگاه آمد؛) سپس شما گوساله را بعد از او (معبود خود) انتخاب نمودید؛ در حالی که ستمکار بودید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,344,'سپس شما را بعد از آن بخشیدیم؛ شاید شکر (این نعمت را) بجا آورید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,344,'و (نیز به خاطر آورید) هنگامی را که به موسی، کتاب و وسیله تشخیص (حق از باطل) را دادیم؛ تا هدایت شوید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,344,'و زمانی را که موسی به قوم خود گفت: «ای قوم من! شما با انتخاب گوساله (برای پرستش) به خود ستم کردید! پس توبه کنید؛ و به سوی خالق خود باز گردید! و خود را [=یکدیگر را] به قتل برسانید! این کار، برای شما در پیشگاه پروردگارتان بهتر است.» سپس خداوند توبه شما را پذیرفت؛ زیرا که او توبهپذیر و رحیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,344,'و (نیز به یاد آورید) هنگامی را که گفتید: «ای موسی! ما هرگز به تو ایمان نخواهیم آورد؛ مگر اینکه خدا را آشکارا (با چشم خود) ببینیم!» پس صاعقه شما را گرفت؛ در حالی که تماشا میکردید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,344,'سپس شما را پس از مرگتان، حیات بخشیدیم؛ شاید شکر (نعمت او را) بجا آورید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,344,'و ابر را بر شما سایبان قرار دادیم؛ و «من» [= شیره مخصوص و لذیذ درختان] و «سلوی» [= مرغان مخصوص شبیه کبوتر] را بر شما فرستادیم؛ (و گفتیم:) «از نعمتهای پاکیزهای که به شما روزی دادهایم بخورید!» (ولی شما کفران کردید!) آنها به ما ستم نکردند؛ بلکه به خود ستم مینمودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,344,'و (به خاطر بیاورید) زمانی را که گفتیم: «در این شهر [= بیت المقدس] وارد شوید! و از نعمتهای فراوان آن، هر چه میخواهید بخورید! و از در (معبد بیت المقدس) با خضوع و خشوع وارد گردید! و بگویید: «خداوندا! گناهان ما را بریز!» تا خطاهای شما را ببخشیم؛ و به نیکوکاران پاداش بیشتری خواهیم داد.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,344,'اما افراد ستمگر، این سخن را که به آنها گفته شده بود، تغییر دادند؛ (و به جای آن، جمله استهزاآمیزی گفتند؛) لذا بر ستمگران، در برابر این نافرمانی، عذابی از آسمان فرستادیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,344,'و (به یاد آورید) زمانی را که موسی برای قوم خویش، آب طلبید، به او دستور دادیم: «عصای خود را بر آن سنگ مخصوص بزن!» ناگاه دوازده چشمه آب از آن جوشید؛ آنگونه که هر یک (از طوایف دوازدهگانه بنی اسرائیل)، چشمه مخصوص خود را میشناختند! (و گفتیم:) «از روزیهای الهی بخورید و بیاشامید! و در زمین فساد نکنید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,344,'و (نیز به خاطر بیاورید) زمانی را که گفتید: «ای موسی! هرگز حاضر نیستیم به یک نوع غذا اکتفا کنیم! از خدای خود بخواه که از آنچه زمین میرویاند، از سبزیجات و خیار و سیر و عدس و پیازش، برای ما فراهم سازد.» موسی گفت: «آیا غذای پستتر را به جای غذای بهتر انتخاب میکنید؟! (اکنون که چنین است، بکوشید از این بیابان) در شهری فرود آئید؛ زیرا هر چه خواستید، در آنجا برای شما هست.» و (مهر) ذلت و نیاز، بر پیشانی آنها زده شد؛ و باز گرفتار خشم خدائی شدند؛ چرا که آنان نسبت به آیات الهی، کفر میورزیدند؛ و پیامبران را به ناحق میکشتند. اینها به خاطر آن بود که گناهکار و متجاوز بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,344,'کسانی که (به پیامبر اسلام) ایمان آوردهاند، و کسانی که به آئین یهود گرویدند و نصاری و صابئان [= پیروان یحیی] هر گاه به خدا و روز رستاخیز ایمان آورند، و عمل صالح انجام دهند، پاداششان نزد پروردگارشان مسلم است؛ و هیچگونه ترس و اندوهی برای آنها نیست. (هر کدام از پیروان ادیان الهی، که در عصر و زمان خود، بر طبق وظایف و فرمان دین عمل کردهاند، مأجور و رستگارند.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,344,'و (به یاد آورید) زمانی را که از شما پیمان گرفتیم؛ و کوه طور را بالای سر شما قرار دادیم؛ (و به شما گفتیم:) «آنچه را (از آیات و دستورهای خداوند) به شما دادهایم، با قدرت بگیرید؛ و آنچه را در آن است به یاد داشته باشید (و به آن عمل کنید)؛ شاید پرهیزکار شوید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,344,'سپس شما پس از این، روگردان شدید؛ و اگر فضل و رحمت خداوند بر شما نبود، از زیانکاران بودید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,344,'به طور قطع از حال کسانی از شما، که در روز شنبه نافرمانی و گناه کردند، آگاه شدهاید! ما به آنها گفتیم: «به صورت بوزینههایی طردشده درآیید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,344,'ما این کیفر را درس عبرتی برای مردم آن زمان و نسلهای بعد از آنان، و پند و اندرزی برای پرهیزکاران قرار دادیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,344,'و (به یاد آورید) هنگامی را که موسی به قوم خود گفت: «خداوند به شما دستور میدهد مادهگاوی را ذبح کنید (و قطعهای از بدن آن را به مقتولی که قاتل او شناخته نشده بزنید، تا زنده شود و قاتل خویش را معرفی کند؛ و غوغا خاموش گردد.)» گفتند: «آیا ما را مسخره میکنی؟» (موسی) گفت: «به خدا پناه میبرم از اینکه از جاهلان باشم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,344,'گفتند: «(پس) از خدای خود بخواه که برای ما روشن کند این مادهگاو چگونه مادهگاوی باشد؟» گفت: خداوند میفرماید: «مادهگاوی است که نه پیر و از کار افتاده باشد، و نه بکر و جوان؛ بلکه میان این دو باشد. آنچه به شما دستور داده شده، (هر چه زودتر) انجام دهید.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,344,'گفتند: «از پروردگار خود بخواه که برای ما روشن سازد رنگ آن چگونه باشد؟ «گفت: خداوند میگوید: «گاوی باشد زرد یکدست، که رنگ آن، بینندگان را شاد و مسرور سازد.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,344,'گفتند: «از خدایت بخواه برای ما روشن کند که چگونه گاوی باید باشد؟ زیرا این گاو برای ما مبهم شده! و اگر خدا بخواهد ما هدایت خواهیم شد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,344,'گفت: خداوند میفرماید: «گاوی باشد که نه برای شخم زدن رام شده؛ و نه برای زراعت آبکشی کند؛ از هر عیبی برکنار باشد، و حتی هیچگونه رنگ دیگری در آن نباشد.» گفتند: «الان حق مطلب را آوردی!» سپس (چنان گاوی را پیدا کردند و) آن را سر بریدند؛ ولی مایل نبودند این کار را انجام دهند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,344,'و (به یاد آورید) هنگامی را که فردی را به قتل رساندید؛ سپس درباره (قاتل) او به نزاع پرداختید؛ و خداوند آنچه را مخفی میداشتید، آشکار میسازد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,344,'سپس گفتیم: «قسمتی از گاو را به مقتول بزنید! (تا زنده شود، و قاتل را معرفی کند.) خداوند اینگونه مردگان را زنده میکند؛ و آیات خود را به شما نشان میدهد؛ شاید اندیشه کنید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,344,'سپس دلهای شما بعد از این واقعه سخت شد؛ همچون سنگ، یا سختتر! چرا که پارهای از سنگها میشکافد، و از آن نهرها جاری میشود؛ و پارهای از آنها شکاف برمیدارد، و آب از آن تراوش میکند؛ و پارهای از خوف خدا (از فراز کوه) به زیر میافتد؛ (اما دلهای شما، نه از خوف خدا میتپد، و نه سرچشمه علم و دانش و عواطف انسانی است!) و خداوند از اعمال شما غافل نیست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,344,'آیا انتظار دارید به (آئین) شما ایمان بیاورند، با اینکه عدهای از آنان، سخنان خدا را میشنیدند و پس از فهمیدن، آن را تحریف میکردند، در حالی که علم و اطلاع داشتند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,344,'و هنگامی که مؤمنان را ملاقات کنند، میگویند: «ایمان آوردهایم.» ولی هنگامی که با یکدیگر خلوت میکنند، (بعضی به بعضی دیگر اعتراض کرده،) میگویند: «چرا مطالبی را که خداوند (در باره صفات پیامبر اسلام) برای شما بیان کرد، به مسلمانان بازگو میکنید تا (روز رستاخیز) در پیشگاه خدا، بر ضد شما به آن استدلال کنند؟! آیا نمیفهمید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,344,'آیا اینها نمیدانند خداوند آنچه را پنهان میدارند یا آشکار میکنند میداند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,344,'و پارهای از آنان عوامانی هستند که کتاب خدا را جز یک مشت خیالات و آرزوها نمیدانند؛ و تنها به پندارهایشان دل بستهاند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,344,'پس وای بر آنها که نوشتهای با دست خود مینویسند، سپس میگویند: «این، از طرف خداست.» تا آن را به بهای کمی بفروشند. پس وای بر آنها از آنچه با دست خود نوشتند؛ و وای بر آنان از آنچه از این راه به دست میآورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,344,'و گفتند: «هرگز آتش دوزخ، جز چند روزی، به ما نخواهد رسید.» بگو: «آیا پیمانی از خدا گرفتهاید؟! -و خداوند هرگز از پیمانش تخلف نمیورزد- یا چیزی را که نمیدانید به خدا نسبت میدهید»؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,344,'آری، کسانی که کسب گناه کنند، و آثار گناه، سراسر وجودشان را بپوشاند، آنها اهل آتشند؛ و جاودانه در آن خواهند بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,344,'و آنها که ایمان آورده، و کارهای شایسته انجام دادهاند، آنان اهل بهشتند؛ و همیشه در آن خواهند ماند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,344,'و (به یاد آورید) زمانی را که از بنی اسرائیل پیمان گرفتیم که جز خداوند یگانه را پرستش نکنید؛ و به پدر و مادر و نزدیکان و یتیمان و بینوایان نیکی کنید؛ و به مردم نیک بگویید؛ نماز را برپا دارید؛ و زکات بدهید. سپس (با اینکه پیمان بسته بودید) همه شما -جز عده کمی- سرپیچی کردید؛ و (از وفای به پیمان خود) رویگردان شدید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,344,'و هنگامی را که از شما پیمان گرفتیم که خون هم را نریزید؛ و یکدیگر را از سرزمین خود، بیرون نکنید. سپس شما اقرار کردید؛ (و بر این پیمان) گواه بودید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,344,'اما این شما هستید که یکدیگر را میکشید و جمعی از خودتان را از سرزمینشان بیرون میکنید؛ و در این گناه و تجاوز، به یکدیگر کمک مینمایید؛ (و اینها همه نقض پیمانی است که با خدا بستهاید) در حالی که اگر بعضی از آنها به صورت اسیران نزد شما آیند، فدیه میدهید و آنان را آزاد میسازید! با اینکه بیرون ساختن آنان بر شما حرام بود. آیا به بعضی از دستورات کتاب آسمانی ایمان میآورید، و به بعضی کافر میشوید؟! برای کسی از شما که این عمل (تبعیض در میان احکام و قوانین الهی) را انجام دهد، جز رسوایی در این جهان، چیزی نخواهد بود، و روز رستاخیز به شدیدترین عذابها گرفتار میشوند. و خداوند از آنچه انجام میدهید غافل نیست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,344,'اینها همان کسانند که آخرت را به زندگی دنیا فروختهاند؛ از این رو عذاب آنها تخفیف داده نمیشود؛ و کسی آنها را یاری نخواهد کرد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,344,'ما به موسی کتاب (تورات) دادیم؛ و بعد از او، پیامبرانی پشت سر هم فرستادیم؛ و به عیسی بن مریم دلایل روشن دادیم؛ و او را به وسیله روح القدس تأیید کردیم. آیا چنین نیست که هر زمان، پیامبری چیزی بر خلاف هوای نفس شما آورد، در برابر او تکبر کردید (و از ایمان آوردن به او خودداری نمودید)؛ پس عدهای را تکذیب کرده، و جمعی را به قتل رساندید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,344,'و (آنها از روی استهزا) گفتند: دلهای ما در غلاف است! (و ما از گفته تو چیزی نمیفهمیم. آری، همین طور است!) خداوند آنها را به خاطر کفرشان، از رحمت خود دور ساخته، (به همین دلیل، چیزی درک نمیکنند؛) و کمتر ایمان میآورند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,344,'و هنگامی که از طرف خداوند، کتابی برای آنها آمد که موافق نشانههایی بود که با خود داشتند، و پیش از این، به خود نوید پیروزی بر کافران میدادند (که با کمک آن، بر دشمنان پیروز گردند.) با این همه، هنگامی که این کتاب، و پیامبری را که از قبل شناخته بودند نزد آنها آمد، به او کافر شدند؛ لعنت خدا بر کافران باد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,344,'ولی آنها در مقابل بهای بدی، خود را فروختند؛ که به ناروا، به آیاتی که خدا فرستاده بود، کافر شدند. و معترض بودند، چرا خداوند به فضل خویش، بر هر کس از بندگانش بخواهد، آیات خود را نازل میکند؟! از این رو به خشمی بعد از خشمی (از سوی خدا) گرفتار شدند. و برای کافران مجازاتی خوارکننده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,344,'و هنگامی که به آنها گفته شود: «به آنچه خداوند نازل فرموده، ایمان بیاورید!» میگویند: «ما به چیزی ایمان میآوریم که بر خود ما نازل شده است.» و به غیر آن، کافر میشوند؛ در حالی که حق است؛ و آیاتی را که بر آنها نازل شده، تصدیق میکند. بگو: «اگر (راست میگویید، و به آیاتی که بر خودتان نازل شده) ایمان دارید، پس چرا پیامبران خدا را پیش از این، به قتل میرساندید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,344,'و (نیز) موسی آن همه معجزات را برای شما آورد، و شما پس از (غیبت) او، گوساله را انتخاب کردید؛ در حالی که ستمگر بودید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,344,'و (به یاد آورید) زمانی را که از شما پیمان گرفتیم؛ و کوه طور را بالای سر شما برافراشتیم؛ (و گفتیم:) «این دستوراتی را که به شما دادهایم محکم بگیرید، و درست بشنوید!» آنها گفتند: «شنیدیم؛ ولی مخالفت کردیم.» و دلهای آنها، بر اثر کفرشان، با محبت گوساله آمیخته شد. بگو: «ایمان شما، چه فرمان بدی به شما میدهد، اگر ایمان دارید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,344,'بگو: «اگر آن (چنان که مدعی هستید) سرای دیگر در نزد خدا، مخصوص شماست نه سایر مردم، پس آرزوی مرگ کنید اگر راست میگویید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,344,'ولی آنها، به خاطر اعمال بدی که پیش از خود فرستادهاند، هرگز آرزوی مرگ نخواهند کرد؛ و خداوند از ستمگران آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,344,'و آنها را حریصترین مردم -حتی حریصتر از مشرکان- بر زندگی (این دنیا، و اندوختن ثروت) خواهی یافت؛ (تا آنجا) که هر یک از آنها آرزو دارد هزار سال عمر به او داده شود! در حالی که این عمر طولانی، او را از کیفر (الهی) باز نخواهد داشت. و خداوند به اعمال آنها بیناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,344,'(آنها میگویند: «چون فرشتهای که وحی را بر تو نازل میکند، جبرئیل است، و ما با جبرئیل دشمن هستیم، به تو ایمان نمیآوریم!») بگو: «کسی که دشمن جبرئیل باشد (در حقیقت دشمن خداست) چرا که او به فرمان خدا، قرآن را بر قلب تو نازل کرده است؛ در حالی که کتب آسمانی پیشین را تصدیق میکند؛ و هدایت و بشارت است برای مؤمنان.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,344,'کسی که دشمن خدا و فرشتگان و رسولان او و جبرئیل و میکائیل باشد (کافر است؛ و) خداوند دشمن کافران است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,344,'ما نشانههای روشنی برای تو فرستادیم؛ و جز فاسقان کسی به آنها کفر نمیورزد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,4,344,'و آیا چنین نیست که هر بار آنها [=یهود] پیمانی (با خدا و پیامبر) بستند، جمعی آن را دور افکندند (و مخالفت کردند.) آری، بیشتر آنان ایمان نمیآورند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,4,344,'و هنگامی که فرستادهای از سوی خدا به سراغشان آمد، و با نشانههایی که نزد آنها بود مطابقت داشت، جمعی از آنان که به آنها کتاب (آسمانی) داده شده بود، کتاب خدا را پشت سر افکندند؛ گویی هیچ از آن خبر ندارند!!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,4,344,'و (یهود) از آنچه شیاطین در عصر سلیمان بر مردم میخواندند پیروی کردند. سلیمان هرگز (دست به سحر نیالود؛ و) کافر نشد؛ ولی شیاطین کفر ورزیدند؛ و به مردم سحر آموختند. و (نیز یهود) از آنچه بر دو فرشته بابل «هاروت» و «ماروت»، نازل شد پیروی کردند. (آن دو، راه سحر کردن را، برای آشنایی با طرز ابطال آن، به مردم یاد میدادند. و) به هیچ کس چیزی یاد نمیدادند، مگر اینکه از پیش به او میگفتند: «ما وسیله آزمایشیم کافر نشو! (و از این تعلیمات، سوء استفاده نکن!)» ولی آنها از آن دو فرشته، مطالبی را میآموختند که بتوانند به وسیله آن، میان مرد و همسرش جدایی بیفکنند؛ ولی هیچ گاه نمیتوانند بدون اجازه خداوند، به انسانی زیان برسانند. آنها قسمتهایی را فرامیگرفتند که به آنان زیان میرسانید و نفعی نمیداد. و مسلما میدانستند هر کسی خریدار این گونه متاع باشد، در آخرت بهرهای نخواهد داشت. و چه زشت و ناپسند بود آنچه خود را به آن فروختند، اگر میدانستند!!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,4,344,'و اگر آنها ایمان میآوردند و پرهیزکاری پیشه میکردند، پاداشی که نزد خداست، برای آنان بهتر بود، اگر آگاهی داشتند!!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,4,344,'ای افراد باایمان! (هنگامی که از پیغمبر تقاضای مهلت برای درک آیات قرآن میکنید) نگویید: «راعنا»؛ بلکه بگویید: «انظرنا». (زیرا کلمه اول، هم به معنی «ما را مهلت بده!»، و هم به معنی «ما را تحمیق کن!» میباشد؛ و دستاویزی برای دشمنان است.) و (آنچه به شما دستور داده میشود) بشنوید! و برای کافران (و استهزاکنندگان) عذاب دردناکی است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,4,344,'کافران اهل کتاب، و (همچنین) مشرکان، دوست ندارند که از سوی خداوند، خیر و برکتی بر شما نازل گردد؛ در حالی که خداوند، رحمت خود را به هر کس بخواهد، اختصاص میدهد؛ و خداوند، صاحب فضل بزرگ است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,4,344,'هر حکمی را نسخ کنیم، و یا نسخ آن را به تأخیر اندازیم، بهتر از آن، یا همانند آن را میآوریم. آیا نمیدانستی که خداوند بر هر چیز توانا است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,4,344,'آیا نمیدانستی که حکومت آسمانها و زمین، از آن خداست؟! (و حق دارد هر گونه تغییر و تبدیلی در احکام خود طبق مصالح بدهد؟!) و جز خدا، ولی و یاوری برای شما نیست. (و اوست که مصلحت شما را میداند و تعیین میکند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,4,344,'آیا میخواهید از پیامبر خود، همان تقاضای (نامعقولی را) بکنید که پیش از این، از موسی کردند؟! (و با این بهانهجوییها، از ایمان آوردن سر باز زدند.) کسی که کفر را به جای ایمان بپذیرد، از راه مستقیم (عقل و فطرت) گمراه شده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,4,344,'بسیاری از اهل کتاب، از روی حسد -که در وجود آنها ریشه دوانده- آرزو میکردند شما را بعد از اسلام و ایمان، به حال کفر باز گردانند؛ با اینکه حق برای آنها کاملا روشن شده است. شما آنها را عفو کنید و گذشت نمایید؛ تا خداوند فرمان خودش (فرمان جهاد) را بفرستد؛ خداوند بر هر چیزی تواناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,4,344,'و نماز را برپا دارید و زکات را ادا کنید؛ و هر کار خیری را برای خود از پیش میفرستید، آن را نزد خدا (در سرای دیگر) خواهید یافت؛ خداوند به اعمال شما بیناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,4,344,'آنها گفتند: «هیچ کس، جز یهود یا نصاری، هرگز داخل بهشت نخواهد شد.» این آرزوی آنهاست! بگو: «اگر راست میگویید، دلیل خود را (بر این موضوع) بیاورید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,4,344,'آری، کسی که روی خود را تسلیم خدا کند و نیکوکار باشد، پاداش او نزد پروردگارش ثابت است؛ نه ترسی بر آنهاست و نه غمگین میشوند. (بنابر این، بهشت خدا در انحصار هیچ گروهی نیست.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,4,344,'یهودیان گفتند: «مسیحیان هیچ موقعیتی (نزد خدا) ندارند»، و مسیحیان نیز گفتند: «یهودیان هیچ موقعیتی ندارند (و بر باطلند)»؛ در حالی که هر دو دسته، کتاب آسمانی را میخوانند (و باید از این گونه تعصبها برکنار باشند) افراد نادان (دیگر، همچون مشرکان) نیز، سخنی همانند سخن آنها داشتند! خداوند، روز قیامت، در باره آنچه در آن اختلاف داشتند، داوری میکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,4,344,'کیست ستمکارتر از آن کس که از بردن نام خدا در مساجد او جلوگیری کرد و سعی در ویرانی آنها نمود؟! شایسته نیست آنان، جز با ترس و وحشت، وارد این (کانونهای عبادت) شوند. بهره آنها در دنیا (فقط) رسوایی است و در سرای دیگر، عذاب عظیم (الهی)!!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,4,344,'مشرق و مغرب، از آن خداست! و به هر سو رو کنید، خدا آنجاست! خداوند بینیاز و داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,4,344,'و (یهود و نصاری و مشرکان) گفتند: «خداوند، فرزندی برای خود انتخاب کرده است»! -منزه است او- بلکه آنچه در آسمانها و زمین است، از آن اوست؛ و همه در برابر او خاضعند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,4,344,'هستی بخش آسمانها و زمین اوست! و هنگامی که فرمان وجود چیزی را صادر کند، تنها میگوید: «موجود باش!» و آن، فوری موجود میشود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,4,344,'افراد ناآگاه گفتند: «چرا خدا با ما سخن نمیگوید؟! و یا چرا آیه و نشانهای برای خود ما نمیآید؟!» پیشینیان آنها نیز، همین گونه سخن میگفتند؛ دلها و افکارشان مشابه یکدیگر است؛ ولی ما (به اندازه کافی) آیات و نشانهها را برای اهل یقین (و حقیقتجویان) روشن ساختهایم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,4,344,'ما تو را به حق، برای بشارت و بیم دادن (مردم جهان) فرستادیم؛ و تو مسئول (گمراهی) دوزخیان (پس از ابلاغ رسالت) نیستی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,4,344,'هرگز یهود و نصاری از تو راضی نخواهند شد، (تا به طور کامل، تسلیم خواستههای آنها شوی، و) از آیین (تحریف یافته) آنان، پیروی کنی. بگو: «هدایت، تنها هدایت الهی است!» و اگر از هوی و هوسهای آنان پیروی کنی، بعد از آنکه آگاه شدهای، هیچ سرپرست و یاوری از سوی خدا برای تو نخواهد بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,4,344,'کسانی که کتاب آسمانی به آنها دادهایم [= یهود و نصاری] آن را چنان که شایسته آن است میخوانند؛ آنها به پیامبر اسلام ایمان میآورند؛ و کسانی که به او کافر شوند، زیانکارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,4,344,'ای بنی اسرائیل! نعمت مرا، که به شما ارزانی داشتم، به یاد آورید! و (نیز به خاطر آورید) که من شما را بر جهانیان برتری بخشیدم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,4,344,'از روزی بترسید که هیچ کس از دیگری دفاع نمیکند؛ و هیچگونه عوضی از او قبول نمیشود؛ و شفاعت، او را سود نمیدهد؛ و (از هیچ سوئی) یاری نمیشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,4,344,'(به خاطر آورید) هنگامی که خداوند، ابراهیم را با وسایل گوناگونی آزمود. و او به خوبی از عهده این آزمایشها برآمد. خداوند به او فرمود: «من تو را امام و پیشوای مردم قرار دادم!» ابراهیم عرض کرد: «از دودمان من (نیز امامانی قرار بده!)» خداوند فرمود: «پیمان من، به ستمکاران نمیرسد! (و تنها آن دسته از فرزندان تو که پاک و معصوم باشند، شایسته این مقامند)».');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,4,344,'و (به خاطر بیاورید) هنگامی که خانه کعبه را محل بازگشت و مرکز امن و امان برای مردم قرار دادیم! و (برای تجدید خاطره،) از مقام ابراهیم، عبادتگاهی برای خود انتخاب کنید! و ما به ابراهیم و اسماعیل امر کردیم که: «خانه مرا برای طوافکنندگان و مجاوران و رکوعکنندگان و سجدهکنندگان، پاک و پاکیزه کنید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,4,344,'و (به یاد آورید) هنگامی را که ابراهیم عرض کرد: «پروردگارا! این سرزمین را شهر امنی قرار ده! و اهل آن را -آنها که به خدا و روز بازپسین، ایمان آوردهاند- از ثمرات (گوناگون)، روزی ده!» گفت: «(ما دعای تو را اجابت کردیم؛ و مؤمنان را از انواع برکات، بهرهمند ساختیم؛) اما به آنها که کافر شدند، بهره کمی خواهیم داد؛ سپس آنها را به عذاب آتش میکشانیم؛ و چه بد سرانجامی دارند»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,4,344,'و (نیز به یاد آورید) هنگامی را که ابراهیم و اسماعیل، پایههای خانه (کعبه) را بالا میبردند، (و میگفتند:) «پروردگارا! از ما بپذیر، که تو شنوا و دانایی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,4,344,'پروردگارا! ما را تسلیم فرمان خود قرار ده! و از دودمان ما، امتی که تسلیم فرمانت باشند، به وجود آور! و طرز عبادتمان را به ما نشان ده و توبه ما را بپذیر، که تو توبهپذیر و مهربانی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,4,344,'پروردگارا! در میان آنها پیامبری از خودشان برانگیز، تا آیات تو را بر آنان بخواند، و آنها را کتاب و حکمت بیاموزد، و پاکیزه کند؛ زیرا تو توانا و حکیمی (و بر این کار، قادری)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,4,344,'جز افراد سفیه و نادان، چه کسی از آیین ابراهیم، (با آن پاکی و درخشندگی،) رویگردان خواهد شد؟! ما او را در این جهان برگزیدیم؛ و او در جهان دیگر، از صالحان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,4,344,'در آن هنگام که پروردگارش به او گفت: اسلام بیاور! (و در برابر حق، تسلیم باش! او فرمان پروردگار را، از جان و دل پذیرفت؛ و) گفت: «در برابر پروردگار جهانیان، تسلیم شدم.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,4,344,'و ابراهیم و یعقوب (در واپسین لحظات عمر،) فرزندان خود را به این آیین، وصیت کردند؛ (و هر کدام به فرزندان خویش گفتند:) «فرزندان من! خداوند این آیین پاک را برای شما برگزیده است؛ و شما، جز به آیین اسلام [= تسلیم در برابر فرمان خدا] از دنیا نروید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,4,344,'آیا هنگامی که مرگ یعقوب فرا رسید، شما حاضر بودید؟! در آن هنگام که به فرزندان خود گفت: «پس از من، چه چیز را میپرستید؟» گفتند: «خدای تو، و خدای پدرانت، ابراهیم و اسماعیل و اسحاق، خداوند یکتا را، و ما در برابر او تسلیم هستیم.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,4,344,'آنها امتی بودند که درگذشتند. اعمال آنان، مربوط به خودشان بود و اعمال شما نیز مربوط به خود شماست؛ و شما هیچگاه مسئول اعمال آنها نخواهید بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,4,344,'(اهل کتاب) گفتند: «یهودی یا مسیحی شوید، تا هدایت یابید!» بگو: «(این آیینهای تحریف شده، هرگز نمیتواند موجب هدایت گردد،) بلکه از آیین خالص ابراهیم پیروی کنید! و او هرگز از مشرکان نبود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,4,344,'بگویید: «ما به خدا ایمان آوردهایم؛ و به آنچه بر ما نازل شده؛ و آنچه بر ابراهیم و اسماعیل و اسحاق و یعقوب و پیامبران از فرزندان او نازل گردید، و (همچنین) آنچه به موسی و عیسی و پیامبران (دیگر) از طرف پروردگار داده شده است، و در میان هیچ یک از آنها جدایی قائل نمیشویم، و در برابر فرمان خدا تسلیم هستیم؛ (و تعصبات نژادی و اغراض شخصی، سبب نمیشود که بعضی را بپذیریم و بعضی را رها کنیم.)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,4,344,'اگر آنها نیز به مانند آنچه شما ایمان آوردهاید ایمان بیاورند، هدایت یافتهاند؛ و اگر سرپیچی کنند، از حق جدا شدهاند و خداوند، شر آنها را از تو دفع میکند؛ و او شنونده و داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,4,344,'رنگ خدایی (بپذیرید! رنگ ایمان و توحید و اسلام؛) و چه رنگی از رنگ خدایی بهتر است؟! و ما تنها او را عبادت میکنیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,4,344,'بگو: «آیا در باره خداوند با ما محاجه میکنید؟! در حالی که او، پروردگار ما و شماست؛ و اعمال ما از آن ما، و اعمال شما از آن شماست؛ و ما او را با اخلاص پرستش میکنیم، (و موحد خالصیم).»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,4,344,'یا میگویید: «ابراهیم و اسماعیل و اسحاق و یعقوب و اسباط، یهودی یا نصرانی بودند»؟! بگو: «شما بهتر میدانید یا خدا؟! (و با اینکه میدانید آنها یهودی یا نصرانی نبودند، چرا حقیقت را کتمان میکنید؟)» و چه کسی ستمکارتر است از آن کس که گواهی و شهادت الهی را که نزد اوست، کتمان میکند؟! و خدا از اعمال شما غافل نیست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,4,344,'(به هر حال) آنها امتی بودند که درگذشتند. آنچه کردند، برای خودشان است؛ و آنچه هم شما کردهاید، برای خودتان است؛ و شما مسئول اعمال آنها نیستید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,4,344,'به زودی سبکمغزان از مردم میگویند: «چه چیز آنها [= مسلمانان] را، از قبلهای که بر آن بودند، بازگردانید؟!» بگو: «مشرق و مغرب، از آن خداست؛ خدا هر کس را بخواهد، به راه راست هدایت میکند.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,4,344,'همانگونه (که قبله شما، یک قبله میانه است) شما را نیز، امت میانهای قرار دادیم (در حد اعتدال، میان افراط و تفریط؛) تا بر مردم گواه باشید؛ و پیامبر هم بر شما گواه است. و ما، آن قبلهای را که قبلا بر آن بودی، تنها برای این قرار دادیم که افرادی که از پیامبر پیروی میکنند، از آنها که به جاهلیت بازمیگردند، مشخص شوند. و مسلماً این حکم، جز بر کسانی که خداوند آنها را هدایت کرده، دشوار بود. (این را نیز بدانید که نمازهای شما در برابر قبله سابق، صحیح بوده است؛) و خدا هرگز ایمان [= نماز] شما را ضایع نمیگرداند؛ زیرا خداوند، نسبت به مردم، رحیم و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,4,344,'نگاههای انتظارآمیز تو را به سوی آسمان (برای تعیین قبله نهایی) میبینیم! اکنون تو را به سوی قبلهای که از آن خشنود باشی، باز میگردانیم. پس روی خود را به سوی مسجد الحرام کن! و هر جا باشید، روی خود را به سوی آن بگردانید! و کسانی که کتاب آسمانی به آنها داده شده، بخوبی میدانند این فرمانِ حقی است که از ناحیه پروردگارشان صادر شده؛ (و در کتابهای خود خواندهاند که پیغمبر اسلام، به سوی دو قبله، نماز میخواند). و خداوند از اعمال آنها (در مخفی داشتن این آیات) غافل نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,4,344,'سوگند که اگر برای (این گروه از) اهل کتاب، هرگونه آیه (و نشانه و دلیلی) بیاوری، از قبله تو پیروی نخواهند کرد؛ و تو نیز، هیچگاه از قبله آنان، پیروی نخواهی نمود. (آنها نباید تصور کنند که بار دیگر، تغییر قبله امکانپذیر است!) و حتی هیچیک از آنها، پیروی از قبله دیگری نخواهد کرد! و اگر تو، پس از این آگاهی، متابعت هوسهای آنها کنی، مسلماً از ستمگران خواهی بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,4,344,'کسانی که کتاب آسمانی به آنان دادهایم، او [= پیامبر] را همچون فرزندان خود میشناسند؛ (ولی) جمعی از آنان، حق را آگاهانه کتمان میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,4,344,'این (فرمان تغییر قبله) حکمِ حقی از طرف پروردگار توست، بنابراین، هرگز از تردیدکنندگان در آن مباش!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,4,344,'هر طایفهای قبلهای دارد که خداوند آن را تعیین کرده است؛ (بنابراین، زیاد در باره قبله گفتگو نکنید! و به جای آن،) در نیکیها و اعمال خیر، بر یکدیگر سبقت جویید! هر جا باشید، خداوند همه شما را (برای پاداش و کیفر در برابر اعمال نیک و بد، در روز رستاخیز،) حاضر میکند؛ زیرا او، بر هر کاری تواناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,4,344,'از هر جا (و از هر شهر و نقطهای) خارج شدی، (به هنگام نماز،) روی خود را به جانب «مسجد الحرام» کن! این دستور حقی از طرف پروردگار توست! و خداوند، از آنچه انجام میدهید، غافل نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,4,344,'و از هر جا خارج شدی، روی خود را به جانب مسجد الحرام کن! و هر جا بودید، روی خود را به سوی آن کنید! تا مردم، جز ظالمان (که دست از لجاجت برنمیدارند،) دلیلی بر ضدّ شما نداشته باشند؛ (زیرا از نشانههای پیامبر، که در کتب آسمانی پیشین آمده، این است که او، به سوی دو قبله، نماز میخواند.) از آنها نترسید! و (تنها) از من بترسید! (این تغییر قبله، به خاطر آن بود که) نعمت خود را بر شما تمام کنم، شاید هدایت شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,4,344,'همانگونه (که با تغییر قبله، نعمت خود را بر شما کامل کردیم،) رسولی از خودتان در میان شما فرستادیم؛ تا آیات ما را بر شما بخواند؛ و شما را پاک کند؛ و به شما، کتاب و حکمت بیاموزد؛ و آنچه را نمیدانستید، به شما یاد دهد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,4,344,'پس به یاد من باشید، تا به یاد شما باشم! و شکر مرا گویید و (در برابر نعمتهایم) کفران نکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,4,344,'ای افرادی که ایمان آوردهاید! از صبر (و استقامت) و نماز، کمک بگیرید! (زیرا) خداوند با صابران است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,4,344,'و به آنها که در راه خدا کشته میشوند، مرده نگویید! بلکه آنان زندهاند، ولی شما نمیفهمید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,4,344,'قطعاً همه شما را با چیزی از ترس، گرسنگی، و کاهش در مالها و جانها و میوهها، آزمایش میکنیم؛ و بشارت ده به استقامتکنندگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,4,344,'آنها که هر گاه مصیبتی به ایشان میرسد، میگویند: «ما از آنِ خدائیم؛ و به سوی او بازمیگردیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,4,344,'اینها، همانها هستند که الطاف و رحمت خدا شامل حالشان شده؛ و آنها هستند هدایتیافتگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,4,344,'«صفا» و «مروه» از شعائر (و نشانههای) خداست! بنابراین، کسانی که حجِ خانه خدا و یا عمره انجام میدهند، مانعی نیست که بر آن دو طواف کنند؛ (و سعیِ صفا و مروه انجام دهند. و هرگز اعمال بیرویّه مشرکان، که بتهایی بر این دو کوه نصب کرده بودند، از موقعیّت این دو مکان مقدّس نمیکاهد!) و کسی که فرمان خدا را در انجام کارهای نیک اطاعت کند، خداوند (در برابر عمل او) شکرگزار، و (از افعال وی) آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,4,344,'کسانی که دلایل روشن، و وسیله هدایتی را که نازل کردهایم، بعد از آنکه در کتاب برای مردم بیان نمودیم، کتمان کنند، خدا آنها را لعنت میکند؛ و همه لعنکنندگان نیز، آنها را لعن میکنند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,4,344,'مگر آنها که توبه و بازگشت کردند، و (اعمال بد خود را، با اعمال نیک،) اصلاح نمودند، (و آنچه را کتمان کرده بودند؛ آشکار ساختند؛) من توبه آنها را میپذیرم؛ که من توّاب و رحیمم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,4,344,'کسانی که کافر شدند، و در حالِ کفر از دنیا رفتند، لعنت خداوند و فرشتگان و همه مردم بر آنها خواهد بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,4,344,'همیشه در آن (لعن و دوری از رحمت پروردگار) باقی میمانند؛ نه در عذاب آنان تخفیف داده میشود، و نه مهلتی خواهند داشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,4,344,'و خدای شما، خداوند یگانهای است، که غیر از او معبودی نیست! اوست بخشنده و مهربان (و دارای رحمت عام و خاصّ)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,4,344,'در آفرینش آسمانها و زمین، و آمد و شد شب و روز، و کشتیهایی که در دریا به سود مردم در حرکتند، و آبی که خداوند از آسمان نازل کرده، و با آن، زمین را پس از مرگ، زنده نموده، و انواع جنبندگان را در آن گسترده، و (همچنین) در تغییر مسیر بادها و ابرهایی که میان زمین و آسمان مسخرند، نشانههایی است (از ذات پاک خدا و یگانگی او) برای مردمی که عقل دارند و میاندیشند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,4,344,'بعضی از مردم، معبودهایی غیر از خداوند برای خود انتخاب میکنند؛ و آنها را همچون خدا دوست میدارند. امّا آنها که ایمان دارند، عشقشان به خدا، (از مشرکان نسبت به معبودهاشان،) شدیدتر است. و آنها که ستم کردند، (و معبودی غیر خدا برگزیدند،) هنگامی که عذاب (الهی) را مشاهده کنند، خواهند دانست که تمامِ قدرت، از آنِ خداست؛ و خدا دارای مجازات شدید است؛ (نه معبودهای خیالی که از آنها میهراسند.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,4,344,'در آن هنگام، رهبران (گمراه و گمراهکننده) از پیروانِ خود، بیزاری میجویند؛ و کیفر خدا را مشاهده میکنند؛ و دستشان از همه جا کوتاه میشود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,4,344,'و (در این هنگام) پیروان میگویند: «کاش بار دیگر به دنیا برمیگشتیم، تا از آنها [= پیشوایان گمراه] بیزاری جوییم، آن چنان که آنان (امروز) از ما بیزاری جستند! (آری،) خداوند این چنین اعمال آنها را به صورت حسرتزایی به آنان نشان میدهد؛ و هرگز از آتش (دوزخ) خارج نخواهند شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,4,344,'ای مردم! از آنچه در زمین است، حلال و پاکیزه بخورید! و از گامهای شیطان، پیروی نکنید! چه اینکه او، دشمن آشکار شماست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,4,344,'او شما را فقط به بدیها و کار زشت فرمان میدهد؛ (و نیز دستور میدهد) آنچه را که نمیدانید، به خدا نسبت دهید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,4,344,'و هنگامی که به آنها گفته شود: «از آنچه خدا نازل کرده است، پیروی کنید!» میگویند: «نه، ما از آنچه پدران خود را بر آن یافتیم، پیروی مینماییم.» آیا اگر پدران آنها، چیزی نمیفهمیدند و هدایت نیافتند (باز از آنها پیروی خواهند کرد)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,4,344,'مَثَل (تو در دعوت) کافران، بسان کسی است که (گوسفندان و حیوانات را برای نجات از چنگال خطر،) صدا میزند؛ ولی آنها چیزی جز سر و صدا نمیشنوند؛ (و حقیقت و مفهوم گفتار او را درک نمیکنند. این کافران، در واقع) کر و لال و نابینا هستند؛ از این رو چیزی نمیفهمند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,4,344,'ای کسانی که ایمان آوردهاید! از نعمتهای پاکیزهای که به شما روزی دادهایم، بخورید و شکر خدا را بجا آورید؛ اگر او را پرستش میکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,4,344,'خداوند، تنها (گوشت) مردار، خون، گوشت خوک و آنچه را نام غیرِ خدا به هنگام ذبح بر آن گفته شود، حرام کرده است. (ولی) آن کس که مجبور شود، در صورتی که ستمگر و متجاوز نباشد، گناهی بر او نیست؛ (و میتواند برای حفظ جان خود، در موقع ضرورت، از آن بخورد؛) خداوند بخشنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,4,344,'کسانی که کتمان میکنند آنچه را خدا از کتاب نازل کرده، و آن را به بهای کمی میفروشند، آنها جز آتش چیزی نمیخورند؛ (و هدایا و اموالی که از این رهگذر به دست میآورند، در حقیقت آتش سوزانی است.) و خداوند، روز قیامت، با آنها سخن نمیگوید؛ و آنان را پاکیزه نمیکند؛ و برای آنها عذاب دردناکی است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,4,344,'اینان، همانهایی هستند که گمراهی را با هدایت، و عذاب را با آمرزش، مبادله کردهاند؛ راستی چقدر در برابر عذاب خداوند، شکیبا هستند!!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,4,344,'اینها، به خاطر آن است که خداوند، کتاب (آسمانی) را به حق، (و توأم با نشانهها و دلایل روشن،) نازل کرده؛ و آنها که در آن اختلاف میکنند، (و با کتمان و تحریف، اختلاف به وجود میآورند،) در شکاف و (پراکندگی) عمیقی قرار دارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,4,344,'نیکی، (تنها) این نیست که (به هنگام نماز،) رویِ خود را به سوی مشرق و (یا) مغرب کنید؛ (و تمام گفتگوی شما، در باره قبله و تغییر آن باشد؛ و همه وقت خود را مصروف آن سازید؛) بلکه نیکی (و نیکوکار) کسی است که به خدا، و روز رستاخیز، و فرشتگان، و کتاب (آسمانی)، و پیامبران، ایمان آورده؛ و مال (خود) را، با همه علاقهای که به آن دارد، به خویشاوندان و یتیمان و مسکینان و واماندگان در راه و سائلان و بردگان، انفاق میکند؛ نماز را برپا میدارد و زکات را میپردازد؛ و (همچنین) کسانی که به عهد خود -به هنگامی که عهد بستند-وفا میکنند؛ و در برابر محرومیتها و بیماریها و در میدان جنگ، استقامت به خرج میدهند؛ اینها کسانی هستند که راست میگویند؛ و (گفتارشان با اعتقادشان هماهنگ است؛) و اینها هستند پرهیزکاران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,4,344,'ای افرادی که ایمان آوردهاید! حکم قصاص در مورد کشتگان، بر شما نوشته شده است: آزاد در برابر آزاد، و برده در برابر برده، و زن در برابر زن، پس اگر کسی از سوی برادر (دینی) خود، چیزی به او بخشیده شود، (و حکم قصاص او، تبدیل به خونبها گردد،) باید از راه پسندیده پیروی کند. (و صاحب خون، حال پرداخت کننده دیه را در نظر بگیرد.) و او [= قاتل] نیز، به نیکی دیه را (به ولی مقتول) بپردازد؛ (و در آن، مسامحه نکند.) این، تخفیف و رحمتی است از ناحیه پروردگار شما! و کسی که بعد از آن، تجاوز کند، عذاب دردناکی خواهد داشت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,4,344,'و برای شما در قصاص، حیات و زندگی است، ای صاحبان خِرد! شاید شما تقوا پیشه کنید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,4,344,'بر شما نوشته شده: «هنگامی که یکی از شما را مرگ فرا رسد، اگر چیز خوبی [= مالی] از خود به جای گذارده، برای پدر و مادر و نزدیکان، بطور شایسته وصیت کند! این حقّی است بر پرهیزکاران!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,4,344,'پس کسانی که بعد از شنیدنش آن را تغییر دهند، گناه آن، تنها بر کسانی است که آن (وصیّت) را تغییر میدهند؛ خداوند، شنوا و داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,4,344,'و کسی که از انحرافِ وصیت کننده (و تمایل یکجانبه او به بعض ورثه)، یا از گناه او (که مبادا وصیّت به کار خلافی کند) بترسد، و میان آنها را اصلاح دهد، گناهی بر او نیست؛ (و مشمولِ حکم تبدیلِ وصیّت نمیباشد.) خداوند، آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(183,4,344,'ای افرادی که ایمان آوردهاید! روزه بر شما نوشته شده، همانگونه که بر کسانی که قبل از شما بودند نوشته شد؛ تا پرهیزکار شوید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(184,4,344,'چند روز معدودی را (باید روزه بدارید!) و هر کس از شما بیمار یا مسافر باشد تعدادی از روزهای دیگر را (روزه بدارد) و بر کسانی که روزه برای آنها طاقتفرساست؛ (همچون بیماران مزمن، و پیرمردان و پیرزنان،) لازم است کفّاره بدهند: مسکینی را اطعام کنند؛ و کسی که کارِ خیری انجام دهد، برای او بهتر است؛ و روزه داشتن برای شما بهتر است اگر بدانید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(185,4,344,'(روزه، در چند روز معدودِ) ماهِ رمضان است؛ ماهی که قرآن، برای راهنمایی مردم، و نشانههای هدایت، و فرق میان حق و باطل، در آن نازل شده است. پس آن کس از شما که در ماه رمضان در حضر باشد، روزه بدارد! و آن کس که بیمار یا در سفر است، روزهای دیگری را به جای آن، روزه بگیرد! خداوند، راحتی شما را میخواهد، نه زحمت شما را! هدف این است که این روزها را تکمیل کنید؛ و خدا را بر اینکه شما را هدایت کرده، بزرگ بشمرید؛ باشد که شکرگزاری کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(186,4,344,'و هنگامی که بندگان من، از تو در باره من سؤال کنند، (بگو:) من نزدیکم! دعای دعا کننده را، به هنگامی که مرا میخواند، پاسخ میگویم! پس باید دعوت مرا بپذیرند، و به من ایمان بیاورند، تا راه یابند (و به مقصد برسند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(187,4,344,'آمیزش جنسی با همسرانتان، در شبِ روزهایی که روزه میگیرید، حلال است. آنها لباس شما هستند؛ و شما لباس آنها (هر دو زینت هم و سبب حفظ یکدیگرید). خداوند میدانست که شما به خود خیانت میکردید؛ (و این کارِ ممنوع را انجام میدادید؛) پس توبه شما را پذیرفت و شما را بخشید. اکنون با آنها آمیزش کنید، و آنچه را خدا برای شما مقرر داشته، طلب نمایید! و بخورید و بیاشامید، تا رشته سپید صبح، از رشته سیاه (شب) برای شما آشکار گردد! سپس روزه را تا شب، تکمیل کنید! و در حالی که در مساجد به اعتکاف پرداختهاید، با زنان آمیزش نکنید! این، مرزهای الهی است؛ پس به آن نزدیک نشوید! خداوند، این چنین آیات خود را برای مردم، روشن میسازد، باشد که پرهیزکار گردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(188,4,344,'و اموال یکدیگر را به باطل (و ناحق) در میان خود نخورید! و برای خوردن بخشی از اموال مردم به گناه، (قسمتی از) آن را (به عنوان رشوه) به قضات ندهید، در حالی که میدانید (این کار، گناه است)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(189,4,344,'در باره «هلالهای ماه» از تو سؤال میکنند؛ بگو: «آنها، بیان اوقات (و تقویم طبیعی) برای (نظامِ زندگیِ) مردم و (تعیینِ وقتِ) حج است». و (آن چنان که در جاهلیّت مرسوم بود که به هنگام حج، که جامه احرام میپوشیدند، از درِ خانه وارد نمیشدند، و از نقبِ پشتِ خانه وارد میشدند، نکنید!) کارِ نیک، آن نیست که از پشتِ خانهها وارد شوید؛ بلکه نیکی این است که پرهیزگار باشید! و از درِ خانهها وارد شوید و تقوا پیشه کنید، تا رستگار گردید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(190,4,344,'و در راه خدا، با کسانی که با شما میجنگند، نبرد کنید! و از حدّ تجاوز نکنید، که خدا تعدّیکنندگان را دوست نمیدارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(191,4,344,'و آنها را [= بت پرستانی که از هیچ گونه جنایتی ابا ندارند] هر کجا یافتید، به قتل برسانید! و از آن جا که شما را بیرون ساختند [= مکه]، آنها را بیرون کنید! و فتنه (و بت پرستی) از کشتار هم بدتر است! و با آنها، در نزد مسجد الحرام (در منطقه حرم)، جنگ نکنید! مگر اینکه در آن جا با شما بجنگند. پس اگر (در آن جا) با شما پیکار کردند، آنها را به قتل برسانید! چنین است جزای کافران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(192,4,344,'و اگر خودداری کردند، خداوند آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(193,4,344,'و با آنها پیکار کنید! تا فتنه (و بت پرستی، و سلب آزادی از مردم،) باقی نماند؛ و دین، مخصوص خدا گردد. پس اگر (از روش نادرست خود) دست برداشتند، (مزاحم آنها نشوید! زیرا) تعدّی جز بر ستمکاران روا نیست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(194,4,344,'ماهِ حرام، در برابر ماهِ حرام! (اگر دشمنان، احترام آن را شکستند، و در آن با شما جنگیدند، شما نیز حق دارید مقابله به مثل کنید.) و تمام حرامها، (قابلِ) قصاص است. و (به طور کلّی) هر کس به شما تجاوز کرد، همانند آن بر او تعدّی کنید! و از خدا بپرهیزید (و زیاده روی ننمایید)! و بدانید خدا با پرهیزکاران است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(195,4,344,'و در راهِ خدا، انفاق کنید! و (با ترک انفاق،) خود را به دست خود، به هلاکت نیفکنید! و نیکی کنید! که خداوند، نیکوکاران را دوست میدارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(196,4,344,'و حج و عمره را برای خدا به اتمام برسانید! و اگر محصور شدید، (و مانعی مانند ترس از دشمن یا بیماری، اجازه نداد که پس از احرامبستن، وارد مکه شوید،) آنچه از قربانی فراهم شود (ذبح کنید، و از احرام خارج شوید)! و سرهای خود را نتراشید، تا قربانی به محلش برسد (و در قربانگاه ذبح شود)! و اگر کسی از شما بیمار بود، و یا ناراحتی در سر داشت، (و ناچار بود سر خود را بتراشد،) باید فدیه و کفّارهای از قبیل روزه یا صدقه یا گوسفندی بدهد! و هنگامی که (از بیماری و دشمن) در امان بودید، هر کس با ختم عمره، حج را آغاز کند، آنچه از قربانی برای او میسّر است (ذبح کند)! و هر که نیافت، سه روز در ایام حج، و هفت روز هنگامی که باز میگردید، روزه بدارد! این، ده روز کامل است. (البته) این برای کسی است که خانواده او، نزد مسجد الحرام نباشد [= اهل مکّه و اطرافِ آن نباشد]. و از خدا بپرهیزید! و بدانید که او، سختکیفر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(197,4,344,'حج، در ماههای معینی است! و کسانی که (با بستن احرام، و شروع به مناسک حج،) حج را بر خود فرض کردهاند، (باید بدانند که) در حج، آمیزش جنسی با زنان، و گناه و جدال نیست! و آنچه از کارهای نیک انجام دهید، خدا آن را میداند. و زاد و توشه تهیه کنید، که بهترین زاد و توشه، پرهیزکاری است! و از من بپرهیزید ای خردمندان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(198,4,344,'گناهی بر شما نیست که از فضلِ پروردگارتان (و از منافع اقتصادی در ایّام حج) طلب کنید (که یکی از منافع حج، پی ریزیِ یک اقتصادِ صحیح است). و هنگامی که از «عرفات» کوچ کردید، خدا را نزد «مشعَر الحرام» یاد کنید! او را یاد کنید همانطور که شما را هدایت نمود و قطعاً شما پیش از این، از گمراهان بودید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(199,4,344,'سپس از همانجا که مردم کوچ میکنند، (به سوی سرزمین منی) کوچ کنید! و از خداوند، آمرزش بطلبید، که خدا آمرزنده مهربان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(200,4,344,'و هنگامی که مناسکِ (حج) ِ خود را انجام دادید، خدا را یاد کنید، همانند یادآوری از پدرانتان (آنگونه که رسم آن زمان بود) بلکه از آن هم بیشتر! (در این مراسم، مردم دو گروهند:) بعضی از مردم میگویند: «خداوندا! به ما در دنیا، (*نیکی*) عطا کن!» ولی در آخرت، بهرهای ندارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(201,4,344,'و بعضی میگویند: «پروردگارا! به ما در دنیا (*نیکی*) عطا کن! و در آخرت نیز (*نیکی*) مرحمت فرما! و ما را از عذابِ آتش نگاه دار!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(202,4,344,'آنها از کار (و دعای) خود، نصیب و بهرهای دارند؛ و خداوند، سریع الحساب است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(203,4,344,'و خدا را در روزهای معیّنی یاد کنید! (روزهای 11 و 12 و 13 ماه ذی حجه). و هر کس شتاب کند، (و ذکر خدا را) در دو روز انجام دهد، گناهی بر او نیست، و هر که تأخیر کند، (و سه روز انجام دهد نیز) گناهی بر او نیست؛ برای کسی که تقوا پیشه کند. و از خدا بپرهیزید! و بدانید شما به سوی او محشور خواهید شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(204,4,344,'و از مردم، کسانی هستند که گفتار آنان، در زندگی دنیا مایه اعجاب تو میشود؛ (در ظاهر، اظهار محبّت شدید میکنند) و خدا را بر آنچه در دل دارند گواه میگیرند. (این در حالی است که) آنان، سرسختترین دشمنانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(205,4,344,'(نشانه آن، این است که) هنگامی که روی برمیگردانند (و از نزد تو خارج میشوند)، در راه فساد در زمین، کوشش میکنند، و زراعتها و چهارپایان را نابود میسازند؛ (با اینکه میدانند) خدا فساد را دوست نمیدارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(206,4,344,'و هنگامی که به آنها گفته شود: «از خدا بترسید!» (لجاجت آنان بیشتر میشود)، و لجاجت و تعصب، آنها را به گناه میکشاند. آتش دوزخ برای آنان کافی است؛ و چه بد جایگاهی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(207,4,344,'بعضی از مردم (با ایمان و فداکار، همچون علی (ع) در «لیلة المبیت» به هنگام خفتن در جایگاه پیغمبر ص)، جان خود را به خاطر خشنودی خدا میفروشند؛ و خداوند نسبت به بندگان مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(208,4,344,'ای کسانی که ایمان آوردهاید همگی در صلح و آشتی درآیید! و از گامهای شیطان، پیروی نکنید؛ که او دشمن آشکار شماست');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(209,4,344,'و اگر بعد از این همه نشانههای روشن، که برای شما آمده است، لغزش کردید (و گمراه شدید)، بدانید (از چنگال عدالت خدا، فرار نتوانید کرد؛) که خداوند، توانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(210,4,344,'آیا (پیروان فرمان شیطان، پس از این همه نشانهها و برنامههای روشن) انتظار دارند که خداوند و فرشتگان، در سایههائی از ابرها به سوی آنان بیایند (و دلایل تازهای در اختیارشان بگذارند؟! با اینکه چنین چیزی محال است!) و همه چیز انجام شده، و همه کارها به سوی خدا بازمیگردد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(211,4,344,'از بنی اسرائیل بپرس: «چه اندازه نشانههای روشن به آنها دادیم؟» (ولی آنان، نعمتها و امکانات مادی و معنوی را که خداوند در اختیارشان گذاشته بود، در راه غلط به کار گرفتند.) و کسی که نعمت خدا را، پس از آن که به سراغش آمد، تبدیل کند (و در مسیر خلاف به کار گیرد، گرفتار عذاب شدید الهی خواهد شد) که خداوند شدید العقاب است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(212,4,344,'زندگی دنیا برای کافران زینت داده شده است، از اینرو افراد باایمان را (که گاهی دستشان تهی است)، مسخره میکنند؛ در حالی که پرهیزگاران در قیامت، بالاتر از آنان هستند؛ (چراکه ارزشهای حقیقی در آنجا آشکار میگردد، و صورت عینی به خود میگیرد؛) و خداوند، هر کس را بخواهد بدون حساب روزی میدهد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(213,4,344,'مردم (در آغاز) یک دسته بودند؛ (و تضادی در میان آنها وجود نداشت. بتدریج جوامع و طبقات پدید آمد و اختلافات و تضادهایی در میان آنها پیدا شد، در این حال) خداوند، پیامبران را برانگیخت؛ تا مردم را بشارت و بیم دهند و کتاب آسمانی، که به سوی حق دعوت میکرد، با آنها نازل نمود؛ تا در میان مردم، در آنچه اختلاف داشتند، داوری کند. (افراد باایمان، در آن اختلاف نکردند؛) تنها (گروهی از) کسانی که کتاب را دریافت داشته بودند، و نشانههای روشن به آنها رسیده بود، به خاطر انحراف از حق و ستمگری، در آن اختلاف کردند. خداوند، آنهایی را که ایمان آورده بودند، به حقیقت آنچه مورد اختلاف بود، به فرمان خودش، رهبری نمود. (امّا افراد بیایمان، همچنان در گمراهی و اختلاف، باقی ماندند.) و خدا، هر کس را بخواهد، به راه راست هدایت میکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(214,4,344,'آیا گمان کردید داخل بهشت میشوید، بیآنکه حوادثی همچون حوادث گذشتگان به شما برسد؟! همانان که گرفتاریها و ناراحتیها به آنها رسید، و آن چنان ناراحت شدند که پیامبر و افرادی که ایمان آورده بودند گفتند: «پس یاری خدا کی خواهد آمد؟!» (در این هنگام، تقاضای یاری از او کردند، و به آنها گفته شد:) آگاه باشید، یاریِ خدا نزدیک است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(215,4,344,'از تو سؤال میکنند چه چیز انفاق کنند؟ بگو: «هر خیر و نیکی (و سرمایه سودمند مادی و معنوی) که انفاق میکنید، باید برای پدر و مادر و نزدیکان و یتیمان و مستمندان و درماندگان در راه باشد.» و هر کار خیری که انجام دهید، خداوند از آن آگاه است. (لازم نیست تظاهر کنید، او میداند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(216,4,344,'جهاد در راه خدا، بر شما مقرّر شد؛ در حالی که برایتان ناخوشایند است. چه بسا چیزی را خوش نداشته باشید، حال آن که خیرِ شما در آن است. و یا چیزی را دوست داشته باشید، حال آنکه شرِّ شما در آن است. و خدا میداند، و شما نمیدانید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(217,4,344,'از تو، در باره جنگ کردن در ماه حرام، سؤال میکنند؛ بگو: «جنگ در آن، (گناهی) بزرگ است؛ ولی جلوگیری از راه خدا (و گرایش مردم به آیین حق) و کفر ورزیدن نسبت به او و هتک احترام مسجد الحرام، و اخراج ساکنان آن، نزد خداوند مهمتر از آن است؛ و ایجاد فتنه، (و محیط نامساعد، که مردم را به کفر، تشویق و از ایمان بازمیدارد) حتّی از قتل بالاتر است. و مشرکان، پیوسته با شما میجنگند، تا اگر بتوانند شما را از آیینتان برگردانند؛ ولی کسی که از آیینش برگردد، و در حال کفر بمیرد، تمام اعمال نیک (گذشته) او، در دنیا و آخرت، برباد میرود؛ و آنان اهل دوزخند؛ و همیشه در آن خواهند بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(218,4,344,'کسانی که ایمان آورده و کسانی که هجرت کرده و در راه خدا جهاد نمودهاند، آنها امید به رحمت پروردگار دارند و خداوند آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(219,4,344,'در باره شراب و قمار از تو سؤال میکنند، بگو: «در آنها گناه و زیان بزرگی است؛ و منافعی (از نظر مادی) برای مردم در بردارد؛ (ولی) گناه آنها از نفعشان بیشتر است. و از تو میپرسند چه چیز انفاق کنند؟ بگو: از مازاد نیازمندی خود.» اینچنین خداوند آیات را برای شما روشن میسازد، شاید اندیشه کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(220,4,344,'(تا اندیشه کنید) درباره دنیا و آخرت! و از تو در باره یتیمان سؤال میکنند، بگو: «اصلاح کار آنان بهتر است. و اگر زندگی خود را با زندگی آنان بیامیزید، (مانعی ندارد؛) آنها برادر (دینی) شما هستند.» (و همچون یک برادر با آنها رفتار کنید!) خداوند، مفسدان را از مصلحان، بازمیشناسد. و اگر خدا بخواهد، شما را به زحمت میاندازد؛ (و دستور میدهد در عین سرپرستی یتیمان، زندگی و اموال آنها را بکلی از اموال خود، جدا سازید؛ ولی خداوند چنین نمیکند؛) زیرا او توانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(221,4,344,'و با زنان مشرک و بتپرست، تا ایمان نیاوردهاند، ازدواج نکنید! (اگر چه جز به ازدواج با کنیزان، دسترسی نداشته باشید؛ زیرا) کنیز باایمان، از زن آزاد بتپرست، بهتر است؛ هر چند (زیبایی، یا ثروت، یا موقعیت او) شما را به شگفتی آورد. و زنان خود را به ازدواج مردان بتپرست، تا ایمان نیاوردهاند، در نیاورید! (اگر چه ناچار شوید آنها را به همسری غلامان باایمان درآورید؛ زیرا) یک غلام باایمان، از یک مرد آزاد بتپرست، بهتر است؛ هر چند (مال و موقعیت و زیبایی او،) شما را به شگفتی آورد. آنها دعوت به سوی آتش میکنند؛ و خدا دعوت به بهشت و آمرزش به فرمان خود مینماید، و آیات خویش را برای مردم روشن میسازد؛ شاید متذکر شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(222,4,344,'و از تو، در باره خون حیض سؤال میکنند، بگو: «چیز زیانبار و آلودهای است؛ از اینرو در حالت قاعدگی، از آنان کنارهگیری کنید! و با آنها نزدیکی ننماید، تا پاک شوند! و هنگامی که پاک شدند، از طریقی که خدا به شما فرمان داده، با آنها آمیزش کنید! خداوند، توبهکنندگان را دوست دارد، و پاکان را (نیز) دوست دارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(223,4,344,'زنان شما، محل بذرافشانی شما هستند؛ پس هر زمان که بخواهید، میتوانید با آنها آمیزش کنید. و (سعی نمائید از این فرصت بهره گرفته، با پرورش فرزندان صالح) اثر نیکی برای خود، از پیش بفرستید! و از خدا بپرهیزید و بدانید او را ملاقات خواهید کرد و به مؤمنان، بشارت ده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(224,4,344,'خدا را در معرض سوگندهای خود قرار ندهید! و برای اینکه نیکی کنید، و تقوا پیشه سازید، و در میان مردم اصلاح کنید (سوگند یاد ننمایید)! و خداوند شنوا و داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(225,4,344,'خداوند شما را به خاطر سوگندهایی که بدون توجه یاد میکنید، مؤاخذه نخواهد کرد، اما به آنچه دلهای شما کسب کرده، (و سوگندهایی که از روی اراده و اختیار، یاد میکنید،) مؤاخذه میکند. و خداوند، آمرزنده و بردبار است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(226,4,344,'کسانی که زنان خود را «ایلاء» مینمایند [= سوگند یاد میکنند که با آنها، آمیزشجنسی ننمایند،] حق دارند چهار ماه انتظار بکشند. (و در ضمن این چهار ماه، وضع خود را با همسر خویش، از نظر ادامه زندگی یا طلاق، روشن سازند.) اگر (در این فرصت،) بازگشت کنند، (چیزی بر آنها نیست؛ زیرا) خداوند، آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(227,4,344,'و اگر تصمیم به جدایی گرفتند، (آن هم با شرایطش مانعی ندارد؛) خداوند شنوا و داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(228,4,344,'زنان مطلقه، باید به مدت سه مرتبه عادت ماهانه دیدن (و پاک شدن) انتظار بکشند! [= عده نگه دارند] و اگر به خدا و روز رستاخیز، ایمان دارند، برای آنها حلال نیست که آنچه را خدا در رحمهایشان آفریده، کتمان کنند. و همسرانشان، برای بازگرداندن آنها (و از سرگرفتن زندگی زناشویی) در این مدت، (از دیگران) سزاوارترند؛ در صورتی که (براستی) خواهان اصلاح باشند. و برای آنان، همانند وظایفی که بر دوش آنهاست، حقوق شایستهای قرار داده شده؛ و مردان بر آنان برتری دارند؛ و خداوند توانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(229,4,344,'طلاق، (طلاقی که رجوع و بازگشت دارد،) دو مرتبه است؛ (و در هر مرتبه،) باید به طور شایسته همسر خود را نگاهداری کند (و آشتی نماید)، یا با نیکی او را رها سازد (و از او جدا شود). و برای شما حلال نیست که چیزی از آنچه به آنها دادهاید، پس بگیرید؛ مگر اینکه دو همسر، بترسند که حدود الهی را برپا ندارند. اگر بترسید که حدود الهی را رعایت نکنند، مانعی برای آنها نیست که زن، فدیه و عوضی بپردازد (و طلاق بگیرد). اینها حدود و مرزهای الهی است؛ از آن، تجاوز نکنید! و هر کس از آن تجاوز کند، ستمگر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(230,4,344,'اگر (بعد از دو طلاق و رجوع، بار دیگر) او را طلاق داد، از آن به بعد، زن بر او حلال نخواهد بود؛ مگر اینکه همسر دیگری انتخاب کند (و با او، آمیزشجنسی نماید. در این صورت،) اگر (همسر دوم) او را طلاق گفت، گناهی ندارد که بازگشت کنند؛ (و با همسر اول، دوباره ازدواج نماید؛) در صورتی که امید داشته باشند که حدود الهی را محترم میشمرند. اینها حدود الهی است که (خدا) آن را برای گروهی که آگاهند، بیان مینماید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(231,4,344,'و هنگامی که زنان را طلاق دادید، و به آخرین روزهای «عدّه» رسیدند، یا به طرز صحیحی آنها را نگاه دارید (و آشتی کنید)، و یا به طرز پسندیدهای آنها را رها سازید! و هیچگاه به خاطر زیان رساندن و تعدّی کردن، آنها را نگاه ندارید! و کسی که چنین کند، به خویشتن ستم کرده است. (و با این اعمال، و سوء استفاده از قوانین الهی،) آیات خدا را به استهزا نگیرید! و به یاد بیاورید نعمت خدا را بر خود، و کتاب آسمانی و علم و دانشی که بر شما نازل کرده، و شما را با آن، پند میدهد! و از خدا بپرهیزید! و بدانید خداوند از هر چیزی آگاه است (و از نیات کسانی که از قوانین او، سوء استفاده میکنند، با خبر است)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(232,4,344,'و هنگامی که زنان را طلاق دادید و عدّه خود را به پایان رساندند، مانع آنها نشوید که با همسران (سابق) خویش، ازدواج کنند! اگر در میان آنان، به طرز پسندیدهای تراضی برقرار گردد. این دستوری است که تنها افرادی از شما، که ایمان به خدا و روز قیامت دارند، از آن، پند میگیرند (و به آن، عمل میکنند). این (دستور)، برای رشد (خانوادههای) شما مؤثرتر، و برای شستن آلودگیها مفیدتر است؛ و خدا میداند و شما نمیدانید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(233,4,344,'مادران، فرزندان خود را دو سال تمام، شیر میدهند. (این) برای کسی است که بخواهد دوران شیرخوارگی را تکمیل کند. و بر آن کس که فرزند برای او متولّد شده [= پدر]، لازم است خوراک و پوشاک مادر را به طور شایسته (در مدت شیر دادن بپردازد؛ حتی اگر طلاق گرفته باشد.) هیچ کس موظّف به بیش از مقدار توانایی خود نیست! نه مادر (به خاطر اختلاف با پدر) حق ضرر زدن به کودک را دارد، و نه پدر. و بر وارث او نیز لازم است این کار را انجام دهد [= هزینه مادر را در دوران شیرخوارگی تأمین نماید]. و اگر آن دو، با رضایت یکدیگر و مشورت، بخواهند کودک را (زودتر) از شیر بازگیرند، گناهی بر آنها نیست. و اگر (با عدم توانایی، یا عدم موافقت مادر) خواستید دایهای برای فرزندان خود بگیرید، گناهی بر شما نیست؛ به شرط اینکه حق گذشته مادر را به طور شایسته بپردازید. و از (مخالفت فرمان) خدا بپرهیزید! و بدانید خدا، به آنچه انجام میدهید، بیناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(234,4,344,'و کسانی که از شما میمیرند و همسرانی باقی میگذارند، باید چهار ماه و ده روز، انتظار بکشند (و عدّه نگه دارند)! و هنگامی که به آخر مدتشان رسیدند، گناهی بر شما نیست که هر چه میخواهند، در باره خودشان به طور شایسته انجام دهند (و با مرد دلخواه خود، ازدواج کنند). و خدا به آنچه عمل میکنید، آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(235,4,344,'و گناهی بر شما نیست که به طور کنایه، (از زنانی که همسرانشان مردهاند) خواستگاری کنید، و یا در دل تصمیم بر این کار بگیرید (بدون اینکه آن را اظهار کنید). خداوند میدانست شما به یاد آنها خواهید افتاد؛ (و با خواسته طبیعی شما به شکل معقول، مخالف نیست؛) ولی پنهانی با آنها قرار زناشویی نگذارید، مگر اینکه به طرز پسندیدهای (به طور کنایه) اظهار کنید! (ولی در هر حال،) اقدام به ازدواج ننمایید، تا عدّه آنها سرآید! و بدانید خداوند آنچه را در دل دارید، میداند! از مخالفت او بپرهیزید! و بدانید خداوند، آمرزنده و بردبار است (و در مجازات بندگان، عجله نمیکند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(236,4,344,'اگر زنان را قبل از آمیزشجنسی یا تعیین مهر، (به عللی) طلاق دهید، گناهی بر شما نیست. (و در این موقع،) آنها را (با هدیهای مناسب،) بهرهمند سازید! آن کس که توانایی دارد، به اندازه تواناییش، و آن کس که تنگدست است، به اندازه خودش، هدیهای شایسته (که مناسب حال دهنده و گیرنده باشد) بدهد! و این بر نیکوکاران، الزامی است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(237,4,344,'و اگر آنان را، پیش از آن که با آنها تماس بگیرید و (آمیزشجنسی کنید) طلاق دهید، در حالی که مهری برای آنها تعیین کردهاید، (لازم است) نصف آنچه را تعیین کردهاید (به آنها بدهید) مگر اینکه آنها (حق خود را) ببخشند؛ یا (در صورتی که صغیر و سفیه باشند، ولیّ آنها، یعنی) آن کس که گره ازدواج به دست اوست، آن را ببخشد. و گذشت کردن شما (و بخشیدن تمام مهر به آنها) به پرهیزکاری نزدیکتر است، و گذشت و نیکوکاری را در میان خود فراموش نکنید، که خداوند به آنچه انجام میدهید، بیناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(238,4,344,'در انجام همه نمازها، (به خصوص) نماز وسطی [= نماز ظهر] کوشا باشید! و از روی خضوع و اطاعت، برای خدا بپاخیزید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(239,4,344,'و اگر (به خاطر جنگ، یا خطر دیگری) بترسید، (نماز را) در حال پیاده یا سواره انجام دهید! اما هنگامی که امنیت خود را بازیافتید، خدا را یاد کنید! [= نماز را به صورت معمولی بخوانید!] همانگونه که خداوند، چیزهایی را که نمیدانستید، به شما تعلیم داد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(240,4,344,'و کسانی که از شما در آستانه مرگ قرارمیگیرند و همسرانی از خود بهجا میگذارند، باید برای همسران خود وصیت کنند که تا یک سال، آنها را (با پرداختن هزینه زندگی) بهرهمند سازند؛ به شرط اینکه آنها (از خانه شوهر) بیرون نروند (و اقدام به ازدواج مجدد نکنند). و اگر بیرون روند، (حقی در هزینه ندارند؛ ولی) گناهی بر شما نیست نسبت به آنچه در باره خود، به طور شایسته انجام میدهند. و خداوند، توانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(241,4,344,'و برای زنان مطلقه، هدیه مناسبی لازم است (که از طرف شوهر، پرداخت گردد). این، حقی است بر مردان پرهیزکار.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(242,4,344,'این چنین، خداوند آیات خود را برای شما شرح میدهد؛ شاید اندیشه کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(243,4,344,'آیا ندیدی جمعیتی را که از ترس مرگ، از خانههای خود فرار کردند؟ و آنان، هزارها نفر بودند (که به بهانه بیماری طاعون، از شرکت در میدان جهاد خودداری نمودند). خداوند به آنها گفت: بمیرید! (و به همان بیماری، که آن را بهانه قرار داده بودند، مردند.) سپس خدا آنها را زنده کرد؛ (و ماجرای زندگی آنها را درس عبرتی برای آیندگان قرار داد.) خداوند نسبت به بندگان خود احسان میکند؛ ولی بیشتر مردم، شکر (او را) بجا نمیآورند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(244,4,344,'و در راه خدا، پیکار کنید! و بدانید خداوند، شنوا و داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(245,4,344,'کیست که به خدا «قرض الحسنهای» دهد، (و از اموالی که خدا به او بخشیده، انفاق کند،) تا آن را برای او، چندین برابر کند؟ و خداوند است (که روزی بندگان را) محدود یا گسترده میسازد؛ (و انفاق، هرگز باعث کمبود روزی آنها نمیشود). و به سوی او باز میگردید (و پاداش خود را خواهید گرفت).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(246,4,344,'آیا مشاهده نکردی جمعی از بنی اسرائیل را بعد از موسی، که به پیامبر خود گفتند: «زمامدار (و فرماندهی) برای ما انتخاب کن! تا (زیر فرمان او) در راه خدا پیکار کنیم. پیامبر آنها گفت: «شاید اگر دستور پیکار به شما داده شود، (سرپیچی کنید، و) در راه خدا، جهاد و پیکار نکنید!» گفتند: «چگونه ممکن است در راه خدا پیکار نکنیم، در حالی که از خانهها و فرزندانمان رانده شدهایم، (و شهرهای ما به وسیله دشمن اشغال، و فرزندان ما اسیر شدهاند)؟!» اما هنگامی که دستور پیکار به آنها داده شد، جز عدّه کمی از آنان، همه سرپیچی کردند. و خداوند از ستمکاران، آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(247,4,344,'و پیامبرشان به آنها گفت: «خداوند (*طالوت*) را برای زمامداری شما مبعوث (و انتخاب) کرده است.» گفتند: «چگونه او بر ما حکومت کند، با اینکه ما از او شایستهتریم، و او ثروت زیادی ندارد؟!» گفت: «خدا او را بر شما برگزیده، و او را در علم و (قدرت) جسم، وسعت بخشیده است. خداوند، ملکش را به هر کس بخواهد، میبخشد؛ و احسان خداوند، وسیع است؛ و (از لیاقت افراد برای منصبها) آگاه است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(248,4,344,'و پیامبرشان به آنها گفت: «نشانه حکومت او، این است که (*صندوق عهد*) به سوی شما خواهد آمد. (همان صندوقی که) در آن، آرامشی از پروردگار شما، و یادگارهای خاندان موسی و هارون قرار دارد؛ در حالی که فرشتگان، آن را حمل میکنند. در این موضوع، نشانهای (روشن) برای شماست؛ اگر ایمان داشته باشید.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(249,4,344,'و هنگامی که طالوت (به فرماندهی لشکر بنی اسرائیل منصوب شد، و) سپاهیان را با خود بیرون برد، به آنها گفت: «خداوند، شما را به وسیله یک نهر آب، آزمایش میکند؛ آنها (که به هنگام تشنگی،) از آن بنوشند، از من نیستند؛ و آنها که جز یک پیمانه با دست خود، بیشتر از آن نخورند، از من هستند» جز عده کمی، همگی از آن آب نوشیدند. سپس هنگامی که او، و افرادی که با او ایمان آورده بودند، (و از بوته آزمایش، سالم بهدر آمدند،) از آن نهر گذشتند، (از کمی نفرات خود، ناراحت شدند؛ و عدهای) گفتند: «امروز، ما توانایی مقابله با (*جالوت*) و سپاهیان او را نداریم.» اما آنها که میدانستند خدا را ملاقات خواهند کرد (و به روز رستاخیز، ایمان داشتند) گفتند: «چه بسیار گروههای کوچکی که به فرمان خدا، بر گروههای عظیمی پیروز شدند!» و خداوند، با صابران و استقامتکنندگان) است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(250,4,344,'و هنگامی که در برابر (*جالوت*) و سپاهیان او قرارگرفتند گفتند: «پروردگارا! پیمانه شکیبایی و استقامت را بر ما بریز! و قدمهای ما را ثابت بدار! و ما را بر جمعیّت کافران، پیروز بگردان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(251,4,344,'[152] سپس به فرمان خدا، آنها سپاه دشمن را به هزیمت واداشتند. و «داوود» (نوجوان نیرومند و شجاعی که در لشکر «طالوت» بود)، «جالوت» را کشت؛ و خداوند، حکومت و دانش را به او بخشید؛ و از آنچه میخواست به او تعلیم داد. و اگر خداوند، بعضی از مردم را به وسیله بعضی دیگر دفع نمیکرد، زمین را فساد فرامیگرفت، ولی خداوند نسبت به جهانیان، لطف و احسان دارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(252,4,344,'اینها، آیات خداست که به حق، بر تو میخوانیم؛ و تو از رسولان (ما) هستی.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(253,4,344,'بعضی از آن رسولان را بر بعضی دیگر برتری دادیم؛ برخی از آنها، خدا با او سخن میگفت؛ و بعضی را درجاتی برتر داد؛ و به عیسی بن مریم، نشانههای روشن دادیم؛ و او را با «روح القدس» تأیید نمودیم؛ (ولی فضیلت و مقام آن پیامبران، مانع اختلاف امتها نشد.) و اگر خدا میخواست، کسانی که بعد از آنها بودند، پس از آن همه نشانههای روشن که برای آنها آمد، جنگ و ستیز نمیکردند؛ (اما خدا مردم را مجبور نساخته؛ و آنها را در پیمودن راه سعادت، آزاد گذارده است؛) ولی این امتها بودند که با هم اختلاف کردند؛ بعضی ایمان آوردند و بعضی کافر شدند؛ (و جنگ و خونریزی بروز کرد. و باز) اگر خدا میخواست، با هم پیکار نمیکردند؛ ولی خداوند، آنچه را میخواهد، (از روی حکمت) انجام میدهد (و هیچکس را به قبول چیزی مجبور نمیکند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(254,4,344,'ای کسانی که ایمان آوردهاید! از آنچه به شما روزی دادهایم، انفاق کنید! پیش از آنکه روزی فرا رسد که در آن، نه خرید و فروش است (تا بتوانید سعادت و نجات از کیفر را برای خود خریداری کنید)، و نه دوستی (و رفاقتهای مادی سودی دارد)، و نه شفاعت؛ (زیرا شما شایسته شفاعت نخواهید بود.) و کافران، خود ستمگرند؛ (هم به خودشان ستم میکنند، هم به دیگران).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(255,4,344,'هیچ معبودی نیست جز خداوند یگانه زنده، که قائم به ذات خویش است، و موجودات دیگر، قائم به او هستند؛ هیچگاه خواب سبک و سنگینی او را فرانمیگیرد؛ (و لحظهای از تدبیر جهان هستی، غافل نمیماند؛) آنچه در آسمانها و آنچه در زمین است، از آن اوست؛ کیست که در نزد او، جز به فرمان او شفاعت کند؟! (بنابراین، شفاعت شفاعتکنندگان، برای آنها که شایسته شفاعتند، از مالکیت مطلقه او نمیکاهد.) آنچه را در پیش روی آنها [= بندگان] و پشت سرشان است میداند؛ (و گذشته و آینده، در پیشگاه علم او، یکسان است.) و کسی از علم او آگاه نمیگردد؛ جز به مقداری که او بخواهد. (اوست که به همه چیز آگاه است؛ و علم و دانش محدود دیگران، پرتوی از علم بیپایان و نامحدود اوست.) تخت (حکومت) او، آسمانها و زمین را دربرگرفته؛ و نگاهداری آن دو [= آسمان و زمین]، او را خسته نمیکند. بلندی مقام و عظمت، مخصوص اوست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(256,4,344,'در قبول دین، اکراهی نیست. (زیرا) راه درست از راه انحرافی، روشن شده است. بنابر این، کسی که به طاغوت [= بت و شیطان، و هر موجود طغیانگر] کافر شود و به خدا ایمان آورد، به دستگیره محکمی چنگ زده است، که گسستن برای آن نیست. و خداوند، شنوا و داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(257,4,344,'خداوند، ولی و سرپرست کسانی است که ایمان آوردهاند؛ آنها را از ظلمتها، به سوی نور بیرون میبرد. (اما) کسانی که کافر شدند، اولیای آنها طاغوتها هستند؛ که آنها را از نور، به سوی ظلمتها بیرون میبرند؛ آنها اهل آتشند و همیشه در آن خواهند ماند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(258,4,344,'آیا ندیدی (و آگاهی نداری از) کسی [= نمرود] که با ابراهیم در باره پروردگارش محاجه و گفتگو کرد؟ زیرا خداوند به او حکومت داده بود؛ (و بر اثر کمی ظرفیت، از باده غرور سرمست شده بود؛) هنگامی که ابراهیم گفت: «خدای من آن کسی است که زنده میکند و میمیراند.» او گفت: «من نیز زنده میکنم و میمیرانم!» (و برای اثبات این کار و مشتبهساختن بر مردم دستور داد دو زندانی را حاضر کردند، فرمان آزادی یکی و قتل دیگری را داد) ابراهیم گفت: «خداوند، خورشید را از افق مشرق میآورد؛ (اگر راست میگویی که حاکم بر جهان هستی تویی،) خورشید را از مغرب بیاور!» (در اینجا) آن مرد کافر، مبهوت و وامانده شد. و خداوند، قوم ستمگر را هدایت نمیکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(259,4,344,'یا همانند کسی که از کنار یک آبادی (ویران شده) عبور کرد، در حالی که دیوارهای آن، به روی سقفها فرو ریخته بود، (و اجساد و استخوانهای اهل آن، در هر سو پراکنده بود؛ او با خود) گفت: «چگونه خدا اینها را پس از مرگ، زنده میکند؟!» (در این هنگام،) خدا او را یکصد سال میراند؛ سپس زنده کرد؛ و به او گفت: «چهقدر درنگ کردی؟» گفت: «یک روز؛ یا بخشی از یک روز.» فرمود: «نه، بلکه یکصد سال درنگ کردی! نگاه کن به غذا و نوشیدنی خود (که همراه داشتی، با گذشت سالها) هیچگونه تغییر نیافته است! (خدایی که یک چنین مواد فاسدشدنی را در طول این مدت، حفظ کرده، بر همه چیز قادر است!) ولی به الاغ خود نگاه کن (که چگونه از هم متلاشی شده! این زنده شدن تو پس از مرگ، هم برای اطمینان خاطر توست، و هم) برای اینکه تو را نشانهای برای مردم (در مورد معاد) قرار دهیم. (اکنون) به استخوانها (ی مرکب سواری خود نگاه کن که چگونه آنها را برداشته، به هم پیوند میدهیم، و گوشت بر آن میپوشانیم!» هنگامی که (این حقایق) بر او آشکار شد، گفت: «میدانم خدا بر هر کاری توانا است».');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(260,4,344,'و (به خاطر بیاور) هنگامی را که ابراهیم گفت: «خدایا! به من نشان بده چگونه مردگان را زنده میکنی؟» فرمود: «مگر ایمان نیاوردهای؟!» عرض کرد: «آری، ولی میخواهم قلبم آرامش یابد.» فرمود: «در این صورت، چهار نوع از مرغان را انتخاب کن! و آنها را (پس از ذبح کردن،) قطعه قطعه کن (و در هم بیامیز)! سپس بر هر کوهی، قسمتی از آن را قرار بده، بعد آنها را بخوان، به سرعت به سوی تو میآیند! و بدان خداوند قادر و حکیم است؛ (هم از ذرات بدن مردگان آگاه است، و هم توانایی بر جمع آنها دارد)».');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(261,4,344,'کسانی که اموال خود را در راه خدا انفاق میکنند، همانند بذری هستند که هفت خوشه برویاند؛ که در هر خوشه، یکصد دانه باشد؛ و خداوند آن را برای هر کس بخواهد (و شایستگی داشته باشد)، دو یا چند برابر میکند؛ و خدا (از نظر قدرت و رحمت،) وسیع، و (به همه چیز) داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(262,4,344,'کسانی که اموال خود را در راه خدا انفاق میکنند، سپس به دنبال انفاقی که کردهاند، منت نمیگذارند و آزاری نمیرسانند، پاداش آنها نزد پروردگارشان (محفوظ) است؛ و نه ترسی دارند، و نه غمگین میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(263,4,344,'گفتار پسندیده (در برابر نیازمندان)، و عفو (و گذشت از خشونتهای آنها)، از بخششی که آزاری به دنبال آن باشد، بهتر است؛ و خداوند، بینیاز و بردبار است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(264,4,344,'ای کسانی که ایمان آوردهاید! بخششهای خود را با منت و آزار، باطل نسازید! همانند کسی که مال خود را برای نشان دادن به مردم، انفاق میکند؛ و به خدا و روز رستاخیز، ایمان نمیآورد؛ (کار او) همچون قطعه سنگی است که بر آن، (قشر نازکی از) خاک باشد؛ (و بذرهایی در آن افشانده شود؛) و رگبار باران به آن برسد، (و همه خاکها و بذرها را بشوید،) و آن را صاف (و خالی از خاک و بذر) رها کند. آنها از کاری که انجام دادهاند، چیزی به دست نمیآورند؛ و خداوند، جمعیت کافران را هدایت نمیکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(265,4,344,'و (کار) کسانی که اموال خود را برای خشنودی خدا، و تثبیت (ملکات انسانی در) روح خود، انفاق میکنند، همچون باغی است که در نقطه بلندی باشد، و بارانهای درشت به آن برسد، (و از هوای آزاد و نور آفتاب، به حد کافی بهره گیرد،) و میوه خود را دو چندان دهد (که همیشه شاداب و با طراوت است.) و خداوند به آنچه انجام میدهید، بیناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(266,4,344,'آیا کسی از شما دوست دارد که باغی از درختان خرما و انگور داشته باشد که از زیر درختان آن، نهرها بگذرد، و برای او در آن (باغ)، از هر گونه میوهای وجود داشته باشد، در حالی که به سن پیری رسیده و فرزندانی (کوچک و) ضعیف دارد؛ (در این هنگام،) گردبادی (کوبنده)، که در آن آتش (سوزانی) است، به آن برخورد کند و شعلهور گردد و بسوزد؟! (همینطور است حال کسانی که انفاقهای خود را، با ریا و منت و آزار، باطل میکنند.) این چنین خداوند آیات خود را برای شما آشکار میسازد؛ شاید بیندیشید (و با اندیشه، راه حق را بیابید)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(267,4,344,'ای کسانی که ایمان آوردهاید! از قسمتهای پاکیزه اموالی که (از طریق تجارت) به دست آوردهاید، و از آنچه از زمین برای شما خارج ساختهایم (از منابع و معادن و درختان و گیاهان)، انفاق کنید! و برای انفاق، به سراغ قسمتهای ناپاک نروید در حالی که خود شما، (به هنگام پذیرش اموال،) حاضر نیستید آنها را بپذیرید؛ مگر از روی اغماض و کراهت! و بدانید خداوند، بینیاز و شایسته ستایش است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(268,4,344,'شیطان، شما را (به هنگام انفاق،) وعده فقر و تهیدستی میدهد؛ و به فحشا (و زشتیها) امر میکند؛ ولی خداوند وعده «آمرزش» و «فزونی» به شما میدهد؛ و خداوند، قدرتش وسیع، و (به هر چیز) داناست. (به همین دلیل، به وعدههای خود، وفا میکند.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(269,4,344,'(خدا) دانش و حکمت را به هر کس بخواهد (و شایسته بداند) میدهد؛ و به هر کس دانش داده شود، خیر فراوانی داده شده است. و جز خردمندان، (این حقایق را درک نمیکنند، و) متذکر نمیگردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(270,4,344,'و هر چیز را که انفاق میکنید، یا (اموالی را که) نذر کردهاید (در راه خدا انفاق کنید)، خداوند آنها را میداند. و ستمگران یاوری ندارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(271,4,344,'اگر انفاقها را آشکار کنید، خوب است! و اگر آنها را مخفی ساخته و به نیازمندان بدهید، برای شما بهتر است! و قسمتی از گناهان شما را میپوشاند؛ (و در پرتو بخشش در راه خدا، بخشوده خواهید شد.) و خداوند به آنچه انجام میدهید، آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(272,4,344,'هدایت آنها (بهطور اجبار،) بر تو نیست؛ (بنابر این، ترک انفاق به غیر مسلمانان، برای اجبار به اسلام، صحیح نیست؛) ولی خداوند، هر که را بخواهد (و شایسته بداند)، هدایت میکند. و آنچه را از خوبیها و اموال انفاق میکنید، برای خودتان است؛ (ولی) جز برای رضای خدا، انفاق نکنید! و آنچه از خوبیها انفاق میکنید، (پاداش آن) به طور کامل به شما داده میشود؛ و به شما ستم نخواهد شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(273,4,344,'(انفاقِ شما، مخصوصاً باید) برای نیازمندانی باشد که در راه خدا، در تنگنا قرار گرفتهاند؛ (و توجّه به آیین خدا، آنها را از وطنهای خویش آواره ساخته؛ و شرکت در میدانِ جهاد، به آنها اجازه نمیدهد تا برای تأمین هزینه زندگی، دست به کسب و تجارتی بزنند؛) نمیتوانند مسافرتی کنند (و سرمایهای به دست آورند؛) و از شدّت خویشتنداری، افراد ناآگاه آنها را بینیاز میپندارند؛ امّا آنها را از چهرههایشان میشناسی؛ و هرگز با اصرار چیزی از مردم نمیخواهند. (این است مشخّصات آنها!) و هر چیز خوبی در راه خدا انفاق کنید، خداوند از آن آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(274,4,344,'آنها که اموال خود را، شب و روز، پنهان و آشکار، انفاق میکنند، مزدشان نزد پروردگارشان است؛ نه ترسی بر آنهاست، و نه غمگین میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(275,4,344,'کسانی که ربا میخورند، (در قیامت) برنمیخیزند مگر مانند کسی که بر اثر تماسّ شیطان، دیوانه شده (و نمیتواند تعادل خود را حفظ کند؛ گاهی زمین میخورد، گاهی بپا میخیزد). این، به خاطر آن است که گفتند: «داد و ستد هم مانند ربا است (و تفاوتی میان آن دو نیست.)» در حالی که خدا بیع را حلال کرده، و ربا را حرام! (زیرا فرق میان این دو، بسیار است.) و اگر کسی اندرز الهی به او رسد، و (از رباخواری) خودداری کند، سودهایی که در سابق [= قبل از نزول حکم تحریم] به دست آورده، مال اوست؛ (و این حکم، گذشته را شامل نمیگردد؛) و کار او به خدا واگذار میشود؛ (و گذشته او را خواهد بخشید.) امّا کسانی که بازگردند (و بار دیگر مرتکب این گناه شوند)، اهل آتشند؛ و همیشه در آن میمانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(276,4,344,'خداوند، ربا را نابود میکند؛ و صدقات را افزایش میدهد! و خداوند، هیچ انسانِ ناسپاسِ گنهکاری را دوست نمیدارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(277,4,344,'کسانی که ایمان آوردند و اعمال صالح انجام دادند و نماز را برپا داشتند و زکات را پرداختند، اجرشان نزد پروردگارشان است؛ و نه ترسی بر آنهاست، و نه غمگین میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(278,4,344,'ای کسانی که ایمان آوردهاید! از (مخالفت فرمان) خدا بپرهیزید، و آنچه از (مطالبات) ربا باقی مانده، رها کنید؛ اگر ایمان دارید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(279,4,344,'اگر (چنین) نمیکنید، بدانید خدا و رسولش، با شما پیکار خواهند کرد! و اگر توبه کنید، سرمایههای شما، از آنِ شماست [= اصل سرمایه، بدون سود]؛ نه ستم میکنید، و نه بر شما ستم وارد میشود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(280,4,344,'و اگر (بدهکار،) قدرت پرداخت نداشته باشد، او را تا هنگام توانایی، مهلت دهید! (و در صورتی که براستی قدرت پرداخت را ندارد،) برای خدا به او ببخشید بهتر است؛ اگر (منافع این کار را) بدانید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(281,4,344,'و از روزی بپرهیزید (و بترسید) که در آن روز، شما را به سوی خدا بازمیگردانند؛ سپس به هر کس، آنچه انجام داده، به طور کامل باز پس داده میشود، و به آنها ستم نخواهد شد. (چون هر چه میبینند، نتایج اعمال خودشان است.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(282,4,344,'ای کسانی که ایمان آوردهاید! هنگامی که بدهی مدّتداری (به خاطر وام یا داد و ستد) به یکدیگر پیدا کنید، آن را بنویسید! و باید نویسندهای از روی عدالت، (سند را) در میان شما بنویسد! و کسی که قدرت بر نویسندگی دارد، نباید از نوشتن -همان طور که خدا به او تعلیم داده- خودداری کند! پس باید بنویسد، و آن کس که حق بر عهده اوست، باید املا کند، و از خدا که پروردگار اوست بپرهیزد، و چیزی را فروگذار ننماید! و اگر کسی که حق بر ذمه اوست، سفیه (یا از نظر عقل) ضعیف (و مجنون) است، یا (به خاطر لال بودن،) توانایی بر املاکردن ندارد، باید ولیّ او (به جای او،) با رعایت عدالت، املا کند! و دو نفر از مردان (عادل) خود را (بر این حقّ) شاهد بگیرید! و اگر دو مرد نبودند، یک مرد و دو زن، از کسانی که مورد رضایت و اطمینان شما هستند، انتخاب کنید! (و این دو زن، باید با هم شاهد قرار گیرند،) تا اگر یکی انحرافی یافت، دیگری به او یادآوری کند. و شهود نباید به هنگامی که آنها را (برای شهادت) دعوت میکنند، خودداری نمایند! و از نوشتن (بدهیِ خود،) چه کوچک باشد یا بزرگ، ملول نشوید (هر چه باشد بنویسید)! این، در نزد خدا به عدالت نزدیکتر، و برای شهادت مستقیم تر، و برای جلوگیری از تردید و شک (و نزاع و گفتگو) بهتر میباشد؛ مگر اینکه داد و ستد نقدی باشد که بین خود، دست به دست میکنید. در این صورت، گناهی بر شما نیست که آن را ننویسید. ولی هنگامی که خرید و فروش (نقدی) میکنید، شاهد بگیرید! و نباید به نویسنده و شاهد، (به خاطر حقگویی،) زیانی برسد (و تحت فشار قرار گیرند)! و اگر چنین کنید، از فرمان پروردگار خارج شدهاید. از خدا بپرهیزید! و خداوند به شما تعلیم میدهد؛ خداوند به همه چیز داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(283,4,344,'و اگر در سفر بودید، و نویسندهای نیافتید، گروگان بگیرید! (گروگانی که در اختیار طلبکار قرار گیرد.) و اگر به یکدیگر اطمینان (کامل) داشته باشید، (گروگان لازم نیست، و) باید کسی که امین شمرده شده (و بدون گروگان، چیزی از دیگری گرفته)، امانت (و بدهی خود را بموقع) بپردازد؛ و از خدایی که پروردگار اوست. بپرهیزد! و شهادت را کتمان نکنید! و هر کس آن را کتمان کند، قلبش گناهکار است. و خداوند، به آنچه انجام میدهید، داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(284,4,344,'آنچه در آسمانها و زمین است، از آنِ خداست. و (از این رو) اگر آنچه را در دل دارید، آشکار سازید یا پنهان، خداوند شما را بر طبق آن، محاسبه میکند. سپس هر کس را بخواهد (و شایستگی داشته باشد)، میبخشد؛ و هر کس را بخواهد (و مستحق باشد)، مجازات میکند. و خداوند به همه چیز قدرت دارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(285,4,344,'پیامبر، به آنچه از سوی پروردگارش بر او نازل شده، ایمان آورده است. (و او، به تمام سخنان خود، کاملاً مؤمن میباشد.) و همه مؤمنان (نیز)، به خدا و فرشتگان او و کتابها و فرستادگانش، ایمان آوردهاند؛ (و میگویند:) ما در میان هیچ یک از پیامبران او، فرق نمیگذاریم (و به همه ایمان داریم). و (مؤمنان) گفتند: «ما شنیدیم و اطاعت کردیم. پروردگارا! (انتظارِ) آمرزش تو را (داریم)؛ و بازگشت (ما) به سوی توست.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(286,4,344,'خداوند هیچ کس را، جز به اندازه تواناییش، تکلیف نمیکند. (انسان،) هر کار (نیکی) را انجام دهد، برای خود انجام داده؛ و هر کار (بدی) کند، به زیان خود کرده است. (مؤمنان میگویند:) پروردگارا! اگر ما فراموش یا خطا کردیم، ما را مؤاخذه مکن! پروردگارا! تکلیف سنگینی بر ما قرار مده، آن چنان که (به خاطر گناه و طغیان،) بر کسانی که پیش از ما بودند، قرار دادی! پروردگارا! آنچه طاقت تحمل آن را نداریم، بر ما مقرّر مدار! و آثار گناه را از ما بشوی! ما را ببخش و در رحمت خود قرار ده! تو مولا و سرپرست مایی، پس ما را بر جمعیّت کافران، پیروز گردان!');
+INSERT INTO chapters (id, number, quran_id) VALUES(345,3,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,345,'الم');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,345,'معبودی جز خداوندِ یگانه زنده و پایدار و نگهدارنده، نیست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,345,'(همان کسی که) کتاب را بحق بر تو نازل کرد، که با نشانههای کتب پیشین، منطبق است؛ و «تورات» و «انجیل» را.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,345,'پیش از آن، برای هدایت مردم فرستاد؛ و (نیز) کتابی که حق را از باطل مشخّص میسازد، نازل کرد؛ کسانی که به آیات خدا کافر شدند، کیفر شدیدی دارند؛ و خداوند (برای کیفرِ بدکاران و کافران لجوج،) توانا و صاحب انتقام است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,345,'هیچ چیز، در آسمان و زمین، بر خدا مخفی نمیماند. (بنابر این، تدبیر آنها بر او مشکل نیست.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,345,'او کسی است که شما را در رحمِ (مادران)، آنچنان که میخواهد تصویر میکند. معبودی جز خداوندِ توانا و حکیم، نیست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,345,'او کسی است که این کتاب (آسمانی) را بر تو نازل کرد، که قسمتی از آن، آیات «محکم» [= صریح و روشن] است؛ که اساس این کتاب میباشد؛ (و هر گونه پیچیدگی در آیات دیگر، با مراجعه به اینها، برطرف میگردد.) و قسمتی از آن، «متشابه» است [= آیاتی که به خاطر بالا بودن سطح مطلب و جهات دیگر، در نگاه اول، احتمالات مختلفی در آن میرود؛ ولی با توجه به آیات محکم، تفسیر آنها آشکار میگردد.] اما آنها که در قلوبشان انحراف است، به دنبال متشابهاتند، تا فتنهانگیزی کنند (و مردم را گمراه سازند)؛ و تفسیر (نادرستی) برای آن میطلبند؛ در حالی که تفسیر آنها را، جز خدا و راسخان در علم، نمیدانند. (آنها که به دنبال فهم و درکِ اسرارِ همه آیات قرآن در پرتو علم و دانش الهی) میگویند: «ما به همه آن ایمان آوردیم؛ همه از طرف پروردگارِ ماست.» و جز صاحبان عقل، متذکر نمیشوند (و این حقیقت را درک نمیکنند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,345,'(راسخانِ در علم، میگویند:) «پروردگارا! دلهایمان را، بعد از آنکه ما را هدایت کردی، (از راه حق) منحرف مگردان! و از سوی خود، رحمتی بر ما ببخش، زیرا تو بخشندهای!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,345,'پروردگارا! تو مردم را، برای روزی که تردیدی در آن نیست، جمع خواهی کرد؛ زیرا خداوند، از وعده خود، تخلّف نمیکند. (ما به تو و رحمت بیپایانت، و به وعده رستاخیز و قیامت ایمان داریم.)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,345,'ثروتها و فرزندانِ کسانی که کافر شدند، نمیتواند آنان را از (عذابِ) خداوند باز دارد؛ (و از کیفر، رهایی بخشد.) و آنان خود، آتشگیره دوزخند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,345,'(عادت آنان در انکار و تحریفِ حقایق،) همچون عادتِ آل فرعون و کسانی است که پیش از آنها بودند؛ آیات ما را تکذیب کردند، و خداوند آنها را به (کیفر) گناهانشان گرفت؛ و خداوند، شدید العقاب است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,345,'به آنها که کافر شدند بگو: «(از پیروزی موقت خود در جنگ اُحُد، شاد نباشید!) بزودی مغلوب خواهید شد؛ (و سپس در رستاخیز) به سوی جهنم، محشور خواهید شد. و چه بد جایگاهی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,345,'در دو گروهی که (در میدان جنگ بدر،) با هم رو به رو شدند، نشانه (و درس عبرتی) برای شما بود: یک گروه، در راه خدا نبرد میکرد؛ و جمع دیگری که کافر بود، (در راه شیطان و بت،) در حالی که آنها (گروه مؤمنان) را با چشم خود، دو برابر آنچه بودند، میدیدند. (و این خود عاملی برای وحشت و شکست آنها شد.) و خداوند، هر کس را بخواهد (و شایسته بداند)، با یاری خود، تأیید میکند. در این، عبرتی است برای بینایان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,345,'محبّت امور مادی، از زنان و فرزندان و اموال هنگفت از طلا و نقره و اسبهای ممتاز و چهارپایان و زراعت، در نظر مردم جلوه داده شده است؛ (تا در پرتو آن، آزمایش و تربیت شوند؛ ولی) اینها (در صورتی که هدف نهایی آدمی را تشکیل دهند،) سرمایه زندگی پست (مادی) است؛ و سرانجام نیک (و زندگیِ والا و جاویدان)، نزد خداست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,345,'بگو: «آیا شما را از چیزی آگاه کنم که از این (سرمایههای مادی)، بهتر است؟» برای کسانی که پرهیزگاری پیشه کردهاند، (و از این سرمایهها، در راه مشروع و حق و عدالت، استفاده میکنند،) در نزد پروردگارشان (در جهان دیگر)، باغهایی است که نهرها از پایِ درختانش میگذرد؛ همیشه در آن خواهند بود؛ و همسرانی پاکیزه، و خشنودی خداوند (نصیب آنهاست). و خدا به (امورِ) بندگان، بیناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,345,'همان کسانی که میگویند: «پروردگارا! ما ایمان آوردهایم؛ پس گناهان ما را بیامرز، و ما را از عذابِ آتش، نگاهدار!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,345,'آنها که (در برابر مشکلات، و در مسیر اطاعت و ترک گناه،) استقامت میورزند، راستگو هستند، (در برابر خدا) خضوع، و (در راه او) انفاق میکنند، و در سحرگاهان، استغفار مینمایند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,345,'خداوند، (با ایجادِ نظامِ واحدِ جهانِ هستی،) گواهی میدهد که معبودی جز او نیست؛ و فرشتگان و صاحبان دانش، (هر کدام به گونهای بر این مطلب،) گواهی میدهند؛ در حالی که (خداوند در تمام عالم) قیام به عدالت دارد؛ معبودی جز او نیست، که هم توانا و هم حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,345,'دین در نزد خدا، اسلام (و تسلیم بودن در برابر حق) است. و کسانی که کتاب آسمانی به آنان داده شد، اختلافی (در آن) ایجاد نکردند، مگر بعد از آگاهی و علم، آن هم به خاطر ظلم و ستم در میان خود؛ و هر کس به آیات خدا کفر ورزد، (خدا به حساب او میرسد؛ زیرا) خداوند، سریع الحساب است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,345,'اگر با تو، به گفتگو و ستیز برخیزند، (با آنها مجادله نکن! و) بگو: «من و پیروانم، در برابر خداوند (و فرمان او)، تسلیم شدهایم.» و به آنها که اهل کتاب هستند [= یهود و نصاری] و بیسوادان [= مشرکان] بگو: «آیا شما هم تسلیم شدهاید؟» اگر (در برابر فرمان و منطق حق، تسلیم شوند، هدایت مییابند؛ و اگر سرپیچی کنند، (نگران مباش! زیرا) بر تو، تنها ابلاغ (رسالت) است؛ و خدا نسبت به (اعمال و عقاید) بندگان، بیناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,345,'کسانی که نسبت به آیات خدا کفر میورزند و پیامبران را بناحق میکشند، و (نیز) مردمی را که امر به عدالت میکنند به قتل میرسانند، و به کیفر دردناک (الهی) بشارت ده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,345,'آنها کسانی هستند که اعمال (نیکشان، به خاطر این گناهان بزرگ،) در دنیا و آخرت تباه شده، و یاور و مددکار (و شفاعت کنندهای) ندارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,345,'آیا ندیدی کسانی را که بهرهای از کتاب (آسمانی) داشتند، به سوی کتاب الهی دعوت شدند تا در میان آنها داوری کند، سپس گروهی از آنان، (با علم و آگاهی،) روی میگردانند، در حالی که (از قبول حق) اعراض دارند؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,345,'این عمل آنها، به خاطر آن است که میگفتند: «آتش (دوزخ)، جز چند روزی به ما نمیرسد. (و کیفر ما، به خاطر امتیازی که بر اقوام دیگر داریم، بسیار محدود است.)» این افترا (و دروغی که به خدا بسته بودند،) آنها را در دینشان مغرور ساخت (و گرفتار انواع گناهان شدند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,345,'پس چه گونه خواهند بود هنگامی که آنها را برای روزی که شکّی در آن نیست [= روز رستاخیز] جمع کنیم، و به هر کس، آنچه (از اعمال برای خود) فراهم کرده، بطور کامل داده شود؟ و به آنها ستم نخواهد شد (زیرا محصول اعمال خود را میچینند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,345,'بگو: «بارالها! مالک حکومتها تویی؛ به هر کس بخواهی، حکومت میبخشی؛ و از هر کس بخواهی، حکومت را میگیری؛ هر کس را بخواهی، عزت میدهی؛ و هر که را بخواهی خوار میکنی. تمام خوبیها به دست توست؛ تو بر هر چیزی قادری.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,345,'شب را در روز داخل میکنی، و روز را در شب؛ و زنده را از مرده بیرون میآوری، و مرده را زنده؛ و به هر کس بخواهی، بدون حساب، روزی میبخشی.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,345,'افراد باایمان نباید به جای مؤمنان، کافران را دوست و سرپرست خود انتخاب کنند؛ و هر کس چنین کند، هیچ رابطهای با خدا ندارد (و پیوند او بکلّی از خدا گسسته میشود)؛ مگر اینکه از آنها بپرهیزید (و به خاطر هدفهای مهمتری تقیّه کنید). خداوند شما را از (نافرمانی) خود، برحذر میدارد؛ و بازگشت (شما) به سوی خداست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,345,'بگو: «اگر آنچه را در سینههای شماست، پنهان دارید یا آشکار کنید، خداوند آن را میداند؛ و (نیز) از آنچه در آسمانها و زمین است، آگاه میباشد؛ و خداوند بر هر چیزی تواناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,345,'روزی که هر کس، آنچه را از کار نیک انجام داده، حاضر میبیند؛ و آرزو میکند میان او، و آنچه از اعمال بد انجام داده، فاصله زمانیِ زیادی باشد. خداوند شما را از (نافرمانی) خودش، برحذر میدارد؛ و (در عین حال،) خدا نسبت به همه بندگان، مهربان است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,345,'بگو: «اگر خدا را دوست میدارید، از من پیروی کنید! تا خدا (نیز) شما را دوست بدارد؛ و گناهانتان را ببخشد؛ و خدا آمرزنده مهربان است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,345,'بگو: «از خدا و فرستاده (او)، اطاعت کنید! و اگر سرپیچی کنید، خداوند کافران را دوست نمیدارد.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,345,'خداوند، آدم و نوح و آل ابراهیم و آل عمران را بر جهانیان برتری داد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,345,'آنها فرزندان و (دودمانی) بودند که (از نظر پاکی و تقوا و فضیلت،) بعضی از بعض دیگر گرفته شده بودند؛ و خداوند، شنوا و داناست (و از کوششهای آنها در مسیر رسالت خود، آگاه میباشد).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,345,'(به یاد آورید) هنگامی را که همسرِ «عمران» گفت: «خداوندا! آنچه را در رحم دارم، برای تو نذر کردم، که «محرَّر» (و آزاد، برای خدمت خانه تو) باشد. از من بپذیر، که تو شنوا و دانایی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,345,'ولی هنگامی که او را به دنیا آورد، (و او را دختر یافت،) گفت: «خداوندا! من او را دختر آوردم -ولی خدا از آنچه او به دنیا آورده بود، آگاهتر بود- و پسر، همانند دختر نیست. (دختر نمیتواند وظیفه خدمتگزاری معبد را همانند پسر انجام دهد.) من او را مریم نام گذاردم؛ و او و فرزندانش را از (وسوسههای) شیطان رانده شده، در پناه تو قرار میدهم.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,345,'خداوند، او [= مریم] را به طرز نیکویی پذیرفت؛ و به طرز شایستهای، (نهال وجود) او را رویانید (و پرورش داد)؛ و کفالت او را به «زکریا» سپرد. هر زمان زکریا وارد محراب او میشد، غذای مخصوصی در آن جا میدید. از او پرسید: «ای مریم! این را از کجا آوردهای؟!» گفت: «این از سوی خداست. خداوند به هر کس بخواهد، بی حساب روزی میدهد.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,345,'در آنجا بود که زکریا، (با مشاهده آن همه شایستگی در مریم،) پروردگار خویش را خواند و عرض کرد: «خداوندا! از طرف خود، فرزند پاکیزهای (نیز) به من عطا فرما، که تو دعا را میشنوی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,345,'و هنگامی که او در محراب ایستاده، مشغول نیایش بود، فرشتگان او را صدا زدند که: «خدا تو را به» یحیی «بشارت میدهد؛ (کسی) که کلمه خدا [= مسیح] را تصدیق میکند؛ و رهبر خواهد بود؛ و از هوسهای سرکش برکنار، و پیامبری از صالحان است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,345,'او عرض کرد: «پروردگارا! چگونه ممکن است فرزندی برای من باشد، در حالی که پیری به سراغ من آمده، و همسرم نازاست؟!» فرمود: «بدین گونه خداوند هر کاری را بخواهد انجام میدهد.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,345,'(زکریا) عرض کرد: «پروردگارا! نشانهای برای من قرار ده!» گفت: «نشانه تو آن است که سه روز، جز به اشاره و رمز، با مردم سخن نخواهی گفت. (و زبان تو، بدون هیچ علّت ظاهری، برای گفتگو با مردم از کار میافتد.) پروردگار خود را (به شکرانه این نعمت بزرگ،) بسیار یاد کن! و به هنگام صبح و شام، او را تسبیح بگو!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,345,'و (به یاد آورید) هنگامی را که فرشتگان گفتند: «ای مریم! خدا تو را برگزیده و پاک ساخته؛ و بر تمام زنان جهان، برتری داده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,345,'ای مریم! (به شکرانه این نعمت) برای پروردگار خود، خضوع کن و سجده بجا آور! و با رکوعکنندگان، رکوع کن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,345,'(ای پیامبر!) این، از خبرهای غیبی است که به تو وحی میکنیم؛ و تو در آن هنگام که قلمهای خود را (برای قرعهکشی) به آب میافکندند تا کدامیک کفالت و سرپرستی مریم را عهدهدار شود، و (نیز) به هنگامی که (دانشمندان بنی اسرائیل، برای کسب افتخار سرپرستی او،) با هم کشمکش داشتند، حضور نداشتی؛ و همه اینها، از راه وحی به تو گفته شد.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,345,'(به یاد آورید) هنگامی را که فرشتگان گفتند: «ای مریم! خداوند تو را به کلمهای [= وجود باعظمتی] از طرف خودش بشارت میدهد که نامش «مسیح، عیسی پسر مریم» است؛ در حالی که در این جهان و جهان دیگر، صاحب شخصیّت خواهد بود؛ و از مقرّبان (الهی) است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,345,'و با مردم، در گاهواره و در حالت کهولت (و میانسال شدن) سخن خواهد گفت؛ و از شایستگان است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,345,'(مریم) گفت: «پروردگارا! چگونه ممکن است فرزندی برای من باشد، در حالی که انسانی با من تماس نگرفته است؟!» فرمود: «خداوند، اینگونه هر چه را بخواهد میآفریند! هنگامی که چیزی را مقرّر دارد (و فرمان هستی آن را صادر کند)، فقط به آن میگوید: «موجود باش!» آن نیز فوراً موجود میشود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,345,'و به او، کتاب و دانش و تورات و انجیل، میآموزد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,345,'و (او را به عنوان) رسول و فرستاده به سوی بنی اسرائیل (قرار داده، که به آنها میگوید:) من نشانهای از طرف پروردگار شما، برایتان آوردهام؛ من از گِل، چیزی به شکل پرنده میسازم؛ سپس در آن میدمم و به فرمان خدا، پرندهای میگردد. و به اذن خدا، کورِ مادرزاد و مبتلایان به برص [= پیسی] را بهبودی میبخشم؛ و مردگان را به اذن خدا زنده میکنم؛ و از آنچه میخورید، و در خانههای خود ذخیره میکنید، به شما خبر میدهم؛ مسلماً در اینها، نشانهای برای شماست، اگر ایمان داشته باشید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,345,'و آنچه را پیش از من از تورات بوده، تصدیق میکنم؛ و (آمدهام) تا پارهای از چیزهایی را که (بر اثر ظلم و گناه،) بر شما حرام شده، (مانند گوشت بعضی از چهارپایان و ماهیها،) حلال کنم؛ و نشانهای از طرف پروردگار شما، برایتان آوردهام؛ پس از خدا بترسید، و مرا اطاعت کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,345,'خداوند، پروردگار من و شماست؛ او را بپرستید (نه من، و نه چیز دیگر را)! این است راه راست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,345,'هنگامی که عیسی از آنان احساس کفر (و مخالفت) کرد، گفت: «کیست که یاور من به سوی خدا (برای تبلیغ آیین او) گردد؟» حواریان [= شاگردانِ مخصوصِ او] گفتند: «ما یاوران خداییم؛ به خدا ایمان آوردیم؛ و تو (نیز) گواه باش که ما اسلام آوردهایم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,345,'پروردگارا! به آنچه نازل کردهای، ایمان آوردیم و از فرستاده (تو) پیروی نمودیم؛ ما را در زمره گواهان بنویس!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,345,'و (یهود و دشمنان مسیح، برای نابودی او و آیینش،) نقشه کشیدند؛ و خداوند (بر حفظ او و آیینش،) چارهجویی کرد؛ و خداوند، بهترین چارهجویان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,345,'(به یاد آورید) هنگامی را که خدا به عیسی فرمود: «من تو را برمیگیرم و به سوی خود، بالا میبرم و تو را از کسانی که کافر شدند، پاک میسازم؛ و کسانی را که از تو پیروی کردند، تا روز رستاخیز، برتر از کسانی که کافر شدند، قرارمیدهم؛ سپس بازگشت شما به سوی من است و در میان شما، در آنچه اختلاف داشتید، داوری میکنم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,345,'امّا آنها که کافر شدند، (و پس از شناختن حق، آن را انکار کردند،) در دنیا و آخرت، آنان را مجازات دردناکی خواهم کرد؛ و برای آنها، یاورانی نیست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,345,'امّا آنها که ایمان آوردند، و اعمال صالح انجام دادند، خداوند پاداش آنان را بطور کامل خواهد داد؛ و خداوند، ستمکاران را دوست نمیدارد.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,345,'اینها را که بر تو میخوانیم، از نشانهها (ی حقّانیّت تو) است، و یادآوری حکیمانه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,345,'مَثَل عیسی در نزد خدا، همچون آدم است؛ که او را از خاک آفرید، و سپس به او فرمود: «موجود باش!» او هم فوراً موجود شد. (بنابر این، ولادت مسیح بدون پدر، هرگز دلیل بر الوهیّت او نیست.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,345,'اینها حقیقتی است از جانب پروردگار تو؛ بنابر این، از تردید کنندگان مباش!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,345,'هرگاه بعد از علم و دانشی که (در باره مسیح) به تو رسیده، (باز) کسانی با تو به محاجّه و ستیز برخیزند، به آنها بگو: «بیایید ما فرزندان خود را دعوت کنیم، شما هم فرزندان خود را؛ ما زنان خویش را دعوت نماییم، شما هم زنان خود را؛ ما از نفوس خود دعوت کنیم، شما هم از نفوس خود؛ آنگاه مباهله کنیم؛ و لعنت خدا را بر دروغگویان قرار دهیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,345,'این همان سرگذشتِ واقعی (مسیح) است. (و ادعاهایی همچون الوهیّت او، یا فرزند خدا بودنش، بیاساس است.) و هیچ معبودی، جز خداوند یگانه نیست؛ و خداوند توانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,345,'اگر (با این همه شواهد روشن، باز هم از پذیرش حق) روی گردانند، (بدان که طالب حق نیستند؛ و) خداوند از مفسدهجویان، آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,345,'بگو: «ای اهل کتاب! بیایید به سوی سخنی که میان ما و شما یکسان است؛ که جز خداوند یگانه را نپرستیم و چیزی را همتای او قرار ندهیم؛ و بعضی از ما، بعضی دیگر را -غیر از خدای یگانه- به خدایی نپذیرد.» هرگاه (از این دعوت،) سرباز زنند، بگویید: «گواه باشید که ما مسلمانیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,345,'ای اهل کتاب! چرا درباره ابراهیم، گفتگو و نزاع میکنید (و هر کدام، او را پیرو آیین خودتان معرفی مینمایید)؟! در حالی که تورات و انجیل، بعد از او نازل شده است! آیا اندیشه نمیکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,345,'شما کسانی هستید که درباره آنچه نسبت به آن آگاه بودید، گفتگو و ستیز کردید؛ چرا درباره آنچه آگاه نیستید، گفتگو میکنید؟! و خدا میداند، و شما نمیدانید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,345,'ابراهیم نه یهودی بود و نه نصرانی؛ بلکه موحّدی خالص و مسلمان بود؛ و هرگز از مشرکان نبود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,345,'سزاوارترین مردم به ابراهیم، آنها هستند که از او پیروی کردند، و (در زمان و عصر او، به مکتب او وفادار بودند؛ همچنین) این پیامبر و کسانی که (به او) ایمان آوردهاند (از همه سزاوارترند)؛ و خداوند، ولیّ و سرپرست مؤمنان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,345,'جمعی از اهل کتاب (از یهود)، دوست داشتند (و آرزو میکردند) شما را گمراه کنند؛ (امّا آنها باید بدانند که نمیتوانند شما را گمراه سازند،) آنها گمراه نمیکنند مگر خودشان را، و نمیفهمند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,345,'ای اهل کتاب! چرا به آیات خدا کافر میشوید، در حالی که (به درستی آن) گواهی میدهید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,345,'ای اهل کتاب! چرا حق را با باطل (میزمیزید و) مشتبه میکنید (تا دیگران نفهمند و گمراه شوند)، و حقیقت را پوشیده میدارید در حالی که میدانید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,345,'و جمعی از اهل کتاب (از یهود) گفتند: «(بروید در ظاهر) به آنچه بر مؤمنان نازل شده، در آغاز روز ایمان بیاورید؛ و در پایان روز، کافر شوید (و باز گردید)! شاید آنها (از آیین خود) بازگردند! (زیرا شما را، اهل کتاب و آگاه از بشارات آسمانی پیشین میدانند؛ و این توطئه کافی است که آنها را متزلزل سازد).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,345,'و جز به کسی که از آیین شما پیروی میکند، (واقعاً) ایمان نیاورید!» بگو: «هدایت، هدایت الهی است! (و این توطئه شما، در برابر آن بی اثر است)»! (سپس اضافه کردند: «تصور نکنید) به کسی همانند شما (کتاب آسمانی) داده میشود، یا اینکه میتوانند در پیشگاه پروردگارتان، با شما بحث و گفتگو کنند، (بلکه نبوّت و منطق، هر دو نزد شماست!)» بگو: «فضل (و موهبت نبوّت و عقل و منطق، در انحصار کسی نیست؛ بلکه) به دست خداست؛ و به هر کس بخواهد (و شایسته بداند،) میدهد؛ و خداوند، واسع [= دارای مواهب گسترده] و آگاه (از موارد شایسته آن) است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,345,'هر کس را بخواهد، ویژه رحمت خود میکند؛ و خداوند، دارای مواهب عظیم است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,345,'و در میان اهل کتاب، کسانی هستند که اگر ثروت زیادی به رسم امانت به آنها بسپاری، به تو باز میگردانند؛ و کسانی هستند که اگر یک دینار هم به آنان بسپاری، به تو باز نمیگردانند؛ مگر تا زمانی که بالای سر آنها ایستاده (و بر آنها مسلّط) باشی! این بخاطر آن است که میگویند: «ما در برابر امّیّین [= غیر یهود]، مسؤول نیستیم.» و بر خدا دروغ میبندند؛ در حالی که میدانند (این سخن دروغ است).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,345,'آری، کسی که به پیمان خود وفا کند و پرهیزگاری پیشه نماید، (خدا او را دوست میدارد؛ زیرا) خداوند پرهیزگاران را دوست دارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,345,'کسانی که پیمان الهی و سوگندهای خود (به نام مقدس او) را به بهای ناچیزی میفروشند، آنها بهرهای در آخرت نخواهند داشت؛ و خداوند با آنها سخن نمیگوید و به آنان در قیامت نمینگرد و آنها را (از گناه) پاک نمیسازد؛ و عذاب دردناکی برای آنهاست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,345,'در میان آنها [= یهود] کسانی هستند که به هنگام تلاوت کتاب (خدا)، زبان خود را چنان میگردانند که گمان کنید (آنچه را میخوانند،) از کتاب (خدا) است؛ در حالی که از کتاب (خدا) نیست! (و با صراحت) میگویند: «آن از طرف خداست!» با اینکه از طرف خدا نیست، و به خدا دروغ میبندند در حالی که میدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,345,'برای هیچ بشری سزاوار نیست که خداوند، کتاب آسمانی و حکم و نبوّت به او دهد سپس او به مردم بگوید: «غیر از خدا، مرا پرستش کنید!» بلکه (سزاوار مقام او، این است که بگوید:) مردمی الهی باشید، آنگونه که کتاب خدا را میآموختید و درس میخواندید! (و غیر از خدا را پرستش نکنید!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,345,'و نه اینکه به شما دستور دهد که فرشتگان و پیامبران را، پروردگار خود انتخاب کنید. آیا شما را، پس از آنکه مسلمان شدید، به کفر دعوت میکند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,345,'و (به خاطر بیاورید) هنگامی را که خداوند، از پیامبران (و پیروان آنها)، پیمان مؤکّد گرفت، که هرگاه کتاب و دانش به شما دادم، سپس پیامبری به سوی شما آمد که آنچه را با شماست تصدیق میکند، به او ایمان بیاورید و او را یاری کنید! سپس (خداوند) به آنها گفت: «آیا به این موضوع، اقرار دارید؟ و بر آن، پیمان مؤکّد بستید؟» گفتند: «(آری) اقرار داریم!» (خداوند به آنها) گفت: «پس گواه باشید! و من نیز با شما از گواهانم.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,345,'پس کسی که بعد از این (پیمان محکم)، روی گرداند، فاسق است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,345,'آیا آنها غیر از آیین خدا میطلبند؟! (آیین او همین اسلام است؛) و تمام کسانی که در آسمانها و زمین هستند، از روی اختیار یا از روی اجبار، در برابرِ (فرمان) او تسلیمند، و همه به سوی او بازگردانده میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,345,'بگو: «به خدا ایمان آوردیم؛ و (همچنین) به آنچه بر ما و بر ابراهیم و اسماعیل و اسحاق و یعقوب و اسباط نازل گردیده؛ و آنچه به موسی و عیسی و (دیگر) پیامبران، از طرف پروردگارشان داده شده است؛ ما در میان هیچ یک از آنان فرقی نمیگذاریم؛ و در برابرِ (فرمان) او تسلیم هستیم.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,345,'و هر کس جز اسلام (و تسلیم در برابر فرمان حق،) آیینی برای خود انتخاب کند، از او پذیرفته نخواهد شد؛ و او در آخرت، از زیانکاران است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,345,'چگونه خداوند جمعیّتی را هدایت میکند که بعد از ایمان و گواهی به حقّانیّت رسول و آمدن نشانههای روشن برای آنها، کافر شدند؟! و خدا، جمعیّت ستمکاران را هدایت نخواهد کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,345,'کیفر آنها، این است که لعن (و طرد) خداوند و فرشتگان و مردم همگی بر آنهاست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,345,'همواره در این لعن (و طرد و نفرین) میمانند؛ مجازاتشان تخفیف نمییابد؛ و به آنها مهلت داده نمیشود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,345,'مگر کسانی که پس از آن، توبه کنند و اصلاح نمایند؛ (و در مقام جبران گناهان گذشته برآیند، که توبه آنها پذیرفته خواهد شد؛) زیرا خداوند، آمرزنده و بخشنده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,345,'کسانی که پس از ایمان کافر شدند و سپس بر کفر (خود) افزودند، (و در این راه اصرار ورزیدند،) هیچگاه توبه آنان، (که از روی ناچاری یا در آستانه مرگ صورت میگیرد،) قبول نمیشود؛ و آنها گمراهان (واقعی) اند (چرا که هم راه خدا را گم کردهاند، و هم راه توبه را!).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,345,'کسانی که کافر شدند و در حال کفر از دنیا رفتند، اگر چه روی زمین پر از طلا باشد، و آن را بعنوان فدیه (و کفّاره اعمال بد خویش) بپردازند، هرگز از هیچیک آنها قبول نخواهد شد؛ و برای آنان، مجازاتِ دردناک است؛ و یاورانی ندارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,345,'هرگز به (حقیقت) نیکوکاری نمیرسید مگر اینکه از آنچه دوست میدارید، (در راه خدا) انفاق کنید؛ و آنچه انفاق میکنید، خداوند از آن آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,345,'همه غذاها (ی پاک) بر بنی اسرائیل حلال بود، جز آنچه اسرائیل (یعقوب)، پیش از نزول تورات، بر خود تحریم کرده بود؛ (مانند گوشت شتر که برای او ضرر داشت.) بگو: «اگر راست میگویید تورات را بیاورید و بخوانید! (این نسبتهایی که به پیامبران پیشین میدهید، حتّی در تورات تحریف شده شما نیست!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,345,'بنا بر این، آنها که بعد از این به خدا دروغ میبندند، ستمگرند! (زیرا از روی علم و عمد چنین میکنند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,345,'بگو: «خدا راست گفته (و اینها در آیین پاک ابراهیم نبوده) است. بنا بر این، از آیین ابراهیم پیروی کنید، که به حق گرایش داشت، و از مشرکان نبود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,345,'نخستین خانهای که برای مردم (و نیایش خداوند) قرار داده شد، همان است که در سرزمین مکّه است، که پر برکت، و مایه هدایت جهانیان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,345,'در آن، نشانههای روشن، (از جمله) مقام ابراهیم است؛ و هر کس داخل آن [= خانه خدا] شود؛ در امان خواهد بود، و برای خدا بر مردم است که آهنگ خانه (او) کنند، آنها که توانایی رفتن به سوی آن دارند. و هر کس کفر ورزد (و حج را ترک کند، به خود زیان رسانده)، خداوند از همه جهانیان، بینیاز است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,345,'بگو: «ای اهل کتاب! چرا به آیات خدا کفر میورزید؟! و خدا گواه است بر اعمالی که انجام میدهید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,345,'بگو: «ای اهل کتاب! چرا افرادی را که ایمان آوردهاند، از راه خدا بازمیدارید، و میخواهید این راه را کج سازید؟! در حالی که شما (به درستی این راه) گواه هستید؛ و خداوند از آنچه انجام میدهید، غافل نیست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,4,345,'ای کسانی که ایمان آوردهاید! اگر از گروهی از اهل کتاب، (که کارشان نفاقافکنی و شعلهورساختنِ آتش کینه و عداوت است) اطاعت کنید، شما را پس از ایمان، به کفر بازمیگردانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,4,345,'و چگونه ممکن است شما کافر شوید، با اینکه (در دامان وحی قرار گرفتهاید، و) آیات خدا بر شما خوانده میشود، و پیامبر او در میان شماست؟! (بنابر این، به خدا تمسّک جویید!) و هر کس به خدا تمسّک جوید، به راهی راست، هدایت شده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,4,345,'ای کسانی که ایمان آوردهاید! آن گونه که حق تقوا و پرهیزکاری است، از خدا بپرهیزید! و از دنیا نروید، مگر اینکه مسلمان باشید! (باید گوهر ایمان را تا پایان عمر، حفظ کنید!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,4,345,'و همگی به ریسمان خدا [= قرآن و اسلام، و هرگونه وسیله وحدت]، چنگ زنید، و پراکنده نشوید! و نعمت (بزرگِ) خدا را بر خود، به یاد آرید که چگونه دشمن یکدیگر بودید، و او میان دلهای شما، الفت ایجاد کرد، و به برکتِ نعمتِ او، برادر شدید! و شما بر لبِ حفرهای از آتش بودید، خدا شما را از آن نجات داد؛ این چنین، خداوند آیات خود را برای شما آشکار میسازد؛ شاید پذیرای هدایت شوید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,4,345,'باید از میان شما، جمعی دعوت به نیکی، و امر به معروف و نهی از منکر کنند! و آنها همان رستگارانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,4,345,'و مانند کسانی نباشید که پراکنده شدند و اختلاف کردند؛ (آن هم) پس از آنکه نشانههای روشن (پروردگار) به آنان رسید! و آنها عذاب عظیمی دارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,4,345,'(آن عذاب عظیم) روزی خواهد بود که چهرههائی سفید، و چهرههائی سیاه میگردد، اما آنها که صورتهایشان سیاه شده، (به آنها گفته میشود:) آیا بعد از ایمان، و (اخوّت و برادری در سایه آن،) کافر شدید؟! پس بچشید عذاب را، به سبب آنچه کفر میورزیدید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,4,345,'و امّا آنها که چهرههایشان سفید شده، در رحمت خداوند خواهند بود؛ و جاودانه در آن میمانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,4,345,'اینها آیات خداست؛ که بحق بر تو میخوانیم. و خداوند (هیچ گاه) ستمی برای (احدی از) جهانیان نمیخواهد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,4,345,'و (چگونه ممکن است خدا ستم کند؟! در حالی که) آنچه در آسمانها و آنچه در زمین است، مال اوست؛ و همه کارها، به سوی او باز میگردد (و به فرمان اوست.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,4,345,'شما بهترین امتی بودید که به سود انسانها آفریده شدهاند؛ (چه اینکه) امر به معروف و نهی از منکر میکنید و به خدا ایمان دارید. و اگر اهل کتاب، (به چنین برنامه و آیین درخشانی،) ایمان آورند، برای آنها بهتر است! (ولی تنها) عده کمی از آنها با ایمانند، و بیشتر آنها فاسقند، (و خارج از اطاعت پروردگار)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,4,345,'آنها [= اهل کتاب، مخصوصا» یهود] هرگز نمیتوانند به شما زیان برسانند، جز آزارهای مختصر؛ و اگر با شما پیکار کنند، به شما پشت خواهند کرد (و شکست میخورند؛ سپس کسی آنها را یاری نمیکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,4,345,'هر جا یافت شوند، مهر ذلت بر آنان خورده است؛ مگر با ارتباط به خدا، (و تجدید نظر در روش ناپسند خود،) و (یا) با ارتباط به مردم (و وابستگی به این و آن)؛ و به خشم خدا، گرفتار شدهاند؛ و مهر بیچارگی بر آنها زده شده؛ چرا که آنها به آیات خدا، کفر میورزیدند و پیامبران را بناحق میکشتند. اینها بخاطر آن است که گناه کردند؛ و (به حقوق دیگران،) تجاوز مینمودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,4,345,'آنها همه یکسان نیستند؛ از اهل کتاب، جمعیّتی هستند که (به حق و ایمان) قیام میکنند؛ و پیوسته در اوقات شب، آیات خدا را میخوانند؛ در حالی که سجده مینمایند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,4,345,'به خدا و روز دیگر ایمان میآورند؛ امر به معروف و نهی از منکر میکنند؛ و در انجام کارهای نیک، پیشی میگیرند؛ و آنها از صالحانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,4,345,'و آنچه از اعمال نیک انجام دهند، هرگز کفران نخواهد شد! (و پاداش شایسته آن را میبینند.) و خدا از پرهیزکاران، آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,4,345,'کسانی که کافر شدند، هرگز نمیتوانند در پناه اموال و فرزندانشان، از مجازات خدا در امان بمانند! آنها اصحاب دوزخند؛ و جاودانه در آن خواهند ماند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,4,345,'آنچه آنها در این زندگی پست دنیوی انفاق میکنند، همانند باد سوزانی است که به زراعت قومی که بر خود ستم کرده (و در غیر محل و وقت مناسب، کشت نمودهاند)، بوزد؛ و آن را نابود سازد. خدا به آنها ستم نکرده؛ بلکه آنها، خودشان به خویشتن ستم میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,4,345,'ای کسانی که ایمان آوردهاید! محرم اسراری از غیر خود، انتخاب نکنید! آنها از هرگونه شرّ و فسادی در باره شما، کوتاهی نمیکنند. آنها دوست دارند شما در رنج و زحمت باشید. (نشانههای) دشمنی از دهان (و کلام) شان آشکار شده؛ و آنچه در دلهایشان پنهان میدارند، از آن مهمتر است. ما آیات (و راههای پیشگیری از شرّ آنها) را برای شما بیان کردیم اگر اندیشه کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,4,345,'شما کسانی هستید که آنها را دوست میدارید؛ امّا آنها شما را دوست ندارند! در حالی که شما به همه کتابهای آسمانی ایمان دارید (و آنها به کتاب آسمانی شما ایمان ندارند). هنگامی که شما را ملاقات میکنند، (به دروغ) میگویند: «ایمان آوردهایم!» امّا هنگامی که تنها میشوند، از شدّت خشم بر شما، سر انگشتان خود را به دندان میگزند! بگو: «با همین خشمی که دارید بمیرید! خدا از (اسرار) درون سینهها آگاه است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,4,345,'اگر نیکی به شما برسد، آنها را ناراحت میکند؛ و اگر حادثه ناگواری برای شما رخ دهد، خوشحال میشوند. (امّا) اگر (در برابرشان) استقامت و پرهیزگاری پیشه کنید، نقشههای (خائنانه) آنان، به شما زیانی نمیرساند؛ خداوند به آنچه انجام میدهند، احاطه دارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,4,345,'و (به یاد آور) زمانی را که صبحگاهان، از میان خانواده خود، جهت انتخاب اردوگاه جنگ برای مؤمنان، بیرون رفتی! و خداوند، شنوا و داناست (گفتگوهای مختلفی را که درباره طرح جنگ گفته میشد، میشنید؛ و اندیشههایی را که بعضی در سر میپروراندند، میدانست).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,4,345,'(و نیز به یاد آور) زمانی را که دو طایفه از شما تصمیم گرفتند سستی نشان دهند (و از وسط راه بازگردند)؛ و خداوند پشتیبان آنها بود (و به آنها کمک کرد که از این فکر بازگردند)؛ و افراد باایمان، باید تنها بر خدا توکّل کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,4,345,'خداوند شما را در «بدر» یاری کرد (و بر دشمنان خطرناک، پیروز ساخت)؛ در حالی که شما (نسبت به آنها)، ناتوان بودید. پس، از خدا بپرهیزید (و در برابر دشمن، مخالفتِ فرمانِ پیامبر نکنید)، تا شکر نعمت او را بجا آورده باشید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,4,345,'در آن هنگام که تو به مؤمنان میگفتنی: «آیا کافی نیست که پروردگارتان، شما را به سه هزار نفر از فرشتگان، که از آسمان فرود میآیند، یاری کند؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,4,345,'آری، (امروز هم) اگر استقامت و تقوا پیشه کنید، و دشمن به همین زودی به سراغ شما بیاید، خداوند شما را به پنج هراز نفر از فرشتگان، که نشانههایی با خود دارند، مدد خواهد داد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,4,345,'ولی اینها را خداوند فقط بشارت، و برای اطمینان خاطر شما قرار داده؛ وگرنه، پیروزی تنها از جانب خداوند توانای حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,4,345,'(این وعده را که خدا به شما داده،) برای این است که قسمتی از پیکر لشکر کافران را قطع کند؛ یا آنها را با ذلّت برگرداند؛ تا مأیوس و ناامید، (به وطن خود) بازگردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,4,345,'هیچگونه اختیاری (در باره عفو کافران، یا مؤمنان فراری از جنگ،) برای تو نیست؛ مگر اینکه (خدا) بخواهد آنها را ببخشد، یا مجازات کند؛ زیرا آنها ستمگرند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,4,345,'و آنچه در آسمانها و زمین است، از آن خداست. هر کس را بخواهد (و شایسته بداند)، میبخشد؛ و هر کس را بخواهد، مجازات میکند؛ و خداوند آمرزنده مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,4,345,'ای کسانی که ایمان آوردهاید! ربا (و سود پول) را چند برابر نخورید! از خدا بپرهیزید، تا رستگار شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,4,345,'و از آتشی بپرهیزید که برای کافران آماده شده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,4,345,'و خدا و پیامبر را اطاعت کنید، تا مشمول رحمت شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,4,345,'و شتاب کنید برای رسیدن به آمرزش پروردگارتان؛ و بهشتی که وسعت آن، آسمانها و زمین است؛ و برای پرهیزگاران آماده شده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,4,345,'همانها که در توانگری و تنگدستی، انفاق میکنند؛ و خشم خود را فرو میبرند؛ و از خطای مردم درمیگذرند؛ و خدا نیکوکاران را دوست دارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,4,345,'و آنها که وقتی مرتکب عمل زشتی شوند، یا به خود ستم کنند، به یاد خدا میافتند؛ و برای گناهان خود، طلب آمرزش میکنند -و کیست جز خدا که گناهان را ببخشد؟- و بر گناه، اصرار نمیورزند، با اینکه میدانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,4,345,'آنها پاداششان آمرزش پروردگار، و بهشتهایی است که از زیر درختانش، نهرها جاری است؛ جاودانه در آن میمانند؛ چه نیکو است پاداش اهل عمل!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,4,345,'پیش از شما، سنّتهایی وجود داشت؛ (و هر قوم، طبق اعمال و صفات خود، سرنوشتهایی داشتند؛ که شما نیز، همانند آن را دارید.) پس در روی زمین، گردش کنید و ببینید سرانجام تکذیبکنندگان (آیات خدا) چگونه بود؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,4,345,'این، بیانی است برای عموم مردم؛ و هدایت و اندرزی است برای پرهیزگاران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,4,345,'و سست نشوید! و غمگین نگردید! و شما برترید اگر ایمان داشته باشید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,4,345,'اگر (در میدان احد،) به شما جراحتی رسید (و ضربهای وارد شد)، به آن جمعیّت نیز (در میدان بدر)، جراحتی همانند آن وارد گردید. و ما این روزها (ی پیروزی و شکست) را در میان مردم میگردانیم؛ (-و این خاصیّت زندگی دنیاست-) تا خدا، افرادی را که ایمان آوردهاند، بداند (و شناخته شوند)؛ و خداوند از میان شما، شاهدانی بگیرد. و خدا ظالمان را دوست نمیدارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,4,345,'و تا خداوند، افراد باایمان را خالص گرداند (و ورزیده شوند)؛ و کافران را به تدریج نابود سازد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,4,345,'آیا چنین پنداشتید که (تنها با ادّعای ایمان) وارد بهشت خواهید شد، در حالی که خداوند هنوز مجاهدان از شما و صابران را مشخصّ نساخته است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,4,345,'و شما مرگ (و شهادت در راه خدا) را، پیش از آنکه با آن روبهرو شوید، آرزو میکردید؛ سپس آن را با چشم خود دیدید، در حالی که به آن نگاه میکردید (و حاضر نبودید به آن تن دردهید! چقدر میان گفتار و کردار شما فاصله است؟!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,4,345,'محمد (ص) فقط فرستاده خداست؛ و پیش از او، فرستادگان دیگری نیز بودند؛ آیا اگر او بمیرد و یا کشته شود، شما به عقب برمیگردید؟ (و اسلام را رها کرده به دوران جاهلیّت و کفر بازگشت خواهید نمود؟) و هر کس به عقب باز گردد، هرگز به خدا ضرری نمیزند؛ و خداوند بزودی شاکران (و استقامتکنندگان) را پاداش خواهد داد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,4,345,'هیچکس، جز به فرمان خدا، نمیمیرد؛ سرنوشتی است تعیین شده؛ (بنابر این، مرگ پیامبر یا دیگران، یک سنّت الهی است.) هر کس پاداش دنیا را بخواهد (و در زندگی خود، در این راه گام بردارد،) چیزی از آن به او خواهیم داد؛ و هر کس پاداش آخرت را بخواهد، از آن به او میدهیم؛ و بزودی سپاسگزاران را پاداش خواهیم داد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,4,345,'چه بسیار پیامبرانی که مردان الهی فراوانی به همراه آنان جنگ کردند! آنها هیچگاه در برابر آنچه در راه خدا به آنان میرسید، سست و ناتوان نشدند (و تن به تسلیم ندادند)؛ و خداوند استقامتکنندگان را دوست دارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,4,345,'سخنشان تنها این بود که: «پروردگارا! گناهان ما را ببخش! و از تندرویهای ما در کارها، چشمپوشی کن! قدمهای ما را استوار بدار! و ما را بر جمعیّت کافران، پیروز گردان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,4,345,'از اینرو خداوند پاداش این جهان، و پاداش نیک آن جهان را به آنها داد؛ و خداوند نیکوکاران را دوست میدارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,4,345,'ای کسانی که ایمان آوردهاید! اگر از کسانی که کافر شدهاند اطاعت کنید، شما را به گذشتههایتان بازمیگردانند؛ و سرانجام، زیانکار خواهید شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,4,345,'(آنها تکیهگاه شما نیستند،) بلکه ولی و سرپرست شما، خداست؛ و او بهترین یاوران است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,4,345,'بزودی در دلهای کافران، بخاطر اینکه بدون دلیل، چیزهایی را برای خدا همتا قرار دادند، رعب و ترس میافکنیم؛ و جایگاه آنها، آتش است؛ و چه بد جایگاهی است جایگاه ستمکاران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,4,345,'خداوند، وعده خود را به شما، (در باره پیروزی بر دشمن در احد،) تحقق بخشید؛ در آن هنگام (که در آغاز جنگ،) دشمنان را به فرمان او، به قتل میرساندید؛ (و این پیروزی ادامه داشت) تا اینکه سست شدید؛ و (بر سر رهاکردن سنگرها،) در کار خود به نزاع پرداختید؛ و بعد از آن که آنچه را دوست میداشتید (از غلبه بر دشمن) به شما نشان داد، نافرمانی کردید. بعضی از شما، خواهان دنیا بودند؛ و بعضی خواهان آخرت. سپس خداوند شما را از آنان منصرف ساخت؛ (و پیروزی شما به شکست انجامید؛) تا شما را آزمایش کند. و او شما را بخشید؛ و خداوند نسبت به مؤمنان، فضل و بخشش دارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,4,345,'(به خاطر بیاورید) هنگامی را که از کوه بالا میرفتید؛ و جمعی در وسط بیابان پراکنده شدند؛ و از شدت وحشت،) به عقب ماندگان نگاه نمیکردید، و پیامبر از پشت سر، شما را صدا میزد. سپس اندوهها را یکی پس از دیگری به شما جزا داد؛ این بخاطر آن بود که دیگر برای از دست رفتن (غنایم جنگی) غمگین نشوید، و نه بخاطر مصیبتهایی که بر شما وارد میگردد. و خداوند از آنچه انجام میدهید، آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,4,345,'سپس بدنبال این غم و اندوه، آرامشی بر شما فرستاد. این آرامش، بصورت خواب سبکی بود که (در شب بعد از حادثه احد،) گروهی از شما را فرا گرفت؛ اماگروه دیگری در فکر جان خویش بودند؛ (و خواب به چشمانشان نرفت.) آنها گمانهای نادرستی -همچون گمانهای دوران جاهلیت- درباره خدا داشتند؛ و میگفتند: «آیا چیزی از پیروزی نصیب ما میشود؟!» بگو: «همه کارها (و پیروزیها) به دست خداست!» آنها در دل خود، چیزی را پنهان میدارند که برای تو آشکار نمیسازند؛ میگویند: «اگر ما سهمی از پیروزی داشتیم، در این جا کشته نمیشدیم!» بگو: «اگر هم در خانههای خود بودید، آنهایی که کشتهشدن بر آنها مقرر شده بود، قطعاً به سوی آرامگاههای خود، بیرون میآمدند (و آنها را به قتل میرساندند). و اینها برای این است که خداوند، آنچه در سینههایتان پنهان دارید، بیازماید؛ و آنچه را در دلهای شما (از ایمان) است، خالص گرداند؛ و خداوند از آنچه در درون سینههاست، با خبر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,4,345,'کسانی که در روز روبرو شدن دو جمعیت با یکدیگر (در جنگ احد)، فرار کردند، شیطان آنها را بر اثر بعضی از گناهانی که مرتکب شده بودند، به لغزش انداخت؛ و خداوند آنها را بخشید. خداوند، آمرزنده و بردبار است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,4,345,'ای کسانی که ایمان آوردهاید! همانند کافران نباشید که چون برادرانشان به مسافرتی میروند، یا در جنگ شرکت میکنند (و از دنیا میروند و یا کشته میشوند)، میگویند: «اگر آنها نزد ما بودند، نمیمردند و کشته نمیشدند!» (شما از این گونه سخنان نگویید،) تا خدا این حسرت را بر دل آنها [= کافران] بگذارد. خداوند، زنده میکند و میمیراند؛ (و زندگی و مرگ، به دست اوست؛) و خدا به آنچه انجام میدهید، بیناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,4,345,'اگر هم در راه خدا کشته شوید یا بمیرید، (زیان نکردهاید؛ زیرا) آمرزش و رحمت خدا، از تمام آنچه آنها (در طول عمر خود،) جمع آوری میکنند، بهتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,4,345,'و اگر بمیرید یا کشته شوید، به سوی خدا محشور میشوید. (بنابراین، فانی نمیشوید که از فنا، وحشت داشته باشید.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,4,345,'به (برکت) رحمت الهی، در برابر آنان [= مردم] نرم (و مهربان) شدی! و اگر خشن و سنگدل بودی، از اطراف تو، پراکنده میشدند. پس آنها را ببخش و برای آنها آمرزش بطلب! و در کارها، با آنان مشورت کن! اما هنگامی که تصمیم گرفتی، (قاطع باش! و) بر خدا توکل کن! زیرا خداوند متوکلان را دوست دارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,4,345,'اگر خداوند شما را یاری کند، هیچ کس بر شما پیروز نخواهد شد! و اگر دست از یاری شما بردارد، کیست که بعد از او، شما را یاری کند؟! و مؤمنان، تنها بر خداوند باید توکل کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,4,345,'(گمان کردید ممکن است پیامبر به شما خیانت کند؟! در حالی که) ممکن نیست هیچ پیامبری خیانت کند! و هر کس خیانت کند، روز رستاخیز، آنچه را در آن خیانت کرده، با خود (به صحنه محشر) میآورد؛ سپس به هر کس، آنچه را فراهم کرده (و انجام داده است)، بطور کامل داده میشود؛ و (به همین دلیل) به آنها ستم نخواهد شد (چرا که محصول اعمال خود را خواهند دید).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,4,345,'آیا کسی که از رضای خدا پیروی کرده، همانند کسی است که به خشم و غضب خدا بازگشته؟! و جایگاه او جهنم، و پایان کار او بسیار بد است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,4,345,'هر یک از آنان، درجه و مقامی در پیشگاه خدا دارند؛ و خداوند به آنچه انجام میدهند، بیناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,4,345,'خداوند بر مؤمنان منت نهاد [= نعمت بزرگی بخشید] هنگامی که در میان آنها، پیامبری از خودشان برانگیخت؛ که آیات او را بر آنها بخواند، و آنها را پاک کند و کتاب و حکمت بیاموزد؛ هر چند پیش از آن، در گمراهی آشکاری بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,4,345,'آیا هنگامی که مصیبتی (در میدان جنک احد) به شما رسید، در حالی که دو برابر آن را (در میدان جنگ بدر بر دشمن) وارد ساخته بودید، گفتید: «این مصیبت از کجاست؟!» بگو: «از ناحیه خود شماست (که در میدان جنگ احد، با دستور پیامبر مخالفت کردید)! خداوند بر هر چیزی قادر است. (و چنانچه روش خود را اصلاح کنید، در آینده شما را پیروز میکند.)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,4,345,'و آنچه (در روز احد،) در روزی که دو دسته [= مؤمنان و کافران] با هم نبرد کردند به شما رسید، به فرمان خدا (و طبق سنت الهی) بود؛ و برای این بود که مؤمنان را مشخص کند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,4,345,'و نیز برای این بود که منافقان شناخته شوند؛ آنهایی که به ایشان گفته شد: «بیایید در راه خدا نبرد کنید! یا (حداقل) از حریم خود، دفاع نمایید!» گفتند: «اگر میدانستیم جنگی روی خواهد داد، از شما پیروی میکردیم. (اما میدانیم جنگی نمیشود.)» آنها در آن هنگام، به کفر نزدیکتر بودند تا به ایمان؛ به زبان خود چیزی میگویند که در دلهایشان نیست! و خداوند از آنچه کتمان میکنند، آگاهتر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,4,345,'(منافقان) آنها هستند که به برادران خود -در حالی که از حمایت آنها دست کشیده بودند- گفتند: «اگر آنها از ما پیروی میکردند، کشته نمیشدند!» بگو: «(مگر شما میتوانید مرگ افراد را پیشبینی کنید؟!) پس مرگ را از خودتان دور سازید اگر راست میگویید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,4,345,'(ای پیامبر!) هرگز گمان مبر کسانی که در راه خدا کشته شدند، مردگانند! بلکه آنان زندهاند، و نزد پروردگارشان روزی داده میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,4,345,'آنها بخاطر نعمتهای فراوانی که خداوند از فضل خود به ایشان بخشیده است، خوشحالند؛ و بخاطر کسانی که هنوز به آنها ملحق نشدهاند [= مجاهدان و شهیدان آینده]، خوشوقتند؛ (زیرا مقامات برجسته آنها را در آن جهان میبینند؛ و میدانند) که نه ترسی بر آنهاست، و نه غمی خواهند داشت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,4,345,'و از نعمت خدا و فضل او (نسبت به خودشان نیز) مسرورند؛ و (میبینند که) خداوند، پاداش مؤمنان را ضایع نمیکند؛ (نه پاداش شهیدان، و نه پاداش مجاهدانی که شهید نشدند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,4,345,'آنها که دعوت خدا و پیامبر (ص) را، پس از آن همه جراحاتی که به ایشان رسید، اجابت کردند؛ (و هنوز زخمهای میدان احد التیام نیافته بود، به سوی میدان «حمرار الاسد» حرکت نمودند؛) برای کسانی از آنها، که نیکی کردند و تقوا پیش گرفتند، پاداش بزرگی است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,4,345,'اینها کسانی بودند که (بعضی از) مردم، به آنان گفتند: «مردم [= لشکر دشمن] برای (حمله به) شما اجتماع کردهاند؛ از آنها بترسید!» اما این سخن، بر ایمانشان افزود؛ و گفتند: «خدا ما را کافی است؛ و او بهترین حامی ماست.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,4,345,'به همین جهت، آنها (از این میدان،) با نعمت و فضل پروردگارشان، بازگشتند؛ در حالی که هیچ ناراحتی به آنان نرسید؛ و از رضای خدا، پیروی کردند؛ و خداوند دارای فضل و بخشش بزرگی است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,4,345,'این فقط شیطان است که پیروان خود را (با سخنان و شایعات بیاساس،) میترساند. از آنها نترسید! و تنها از من بترسید اگر ایمان دارید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,4,345,'کسانی که در راه کفر، شتاب میکنند، تو را غمگین نسازند! به یقین، آنها هرگز زیانی به خداوند نمیرسانند. (بعلاوه) خدا میخواهد (آنها را به حال خودشان واگذارد؛ و در نتیجه،) بهرهای برای آنها در آخرت قرار ندهد. و برای آنها مجازات بزرگی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,4,345,'(آری،) کسانی که ایمان را دادند و کفر را خریداری کردند، هرگز به خدا زیانی نمیرسانند؛ و برای آنها، مجازات دردناکی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,4,345,'آنها که کافر شدند، (و راه طغیان پیش گرفتند،) تصور نکنند اگر به آنان مهلت میدهیم، به سودشان است! ما به آنان مهلت میدهیم فقط برای اینکه بر گناهان خود بیفزایند؛ و برای آنها، عذاب خوارکنندهای (آماده شده) است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,4,345,'چنین نبود که خداوند، مؤمنان را به همانگونه که شما هستید واگذارد؛ مگر آنکه ناپاک را از پاک جدا سازد. و نیز چنین نبود که خداوند شما را از اسرار غیب، آگاه کند (تا مؤمنان و منافقان را از این راه بشناسید؛ این بر خلاف سنت الهی است؛) ولی خداوند از میان رسولان خود، هر کس را بخواهد برمیگزیند؛ (و قسمتی از اسرار نهان را که برای مقام رهبری او لازم است، در اختیار او میگذارد.) پس (اکنون که این جهان، بوته آزمایش پاک و ناپاک است،) به خدا و رسولان او ایمان بیاورید! و اگر ایمان بیاورید و تقوا پیشه کنید، پاداش بزرگی برای شماست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,4,345,'کسانی که بخل میورزند، و آنچه را خدا از فضل خویش به آنان داده، انفاق نمیکنند، گمان نکنند این کار به سود آنها است؛ بلکه برای آنها شر است؛ بزودی در روز قیامت، آنچه را نسبت به آن بخل ورزیدند، همانند طوقی به گردنشان میافکنند. و میراث آسمانها و زمین، از آن خداست؛ و خداوند، از آنچه انجام میدهید، آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,4,345,'خداوند، سخن آنها را که گفتند: «خدا فقیر است، و ما بینیازیم»، شنید! به زودی آنچه را گفتند، خواهیم نوشت؛ و (همچنین) کشتن پیامبران را بناحق (مینویسیم)؛ و به آنها میگوییم: «بچشید عذاب سوزان را (در برابر کارهایتان!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,4,345,'این بخاطر چیزی است که دستهای شما از پیش فرستاده (و نتیجه کار شماست) و بخاطر آن است که خداوند، به بندگان (خود)، ستم نمیکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(183,4,345,'(اینها) همان کسانی (هستند) که گفتند: «خداوند از ما پیمان گرفته که به هیچ پیامبری ایمان نیاوریم تا (این معجزه را انجام دهد:) یک قربانی بیاورد، که آتش [= صاعقه آسمانی] آن را بخورد!» بگو: «پیامبرانی پیش از من، برای شما آمدند؛ و دلایل روشن، و آنچه را گفتید آوردند؛ پس چرا آنها را به قتل رساندید اگر راست میگویید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(184,4,345,'پس (اگر این بهانهجویان،) تو را تکذیب کنند، (چیز تازهای نیست؛) رسولان پیش از تو (نیز) تکذیب شدند؛ پیامبرانی که دلایل آشکار، و نوشتههای متین و محکم، و کتاب روشنیبخش آورده بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(185,4,345,'هر کسی مرگ را میچشد؛ و شما پاداش خود را بطور کامل در روز قیامت خواهید گرفت؛ آنها که از آتش (دوزخ) دور شده، و به بهشت وارد شوند نجات یافته و رستگار شدهاند و زندگی دنیا، چیزی جز سرمایه فریب نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(186,4,345,'به یقین (همه شما) در اموال و جانهای خود، آزمایش میشوید! و از کسانی که پیش از شما به آنها کتاب (آسمانی) داده شده [= یهود]، و (همچنین) از مشرکان، سخنان آزاردهنده فراوان خواهید شنید! و اگر استقامت کنید و تقوا پیشه سازید، (شایستهتر است؛ زیرا) این از کارهای مهم و قابل اطمینان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(187,4,345,'و (به خاطر بیاورید) هنگامی را که خدا، از کسانی که کتاب (آسمانی) به آنها داده شده، پیمان گرفت که حتماً آن را برای مردم آشکار سازید و کتمان نکنید! ولی آنها، آن را پشت سر افکندند؛ و به بهای کمی فروختند؛ و چه بد متاعی میخرند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(188,4,345,'گمان مبر آنها که از اعمال (زشت) خود خوشحال میشوند، و دوست دارند در برابر کار (نیکی) که انجام ندادهاند مورد ستایش قرار گیرند، از عذاب (الهی) برکنارند! (بلکه) برای آنها، عذاب دردناکی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(189,4,345,'و حکومت آسمانها و زمین، از آن خداست؛ و خدا بر همه چیز تواناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(190,4,345,'مسلماً در آفرینش آسمانها و زمین، و آمد و رفت شب و روز، نشانههای (روشنی) برای خردمندان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(191,4,345,'همانها که خدا را در حال ایستاده و نشسته، و آنگاه که بر پهلو خوابیدهاند، یاد میکنند؛ و در اسرار آفرینش آسمانها و زمین میاندیشند؛ (و میگویند:) بار الها! اینها را بیهوده نیافریدهای! منزهی تو! ما را از عذاب آتش، نگاه دار!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(192,4,345,'پروردگارا! هر که را تو (بخاطر اعمالش،) به آتش افکنی، او را خوار و رسوا ساختهای! و برای افراد ستمگر، هیچ یاوری نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(193,4,345,'پروردگارا! ما صدای منادی (تو) را شنیدیم که به ایمان دعوت میکرد که: «به پروردگار خود، ایمان بیاورید!» و ما ایمان آوردیم؛ پروردگارا! گناهان ما را ببخش! و بدیهای ما را بپوشان! و ما را با نیکان (و در مسیر آنها) بمیران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(194,4,345,'پروردگارا! آنچه را به وسیله پیامبرانت به ما وعده فرمودی، به ما عطا کن! و ما را در روز رستاخیز، رسوا مگردان! زیرا تو هیچگاه از وعده خود، تخلف نمیکنی.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(195,4,345,'خداوند، درخواست آنها را پذیرفت؛ (و فرمود:) من عمل هیچ عملکنندهای از شما را، زن باشد یا مرد، ضایع نخواهم کرد؛ شما همنوعید، و از جنس یکدیگر! آنها که در راه خدا هجرت کردند، و از خانههای خود بیرون رانده شدند و در راه من آزار دیدند، و جنگ کردند و کشته شدند، بیقین گناهانشان را میبخشم؛ و آنها را در باغهای بهشتی، که از زیر درختانش نهرها جاری است، وارد میکنم. این پاداشی است از طرف خداوند؛ و بهترین پاداشها نزد پروردگار است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(196,4,345,'رفت و آمد (پیروزمندانه) کافران در شهرها، تو را نفریبد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(197,4,345,'این متاع ناچیزی است؛ و سپس جایگاهشان دوزخ، و چه بد جایگاهی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(198,4,345,'ولی کسانی (که ایمان دارند، و) از پروردگارشان میپرهیزند، برای آنها باغهایی از بهشت است، که از زیر درختانش نهرها جاری است؛ همیشه در آن خواهند بود. این، نخستین پذیرایی است که از سوی خداوند به آنها میرسد؛ و آنچه در نزد خداست، برای نیکان بهتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(199,4,345,'و از اهل کتاب، کسانی هستند که به خدا، و آنچه بر شما نازل شده، و آنچه بر خودشان نازل گردیده، ایمان دارند؛ در برابر (فرمان) خدا خاضعند؛ و آیات خدا را به بهای ناچیزی نمیفروشند. پاداش آنها، نزد پروردگارشان است. خداوند، سریع الحساب است. (تمام اعمال نیک آنها را به سرعت حساب میکند، و پاداش میدهد.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(200,4,345,'ای کسانی که ایمان آوردهاید! (در برابر مشکلات و هوسها،) استقامت کنید! و در برابر دشمنان (نیز)، پایدار باشید و از مرزهای خود، مراقبت کنید و از خدا بپرهیزید، شاید رستگار شوید!');
+INSERT INTO chapters (id, number, quran_id) VALUES(346,4,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,346,'ای مردم! از (مخالفت) پروردگارتان بپرهیزید! همان کسی که همه شما را از یک انسان آفرید؛ و همسر او را (نیز) از جنس او خلق کرد؛ و از آن دو، مردان و زنان فراوانی (در روی زمین) منتشر ساخت. و از خدایی بپرهیزید که (همگی به عظمت او معترفید؛ و) هنگامی که چیزی از یکدیگر میخواهید، نام او را میبرید! (و نیز) (از قطع رابطه با) خویشاوندان خود، پرهیز کنید! زیرا خداوند، مراقب شماست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,346,'و اموال یتیمان را (هنگامی که به حد رشد رسیدند) به آنها بدهید! و اموال بد (خود) را، با اموال خوب (آنها) عوض نکنید! و اموال آنان را همراه اموال خودتان (با مخلوط کردن یا تبدیل نمودن) نخورید، زیرا این گناه بزرگی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,346,'و اگر میترسید که (بهنگام ازدواج با دختران یتیم،) عدالت را رعایت نکنید، (از ازدواج با آنان، چشمپوشی کنید و) با زنان پاک (دیگر) ازدواج نمائید، دو یا سه یا چهار همسر و اگر میترسید عدالت را (درباره همسران متعدد) رعایت نکنید، تنها یک همسر بگیرید، و یا از زنانی که مالک آنهائید استفاده کنید، این کار، از ظلم و ستم بهتر جلوگیری میکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,346,'و مهر زنان را (بطور کامل) بعنوان یک بدهی (یا عطیه،) به آنان بپردازید! (ولی) اگر آنها چیزی از آن را با رضایت خاطر به شما ببخشند، حلال و گوارا مصرف کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,346,'اموال خود را، که خداوند وسیله قوام زندگی شما قرار داده، به دست سفیهان نسپارید و از آن، به آنها روزی دهید! و لباس بر آنان بپوشانید و با آنها سخن شایسته بگویید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,346,'و یتیمان را چون به حد بلوغ برسند، بیازمایید! اگر در آنها رشد (کافی) یافتید، اموالشان را به آنها بدهید! و پیش از آنکه بزرگ شوند، اموالشان را از روی اسراف نخورید! هر کس که بینیاز است، (از برداشت حق الزحمه) خودداری کند؛ و آن کس که نیازمند است، به طور شایسته (و مطابق زحمتی که میکشد،) از آن بخورد. و هنگامی که اموالشان را به آنها بازمیگردانید، شاهد بگیرید! اگر چه خداوند برای محاسبه کافی است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,346,'برای مردان، از آنچه پدر و مادر و خویشاوندان از خود بر جای میگذارند، سهمی است؛ و برای زنان نیز، از آنچه پدر و مادر و خویشاوندان میگذارند، سهمی؛ خواه آن مال، کم باشد یا زیاد؛ این سهمی است تعیین شده و پرداختنی.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,346,'و اگر بهنگام تقسیم (ارث)، خویشاوندان (و طبقهای که ارث نمیبرند) و یتیمان و مستمندان، حضور داشته باشند، چیزی از آن اموال را به آنها بدهید! و با آنان به طور شایسته سخن بگویید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,346,'کسانی که اگر فرزندان ناتوانی از خود بیادگار بگذارند از آینده آنان میترسند، باید (از ستم درباره یتیمان مردم) بترسند! از (مخالفت) خدا بپرهیزند، و سخنی استوار بگویند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,346,'کسانی که اموال یتیمان را به ظلم و ستم میخورند، (در حقیقت،) تنها آتش میخورند؛ و بزودی در شعلههای آتش (دوزخ) میسوزند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,346,'خداوند در باره فرزندانتان به شما سفارش میکند که سهم (میراث) پسر، به اندازه سهم دو دختر باشد؛ و اگر فرزندان شما، (دو دختر و) بیش از دو دختر باشند، دو سوم میراث از آن آنهاست؛ و اگر یکی باشد، نیمی (از میراث،) از آن اوست. و برای هر یک از پدر و مادر او، یک ششم میراث است، اگر (میت) فرزندی داشته باشد؛ و اگر فرزندی نداشته باشد، و (تنها) پدر و مادر از او ارث برند، برای مادر او یک سوم است (و بقیه از آن پدر است)؛ و اگر او برادرانی داشته باشد، مادرش یک ششم میبرد (و پنج ششم باقیمانده، برای پدر است). (همه اینها،) بعد از انجام وصیتی است که او کرده، و بعد از ادای دین است -شما نمیدانید پدران و مادران و فرزندانتان، کدامیک برای شما سودمندترند!- این فریضه الهی است؛ و خداوند، دانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,346,'و برای شما، نصف میراث زنانتان است، اگر آنها فرزندی نداشته باشند؛ و اگر فرزندی داشته باشند، یک چهارم از آن شماست؛ پس از انجام وصیتی که کردهاند، و ادای دین (آنها). و برای زنان شما، یک چهارم میراث شماست، اگر فرزندی نداشته باشید؛ و اگر برای شما فرزندی باشد، یک هشتم از آن آنهاست؛ بعد از انجام وصیتی که کردهاید، و ادای دین. و اگر مردی بوده باشد که کلاله [= خواهر یا برادر] از او ارث میبرد، یا زنی که برادر یا خواهری دارد، سهم هر کدام، یک ششم است (اگر برادران و خواهران مادری باشند)؛ و اگر بیش از یک نفر باشند، آنها در یک سوم شریکند؛ پس از انجام وصیتی که شده، و ادای دین؛ بشرط آنکه (از طریق وصیت و اقرار به دین،) به آنها ضرر نزند. این سفارش خداست؛ و خدا دانا و بردبار است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,346,'اینها مرزهای الهی است؛ و هر کس خدا و پیامبرش را اطاعت کند، (و قوانین او را محترم بشمرد،) خداوند وی را در باغهایی از بهشت وارد میکند که همواره، آب از زیر درختانش جاری است؛ جاودانه در آن میمانند؛ و این، پیروزی بزرگی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,346,'و آن کس که نافرمانی خدا و پیامبرش را کند و از مرزهای او تجاوز نماید، او را در آتشی وارد میکند که جاودانه در آن خواهد ماند؛ و برای او مجازات خوارکنندهای است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,346,'و کسانی از زنان شما که مرتکب زنا شوند، چهار نفر از مسلمانان را بعنوان شاهد بر آنها بطلبید! اگر گواهی دادند، آنان [= زنان] را در خانه ها (ی خود) نگاه دارید تا مرگشان فرارسد؛ یا اینکه خداوند، راهی برای آنها قرار دهد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,346,'و از میان شما، آن مردان و زنانی که (همسر ندارند، و) مرتکب آن کار (زشت) میشوند، آنها را آزار دهید (و حد بر آنان جاری نمایید)! و اگر توبه کنند، و (خود را) اصلاح نمایند، (و به جبران گذشته بپردازند،) از آنها درگذرید! زیرا خداوند، توبهپذیر و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,346,'پذیرش توبه از سوی خدا، تنها برای کسانی است که کار بدی را از روی جهالت انجام میدهند، سپس زود توبه میکنند. خداوند، توبه چنین اشخاصی را میپذیرد؛ و خدا دانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,346,'برای کسانی که کارهای بد را انجام میدهند، و هنگامی که مرگ یکی از آنها فرا میرسد میگوید: «الان توبه کردم!» توبه نیست؛ و نه برای کسانی که در حال کفر از دنیا میروند؛ اینها کسانی هستند که عذاب دردناکی برایشان فراهم کردهایم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,346,'ای کسانی که ایمان آوردهاید! برای شما حلال نیست که از زنان، از روی اکراه (و ایجاد ناراحتی برای آنها،) ارث ببرید! و آنان را تحت فشار قرار ندهید که قسمتی از آنچه را به آنها دادهاید (از مهر)، تملک کنید! مگر اینکه آنها عمل زشت آشکاری انجام دهند. و با آنان، بطور شایسته رفتار کنید! و اگر از آنها، (بجهتی) کراهت داشتید، (فوراً تصمیم به جدایی نگیرید!) چه بسا چیزی خوشایند شما نباشد، و خداوند خیر فراوانی در آن قرار میدهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,346,'و اگر تصمیم گرفتید که همسر دیگری به جای همسر خود انتخاب کنید، و مال فراوانی (بعنوان مهر) به او پرداختهاید، چیزی از آن را پس نگیرید! آیا برای بازپس گرفتن مهر آنان، به تهمت و گناه آشکار متوسل میشوید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,346,'و چگونه آن را باز پس میگیرید، در حالی که شما با یکدیگر تماس و آمیزش کامل داشتهاید؟ و (از این گذشته،) آنها (هنگام ازدواج،) از شما پیمان محکمی گرفتهاند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,346,'با زنانی که پدران شما با آنها ازدواج کردهاند، هرگز ازدواج نکنید! مگر آنچه درگذشته (پیش از نزول این حکم) انجام شده است؛ زیرا این کار، عملی زشت و تنفرآور و راه نادرستی است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,346,'حرام شده است بر شما، مادرانتان، و دختران، و خواهران، و عمهها، و خالهها، و دختران برادر، و دختران خواهر شما، و مادرانی که شما را شیر دادهاند، و خواهران رضاعی شما، و مادران همسرانتان، و دختران همسرتان که در دامان شما پرورش یافتهاند از همسرانی که با آنها آمیزش جنسی داشتهاید -و چنانچه با آنها آمیزش جنسی نداشتهاید، (دختران آنها) برای شما مانعی ندارد- و (همچنین) همسرهای پسرانتان که از نسل شما هستند (-نه پسرخواندهها-) و (نیز حرام است بر شما) جمع میان دو خواهر کنید؛ مگر آنچه در گذشته واقع شده؛ چرا که خداوند، آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,346,'و زنان شوهردار (بر شما حرام است؛) مگر آنها را که (از راه اسارت) مالک شدهاید؛ (زیرا اسارت آنها در حکم طلاق است؛) اینها احکامی است که خداوند بر شما مقرّر داشته است. اما زنان دیگر غیر از اینها (که گفته شد)، برای شما حلال است که با اموال خود، آنان را اختیار کنید؛ در حالی که پاکدامن باشید و از زنا، خودداری نمایید. و زنانی را که متعه [= ازدواج موقت] میکنید، واجب است مهر آنها را بپردازید. و گناهی بر شما نیست در آنچه بعد از تعیین مهر، با یکدیگر توافق کردهاید. (بعداً میتوانید با توافق، آن را کم یا زیاد کنید.) خداوند، دانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,346,'و آنها که توانایی ازدواج با زنان (آزاد) پاکدامن باایمان را ندارند، میتوانند با زنان پاکدامن از بردگان باایمانی که در اختیار دارید ازدواج کنند -خدا به ایمان شما آگاهتر است؛ و همگی اعضای یک پیکرید- آنها را با اجازه صاحبان آنان تزویج نمایید، و مهرشان را به خودشان بدهید؛ به شرط آنکه پاکدامن باشند، نه بطور آشکار مرتکب زنا شوند، و نه دوست پنهانی بگیرند. و در صورتی که «محصنه» باشند و مرتکب عمل منافی عفت شوند، نصف مجازات زنان آزاد را خواهند داشت. این (اجازه ازدواج با کنیزان) برای کسانی از شماست که بترسند (از نظر غریزه جنسی) به زحمت بیفتند؛ و (با این حال نیز) خودداری (از ازدواج با آنان) برای شما بهتر است. و خداوند، آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,346,'خداوند میخواهد (با این دستورها، راههای خوشبختی و سعادت را) برای شما آشکار سازد، و به سنتهای (صحیح) پیشینیان رهبری کند. و خداوند دانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,346,'خدا میخواهد شما را ببخشد (و از آلودگی پاک نماید)، امّا آنها که پیرو شهواتند، میخواهند شما بکلی منحرف شوید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,346,'خدا میخواهد (با احکام مربوط به ازدواج با کنیزان و مانند آن،) کار را بر شما سبک کند؛ و انسان، ضعیف آفریده شده؛ (و در برابر طوفان غرایز، مقاومت او کم است)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,346,'ای کسانی که ایمان آوردهاید! اموال یکدیگر را به باطل (و از طرق نامشروع) نخورید مگر اینکه تجارتی با رضایت شما انجام گیرد. و خودکشی نکنید! خداوند نسبت به شما مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,346,'و هر کس این عمل را از روی تجاوز و ستم انجام دهد، بزودی او را در آتشی وارد خواهیم ساخت؛ و این کار برای خدا آسان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,346,'اگر از گناهان بزرگی که از آن نهی میشوید پرهیز کنید، گناهان کوچک شما را میپوشانیم؛ و شما را در جایگاه خوبی وارد میسازیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,346,'برتریهایی را که خداوند برای بعضی از شما بر بعضی دیگر قرار داده آرزو نکنید! (این تفاوتهای طبیعی و حقوقی، برای حفظ نظام زندگی شما، و بر طبق عدالت است. ولی با این حال،) مردان نصیبی از آنچه به دست میآورند دارند، و زنان نیز نصیبی؛ (و نباید حقوق هیچیک پایمال گردد). و از فضل (و رحمت و برکت) خدا، برای رفع تنگناها طلب کنید! و خداوند به هر چیز داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,346,'برای هر کسی، وارثانی قرار دادیم، که از میراث پدر و مادر و نزدیکان ارث ببرند؛ و (نیز) کسانی که با آنها پیمان بستهاید، نصیبشان را بپردازید! خداوند بر هر چیز، شاهد و ناظر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,346,'مردان، سرپرست و نگهبان زنانند، بخاطر برتریهایی که خداوند (از نظر نظام اجتماع) برای بعضی نسبت به بعضی دیگر قرار داده است، و بخاطر انفاقهایی که از اموالشان (در مورد زنان) میکنند. و زنان صالح، زنانی هستند که متواضعند، و در غیاب (همسر خود،) اسرار و حقوق او را، در مقابل حقوقی که خدا برای آنان قرار داده، حفظ میکنند. و (امّا) آن دسته از زنان را که از سرکشی و مخالفتشان بیم دارید، پند و اندرز دهید! (و اگر مؤثر واقع نشد،) در بستر از آنها دوری نمایید! و (اگر هیچ راهی جز شدت عمل، برای وادار کردن آنها به انجام وظایفشان نبود،) آنها را تنبیه کنید! و اگر از شما پیروی کردند، راهی برای تعدّی بر آنها نجویید! (بدانید) خداوند، بلندمرتبه و بزرگ است. (و قدرت او، بالاترین قدرتهاست.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,346,'و اگر از جدایی و شکاف میان آن دو (همسر) بیم داشته باشید، یک داور از خانواده شوهر، و یک داور از خانواده زن انتخاب کنید (تا به کار آنان رسیدگی کنند). اگر این دو داور، تصمیم به اصلاح داشته باشند، خداوند به توافق آنها کمک میکند؛ زیرا خداوند، دانا و آگاه است (و از نیات همه، با خبر است).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,346,'و خدا را بپرستید! و هیچچیز را همتای او قرار ندهید! و به پدر و مادر، نیکی کنید؛ همچنین به خویشاوندان و یتیمان و مسکینان، و همسایه نزدیک، و همسایه دور، و دوست و همنشین، و واماندگان در سفر، و بردگانی که مالک آنها هستید؛ زیرا خداوند، کسی را که متکبر و فخر فروش است، (و از ادای حقوق دیگران سرباز میزند،) دوست نمیدارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,346,'آنها کسانی هستند که بخل میورزند، و مردم را به بخل دعوت میکنند، و آنچه را که خداوند از فضل (و رحمت) خود به آنها داده، کتمان مینمایند. (این عمل، در حقیقت از کفرشان سرچشمه گرفته؛) و ما برای کافران، عذاب خوارکنندهای آماده کردهایم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,346,'و آنها کسانی هستند که اموال خود را برای نشاندادن به مردم انفاق میکنند، و ایمان به خدا و روز بازپسین ندارند؛ (چرا که شیطان، رفیق و همنشین آنهاست؛) و کسی که شیطان قرین او باشد، بد همنشین و قرینی است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,346,'چه میشد اگر آنها به خدا و روز بازپسین ایمان میآوردند، و از آنچه خدا به آنان روزی داده، (در راه او) انفاق میکردند؟! و خداوند از (اعمال و نیات) آنها آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,346,'خداوند (حتّی) به اندازه سنگینی ذرهای ستم نمیکند؛ و اگر کار نیکی باشد، آن را دو چندان میسازد؛ و از نزد خود، پاداش عظیمی (در برابر آن) میدهد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,346,'حال آنها چگونه است آن روزی که از هر امتی، شاهد و گواهی (بر اعمالشان) میآوریم، و تو را نیز بر آنان گواه خواهیم آورد؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,346,'در آن روز، آنها که کافر شدند و با پیامبر (ص) بمخالفت برخاستند، آرزو میکنند که ای کاش (خاک بودند، و) خاک آنها با زمینهای اطراف یکسان میشد (و بکلی محو و فراموش میشدند). در آن روز، (با آن همه گواهان،) سخنی را نمیتوانند از خدا پنهان کنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,346,'ای کسانی که ایمان آوردهاید! در حال مستی به نماز نزدیک نشوید، تا بدانید چه میگویید! و همچنین هنگامی که جنب هستید -مگر اینکه مسافر باشید- تا غسل کنید. و اگر بیمارید، یا مسافر، و یا «قضای حاجت» کردهاید، و یا با زنان آمیزش جنسی داشتهاید، و در این حال، آب (برای وضو یا غسل) نیافتید، با خاک پاکی تیمّم کنید! (به این طریق که) صورتها و دستهایتان را با آن مسح نمایید. خداوند، بخشنده و آمرزنده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,346,'آیا ندیدی کسانی را که بهرهای از کتاب (خدا) به آنها داده شده بود، (به جای اینکه از آن، برای هدایت خود و دیگران استفاده کنند، برای خویش) گمراهی میخرند، و میخواهند شما نیز گمراه شوید؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,346,'خدا به دشمنان شما آگاهتر است؛ (ولی آنها زیانی به شما نمیرسانند.) و کافی است که خدا ولیِّ شما باشد؛ و کافی است که خدا یاور شما باشد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,346,'بعضی از یهود، سخنان را از جای خود، تحریف میکنند؛ و (به جای اینکه بگویند: «شنیدیم و اطاعت کردیم»)، میگویند: «شنیدیم و مخالفت کردیم! و (نیز میگویند:) بشنو! که هرگز نشنوی! و (از روی تمسخر میگویند:) راعنا [= ما را تحمیق کن!]» تا با زبان خود، حقایق را بگردانند و در آیین خدا، طعنه زنند. ولی اگر آنها (به جای این همه لجاجت) میگفتند: «شنیدیم و اطاعت کردیم؛ و سخنان ما را بشنو و به ما مهلت ده (تا حقایق را درک کنیم)»، برای آنان بهتر، و با واقعیت سازگارتر بود. ولی خداوند، آنها را بخاطر کفرشان، از رحمت خود دور ساخته است؛ از این رو جز عدّه کمی ایمان نمیآورند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,346,'ای کسانی که کتاب (خدا) به شما داده شده! به آنچه (بر پیامبر خود) نازل کردیم -و هماهنگ با نشانههایی است که با شماست- ایمان بیاورید، پیش از آنکه صورتهایی را محو کنیم، سپس به پشت سر بازگردانیم، یا آنها را از رحمت خود دور سازیم، همان گونه که «اصحاب سبت» [= گروهی از تبهکاران بنی اسرائیل] را دور ساختیم؛ و فرمان خدا، در هر حال انجام شدنی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,346,'خداوند (هرگز) شرک را نمیبخشد! و پایینتر از آن را برای هر کس (بخواهد و شایسته بداند) میبخشد. و آن کسی که برای خدا، شریکی قرار دهد، گناه بزرگی مرتکب شده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,346,'آیا ندیدی کسانی را که خودستایی میکنند؟! (این خود ستاییها، بیارزش است؛) بلکه خدا هر کس را بخواهد، ستایش میکند؛ و کمترین ستمی به آنها نخواهد شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,346,'ببین چگونه بر خدا دروغ میبندند! و همین گناه آشکار، (برای مجازات آنان) کافی است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,346,'آیا ندیدی کسانی را که بهرهای از کتاب (خدا) به آنان داده شده، (با این حال)، به «جبت» و «طاغوت» [= بت و بتپرستان] ایمان میآورند، و درباره کافران میگویند: «آنها، از کسانی که ایمان آوردهاند، هدایت یافتهترند»؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,346,'آنها کسانی هستند که خداوند، ایشان را از رحمت خود، دور ساخته است؛ و هر کس را خدا از رحمتش دور سازد، یاوری برای او نخواهی یافت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,346,'آیا آنها [= یهود] سهمی در حکومت دارند (که بخواهند چنین داوری کنند)؟ در حالی که اگر چنین بود، (همه چیز را در انحصار خود میگرفتند،) و کمترین حق را به مردم نمیدادند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,346,'یا اینکه نسبت به مردم [= پیامبر و خاندانش]، و بر آنچه خدا از فضلش به آنان بخشیده، حسد میورزند؟ ما به آل ابراهیم، (که یهود از خاندان او هستند نیز،) کتاب و حکمت دادیم؛ و حکومت عظیمی در اختیار آنها [= پیامبران بنی اسرائیل] قرار دادیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,346,'ولی جمعی از آنها به آن ایمان آوردند؛ و جمعی راه (مردم را) بر آن بستند. و شعله فروزانِ آتش دوزخ، برای آنها کافی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,346,'کسانی که به آیات ما کافر شدند، بزودی آنها را در آتشی وارد میکنیم که هرگاه پوستهای تنشان (در آن) بریان گردد (و بسوزد)، پوستهای دیگری به جای آن قرار میدهیم، تا کیفر (الهی) را بچشند. خداوند، توانا و حکیم است (و روی حساب، کیفر میدهد).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,346,'و کسانی که ایمان آوردند و کارهای شایسته انجام دادند، بزودی آنها را در باغهایی از بهشت وارد میکنیم که نهرها از زیر درختانش جاری است؛ همیشه در آن خواهند ماند؛ و همسرانی پاکیزه برای آنها خواهد بود؛ و آنان را در سایههای گسترده (و فرح بخش) جای میدهیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,346,'خداوند به شما فرمان میدهد که امانتها را به صاحبانش بدهید! و هنگامی که میان مردم داوری میکنید، به عدالت داوری کنید! خداوند، اندرزهای خوبی به شما میدهد! خداوند، شنوا و بیناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,346,'ای کسانی که ایمان آوردهاید! اطاعت کنید خدا را! و اطاعت کنید پیامبر خدا و اولو الأمر [= اوصیای پیامبر] را! و هرگاه در چیزی نزاع داشتید، آن را به خدا و پیامبر بازگردانید (و از آنها داوری بطلبید) اگر به خدا و روز رستاخیز ایمان دارید! این (کار) برای شما بهتر، و عاقبت و پایانش نیکوتر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,346,'آیا ندیدی کسانی را که گمان میکنند به آنچه (از کتابهای آسمانی که) بر تو و بر پیشینیان نازل شده، ایمان آوردهاند، ولی میخواهند برای داوری نزد طاغوت و حکّام باطل بروند؟! با اینکه به آنها دستور داده شده که به طاغوت کافر شوند. امّا شیطان میخواهد آنان را گمراه کند، و به بیراهههای دور دستی بیفکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,346,'و هنگامی که به آنها گفته شود: «به سوی آنچه خداوند نازل کرده، و به سوی پیامبر بیایید»، منافقان را میبینی که (از قبول دعوت) ِ تو، اعراض میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,346,'پس چگونه وقتی به خاطر اعمالشان، گرفتار مصیبتی میشوند، سپس به سراغ تو میآیند، سوگند یاد میکنند که منظورِ (ما از بردنِ داوری نزد دیگران)، جز نیکی کردن و توافق (میان طرفین نزاع،) نبوده است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,346,'آنها کسانی هستند که خدا، آنچه را در دل دارند، میداند. از (مجازات) ِ آنان صرف نظر کن! و آنها را اندرز ده! و با بیانی رسا، نتایج اعمالشان را به آنها گوشزد نما!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,346,'ما هیچ پیامبری را نفرستادیم مگر برای این که به فرمان خدا، از وی اطاعت شود. و اگر این مخالفان، هنگامی که به خود ستم میکردند (و فرمانهای خدا را زیر پا میگذاردند)، به نزد تو میآمدند؛ و از خدا طلب آمرزش میکردند؛ و پیامبر هم برای آنها استغفار میکرد؛ خدا را توبه پذیر و مهربان مییافتند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,346,'به پروردگارت سوگند که آنها مؤمن نخواهند بود، مگر اینکه در اختلافات خود، تو را به داوری طلبند؛ و سپس از داوری تو، در دل خود احساس ناراحتی نکنند؛ و کاملا تسلیم باشند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,346,'اگر (همانند بعضی از امتهای پیشین،) به آنان دستور میدادیم: «یکدیگر را به قتل برسانید»، و یا: «از وطن و خانه خود، بیرون روید»، تنها عده کمی از آنها عمل میکردند! و اگر اندرزهایی را که به آنان داده میشد انجام میدادند، برای آنها بهتر بود؛ و موجب تقویت ایمان آنها میشد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,346,'و در این صورت، پاداش بزرگی از ناحیه خود به آنها میدادیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,346,'و آنان را به راه راست، هدایت میکردیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,346,'و کسی که خدا و پیامبر را اطاعت کند، (در روز رستاخیز،) همنشین کسانی خواهد بود که خدا، نعمت خود را بر آنان تمام کرده؛ از پیامبران و صدّیقان و شهدا و صالحان؛ و آنها رفیقهای خوبی هستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,346,'این موهبتی از ناحیه خداست. و کافی است که او، (از حالِ بندگان، و نیّات و اعمالشان) آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,346,'ای کسانی که ایمان آوردهاید! آمادگی خود را (در برابر دشمن) حفظ کنید و در دستههای متعدّد، یا بصورت دسته واحد، (طبق شرایط هر زمان و هر مکان،) به سوی دشمن حرکت نمایید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,346,'در میان شما، افرادی (منافق) هستند، که (هم خودشان سست میباشند، و هم) دیگران را به سستی میکشانند؛ اگر مصیبتی به شما برسد، میگویند: «خدا به ما نعمت داد که با مجاهدان نبودیم، تا شاهد (آن مصیبت) باشیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,346,'و اگر غنیمتی از جانب خدا به شما برسد، درست مثل اینکه هرگز میان شما و آنها دوستی و موّدتی نبوده، میگویند: «ای کاش ما هم با آنها بودیم، و به رستگاری (و پیروزی) ِ بزرگی میرسیدیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,346,'کسانی که زندگی دنیا را به آخرت فروختهاند، باید در راه خدا پیکار کنند! و آن کس که در راه خدا پیکار کند، و کشته شود یا پیروز گردد، پاداش بزرگی به او خواهیم داد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,346,'چرا در راه خدا، و (در راه) مردان و زنان و کودکانی که (به دست ستمگران) تضعیف شدهاند، پیکار نمیکنید؟! همان افراد (ستمدیدهای) که میگویند: «پروردگارا! ما را از این شهر (مکه)، که اهلش ستمگرند، بیرون ببر! و از طرف خود، برای ما سرپرستی قرار ده! و از جانب خود، یار و یاوری برای ما تعیین فرما!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,346,'کسانی که ایمان دارند، در راه خدا پیکار میکنند؛ و آنها که کافرند، در راه طاغوت [= بت و افراد طغیانگر]. پس شما با یاران شیطان، پیکار کنید! (و از آنها نهراسید!) زیرا که نقشه شیطان، (همانند قدرتش) ضعیف است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,346,'آیا ندیدی کسانی را که (در مکّه) به آنها گفته شد: «فعلا) ً دست از جهاد بدارید! و نماز را برپا کنید! و زکات بپردازید!» (امّا آنها از این دستور، ناراحت بودند)، ولی هنگامی که (در مدینه) فرمان جهاد به آنها داده شد، جمعی از آنان، از مردم میترسیدند، همان گونه که از خدا میترسند، بلکه بیشتر! و گفتند: «پروردگارا! چرا جهاد را بر ما مقرّر داشتی؟! چرا این فرمان را تا زمان نزدیکی تأخیر نینداختی؟!» به آنها بگو: «سرمایه زندگی دنیا، ناچیز است! و سرای آخرت، برای کسی که پرهیزگار باشد، بهتر است! و به اندازه رشته شکافِ هسته خرمایی، به شما ستم نخواهد شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,346,'هر جا باشید، مرگ شما را درمییابد؛ هر چند در برجهای محکم باشید! و اگر به آنها [= منافقان] حسنه (و پیروزی) برسد، میگویند: «این، از ناحیه خداست.» و اگر سیّئه (و شکستی) برسد، میگویند: «این، از ناحیه توست.» بگو: «همه اینها از ناحیه خداست.» پس چرا این گروه حاضر نیستند سخنی را درک کنند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,346,'(آری،) آنچه از نیکیها به تو میرسد، از طرف خداست؛ و آنچه از بدی به تو میرسد، از سوی خود توست. و ما تو را رسول برای مردم فرستادیم؛ و گواهی خدا در این باره، کافی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,346,'کسی که از پیامبر اطاعت کند، خدا را اطاعت کرده؛ و کسی که سرباز زند، تو را نگهبان (و مراقب) او نفرستادیم (و در برابر او، مسؤول نیستی).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,346,'آنها در حضور تو میگویند: «فرمانبرداریم»؛ امّا هنگامی که از نزد تو بیرون میروند، جمعی از آنان بر خلاف گفتههای تو، جلسات سرّی شبانه تشکیل میدهند؛ آنچه را در این جلسات میگویند، خداوند مینویسد. اعتنایی به آنها نکن! (و از نقشههای آنان وحشت نداشته باش!) و بر خدا توکّل کن! کافی است که او یار و مدافع تو باشد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,346,'آیا درباره قرآن نمیاندیشند؟! اگر از سوی غیر خدا بود، اختلاف فراوانی در آن مییافتند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,346,'و هنگامی که خبری از پیروزی یا شکست به آنها برسد، (بدون تحقیق،) آن را شایع میسازند؛ در حالی که اگر آن را به پیامبر و پیشوایان -که قدرت تشخیص کافی دارند- بازگردانند، از ریشههای مسائل آگاه خواهند شد. و اگر فضل و رحمت خدا بر شما نبود، جز عدّه کمی، همگی از شیطان پیروی میکردید (و گمراه میشدید).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,346,'در راه خدا پیکار کن! تنها مسؤول وظیفه خود هستی! و مؤمنان را (بر این کار،) تشویق نما! امید است خداوند از قدرت کافران جلوگیری کند (حتی اگر تنها خودت به میدان بروی)! و خداوند قدرتش بیشتر، و مجازاتش دردناکتر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,346,'کسی که شفاعت [= تشویق و کمک] به کار نیکی کند، نصیبی از آن برای او خواهد بود؛ و کسی که شفاعت [= تشویق و کمک] به کار بدی کند، سهمی از آن خواهد داشت. و خداوند، حسابرس و نگهدار هر چیز است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,346,'هرگاه به شما تحیّت گویند، پاسخ آن را بهتر از آن بدهید؛ یا (لااقل) به همان گونه پاسخ گویید! خداوند حساب همه چیز را دارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,346,'خداوند، معبودی جز او نیست! و به یقین، همه شما را در روز رستاخیز -که شکی در آن نیست- جمع میکند! و کیست که از خداوند، راستگوتر باشد؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,346,'چرا درباره منافقین دو دسته شدهاید؟! (بعضی جنگ با آنها را ممنوع، و بعضی مجاز میدانید.) در حالی که خداوند بخاطر اعمالشان، (افکار) آنها را کاملاً وارونه کرده است! آیا شما میخواهید کسانی را که خداوند (بر اثر اعمال زشتشان) گمراه کرده، هدایت کنید؟! در حالی که هر کس را خداوند گمراه کند، راهی برای او نخواهی یافت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,346,'آنان آرزو میکنند که شما هم مانند ایشان کافر شوید، و مساوی یکدیگر باشید. بنابر این، از آنها دوستانی انتخاب نکنید، مگر اینکه (توبه کنند، و) در راه خدا هجرت نمایند. هرگاه از این کار سر باز زنند، (و به اقدام بر ضدّ شما ادامه دهند،) هر جا آنها را یافتید، اسیر کنید! و (در صورت احساس خطر) به قتل برسانید! و از میان آنها، دوست و یار و یاوری اختیار نکنید!.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,346,'مگر آنها که با همپیمانان شما، پیمان بستهاند؛ یا آنها که به سوی شما میآیند، و از پیکار با شما، یا پیکار با قوم خود ناتوان شدهاند؛ (نه سر جنگ با شما دارند، و نه توانایی مبارزه با قوم خود.) و اگر خداوند بخواهد، آنان را بر شما مسلطّ میکند تا با شما پیکار کنند. پس اگر از شما کنارهگیری کرده و با شما پیکار ننمودند، (بلکه) پیشنهاد صلح کردند، خداوند به شما اجازه نمیدهد که متعرّض آنان شوید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,346,'بزودی جمعیّت دیگری را مییابید که میخواهند هم از ناحیه شما در امان باشند، و هم از ناحیه قوم خودشان (که مشرکند. لذا نزد شما ادّعای ایمان میکنند؛ ولی) هر زمان آنان را به سوی فتنه (و بت پرستی) بازگردانند، با سر در آن فرو میروند! اگر از درگیری با شما کنار نرفتند و پیشنهاد صلح نکردند و دست از شما نکشیدند، آنها را هر جا یافتید اسیر کنید و (یا) به قتل برسانید! آنها کسانی هستند که ما برای شما، تسلّط آشکاری نسبت به آنان قرار دادهایم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,346,'هیچ فرد باایمانی مجاز نیست که مؤمنی را به قتل برساند، مگر اینکه این کار از روی خطا و اشتباه از او سر زند؛ (و در عین حال،) کسی که مؤمنی را از روی خطا به قتل رساند، باید یک برده مؤمن را آزاد کند و خونبهایی به کسان او بپردازد؛ مگر اینکه آنها خونبها را ببخشند. و اگر مقتول، از گروهی باشد که دشمنان شما هستند (و کافرند)، ولی مقتول باایمان بوده، (تنها) باید یک برده مؤمن را آزاد کند (و پرداختن خونبها لازم نیست). و اگر از جمعیّتی باشد که میان شما و آنها پیمانی برقرار است، باید خونبهای او را به کسان او بپردازد، و یک برده مؤمن (نیز) آزاد کند. و آن کس که دسترسی (به آزاد کردن برده) ندارد، دو ماه پی در پی روزه میگیرد. این، (یک نوع تخفیف، و) توبه الهی است. و خداوند، دانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,346,'و هر کس، فرد باایمانی را از روی عمد به قتل برساند، مجازاتِ او دوزخ است؛ در حالی که جاودانه در آن میماند؛ و خداوند بر او غضب میکند؛ و او را از رحمتش دور میسازد؛ و عذاب عظیمی برای او آماده ساخته است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,346,'ای کسانی که ایمان آوردهاید! هنگامی که در راه خدا گام میزنید (و به سفری برای جهاد میروید)، تحقیق کنید! و بخاطر اینکه سرمایه ناپایدار دنیا (و غنایمی) به دست آورید، به کسی که اظهار صلح و اسلام میکند نگویید: «مسلمان نیستی» زیرا غنیمتهای فراوانی (برای شما) نزد خداست. شما قبلاً چنین بودید؛ و خداوند بر شما منّت نهاد (و هدایت شدید). پس، (بشکرانه این نعمت بزرگ،) تحقیق کنید! خداوند به آنچه انجام میدهید آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,346,'(هرگز) افراد باایمانی که بدون بیماری و ناراحتی، از جهاد بازنشستند، با مجاهدانی که در راه خدا با مال و جان خود جهاد کردند، یکسان نیستند! خداوند، مجاهدانی را که با مال و جان خود جهاد نمودند، بر قاعدان [= ترککنندگان جهاد] برتری مهمّی بخشیده؛ و به هر یک از این دو گروه (به نسبت اعمال نیکشان،) خداوند وعده پاداش نیک داده، و مجاهدان را بر قاعدان، با پاداش عظیمی برتری بخشیده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,346,'درجات (مهمّی) از ناحیه خداوند، و آمرزش و رحمت (نصیب آنان میگردد)؛ و (اگر لغزشهایی داشتهاند،) خداوند آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,346,'کسانی که فرشتگان (قبض ارواح)، روح آنها را گرفتند در حالی که به خویشتن ستم کرده بودند، به آنها گفتند: «شما در چه حالی بودید؟ (و چرا با اینکه مسلمان بودید، در صفِ کفّار جای داشتید؟!)» گفتند: «ما در سرزمین خود، تحت فشار و مستضعف بودیم.» آنها [= فرشتگان] گفتند: «مگر سرزمین خدا، پهناور نبود که مهاجرت کنید؟!» آنها (عذری نداشتند، و) جایگاهشان دوزخ است، و سرانجام بدی دارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,346,'مگر آن دسته از مردان و زنان و کودکانی که براستی تحت فشار قرار گرفتهاند (و حقیقتاً مستضعفند)؛ نه چارهای دارند، و نه راهی (برای نجات از آن محیط آلوده) مییابند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,346,'ممکن است خداوند، آنها را مورد عفو قرار دهد؛ و خداوند، عفو کننده و آمرزنده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,4,346,'کسی که در راه خدا هجرت کند، جاهای امنِ فراوان و گستردهای در زمین مییابد. و هر کس بعنوان مهاجرت به سوی خدا و پیامبر او، از خانه خود بیرون رود، سپس مرگش فرا رسد، پاداش او بر خداست؛ و خداوند، آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,4,346,'هنگامی که سفر میکنید، گناهی بر شما نیست که نماز را کوتاه کنید اگر از فتنه (و خطر) ِ کافران بترسید؛ زیرا کافران، برای شما دشمن آشکاری هستند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,4,346,'و هنگامی که در میان آنها باشی، و (در میدان جنگ) برای آنها نماز را برپا کنی، باید دستهای از آنها با تو (به نماز) برخیزند، و سلاحهایشان را با خود برگیرند؛ و هنگامی که سجده کردند (و نماز را به پایان رساندند)، باید به پشتِ سرِ شما (به میدان نبرد) بروند، و آن دسته دیگر که نماز نخواندهاند (و مشغول پیکار بودهاند)، بیایند و با تو نماز بخوانند؛ آنها باید وسایل دفاعی و سلاحهایشان (را در حال نماز) با خود حمل کنند؛ (زیرا) کافران آرزو دارند که شما از سلاحها و متاعهای خود غافل شوید و یکباره به شما هجوم آورند. و اگر از باران ناراحتید، و یا بیمار (و مجروح) هستید، مانعی ندارد که سلاحهای خود را بر زمین بگذارید؛ ولی وسایل دفاعی (مانند زره و خود را) با خود بردارید خداوند، عذاب خوارکنندهای برای کافران فراهم ساخته است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,4,346,'و هنگامی که نماز را به پایان رساندید، خدا را یاد کنید؛ ایستاده، و نشسته، و در حالی که به پهلو خوابیدهاید! و هرگاه آرامش یافتید (و حالت ترس زایل گشت)، نماز را (به طور معمول) انجام دهید، زیرا نماز، وظیفه ثابت و معیّنی برای مؤمنان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,4,346,'و در راه تعقیب دشمن، (هرگز) سست نشوید! (زیرا) اگر شما درد و رنج میبینید، آنها نیز همانند شما درد و رنج میبینند؛ ولی شما امیدی از خدا دارید که آنها ندارند؛ و خداوند، دانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,4,346,'ما این کتاب را بحق بر تو نازل کردیم؛ تا به آنچه خداوند به تو آموخته، در میان مردم قضاوت کنی؛ و از کسانی مباش که از خائنان حمایت نمایی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,4,346,'و از خداوند، طلب آمرزش نما! که خداوند، آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,4,346,'و از آنها که به خود خیانت کردند، دفاع مکن! زیرا خداوند، افراد خیانتپیشه گنهکار را دوست ندارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,4,346,'آنها زشتکاریِ خود را از مردم پنهان میدارند؛ اما از خدا پنهان نمیدارند، و هنگامی که در مجالس شبانه، سخنانی که خدا راضی نبود میگفتند، خدا با آنها بود، خدا به آنچه انجام میدهند، احاطه دارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,4,346,'آری، شما همانها هستید که در زندگی این جهان، از آنان دفاع کردید! اما کیست که در برابر خداوند، در روز رستاخیز از آنها دفاع کند؟! یا چه کسی است که وکیل و حامی آنها باشد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,4,346,'کسی که کار بدی انجام دهد یا به خود ستم کند، سپس از خداوند طلب آمرزش نماید، خدا را آمرزنده و مهربان خواهد یافت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,4,346,'و کسی که گناهی مرتکب شود، به زیان خود مرتکب شده؛ خداوند، دانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,4,346,'و کسی که خطا یا گناهی مرتکب شود، سپس بیگناهی را متهم سازد، بار بهتان و گناهِ آشکاری بر دوش گرفته است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,4,346,'اگر فضل و رحمت خدا شامل حال تو نبود، گروهی از آنان تصمیم داشتند تو را گمراه کنند؛ اما جز خودشان را گمراه نمیکنند؛ و هیچگونه زیانی به تو نمیرسانند. و خداوند، کتاب و حکمت بر تو نازل کرد؛ و آنچه را نمیدانستی، به تو آموخت؛ و فضل خدا بر تو (همواره) بزرگ بوده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,4,346,'در بسیاری از سخنانِ درِگوشی (و جلسات محرمانه) آنها، خیر و سودی نیست؛ مگر کسی که (به این وسیله،) امر به کمک به دیگران، یا کار نیک، یا اصلاح در میان مردم کند؛ و هر کس برای خشنودی پروردگار چنین کند، پاداش بزرگی به او خواهیم داد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,4,346,'کسی که بعد از آشکار شدن حق، با پیامبر مخالفت کند، و از راهی جز راه مؤمنان پیروی نماید، ما او را به همان راه که میرود میبریم؛ و به دوزخ داخل میکنیم؛ و جایگاه بدی دارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,4,346,'خداوند، شرک به او را نمیآمرزد؛ (ولی) کمتر از آن را برای هر کس بخواهد (و شایسته بداند) میآمرزد. و هر کس برای خدا همتایی قرار دهد، در گمراهی دوری افتاده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,4,346,'آنچه غیر از خدا میخوانند، فقط بتهایی است (بیروح)، که هیچ اثری ندارد؛ و (یا) شیطان سرکش و ویرانگر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,4,346,'خدا او را از رحمت خویش دور ساخته؛ و او گفته است: «از بندگان تو، سهم معیّنی خواهم گرفت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,4,346,'و آنها را گمراه میکنم! و به آرزوها سرگرم میسازم! و به آنان دستور میدهم که (اعمال خرافی انجام دهند، و) گوش چهارپایان را بشکافند، و آفرینشِ پاک خدایی را تغییر دهند! (و فطرت توحید را به شرک بیالایند!)» و هر کس، شیطان را به جای خدا ولّیِ خود برگزیند، زیانِ آشکاری کرده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,4,346,'شیطان به آنها وعدهها (ی دروغین) میدهد؛ و به آرزوها، سرگرم میسازد؛ در حالی که جز فریب و نیرنگ، به آنها وعده نمیدهد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,4,346,'آنها [= پیروان شیطان] جایگاهشان جهنم است؛ و هیچ راه فراری ندارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,4,346,'و کسانی که ایمان آوردهاند و اعمال صالح انجام دادهاند، بزودی آن را در باغهایی از بهشت وارد میکنیم که نهرها از زیر درختانش جاری است؛ جاودانه در آن خواهند ماند. وعده حق خداوند است و کیست که در گفتار و وعدههایش، از خدا صادقتر باشد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,4,346,'(فضیلت و برتری) به آرزوهای شما و آرزوهای اهل کتاب نیست؛ هر کس عمل بدی انجام دهد، کیفر داده میشود؛ و کسی را جز خدا، ولّی و یاور خود نخواهد یافت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,4,346,'و کسی که چیزی از اعمال صالح را انجام دهد، خواه مرد باشد یا زن، در حالی که ایمان داشته باشد، چنان کسانی داخل بهشت میشوند؛ و کمترین ستمی به آنها نخواهد شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,4,346,'دین و آیین چه کسی بهتر است از آن کس که خود را تسلیم خدا کند، و نیکوکار باشد، و پیرو آیین خالص و پاکِ ابراهیم گردد؟ و خدا ابراهیم را به دوستیِ خود، انتخاب کرد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,4,346,'آنچه در آسمانها و زمین است، از آن خداست؛ و خداوند به هر چیزی احاطه دارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,4,346,'از تو درباره حکم زنان سؤال میکنند؛ بگو: «خداوند درباره آنان به شما پاسخ می دهد: آنچه در قرآن درباره زنان یتیمی که حقوقشان را به آنها نمیدهید، و میخواهید با آنها ازدواج کنید، و نیز آنچه درباره کودکان صغیر و ناتوان برای شما بیان شده است، (قسمتی از سفارشهای خداوند در این زمینه میباشد؛ و نیز به شما سفارش میکند که) با یتیمان به عدالت رفتار کنید! و آنچه از نیکیها انجام میدهید؛ خداوند از آن آگاه است (و به شما پاداش شایسته میدهد).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,4,346,'و اگر زنی، از طغیان و سرکشی یا اعراضِ شوهرش، بیم داشته باشد، مانعی ندارد با هم صلح کنند (و زن یا مرد، از پارهای از حقوق خود، بخاطر صلح، صرف نظر نماید.) و صلح، بهتر است؛ اگر چه مردم (طبق غریزه حبّ ذات، در این گونه موارد) بخل میورزند. و اگر نیکی کنید و پرهیزگاری پیشه سازید (و بخاطر صلح، گذشت نمایید)، خداوند به آنچه انجام میدهید، آگاه است (و پاداش شایسته به شما خواهد داد).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,4,346,'شما هرگز نمیتوانید (از نظر محّبت قلبی) در میان زنان، عدالت برقرار کنید، هر چند کوشش نمایید! ولی تمایل خود را بکلّی متوجّه یک طرف نسازید که دیگری را بصورت زنی که شوهرش را از دست داده درآورید! و اگر راه صلاح و پرهیزگاری پیش گیرید، خداوند آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,4,346,'(اما) اگر (راهی برای اصلاح در میان خود نیابند، و) از هم جدا شوند، خداوند هر کدام از آنها را با فضل و کرم خود، بینیاز میکند؛ و خداوند، دارای فضل و کرم، و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,4,346,'آنچه در آسمانها و آنچه در زمین است، از آن خداست. و ما به کسانی که پیش از شما، کتاب آسمانی به آنها داده شده بود، سفارش کردیم، (همچنین) به شما (نیز) سفارش میکنیم که از (نافرمانی) خدا بپرهیزید! و اگر کافر شوید، (به خدا زیانی نمیرسد؛ زیرا) برای خداست آنچه در آسمانها و آنچه در زمین است، و خداوند، بینیاز و ستوده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,4,346,'برای خداست آنچه در آسمانها و زمین است؛ و کافی است که خدا، حافظ و نگاهبان آنها باشد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,4,346,'ای مردم! اگر او بخواهد، شما را از میان میبرد و افراد دیگری را (به جای شما) می آورد، و خداوند، بر این کار تواناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,4,346,'کسانی که پاداش دنیوی بخواهند، (و در قید نتایج معنوی و اخروی نباشند، در اشتباهند؛ زیرا) پاداش دنیا و آخرت نزد خداست؛ و خداوند، شنوا و بیناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,4,346,'ای کسانی که ایمان آوردهاید! کاملاً قیام به عدالت کنید! برای خدا شهادت دهید، اگر چه (این گواهی) به زیان خود شما، یا پدر و مادر و نزدیکان شما بوده باشد! (چرا که) اگر آنها غنیّ یا فقیر باشند، خداوند سزاوارتر است که از آنان حمایت کند. بنابراین، از هوی و هوس پیروی نکنید؛ که از حق، منحرف خواهید شد! و اگر حق را تحریف کنید، و یا از اظهار آن، اعراض نمایید، خداوند به آنچه انجام میدهید، آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,4,346,'ای کسانی که ایمان آوردهاید! به خدا و پیامبرش، و کتابی که بر او نازل کرده، و کتب (آسمانی) که پیش از این فرستاده است، ایمان (واقعی) بیاورید کسی که خدا و فرشتگان او و کتابها و پیامبرانش و روز واپسین را انکار کند، در گمراهی دور و درازی افتاده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,4,346,'کسانی که ایمان آوردند، سپس کافر شدند، باز هم ایمان آوردند، و دیگربار کافر شدند، سپس بر کفر خود افزودند، خدا هرگز آنها را نخواهد بخشید، و آنها را به راه (راست) هدایت نخواهد کرد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,4,346,'به منافقان بشارت ده که مجازات دردناکی در انتظار آنهاست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,4,346,'همانها که کافران را به جای مؤمنان، دوست خود انتخاب میکنند. آیا عزّت و آبرو نزد آنان میجویند؟ با اینکه همه عزّتها از آن خداست؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,4,346,'و خداوند (این حکم را) در قرآن بر شما نازل کرده که هرگاه بشنوید افرادی آیات خدا را انکار و استهزا میکنند، با آنها ننشینید تا به سخن دیگری بپردازند! وگرنه، شما هم مثل آنان خواهید بود. خداوند، منافقان و کافران را همگی در دوزخ جمع میکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,4,346,'منافقان همانها هستند که پیوسته انتظار میکشند و مراقب شما هستند؛ اگر فتح و پیروزی نصیب شما گردد، میگویند: مگر ما با شما نبودیم؟ (پس ما نیز در افتخارات و غنایم شریکیم!) «و اگر بهرهای نصیب کافران گردد، به آنان میگویند: مگر ما شما را به مبارزه و عدم تسلیم در برابر مؤمنان، تشویق نمیکردیم؟ (پس با شما شریک خواهیم بود!)» خداوند در روز رستاخیز، میان شما داوری میکند؛ و خداوند هرگز کافران را بر مؤمنان تسلّطی نداده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,4,346,'منافقان میخواهند خدا را فریب دهند؛ در حالی که او آنها را فریب میدهد؛ و هنگامی که به نماز برمیخیزند، با کسالت برمیخیزند؛ و در برابر مردم ریا میکنند؛ و خدا را جز اندکی یاد نمینمایند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,4,346,'آنها افراد بیهدفی هستند که نه سوی اینها، و نه سوی آنهایند! (نه در صف مؤمنان قرار دارند، و نه در صف کافران!) و هر کس را خداوند گمراه کند، راهی برای او نخواهی یافت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,4,346,'ای کسانی که ایمان آوردهاید! غیر از مؤمنان، کافران را ولّی و تکیهگاه خود قرار ندهید! آیا میخواهید (با این عمل،) دلیل آشکاری بر ضدّ خود در پیشگاه خدا قرار دهید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,4,346,'منافقان در پایینترین درکات دوزخ قرار دارند؛ و هرگز یاوری برای آنها نخواهی یافت! (بنابر این، از طرح دوستی با دشمنان خدا، که نشانه نفاق است، بپرهیزید!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,4,346,'مگر آنها که توبه کنند، و جبران و اصلاح نمایند، به (دامن لطف) خدا، چنگ زنند، و دین خود را برای خدا خالص کنند؛ آنها با مؤمنان خواهند بود؛ و خداوند به افراد باایمان، پاداش عظیمی خواهد داد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,4,346,'خدا چه نیازی به مجازات شما دارد اگر شکرگزاری کنید و ایمان آورید؟ خدا شکرگزار و آگاه است. (اعمال و نیّات شما را میداند، و به اعمال نیک، پاداش نیک می دهد.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,4,346,'خداوند دوست ندارد کسی با سخنان خود، بدیها (ی دیگران) را اظهار کند؛ مگر آن کس که مورد ستم واقع شده باشد. خداوند، شنوا و داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,4,346,'اگر نیکیها را آشکار یا مخفی سازید، و از بدیها گذشت نمایید، خداوند بخشنده و تواناست (و با اینکه قادر بر انتقام است، عفو و گذشت میکند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,4,346,'کسانی که خدا و پیامبرانِ او را انکار میکنند، و میخواهند میان خدا و پیامبرانش تبعیض قائل شوند، و میگویند: «به بعضی ایمان میآوریم، و بعضی را انکار می کنیم» و میخواهند در میان این دو، راهی برای خود انتخاب کنند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,4,346,'آنها کافران حقیقیاند؛ و برای کافران، مجازات خوارکنندهای فراهم ساختهایم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,4,346,'(ولی) کسانی که به خدا و رسولان او ایمان آورده، و میان احدی از آنها فرق نمیگذارند، پاداششان را خواهد داد؛ خداوند، آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,4,346,'اهل کتاب از تو میخواهند کتابی از آسمان (یکجا) بر آنها نازل کنی؛ (در حالی که این یک بهانه است؛) آنها از موسی، بزرگتر از این را خواستند، و گفتند: «خدا را آشکارا به ما نشان ده!» و بخاطر این ظلم و ستم، صاعقه آنها را فرا گرفت. سپس گوساله (سامری) را، پس از آن همه دلایل روشن که برای آنها آمد، (به خدایی) انتخاب کردند، ولی ما از آن درگذشتیم (و عفو کردیم) و به موسی، برهان آشکاری دادیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,4,346,'و کوه طور را بر فراز آنها برافراشتیم؛ و در همان حال از آنها پیمان گرفتیم، و به آنها گفتیم: «(برای توبه،) از در (بیت المقدس) با خضوع درآیید!» و (نیز) گفتیم: «روز شنبه تعدّی نکنید (و دست از کار بکشید!)» و از آنان (در برابر همه اینها،) پیمان محکمی گرفتیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,4,346,'(ولی) بخاطر پیمانشکنی آنها، و انکار آیات خدا، و کشتن پیامبران بناحق، و بخاطر اینکه (از روی استهزا) میگفتند: «بر دلهای ما، پرده افکنده (شده و سخنان پیامبر را درک نمیکنیم!» رانده درگاه خدا شدند.) آری، خداوند بعلّت کفرشان، بر دلهای آنها مهر زده؛ که جز عده کمی (که راه حق میپویند و لجاج ندارند،) ایمان نمیآورند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,4,346,'و (نیز) بخاطر کفرشان، و تهمت بزرگی که بر مریم زدند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,4,346,'و گفتارشان که: «ما، مسیح عیسی بن مریم، پیامبر خدا را کشتیم!» در حالی که نه او را کشتند، و نه بر دار آویختند؛ لکن امر بر آنها مشتبه شد. و کسانی که در مورد (قتل) او اختلاف کردند، از آن در شک هستند و علم به آن ندارند و تنها از گمان پیروی میکنند؛ و قطعاً او را نکشتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,4,346,'بلکه خدا او را به سوی خود، بالا برد. و خداوند، توانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,4,346,'و هیچ یک از اهل کتاب نیست مگر اینکه پیش از مرگش به او [= حضرت مسیح] ایمان میآورد؛ و روز قیامت، بر آنها گواه خواهد بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,4,346,'بخاطر ظلمی که از یهود صادر شد، و (نیز) بخاطر جلوگیری بسیار آنها از راه خدا، بخشی از چیزهای پاکیزه را که بر آنها حلال بود، حرام کردیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,4,346,'و (همچنین) بخاطر ربا گرفتن، در حالی که از آن نهی شده بودند؛ و خوردن اموال مردم بباطل؛ و برای کافران آنها، عذاب دردناکی آماده کردهایم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,4,346,'ولی راسخانِ در علم از آنها، و مؤمنان (از امّت اسلام،) به تمام آنچه بر تو نازل شده، و آنچه پیش از تو نازل گردیده، ایمان میآورند. (همچنین) نمازگزاران و زکاتدهندگان و ایمانآورندگان به خدا و روز قیامت، بزودی به همه آنان پاداش عظیمی خواهیم داد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,4,346,'ما به تو وحی فرستادیم؛ همان گونه که به نوح و پیامبران بعد از او وحی فرستادیم؛ و (نیز) به ابراهیم و اسماعیل و اسحاق و یعقوب و اسباط [= بنی اسرائیل] و عیسی و ایّوب و یونس و هارون و سلیمان وحی نمودیم؛ و به داوود زبور دادیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,4,346,'و پیامبرانی که سرگذشت آنها را پیش از این، برای تو باز گفتهایم؛ و پیامبرانی که سرگذشت آنها را بیان نکردهایم؛ و خداوند با موسی سخن گفت. (و این امتیاز، از آن او بود.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,4,346,'پیامبرانی که بشارتدهنده و بیمدهنده بودند، تا بعد از این پیامبران، حجتی برای مردم بر خدا باقی نماند، (و بر همه اتمام حجت شود؛) و خداوند، توانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,4,346,'ولی خداوند گواهی میدهد به آنچه بر تو نازل کرده؛ که از روی علمش نازل کرده است، و فرشتگان (نیز) گواهی میدهند؛ هر چند گواهی خدا کافی است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,4,346,'کسانی که کافر شدند، و (مردم را) از راه خدا بازداشتند، در گمراهی دوری گرفتار شدهاند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,4,346,'کسانی که کافر شدند، و (به خود و دیگران) ستم کردند، هرگز خدا آنها را نخواهد بخشید، و آنان را به هیچ راهی هدایت نخواهد کرد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,4,346,'مگر به راه دوزخ! که جاودانه در آن خواهند ماند؛ و این کار برای خدا آسان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,4,346,'ای مردم! پیامبر (ی که انتظارش را میکشیدید،) حق را از جانب پروردگارتان آورد؛ به او ایمان بیاورید که برای شما بهتر است! و اگر کافر شوید، (به خدا زیانی نمی رسد، زیرا) آنچه در آسمانها و زمین است از آن خداست، و خداوند، دانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,4,346,'ای اهل کتاب! در دین خود، غلوّ (و زیاده روی) نکنید! و در باره خدا، غیر از حق نگویید! مسیح عیسی بن مریم فقط فرستاده خدا، و کلمه (و مخلوق) اوست، که او را به مریم القا نمود؛ و روحی (شایسته) از طرف او بود. بنابر این، به خدا و پیامبران او، ایمان بیاورید! و نگویید: «(خداوند) سهگانه است!» (از این سخن) خودداری کنید که برای شما بهتر است! خدا، تنها معبود یگانه است؛ او منزه است که فرزندی داشته باشد؛ (بلکه) از آن اوست آنچه در آسمانها و در زمین است؛ و برای تدبیر و سرپرستی آنها، خداوند کافی است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,4,346,'هرگز مسیح از این ابا نداشت که بنده خدا باشد؛ و نه فرشتگان مقرّب او (از این ابا دارند). و آنها که از عبودیّت و بندگی او، روی برتابند و تکبّر کنند، بزودی همه آنها را (در قیامت) نزد خود جمع خواهد کرد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,4,346,'امّا آنها که ایمان آوردند و اعمال صالح انجام دادند، پاداششان را بطور کامل خواهد داد؛ و از فضل و بخشش خود، بر آنها خواهد افزود. و آنها را که ابا کردند و تکبّر ورزیدند، مجازات دردناکی خواهد کرد؛ و برای خود، غیر از خدا، سرپرست و یاوری نخواهند یافت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,4,346,'ای مردم! دلیل روشن از طرف پروردگارتان برای شما آمد؛ و نور آشکاری به سوی شما نازل کردیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,4,346,'امّا آنها که به خدا ایمان آوردند و به (آن کتاب آسمانی) چنگ زدند، بزودی همه را در رحمت و فضل خود، وارد خواهد ساخت؛ و در راه راستی، به سوی خودش هدایت میکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,4,346,'از تو (در باره ارث خواهران و برادران) سؤال میکنند، بگو: «خداوند، حکم کلاله (خواهر و برادر) را برای شما بیان میکند: اگر مردی از دنیا برود، که فرزند نداشته باشد، و برای او خواهری باشد، نصف اموالی را که به جا گذاشته، از او (ارث) میبرد؛ و (اگر خواهری از دنیا برود، وارث او یک برادر باشد،) او تمام مال را از آن خواهر به ارث میبرد، در صورتی که (میّت) فرزند نداشته باشد؛ و اگر دو خواهر (از او) باقی باشند دو سوم اموال را میبرند؛ و اگر برادران و خواهران با هم باشند، (تمام اموال را میان خود تقسیم میکنند؛ و) برای هر مذکّر، دو برابر سهم مؤنّث است. خداوند (احکام خود را) برای شما بیان میکند تا گمراه نشوید؛ و خداوند به همه چیز داناست.»');
+INSERT INTO chapters (id, number, quran_id) VALUES(347,5,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,347,'ای کسانی که ایمان آوردهاید! به پیمانها (و قراردادها) وفا کنید! چهارپایان (و جنین آنها) برای شما حلال شده است؛ مگر آنچه بر شما خوانده میشود (و استثنا خواهد شد). و به هنگام احرام، صید را حلال نشمرید! خداوند هر چه بخواهد (و مصلحت باشد) حکم میکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,347,'ای کسانی که ایمان آوردهاید! شعائر و حدود الهی (و مراسم حج را محترم بشمرید! و مخالفت با آنها) را حلال ندانید! و نه ماه حرام را، و نه قربانیهای بینشان و نشاندار را، و نه آنها را که به قصد خانه خدا برای به دست آوردن فضل پروردگار و خشنودی او میآیند! اما هنگامی که از احرام بیرون آمدید، صیدکردن برای شما مانعی ندارد. و خصومت با جمعیّتی که شما را از آمدن به مسجد الحرام (در سال حدیبیه) بازداشتند، نباید شما را وادار به تعدّی و تجاوز کند! و (همواره) در راه نیکی و پرهیزگاری با هم تعاون کنید! و (هرگز) در راه گناه و تعدّی همکاری ننمایید! و از (مخالفت فرمان) خدا بپرهیزید که مجازات خدا شدید است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,347,'گوشت مردار، و خون، و گوشت خوک، و حیواناتی که به غیر نام خدا ذبح شوند، و حیوانات خفهشده، و به زجر کشته شده، و آنها که بر اثر پرتشدن از بلندی بمیرند، و آنها که به ضرب شاخ حیوان دیگری مرده باشند، و باقیمانده صید حیوان درنده -مگر آنکه (بموقع به آن حیوان برسید، و) آن را سرببرید- و حیواناتی که روی بتها (یا در برابر آنها) ذبح میشوند، (همه) بر شما حرام شده است؛ و (همچنین) قسمت کردن گوشت حیوان به وسیله چوبههای تیر مخصوص بخت آزمایی؛ تمام این اعمال، فسق و گناه است -امروز، کافران از (زوال) آیین شما، مأیوس شدند؛ بنابر این، از آنها نترسید! و از (مخالفت) من بترسید! امروز، دین شما را کامل کردم؛ و نعمت خود را بر شما تمام نمودم؛ و اسلام را به عنوان آیین (جاودان) شما پذیرفتم- امّا آنها که در حال گرسنگی، دستشان به غذای دیگری نرسد، و متمایل به گناه نباشند، (مانعی ندارد که از گوشتهای ممنوع بخورند؛) خداوند، آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,347,'از تو سؤال میکنند چه چیزهایی برای آنها حلال شده است؟ بگو: «آنچه پاکیزه است، برای شما حلال گردیده؛ (و نیز صید) حیوانات شکاری و سگهای آموخته (و تربیت یافته) که از آنچه خداوند به شما تعلیم داده به آنها یاد دادهاید، (بر شما حلال است؛) پس، از آنچه این حیوانات برای شما (صید میکنند و) نگاه میدارند، بخورید؛ و نام خدا را (به هنگام فرستادن حیوان برای شکار،) بر آن ببرید؛ و از (معصیت) خدا بپرهیزید که خداوند سریع الحساب است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,347,'امروز چیزهای پاکیزه برای شما حلال شده؛ و (همچنین) طعام اهل کتاب، برای شما حلال است؛ و طعام شما برای آنها حلال؛ و (نیز) زنان پاکدامن از مسلمانان، و زنان پاکدامن از اهل کتاب، حلالند؛ هنگامی که مهر آنها را بپردازید و پاکدامن باشید؛ نه زناکار، و نه دوست پنهانی و نامشروع گیرید. و کسی که انکار کند آنچه را باید به آن ایمان بیاورد، اعمال او تباه میگردد؛ و در سرای دیگر، از زیانکاران خواهد بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,347,'ای کسانی که ایمان آوردهاید! هنگامی که به نماز میایستید، صورت و دستها را تا آرنج بشویید! و سر و پاها را تا مفصل [= برآمدگی پشت پا] مسح کنید! و اگر جنب باشید، خود را بشویید (و غسل کنید)! و اگر بیمار یا مسافر باشید، یا یکی از شما از محل پستی آمده [= قضای حاجت کرده]، یا با زنان تماس گرفته (و آمیزش جنسی کردهاید)، و آب (برای غسل یا وضو) نیابید، با خاک پاکی تیمم کنید! و از آن، بر صورت [= پیشانی] و دستها بکشید! خداوند نمیخواهد مشکلی برای شما ایجاد کند؛ بلکه میخواهد شما را پاک سازد و نعمتش را بر شما تمام نماید؛ شاید شکر او را بجا آورید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,347,'و به یاد آورید نعمت خدا را بر شما، و پیمانی را که با تأکید از شما گرفت، آن زمان که گفتید: «شنیدیم و اطاعت کردیم»! و از (مخالفت فرمان) خدا بپرهیزید که خدا، از آنچه درون سینههاست، آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,347,'ای کسانی که ایمان آوردهاید! همواره برای خدا قیام کنید، و از روی عدالت، گواهی دهید! دشمنی با جمعیّتی، شما را به گناه و ترک عدالت نکشاند! عدالت کنید، که به پرهیزگاری نزدیکتر است! و از (معصیت) خدا بپرهیزید، که از آنچه انجام میدهید، با خبر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,347,'خداوند، به آنها که ایمان آورده و اعمال صالح انجام دادهاند، وعده آمرزش و پاداش عظیمی داده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,347,'و کسانی که کافر شدند و آیات ما را تکذیب کردند، اهل دوزخند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,347,'ای کسانی که ایمان آوردهاید! نعمتی را که خدا به شما بخشید، به یاد آورید؛ آن زمان که جمعی (از دشمنان)، قصد داشتند دست به سوی شما دراز کنند (و شما را از میان بردارند)، اما خدا دست آنها را از شما باز داشت! از خدا بپرهیزید! و مؤمنان باید تنها بر خدا توکّل کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,347,'خدا از بنی اسرائیل پیمان گرفت. و از آنها، دوازده نقیب [= سرپرست] برانگیختیم. و خداوند (به آنها) گفت: «من با شما هستم! اگر نماز را برپا دارید، و زکات را بپردازید، و به رسولان من ایمان بیاورید و آنها را یاری کنید، و به خدا قرض الحسن بدهید [= در راه او، به نیازمندان کمک کنید]، گناهان شما را میپوشانم [= می بخشم]؛ و شما را در باغهایی از بهشت، که نهرها از زیر درختانش جاری است، وارد میکنم. اما هر کس از شما بعد از این کافر شود، از راه راست منحرف گردیده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,347,'ولی بخاطر پیمانشکنی، آنها را از رحمت خویش دور ساختیم؛ و دلهای آنان را سخت و سنگین نمودیم؛ سخنان (خدا) را از موردش تحریف میکنند؛ و بخشی از آنچه را به آنها گوشزد شده بود، فراموش کردند؛ و هر زمان، از خیانتی (تازه) از آنها آگاه میشوی، مگر عده کمی از آنان؛ ولی از آنها درگذر و صرفنظر کن، که خداوند نیکوکاران را دوست میدارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,347,'و از کسانی که ادّعای نصرانیّت (و یاری مسیح) داشتند (نیز) پیمان گرفتیم؛ ولی آنها قسمت مهمّی را از آنچه به آنان تذکّر داده شده بود فراموش کردند؛ از این رو در میان آنها، تا دامنه قیامت، عداوت و دشمنی افکندیم. و خداوند، (در قیامت) آنها را از آنچه انجام میدادند (و نتایج آن)، آگاه خواهد ساخت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,347,'ای اهل کتاب! پیامبر ما، که بسیاری از حقایق کتاب آسمانی را که شما کتمان میکردید روشن میسازد، به سوی شما آمد؛ و از بسیاری از آن، (که فعلاً افشای آن مصلحت نیست،) صرف نظر مینماید. (آری،) از طرف خدا، نور و کتاب آشکاری به سوی شما آمد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,347,'خداوند به برکت آن، کسانی را که از خشنودی او پیروی کنند، به راههای سلامت، هدایت میکند؛ و به فرمان خود، از تاریکیها به سوی روشنایی میبرد؛ و آنها را به سوی راه راست، رهبری مینماید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,347,'آنها که گفتند: «خدا، همان مسیح بن مریم است»، بطور مسلّم کافر شدند؛ بگو: «اگر خدا بخواهد مسیح بن مریم و مادرش و همه کسانی را که روی زمین هستند هلاک کند، چه کسی میتواند جلوگیری کند؟ (آری،) حکومت آسمانها و زمین، و آنچه میان آن دو قرار دارد از آن خداست؛ هر چه بخواهد، میآفریند؛ (حتّی انسانی بدون پدر، مانند مسیح؛) و او، بر هر چیزی تواناست.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,347,'یهود و نصاری گفتند: «ما، فرزندان خدا و دوستان (خاصّ) او هستیم.» بگو: «پس چرا شما را در برابر گناهانتان مجازات میکند؟! بلکه شما هم بشری هستید از مخلوقاتی که آفریده؛ هر کس را بخواهد (و شایسته بداند)، میبخشد؛ و هر کس را بخواهد (و مستحق بداند)، مجازات میکند؛ و حکومت آسمانها و زمین و آنچه در میان آنهاست، از آن اوست؛ و بازگشت همه موجودات، به سوی اوست.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,347,'ای اهل کتاب! رسول ما، پس از فاصله و فترتی میان پیامبران، به سوی شما آمد؛ در حالی که حقایق را برای شما بیان میکند؛ تا مبادا (روز قیامت) بگویید: «نه بشارت دهندهای به سراغ ما آمد، و نه بیم دهندهای»! (هم اکنون، پیامبر) بشارتدهنده و بیمدهنده، به سوی شما آمد! و خداوند بر همه چیز تواناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,347,'(به یاد آورید) هنگامی را که موسی به قوم خود گفت: «ای قوم من! نعمت خدا را بر خود متذکّر شوید هنگامی که در میان شما، پیامبرانی قرار داد؛ (و زنجیر بندگی و اسارت فرعونی را شکست) و شما را حاکم و صاحب اختیار خود قرار داد؛ و به شما چیزهایی بخشید که به هیچ یک از جهانیان نداده بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,347,'ای قوم! به سرزمین مقدّسی که خداوند برای شما مقرّر داشته، وارد شوید! و به پشت سر خود بازنگردید (و عقب گرد نکنید) که زیانکار خواهید بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,347,'گفتند: «ای موسی! در آن (سرزمین)، جمعیّتی (نیرومند و) ستمگرند؛ و ما هرگز وارد آن نمیشویم تا آنها از آن خارج شوند؛ اگر آنها از آن خارج شوند، ما وارد خواهیم شد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,347,'(ولی) دو نفر از مردانی که از خدا میترسیدند، و خداوند به آنها، نعمت (عقل و ایمان و شهامت) داده بود، گفتند: «شما وارد دروازه شهر آنان شوید! هنگامی که وارد شدید، پیروز خواهید شد. و بر خدا توکل کنید اگر ایمان دارید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,347,'(بنی اسرائیل) گفتند: «ای موسی! تا آنها در آنجا هستند، ما هرگز وارد نخواهیم شد! تو و پروردگارت بروید و (با آنان) بجنگید، ما همینجا نشستهایم»!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,347,'(موسی) گفت: «پروردگارا! من تنها اختیار خودم و برادرم را دارم، میان ما و این جمعیّت گنهکار، جدایی بیفکن!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,347,'خداوند (به موسی) فرمود: «این سرزمین (مقدس)، تا چهل سال بر آنها ممنوع است (و به آن نخواهند رسید)؛ پیوسته در زمین (در این بیابان)، سرگردان خواهند بود؛ و در باره (سرنوشت) این جمعیّت گنهکار، غمگین مباش!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,347,'و داستان دو فرزند آدم را بحقّ بر آنها بخوان: هنگامی که هر کدام، کاری برای تقرّب (به پروردگار) انجام دادند؛ امّا از یکی پذیرفته شد، و از دیگری پذیرفته نشد؛ (برادری که عملش مردود شده بود، به برادر دیگر) گفت: «به خدا سوگند تو را خواهم کشت!» (برادر دیگر) گفت: «(من چه گناهی دارم؟ زیرا) خدا، تنها از پرهیزگاران میپذیرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,347,'اگر تو برای کشتن من، دست دراز کنی، من هرگز به قتل تو دست نمیگشایم، چون از پروردگار جهانیان میترسم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,347,'من میخواهم تو با گناه من و خودت (از این عمل) بازگردی (و بار هر دو گناه را به دوش کشی)؛ و از دوزخیان گردی. و همین است سزای ستمکاران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,347,'نفس سرکش، کم کم او را به کشتن برادرش ترغیب کرد؛ (سرانجام) او را کشت؛ و از زیانکاران شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,347,'سپس خداوند زاغی را فرستاد که در زمین، جستجو (و کندوکاو) میکرد؛ تا به او نشان دهد چگونه جسد برادر خود را دفن کند. او گفت: «وای بر من! آیا من نتوانستم مثل این زاغ باشم و جسد برادرم را دفن کنم؟!» و سرانجام (از ترس رسوایی، و بر اثر فشار وجدان، از کار خود) پشیمان شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,347,'به همین جهت، بر بنی اسرائیل مقرّر داشتیم که هر کس، انسانی را بدون ارتکاب قتل یا فساد در روی زمین بکشد، چنان است که گویی همه انسانها را کشته؛ و هر کس، انسانی را از مرگ رهایی بخشد، چنان است که گویی همه مردم را زنده کرده است. و رسولان ما، دلایل روشن برای بنی اسرائیل آوردند، اما بسیاری از آنها، پس از آن در روی زمین، تعدّی و اسراف کردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,347,'کیفر آنها که با خدا و پیامبرش به جنگ برمیخیزند، و اقدام به فساد در روی زمین میکنند، (و با تهدید اسلحه، به جان و مال و ناموس مردم حمله میبرند،) فقط این است که اعدام شوند؛ یا به دار آویخته گردند؛ یا (چهار انگشت از) دست (راست) و پای (چپ) آنها، بعکس یکدیگر، بریده شود؛ و یا از سرزمین خود تبعید گردند. این رسوایی آنها در دنیاست؛ و در آخرت، مجازات عظیمی دارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,347,'مگر آنها که پیش از دست یافتن شما بر آنان، توبه کنند؛ پس بدانید (خدا توبه آنها را میپذیرد؛) خداوند آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,347,'ای کسانی که ایمان آوردهاید! از (مخالفت فرمان) خدا بپرهیزید! و وسیلهای برای تقرب به او بجوئید! و در راه او جهاد کنید، باشد که رستگار شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,347,'بیقین کسانی که کافر شدند، اگر تمام آنچه روی زمین است و همانند آن، مال آنها باشد و همه آن را برای نجات از کیفر روز قیامت بدهند، از آنان پذیرفته نخواهد شد؛ و مجازات دردناکی خواهند داشت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,347,'پیوسته میخواهند از آتش خارج شوند، ولی نمیتوانند از آن خارج گردند؛ و برای آنها مجازاتی پایدار است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,347,'دست مرد دزد و زن دزد را، به کیفر عملی که انجام دادهاند، بعنوان یک مجازات الهی، قطع کنید! و خداوند توانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,347,'اما آن کس که پس از ستم کردن، توبه و جبران نماید، خداوند توبه او را میپذیرد؛ (و از این مجازات؛ معاف میشود، زیرا) خداوند، آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,347,'آیا نمیدانی که حکومت و فرمانروائی آسمانها و زمین از آن خداست؟ هر کس را بخواهد (و مستحق بداند)، کیفر میکند؛ و هر کس را بخواهد و شایسته بداند، میبخشد؛ و خداوند بر هر چیزی قادر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,347,'ای فرستاده (خدا)! آنها که در مسیر کفر شتاب میکنند و با زبان میگویند: «ایمان آوردیم» و قلب آنها ایمان نیاورده، تو را اندوهگین نسازند! و (همچنین) گروهی از یهودیان که خوب به سخنان تو گوش میدهند، تا دستاویزی برای تکذیب تو بیابند؛ آنها جاسوسان گروه دیگری هستند که خودشان نزد تو نیامدهاند؛ آنها سخنان را از مفهوم اصلیش تحریف میکنند، و (به یکدیگر) میگویند: «اگر این (که ما میخواهیم) به شما داده شد (و محمد بر طبق خواسته شما داوری کرد،) بپذیرید، وگرنه (از او) دوری کنید!» (ولی) کسی را که خدا (بر اثر گناهان پیدرپی او) بخواهد مجازات کند، قادر به دفاع از او نیستی؛ آنها کسانی هستند که خدا نخواسته دلهایشان را پاک کند؛ در دنیا رسوایی، و در آخرت مجازات بزرگی نصیبشان خواهد شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,347,'آنها بسیار به سخنان تو گوش میدهند تا آن را تکذیب کنند؛ مال حرام فراوان می خورند؛ پس اگر نزد تو آمدند، در میان آنان داوری کن، یا (اگر صلاح دانستی) آنها را به حال خود واگذار! و اگر از آنان صرفنظر کنی، به تو هیچ زیانی نمیرسانند؛ و اگر میان آنها داوری کنی، با عدالت داوری کن، که خدا عادلان را دوست دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,347,'چگونه تو را به داوری میطلبند؟! در حالی که تورات نزد ایشان است؛ و در آن، حکم خدا هست. (وانگهی) پس از داوریخواستن از حکم تو، (چرا) روی می گردانند؟! آنها مؤمن نیستند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,347,'ما تورات را نازل کردیم در حالی که در آن، هدایت و نور بود؛ و پیامبران، که در برابر فرمان خدا تسلیم بودند، با آن برای یهود حکم میکردند؛ و (همچنین) علما و دانشمندان به این کتاب که به آنها سپرده شده و بر آن گواه بودند، داوری مینمودند. بنابر این، (بخاطر داوری بر طبق آیات الهی،) از مردم نهراسید! و از من بترسید! و آیات مرا به بهای ناچیزی نفروشید! و آنها که به احکامی که خدا نازل کرده حکم نمیکنند، کافرند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,347,'و بر آنها [= بنی اسرائیل] در آن [= تورات]، مقرر داشتیم که جان در مقابل جان، و چشم در مقابل چشم، و بینی در برابر بینی، و گوش در مقابل گوش، و دندان در برابر دندان میباشد؛ و هر زخمی، قصاص دارد؛ و اگر کسی آن را ببخشد (و از قصاص، صرفنظر کند)، کفاره (گناهان) او محسوب میشود؛ و هر کس به احکامی که خدا نازل کرده حکم نکند، ستمگر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,347,'و بدنبال آنها [= پیامبران پیشین]، عیسی بن مریم را فرستادیم در حالی که کتاب تورات را که پیش از او فرستاده شده بود تصدیق داشت؛ و انجیل را به او دادیم که در آن، هدایت و نور بود؛ و (این کتاب آسمانی نیز) تورات را، که قبل از آن بود، تصدیق میکرد؛ و هدایت و موعظهای برای پرهیزگاران بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,347,'اهل انجیل [= پیروان مسیح] نیز باید به آنچه خداوند در آن نازل کرده حکم کنند! و کسانی که بر طبق آنچه خدا نازل کرده حکم نمیکنند، فاسقند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,347,'و این کتاب [= قرآن] را به حق بر تو نازل کردیم، در حالی که کتب پیشین را تصدیق میکند، و حافظ و نگاهبان آنهاست؛ پس بر طبق احکامی که خدا نازل کرده، در میان آنها حکم کن! از هوی و هوسهای آنان پیروی نکن! و از احکام الهی، روی مگردان! ما برای هر کدام از شما، آیین و طریقه روشنی قرار دادیم؛ و اگر خدا میخواست، همه شما را امت واحدی قرارمیداد؛ ولی خدا میخواهد شما را در آنچه به شما بخشیده بیازماید؛ (و استعدادهای مختلف شما را پرورش دهد). پس در نیکیها بر یکدیگر سبقت جویید! بازگشت همه شما، به سوی خداست؛ سپس از آنچه در آن اختلاف میکردید؛ به شما خبر خواهد داد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,347,'و در میان آنها [= اهل کتاب]، طبق آنچه خداوند نازل کرده، داوری کن! و از هوسهای آنان پیروی مکن! و از آنها برحذر باش، مبادا تو را از بعض احکامی که خدا بر تو نازل کرده، منحرف سازند! و اگر آنها (از حکم و داوری تو)، روی گردانند، بدان که خداوند میخواهد آنان را بخاطر پارهای از گناهانشان مجازات کند؛ و بسیاری از مردم فاسقند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,347,'آیا آنها حکم جاهلیّت را (از تو) میخواهند؟! و چه کسی بهتر از خدا، برای قومی که اهل یقین هستند، حکم میکند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,347,'ای کسانی که ایمان آوردهاید! یهود و نصاری را ولّی (و دوست و تکیهگاه خود،) انتخاب نکنید! آنها اولیای یکدیگرند؛ و کسانی که از شما با آنان دوستی کنند، از آنها هستند؛ خداوند، جمعیّت ستمکار را هدایت نمیکند');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,347,'(ولی) کسانی را که در دلهایشان بیماری است میبینی که در (دوستی با آنان)، بر یکدیگر پیشی میگیرند، و میگویند: «میترسیم حادثهای برای ما اتفاق بیفتد (و نیاز به کمک آنها داشته باشیم!)» شاید خداوند پیروزی یا حادثه دیگری از سوی خود (به نفع مسلمانان) پیش بیاورد؛ و این دسته، از آنچه در دل پنهان داشتند، پشیمان گردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,347,'آنها که ایمان آوردهاند میگویند: «آیا این (منافقان) همانها هستند که با نهایت تأکید سوگند یاد کردند که با شما هستند؟! (چرا کارشان به اینجا رسید؟!)» (آری،) اعمالشان نابود گشت، و زیانکار شدند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,347,'ای کسانی که ایمان آوردهاید! هر کس از شما، از آیین خود بازگردد، (به خدا زیانی نمیرساند؛ خداوند جمعیّتی را میآورد که آنها را دوست دارد و آنان (نیز) او را دوست دارند، در برابر مؤمنان متواضع، و در برابر کافران سرسخت و نیرومندند؛ آنها در راه خدا جهاد میکنند، و از سرزنش هیچ ملامتگری هراسی ندارند. این، فضل خداست که به هر کس بخواهد (و شایسته ببیند) میدهد؛ و (فضل) خدا وسیع، و خداوند داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,347,'سرپرست و ولیّ شما، تنها خداست و پیامبر او و آنها که ایمان آوردهاند؛ همانها که نماز را برپا میدارند، و در حال رکوع، زکات میدهند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,347,'و کسانی که ولایت خدا و پیامبر او و افراد باایمان را بپذیرند، پیروزند؛ (زیرا) حزب و جمعیّت خدا پیروز است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,347,'ای کسانی که ایمان آوردهاید! افرادی که آیین شما را به باد استهزاء و بازی میگیرند -از اهل کتاب و مشرکان- ولیّ خود انتخاب نکنید؛ و از خدا بپرهیزید اگر ایمان دارید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,347,'آنها هنگامی که (اذان میگویید، و مردم را) به نماز فرا میخوانید، آن را به مسخره و بازی میگیرند؛ این بخاطر آن است که آنها جمعی نابخردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,347,'بگو: «ای اهل کتاب! آیا به ما خرده میگیرید؟ (مگر ما چه کردهایم) جز اینکه به خداوند یگانه، و به آنچه بر ما نازل شده، و به آنچه پیش از این نازل گردیده، ایمان آوردهایم. و این، بخاطر آن است که بیشتر شما، از راه حق، خارج شدهاید.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,347,'بگو: «آیا شما را از کسانی که موقعیّت و پاداششان نزد خدا بدتر از این است، با خبر کنم؟ کسانی که خداوند آنها را از رحمت خود دور ساخته، و مورد خشم قرار داده، (و مسخ کرده،) و از آنها، میمونها و خوکهایی قرار داده، و پرستش بت کردهاند؛ موقعیّت و محل آنها، بدتر است؛ و از راه راست، گمراهترند.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,347,'هنگامی که نزد شما میآیند، میگویند: «ایمان آوردهایم!» (امّا) با کفر وارد میشوند، و با کفر خارج میگردند؛ و خداوند، از آنچه کتمان میکردند، آگاهتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,347,'بسیاری از آنان را میبینی که در گناه و تعدّی، و خوردن مال حرام، شتاب میکنند! چه زشت است کاری که انجام میدادند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,347,'چرا دانشمندان نصاری و علمای یهود، آنها را از سخنان گناهآمیز و خوردن مال حرام، نهی نمیکنند؟! چه زشت است عملی که انجام میدادند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,347,'و یهود گفتند: «دست خدا (با زنجیر) بسته است.» دستهایشان بسته باد! و بخاطر این سخن، از رحمت (الهی) دور شوند! بلکه هر دو دست (قدرت) او، گشاده است؛ هرگونه بخواهد، میبخشد! ولی این آیات، که از طرف پروردگارت بر تو نازل شده، بر طغیان و کفر بسیاری از آنها میافزاید. و ما در میان آنها تا روز قیامت عداوت و دشمنی افکندیم. هر زمان آتش جنگی افروختند، خداوند آن را خاموش ساخت؛ و برای فساد در زمین، تلاش میکنند؛ و خداوند، مفسدان را دوست ندارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,347,'و اگر اهل کتاب ایمان بیاورند و تقوا پیشه کنند، گناهان آنها را میبخشیم؛ و آنها را در باغهای پرنعمت بهشت، وارد میسازیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,347,'و اگر آنان، تورات و انجیل و آنچه را از سوی پروردگارشان بر آنها نازل شده [= قرآن] برپا دارند، از آسمان و زمین، روزی خواهند خورد؛ جمعی از آنها، معتدل و میانهرو هستند، ولی بیشترشان اعمال بدی انجام میدهند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,347,'ای پیامبر! آنچه از طرف پروردگارت بر تو نازل شده است، کاملاً (به مردم) برسان! و اگر نکنی، رسالت او را انجام ندادهای! خداوند تو را از (خطرات احتمالی) مردم، نگاه میدارد؛ و خداوند، جمعیّت کافران (لجوج) را هدایت نمیکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,347,'ای اهل کتاب! شما هیچ آیین صحیحی ندارید، مگر اینکه تورات و انجیل و آنچه را از طرف پروردگارتان بر شما نازل شده است، برپا دارید. ولی آنچه بر تو از سوی پروردگارت نازل شده، (نه تنها مایه بیداری آنها نمیگردد، بلکه) بر طغیان و کفر بسیاری از آنها میافزاید. بنابر این، از این قوم کافر، (و مخالفت آنها،) غمگین مباش!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,347,'آنها که ایمان آوردهاند، و یهود و صابئان و مسیحیان، هرگاه به خداوند یگانه و روز جزا، ایمان بیاورند، و عمل صالح انجام دهند، نه ترسی بر آنهاست، و نه غمگین خواهند شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,347,'ما از بنی اسرائیل پیمان گرفتیم؛ و رسولانی به سوی آنها فرستادیم؛ (ولی) هر زمان پیامبری حکمی بر خلاف هوسها و دلخواه آنها میآورد، عدهای را تکذیب میکردند؛ و عدهای را میکشتند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,347,'گمان کردند مجازاتی در کار نخواهد بود! از اینرو (از دیدن حقایق و شنیدن سخنان حق،) نابینا و کر شدند؛ سپس (بیدار گشتند، و) خداوند توبه آنها را پذیرفت، دیگربار (در خواب غفلت فرو رفتند، و) بسیاری از آنها کور و کر شدند؛ و خداوند، به آنچه انجام میدهند، بیناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,347,'آنها که گفتند: «خداوند همان مسیح بن مریم است»، بیقین کافر شدند، (با اینکه خود) مسیح گفت: ای بنی اسرائیل! خداوند یگانه را، که پروردگار من و شماست، پرستش کنید! زیرا هر کس شریکی برای خدا قرار دهد، خداوند بهشت را بر او حرام کرده است؛ و جایگاه او دوزخ است؛ و ستمکاران، یار و یاوری ندارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,347,'آنها که گفتند: «خداوند، یکی از سه خداست» (نیز) بیقین کافر شدند؛ معبودی جز معبود یگانه نیست؛ و اگر از آنچه میگویند دست بر ندارند، عذاب دردناکی به کافران آنها (که روی این عقیده ایستادگی کنند،) خواهد رسید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,347,'یا به سوی خدا بازنمیگردند، و از او طلب آمرزش نمیکنند؟ (در حالی که) خداوند آمرزنده مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,347,'مسیح فرزند مریم، فقط فرستاده (خدا) بود؛ پیش از وی نیز، فرستادگان دیگری بودند، مادرش، زن بسیار راستگویی بود؛ هر دو، غذا میخوردند؛ (با این حال، چگونه دعوی الوهیّت مسیح و پرستش مریم را دارید؟!) بنگر چگونه نشانه را برای آنها آشکار میسازیم! سپس بنگر چگونه از حق بازگردانده میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,347,'بگو: «آیا جز خدا چیزی را میپرستید که مالک سود و زیان شما نیست؟! و خداوند، شنوا و داناست.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,347,'بگو: «ای اهل کتاب! در دین خود، غلوّ (و زیاده روی) نکنید! و غیر از حق نگویید! و از هوسهای جمعیّتی که پیشتر گمراه شدند و دیگران را گمراه کردند و از راه راست منحرف گشتند، پیروی ننمایید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,347,'کافران بنی اسرائیل، بر زبان داوود و عیسی بن مریم، لعن (و نفرین) شدند! این بخاطر آن بود که گناه کردند، و تجاوز مینمودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,347,'آنها از اعمال زشتی که انجام میدادند، یکدیگر را نهی نمیکردند؛ چه بدکاری انجام میدادند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,347,'بسیاری از آنها را میبینی که کافران (و بتپرستان) را دوست میدارند (و با آنها طرح دوستی میریزند)؛ نفس (سرکش) آنها، چه بد اعمالی از پیش برای (معاد) آنها فرستاد! که نتیجه آن، خشم خداوند بود؛ و در عذاب (الهی) جاودانه خواهند ماند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,347,'و اگر به خدا و پیامبر (ص) و آنچه بر او نازل شده، ایمان میآوردند، (هرگز) آنان [= کافران] را به دوستی اختیار نمیکردند؛ ولی بسیاری از آنها فاسقند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,347,'بطور مسلّم، دشمنترین مردم نسبت به مؤمنان را، یهود و مشرکان خواهی یافت؛ و نزدیکترین دوستان به مؤمنان را کسانی مییابی که میگویند: «ما نصاری هستیم»؛ این بخاطر آن است که در میان آنها، افرادی عالم و تارک دنیا هستند؛ و آنها (در برابر حق) تکبّر نمیورزند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,347,'و هر زمان آیاتی را که بر پیامبر (اسلام) نازل شده بشنوند، چشمهای آنها را میبینی که (از شوق،) اشک میریزد، بخاطر حقیقتی که دریافتهاند؛ آنها میگویند: «پروردگارا! ایمان آوردیم؛ پس ما را با گواهان (و شاهدان حق، در زمره یاران محمد) بنویس!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,347,'چرا ما به خدا و آنچه از حق به ما رسیده است، ایمان نیاوریم، در حالی که آرزو داریم پروردگارمان ما را در زمره صالحان قرار دهد؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,347,'خداوند بخاطر این سخن، به آنها باغهایی از بهشت پاداش داد که از زیر درختانش، نهرها جاری است؛ جاودانه در آن خواهند ماند؛ و این است جزای نیکوکاران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,347,'و کسانی که کافر شدند و آیات ما را تکذیب کردند، همانها اهل دوزخند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,347,'ای کسانی که ایمان آوردهاید! چیزهای پاکیزه را که خداوند برای شما حلال کرده است، حرام نکنید! و از حدّ، تجاوز ننمایید! زیرا خداوند متجاوزان را دوست نمیدارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,347,'و از نعمتهای حلال و پاکیزهای که خداوند به شما روزی داده است، بخورید! و از (مخالفت) خداوندی که به او ایمان دارید، بپرهیزید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,347,'خداوند شما را بخاطر سوگندهای بیهوده (و خالی از اراده،) مؤاخذه نمیکند؛ ولی در برابر سوگندهایی که (از روی اراده) محکم کردهاید، مؤاخذه مینماید. کفاره اینگونه قسمها، اطعام ده نفر مستمند، از غذاهای معمولی است که به خانواده خود میدهید؛ یا لباس پوشاندن بر آن ده نفر؛ و یا آزاد کردن یک برده؛ و کسی که هیچ کدام از اینها را نیابد، سه روز روزه میگیرد؛ این، کفاره سوگندهای شماست به هنگامی که سوگند یاد میکنید (و مخالفت مینمایید). و سوگندهای خود را حفظ کنید (و نشکنید!) خداوند آیات خود را این چنین برای شما بیان میکند، شاید شکر او را بجا آورید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,347,'ای کسانی که ایمان آوردهاید! شراب و قمار و بتها و ازلام [= نوعی بختآزمایی]، پلید و از عمل شیطان است، از آنها دوری کنید تا رستگار شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,347,'شیطان میخواهد به وسیله شراب و قمار، در میان شما عداوت و کینه ایجاد کند، و شما را از یاد خدا و از نماز بازدارد. آیا (با این همه زیان و فساد، و با این نهی اکید،) خودداری خواهید کرد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,347,'اطاعت خدا و اطاعت پیامبر کنید! و (از مخالفت فرمان او) بترسید! و اگر روی برگردانید، (مستحق مجازات خواهید بود؛ و) بدانید بر پیامبر ما، جز ابلاغ آشکار، چیز دیگری نیست (و این وظیفه را در برابر شما، انجام داده است).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,347,'بر کسانی که ایمان آورده و اعمال صالح انجام دادهاند، گناهی در آنچه خوردهاند نیست؛ (و نسبت به نوشیدن شراب، قبل از نزول حکم تحریم، مجازات نمیشوند؛) اگر تقوا پیشه کنند، و ایمان بیاورند، و اعمال صالح انجام دهند؛ سپس تقوا پیشه کنند و ایمان آورند؛ سپس تقوا پیشه کنند و نیکی نمایند. و خداوند، نیکوکاران را دوست میدارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,347,'ای کسانی که ایمان آوردهاید! خداوند شما را به چیزی از شکار که (به نزدیکی شما میآید، بطوری که) دستها و نیزههایتان به آن میرسد، میآزماید؛ تا معلوم شود چه کسی باایمان به غیب، از خدا میترسد؛ و هر کس بعد از آن تجاوز کند، مجازات دردناکی خواهد داشت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,347,'ای کسانی که ایمان آوردهاید! در حال احرام، شکار نکنید، و هر کس از شما عمداً آن را به قتل برساند، باید کفارهای معادل آن از چهارپایان بدهد؛ کفارهای که دو نفر عادل از شما، معادل بودن آن را تصدیق کنند؛ و به صورت قربانی به (حریم) کعبه برسد؛ یا (به جای قربانی،) اطعام مستمندان کند؛ یا معادل آن، روزه بگیرد، تا کیفر کار خود را بچشد. خداوند گذشته را عفو کرده، ولی هر کس تکرار کند، خدا از او انتقام میگیرد؛ و خداوند، توانا و صاحب انتقام است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,347,'صید دریا و طعام آن برای شما و کاروانیان حلال است؛ تا (در حال احرام) از آن بهرهمند شوید؛ ولی مادام که محرم هستید، شکار صحرا برای شما حرام است؛ و از (نافرمانی) خدایی که به سوی او محشور میشوید، بترسید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,347,'خداوند، کعبه -بیت الحرام- را وسیلهای برای استواری و سامان بخشیدن به کار مردم قرار داده؛ و همچنین ماه حرام، و قربانیهای بینشان، و قربانیهای نشاندار را؛ اینگونه احکام (حساب شده و دقیق،) بخاطر آن است که بدانید خداوند، آنچه در آسمانها و آنچه در زمین است، میداند؛ و خدا به هر چیزی داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,347,'بدانید خدا دارای مجازات شدید، و (در عین حال) آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,347,'پیامبر وظیفهای جز رسانیدن پیام (الهی) ندارد؛ (و مسؤول اعمال شما نیست). و خداوند آنچه را آشکار، و آنچه را پنهان میدارید میداند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,4,347,'بگو: «(هیچگاه) ناپاک و پاک مساوی نیستند؛ هر چند فزونی ناپاکها، تو را به شگفتی اندازد! از (مخالفت) خدا بپرهیزید ای صاحبان خرد، شاید رستگار شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,4,347,'ای کسانی که ایمان آوردهاید! از چیزهایی نپرسید که اگر برای شما آشکار گردد، شما را ناراحت میکند! و اگر به هنگام نزول قرآن، از آنها سؤال کنید، برای شما آشکار میشود؛ خداوند آنها را بخشیده (و نادیده گرفته) است. و خداوند، آمرزنده و بردبار است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,4,347,'جمعی از پیشینیان شما، از آن سئوال کردند؛ و سپس با آن به مخالفت برخاستند. (ممکن است شما هم چنین سرنوشتی پیدا کنید.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,4,347,'خداوند هیچگونه «بحیره» و «سائبه» و «وصیله» و «حام» قرار نداده است [اشاره به چهار نوع از حیوانات اهلی است که در زمان جاهلیت، استفاده از آنها را بعللی حرام میدانستند؛ و این بدعت، در اسلام ممنوع شد.] ولی کسانی که کافر شدند، بر خدا دروغ میبندند؛ و بیشتر آنها نمیفهمند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,4,347,'و هنگامی که به آنها گفته شود: «به سوی آنچه خدا نازل کرده، و به سوی پیامبر بیایید!»، میگویند: «آنچه از پدران خود یافتهایم، ما را بس است!»؛ آیا اگر پدران آنها چیزی نمیدانستند، و هدایت نیافته بودند (باز از آنها پیروی میکنند)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,4,347,'ای کسانی که ایمان آوردهاید! مراقب خود باشید! اگر شما هدایت یافتهاید، گمراهی کسانی که گمراه شدهاند، به شما زیانی نمیرساند. بازگشت همه شما به سوی خداست؛ و شما را از آنچه عمل میکردید، آگاه میسازد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,4,347,'ای کسانی که ایمان آوردهاید! هنگامی که مرگ یکی از شما فرا رسد، در موقع وصیت باید از میان شما، دو نفر عادل را به شهادت بطلبد؛ یا اگر مسافرت کردید، و مصیبت مرگ شما فرا رسید، (و در آن جا مسلمانی نیافتید،) دو نفر از غیر خودتان را به گواهی بطلبید، و اگر به هنگام ادای شهادت، در صدق آنها شک کردید، آنها را بعد از نماز نگاه میدارید تا سوگند یاد کنند که: «ما حاضر نیستیم حق را به چیزی بفروشیم، هر چند در مورد خویشاوندان ما باشد! و شهادت الهی را کتمان نمیکنیم، که از گناهکاران خواهیم بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,4,347,'و اگر اطلاعی حاصل شود که آن دو، مرتکب گناهی شدهاند (و حق را کتمان کردهاند)، دو نفر از کسانی که نسبت به میت، اولی هستند، به جای آنها قرار میگیرند، و به خدا سوگند یاد میکنند که: «گواهی ما، از گواهی آن دو، به حق نزدیکتر است! و ما تجاوزی نکردهایم؛ که اگر چنین کرده باشیم، از ظالمان خواهیم بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,4,347,'این کار، نزدیکتر است به اینکه گواهی بحق دهند، (و از خدا بترسند،) و یا (از مردم) بترسند که (دروغشان فاش گردد، و) سوگندهایی جای سوگندهای آنها را بگیرد. از (مخالفت) خدا بپرهیزید، و گوش فرا دهید! و خداوند، جمعیّت فاسقان را هدایت نمیکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,4,347,'(از) روزی (بترسید) که خداوند، پیامبران را جمع میکند، و به آنها میگوید: «(در برابر دعوت شما،) چه پاسخی به شما داده شد؟»، میگویند: «ما چیزی نمیدانیم؛ تو خود، از همه اسرار نهان آگاهی.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,4,347,'(به خاطر بیاور) هنگامی را که خداوند به عیسی بن مریم گفت: «یاد کن نعمتی را که به تو و مادرت بخشیدم! زمانی که تو را با» روح القدس «تقویت کردم؛ که در گاهواره و به هنگام بزرگی، با مردم سخن میگفتی؛ و هنگامی که کتاب و حکمت و تورات و انجیل را به تو آموختم؛ و هنگامی که به فرمان من، از گل چیزی بصورت پرنده میساختی، و در آن میدمیدی، و به فرمان من، پرندهای میشد؛ و کور مادرزاد، و مبتلا به بیماری پیسی را به فرمان من، شفا میدادی؛ و مردگان را (نیز) به فرمان من زنده میکردی؛ و هنگامی که بنی اسرائیل را از آسیب رساندن به تو، بازداشتم؛ در آن موقع که دلایل روشن برای آنها آوردی، ولی جمعی از کافران آنها گفتند: اینها جز سحر آشکار نیست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,4,347,'و (به یاد آور) زمانی را که به حواریون وحی فرستادم که: «به من و فرستاده من، ایمان بیاورید!» آنها گفتند: «ایمان آوردیم، و گواه باش که ما مسلمانیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,4,347,'در آن هنگام که حواریون گفتند: «ای عیسی بن مریم! آیا پروردگارت میتواند مائدهای از آسمان بر ما نازل کند؟» او (در پاسخ) گفت: «از خدا بپرهیزید اگر با ایمان هستید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,4,347,'گفتند: «(ما نظر بدی نداریم،) میخواهیم از آن بخوریم، و دلهای ما (به رسالت تو) مطمئن گردد؛ و بدانیم به ما راست گفتهای؛ و بر آن، گواه باشیم.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,4,347,'عیسی بن مریم عرض کرد: «خداوندا! پروردگارا! از آسمان مائدهای بر ما بفرست! تا برای اول و آخر ما، عیدی باشد، و نشانهای از تو؛ و به ما روزی ده! تو بهترین روزی دهندگانی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,4,347,'خداوند (دعای او را مستجاب کرد؛ و) فرمود: «من آن را بر شما نازل میکنم؛ ولی هر کس از شما بعد از آن کافر گردد (و راه انکار پوید)، او را مجازاتی میکنم که احدی از جهانیان را چنان مجازات نکرده باشم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,4,347,'و آنگاه که خداوند به عیسی بن مریم میگوید: «آیا تو به مردم گفتی که من و مادرم را بعنوان دو معبود غیر از خدا انتخاب کنید؟!»، او میگوید: «منزهی تو! من حق ندارم آنچه را که شایسته من نیست، بگویم! اگر چنین سخنی را گفته باشم، تو میدانی! تو از آنچه در روح و جان من است، آگاهی؛ و من از آنچه در ذات (پاک) توست، آگاه نیستم! بیقین تو از تمام اسرار و پنهانیها باخبری.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,4,347,'من، جز آنچه مرا به آن فرمان دادی، چیزی به آنها نگفتم؛ (به آنها گفتم:) خداوندی را بپرستید که پروردگار من و پروردگار شماست! و تا زمانی که در میان آنها بودم، مراقب و گواهشان بودم؛ ولی هنگامی که مرا از میانشان برگرفتی، تو خود مراقب آنها بودی؛ و تو بر هر چیز، گواهی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,4,347,'(با این حال،) اگر آنها را مجازات کنی، بندگان تواند. (و قادر به فرار از مجازات تو نیستند)؛ و اگر آنان را ببخشی، توانا و حکیمی! (نه کیفر تو نشانه بیحکمتی است، و نه بخشش تو نشانه ضعف!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,4,347,'خداوند میگوید: «امروز، روزی است که راستی راستگویان، به آنها سود میبخشد؛ برای آنها باغهایی از بهشت است که نهرها از زیر (درختان) آن میگذرد، و تا ابد، جاودانه در آن میمانند؛ هم خداوند از آنها خشنود است، و هم آنها از خدا خشنودند؛ این، رستگاری بزرگ است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,4,347,'حکومت آسمانها و زمین و آنچه در آنهاست، از آن خداست؛ و او بر هر چیزی تواناست.');
+INSERT INTO chapters (id, number, quran_id) VALUES(348,6,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,348,'ستایش برای خداوندی است که آسمانها و زمین را آفرید، و ظلمتها و نور را پدید آورد؛ اما کافران برای پروردگار خود، شریک و شبیه قرارمیدهند (با اینکه دلایل توحید و یگانگی او، در آفرینش جهان آشکار است)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,348,'او کسی است که شما را از گل آفرید؛ سپس مدتی مقرّر داشت (تا انسان تکامل یابد)؛ و اجل حتمی نزد اوست (و فقط او از آن آگاه است). با این همه، شما (مشرکان در توحید و یگانگی و قدرت او،) تردید میکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,348,'اوست خداوند در آسمانها و در زمین؛ پنهان و آشکار شما را میداند؛ و از آنچه (انجام میدهید و) به دست میآورید، با خبر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,348,'هیچ نشانه و آیهای از آیات پروردگارشان برای آنان نمیآید، مگر اینکه از آن رویگردان میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,348,'آنان، حق را هنگامی که سراغشان آمد، تکذیب کردند! ولی بزودی خبر آنچه را به باد مسخره میگرفتند، به آنان میرسد؛ (و از نتایج کار خود، آگاه میشوند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,348,'آیا ندیدند چقدر از اقوام پیشین را هلاک کردیم؟! اقوامی که (از شما نیرومندتر بودند؛ و) قدرتهایی به آنها داده بودیم که به شما ندادیم؛ بارانهای پیدرپی برای آنها فرستادیم؛ و از زیر (آبادیهای) آنها، نهرها را جاری ساختیم؛ (اما هنگامی که سرکشی و طغیان کردند،) آنان را بخاطر گناهانشان نابود کردیم؛ و جمعیت دیگری بعد از آنان پدید آوردیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,348,'(حتّی) اگر ما نامهای روی صفحهای بر تو نازل کنیم، و (علاوه بر دیدن و خواندن،) آن را با دستهای خود لمس کنند، باز کافران میگویند: «این، چیزی جز یک سحر آشکار نیست»!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,348,'(از بهانههای آنها این بود که) گفتند: «چرا فرشتهای بر او نازل نشده (تا او را در دعوت مردم به سوی خدا همراهی کند؟!)» ولی اگر فرشتهای بفرستیم، (و موضوع، جنبه حسی و شهود پیدا کند،) کار تمام میشود؛ (یعنی اگر مخالفت کنند،) دیگر به آنها مهلت داده نخواهد شد (و همه هلاک میشوند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,348,'و اگر او را فرشتهای قرارمیدادیم، حتماً وی را بصورت انسانی درمیآوردیم؛ (باز به پندار آنان،) کار را بر آنها مشتبه میساختیم؛ همانطور که آنها کار را بر دیگران مشتبه میسازند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,348,'(با این حال، نگران نباش!) جمعی از پیامبران پیش از تو را استهزا کردند؛ امّا سرانجام، آنچه را مسخره میکردند، دامانشان را میگرفت؛ (و عذاب الهی بر آنها فرود آمد).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,348,'بگو: «روی زمین گردش کنید! سپس بنگرید سرانجام تکذیبکنندگان آیات الهی چه شد؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,348,'بگو: «آنچه در آسمانها و زمین است، از آن کیست؟» بگو: «از آن خداست؛ رحمت (و بخشش) را بر خود، حتم کرده؛ (و به همین دلیل،) بطور قطع همه شما را در روز قیامت، که در آن شکّ و تردیدی نیست، گرد خواهد آورد. (آری،) فقط کسانی که سرمایههای وجود خویش را از دست داده و گرفتار خسران شدند، ایمان نمیآورند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,348,'و برای اوست آنچه در شب و روز قرار دارد؛ و او، شنوا و داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,348,'بگو: «آیا غیر خدا را ولیّ خود انتخاب کنم؟! (خدایی) که آفریننده آسمانها و زمین است؛ اوست که روزی میدهد، و از کسی روزی نمیگیرد.» بگو: «من مأمورم که نخستین مسلمان باشم؛ و (خداوند به من دستور داده که) از مشرکان نباش!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,348,'بگو: «من (نیز) اگر نافرمانی پروردگارم کنم، از عذاب روزی بزرگ [= روز رستاخیز] میترسم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,348,'آن کس که در آن روز، مجازات الهی به او نرسد، خداوند او را مشمول رحمت خویش ساخته؛ و این همان پیروزی آشکار است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,348,'اگر خداوند زیانی به تو برساند، هیچ کس جز او نمیتواند آن را برطرف سازد! و اگر خیری به تو رساند، او بر همه چیز تواناست؛ (و از قدرت او، هرگونه نیکی ساخته است.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,348,'اوست که بر بندگان خود، قاهر و مسلّط است؛ و اوست حکیم آگاه!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,348,'بگو: «بالاترین گواهی، گواهی کیست؟» (و خودت پاسخ بده و) بگو: «خداوند، گواه میان من و شماست؛ و (بهترین دلیل آن این است که) این قرآن بر من وحی شده، تا شما و تمام کسانی را که این قرآن به آنها میرسد، بیم دهم (و از مخالفت فرمان خدا بترسانم). آیا براستی شما گواهی میدهید که معبودان دیگری با خداست؟!» بگو: «من هرگز چنین گواهی نمیدهم». بگو: «اوست تنها معبود یگانه؛ و من از آنچه برای او شریک قرارمیدهید، بیزارم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,348,'آنان که کتاب آسمانی به ایشان دادهایم، بخوبی او [= پیامبر] را میشناسند، همانگونه که فرزندان خود را میشناسند؛ فقط کسانی که سرمایه وجود خود را از دست دادهاند، ایمان نمیآورند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,348,'چه کسی ستمکارتر است از آن کس که بر خدا دروغ بسته [= همتایی برای او قائل شده]، و یا آیات او را تکذیب کرده است؟! مسلماً ظالمان، رستگار نخواهند شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,348,'آن روز که همه آنها را محشور میکنیم؛ سپس به مشرکان میگوییم: «معبودهایتان، که همتای خدا میپنداشتید، کجایند؟» (چرا به یاری شما نمیشتابند؟!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,348,'سپس پاسخ و عذر آنها، چیزی جز این نیست که میگویند: «به خداوندی که پروردگار ماست سوگند که ما مشرک نبودیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,348,'ببین چگونه به خودشان (نیز) دروغ میگویند، و آنچه را بدروغ همتای خدا میپنداشتند، از دست میدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,348,'پارهای از آنها به (سخنان) تو، گوش فرامیدهند؛ ولی بر دلهای آنان پردهها افکندهایم تا آن را نفهمند؛ و در گوش آنها، سنگینی قرار دادهایم. و (آنها بقدری لجوجند که) اگر تمام نشانههای حق را ببینند، ایمان نمیآورند؛ تا آنجا که وقتی به سراغ تو میآیند که با تو پرخاشگری کنند، کافران میگویند: «اینها فقط افسانههای پیشینیان است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,348,'آنها دیگران را از آن بازمیدارند؛ و خود نیز از آن دوری میکنند؛ آنها جز خود را هلاک نمیکنند، ولی نمیفهمند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,348,'کاش (حال آنها را) هنگامی که در برابر آتش (دوزخ) ایستادهاند، ببینی! میگویند: ای کاش (بار دیگر، به دنیا) بازگردانده میشدیم، و آیات پروردگارمان را تکذیب نمیکردیم، و از مؤمنان میبودیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,348,'(آنها در واقع پشیمان نیستند،) بلکه اعمال و نیّاتی را که قبلاً پنهان میکردند، در برابر آنها آشکار شده (و به وحشت افتادهاند). و اگر بازگردند، به همان اعمالی که از آن نهی شده بودند بازمیگردند؛ آنها دروغگویانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,348,'آنها گفتند: «چیزی جز این زندگی دنیای ما نیست؛ و ما هرگز برانگیخته نخواهیم شد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,348,'اگر آنها را به هنگامی که در پیشگاه پروردگارشان ایستادهاند، ببینی! (به آنها) میگوید: «آیا این حق نیست؟» میگویند: «آری، قسم به پروردگارمان (حق است!)» میگوید: «پس مجازات را بچشید به سزای آنچه انکار میکردید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,348,'آنها که لقای پروردگار را تکذیب کردند، مسلماً زیان دیدند؛ (و این تکذیب، ادامه می یابد) تا هنگامی که ناگهان قیامت به سراغشان بیاید؛ میگویند: «ای افسوس بر ما که درباره آن، کوتاهی کردیم!» و آنها (بار سنگین) گناهانشان را بر دوش میکشند؛ چه بد باری بر دوش خواهند داشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,348,'زندگی دنیا، چیزی جز بازی و سرگرمی نیست! و سرای آخرت، برای آنها که پرهیزگارند، بهتر است! آیا نمیاندیشید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,348,'ما میدانیم که گفتار آنها، تو را غمگین میکند؛ ولی (غم مخور! و بدان که) آنها تو را تکذیب نمیکنند؛ بلکه ظالمان، آیات خدا را انکار مینمایند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,348,'پیش از تو نیز پیامبرانی تکذیب شدند؛ و در برابر تکذیبها، صبر و استقامت کردند؛ و (در این راه،) آزار دیدند، تا هنگامی که یاری ما به آنها رسید. (تو نیز چنین باش! و این، یکی از سنتهای الهی است؛) و هیچ چیز نمیتواند سنن خدا را تغییر دهد؛ و اخبار پیامبران به تو رسیده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,348,'و اگر اعراض آنها بر تو سنگین است، چنانچه بتوانی نقبی در زمین بزنی، یا نردبانی به آسمان بگذاری (و اعماق زمین و آسمانها را جستجو کنی، چنین کن) تا آیه (و نشانه دیگری) برای آنها بیاوری! (ولی بدان که این لجوجان، ایمان نمیآورند!) امّا اگر خدا بخواهد، آنها را (به اجبار) بر هدایت جمع خواهد کرد. (ولی هدایت اجباری، چه سودی دارد؟) پس هرگز از جاهلان مباش!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,348,'تنها کسانی (دعوت تو را) میپذیرند که گوش شنوا دارند؛ امّا مردگان (و آنها که روح انسانی را از دست دادهاند، ایمان نمیآورند؛ و) خدا آنها را (در قیامت) برمیانگیزد؛ سپس به سوی او، بازمیگردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,348,'و گفتند: «چرا نشانه (و معجزهای) از طرف پروردگارش بر او نازل نمیشود؟!» بگو: «خداوند، قادر است که نشانهای نازل کند؛ ولی بیشتر آنها نمیدانند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,348,'هیچ جنبندهای در زمین، و هیچ پرندهای که با دو بال خود پرواز میکند، نیست مگر اینکه امتهایی همانند شما هستند. ما هیچ چیز را در این کتاب، فرو گذار نکردیم؛ سپس همگی به سوی پروردگارشان محشور میگردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,348,'آنها که آیات ما را تکذیب کردند، کرها و لالهایی هستند که در تاریکیها قرار دارند. هر کس را خدا بخواهد (و مستحق باشد،) گمراه میکند؛ و هر کس را بخواهد (و شایسته بداند،) بر راه راست قرار خواهد داد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,348,'بگو: «به من خبر دهید اگر عذاب پروردگار به سراغ شما آید، یا رستاخیز برپا شود، آیا (برای حل مشکلات خود،) غیر خدا را میخوانید اگر راست میگویید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,348,'(نه،) بلکه تنها او را میخوانید! و او اگر بخواهد، مشکلی را که بخاطر آن او را خواندهاید، برطرف میسازد؛ و آنچه را (امروز) همتای خدا قرارمیدهید، (در آن روز) فراموش خواهید کرد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,348,'ما به سوی امتهایی که پیش از تو بودند، (پیامبرانی) فرستادیم؛ (و هنگامی که با این پیامبران به مخالفت برخاستند،) آنها را با شدّت و رنج و ناراحتی مواجه ساختیم؛ شاید (بیدار شوند و در برابر حق،) خضوع کنند و تسلیم گردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,348,'چرا هنگامی که مجازات ما به آنان رسید، (خضوع نکردند و) تسلیم نشدند؟! بلکه دلهای آنها قساوت پیدا کرد؛ و شیطان، هر کاری را که میکردند، در نظرشان زینت داد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,348,'(آری،) هنگامی که (اندرزها سودی نبخشید، و) آنچه را به آنها یادآوری شده بود فراموش کردند، درهای همه چیز (از نعمتها) را به روی آنها گشودیم؛ تا (کاملا) ً خوشحال شدند (و دل به آن بستند)؛ ناگهان آنها را گرفتیم (و سخت مجازات کردیم)؛ در این هنگام، همگی مأیوس شدند؛ (و درهای امید به روی آنها بسته شد).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,348,'و (به این ترتیب،) دنباله (زندگی) جمعیّتی که ستم کرده بودند، قطع شد. و ستایش مخصوص خداوند، پروردگار جهانیان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,348,'بگو: «به من خبر دهید اگر خداوند، گوش و چشمهایتان را بگیرد، و بر دلهای شما مهر نهد (که چیزی را نفهمید)، چه کسی جز خداست که آنها را به شما بدهد؟!» ببین چگونه آیات را به گونههای مختلف برای آنها شرح میدهیم، سپس آنها روی میگردانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,348,'بگو: «به من خبر دهید اگر عذاب خدا بطور ناگهانی (و پنهانی) یا آشکارا به سراغ شما بیاید، آیا جز جمعیّت ستمکار هلاک میشوند؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,348,'ما پیامبران را، جز (به عنوان) بشارت دهنده و بیم دهنده، نمیفرستیم؛ آنها که ایمان بیاورند و (خویشتن را) اصلاح کنند، نه ترسی بر آنهاست و نه غمگین میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,348,'و آنها که آیات ما را تکذیب کردند، عذاب (پروردگار) بخاطر نافرمانیها به آنان میرسد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,348,'بگو: «من نمیگویم خزاین خدا نزد من است؛ و من، (جز آنچه خدا به من بیاموزد،) از غیب آگاه نیستم! و به شما نمیگویم من فرشتهام؛ تنها از آنچه به من وحی میشود پیروی میکنم.» بگو: «آیا نابینا و بینا مساویند؟! پس چرا نمیاندیشید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,348,'و به وسیله آن (قرآن)، کسانی را که از روز حشر و رستاخیز میترسند، بیم ده! (روزی که در آن،) یاور و سرپرست و شفاعتکنندهای جز او [= خدا] ندارند؛ شاید پرهیزگاری پیشه کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,348,'و کسانی را که صبح و شام خدا را میخوانند، و جز ذات پاک او نظری ندارند، از خود دور مکن! نه چیزی از حساب آنها بر توست، و نه چیزی از حساب تو بر آنها! اگر آنها را طرد کنی، از ستمگران خواهی بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,348,'و این چنین بعضی از آنها را با بعض دیگر آزمودیم (توانگران را بوسیله فقیران)؛ تا بگویند: «آیا اینها هستند که خداوند از میان ما (برگزیده، و) بر آنها منّت گذارده (و نعمت ایمان بخشیده است؟!» آیا خداوند، شاکران را بهتر نمیشناسد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,348,'هرگاه کسانی که به آیات ما ایمان دارند نزد تو آیند، به آنها بگو: «سلام بر شما پروردگارتان، رحمت را بر خود فرض کرده؛ هر کس از شما کار بدی از روی نادانی کند، سپس توبه و اصلاح (و جبران) نماید، (مشمول رحمت خدا میشود چرا که) او آمرزنده مهربان است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,348,'و این چنین آیات را برمیشمریم، (تا حقیقت بر شما روشن شود،) و راه گناهکاران آشکار گردد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,348,'بگو: «من از پرستش کسانی که غیر از خدا میخوانید، نهی شدهام!» بگو: «من از هوی و هوسهای شما، پیروی نمیکنم؛ اگر چنین کنم، گمراه شدهام؛ و از هدایتیافتگان نخواهم بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,348,'بگو: «من دلیل روشنی از پروردگارم دارم؛ و شما آن را تکذیب کردهاید! آنچه شما در باره آن (از نزول عذاب الهی) عجله دارید، به دستِ من نیست! حکم و فرمان، تنها از آنِ خداست! حق را از باطل جدا میکند، و او بهترین جداکننده (حق از باطل) است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,348,'بگو: «اگر آنچه درباره آن عجله دارید نزد من بود، (و به درخواست شما ترتیباثر میدادم، عذاب الهی بر شما نازل میگشت؛) و کار میان من و شما پایان گرفته بود؛ ولی خداوند ظالمان را بهتر میشناسد (و بموقع مجازات میکند.)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,348,'کلیدهای غیب، تنها نزد اوست؛ و جز او، کسی آنها را نمیداند. او آنچه را در خشکی و دریاست میداند؛ هیچ برگی (از درختی) نمیافتد، مگر اینکه از آن آگاه است؛ و نه هیچ دانهای در تاریکیهای زمین، و نه هیچ تر و خشکی وجود دارد، جز اینکه در کتابی آشکار [= در کتاب علم خدا] ثبت است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,348,'او کسی است که (روح) شما را در شب (به هنگام خواب) میگیرد؛ و از آنچه در روز کردهاید، با خبر است؛ سپس در روز شما را (از خواب) برمیانگیزد؛ و (این وضع همچنان ادامه مییابد) تا سرآمد معینی فرا رسد؛ سپس بازگشت شما به سوی اوست؛ و سپس شما را از آنچه عمل میکردید، با خبر میسازد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,348,'او بر بندگان خود تسلّط کامل دارد؛ و مراقبانی بر شما میگمارد؛ تا زمانی که یکی از شما را مرگ فرا رسد؛ (در این موقع،) فرستادگان ما جان او را میگیرند؛ و آنها (در نگاهداری حساب عمر و اعمال بندگان،) کوتاهی نمیکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,348,'سپس (تمام بندگان) به سوی خدا، که مولای حقیقی آنهاست، بازمیگردند. بدانید که حکم و داوری، مخصوص اوست؛ و او، سریعترین حسابگران است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,348,'بگو: «چه کسی شما را از تاریکیهای خشکی و دریا رهایی میبخشد؟ در حالی که او را با حالت تضرع (و آشکارا) و در پنهانی میخوانید؛ (و میگویید:) اگر از این (خطرات و ظلمتها) ما را رهایی میبخشد، از شکرگزاران خواهیم بود.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,348,'بگو: «خداوند شما را از اینها، و از هر مشکل و ناراحتی، نجات میدهد؛ باز هم شما برای او شریک قرار میدهید! (و راه کفر میپویید.)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,348,'بگو: «او قادر است که از بالا یا از زیر پای شما، عذابی بر شما بفرستد؛ یا بصورت دستههای پراکنده شما را با هم بیامیزد؛ و طعم جنگ (و اختلاف) را به هر یک از شما بوسیله دیگری بچشاند.» ببین چگونه آیات گوناگون را (برای آنها) بازگو میکنیم! شاید بفهمند (و بازگردند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,348,'قوم و جمعیّت تو، آن (آیات الهی) را تکذیب و انکار کردند، در حالی که حق است! (به آنها) بگو: «من مسؤول (ایمانآوردن) شما نیستم! (وظیفه من، تنها ابلاغ رسالت است، نه اجبار شما بر ایمان.)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,348,'هر خیری (که خداوند به شما داده،) سرانجام قرارگاهی دارد، (و در موعد خود انجام میگیرد.) و بزودی خواهید دانست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,348,'هرگاه کسانی را دیدی که آیات ما را استهزا میکنند، از آنها روی بگردان تا به سخن دیگری بپردازند! و اگر شیطان از یاد تو ببرد، هرگز پس از یادآمدن با این جمعیّت ستمگر منشین!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,348,'و (اگر) افراد با تقوا (برای ارشاد و اندرز با آنها بنشینند)، چیزی از حساب (و گناه) آنها بر ایشان نیست؛ ولی (این کار، باید تنها) برای یادآوری آنها باشد، شاید (بشنوند و) تقوی پیشه کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,348,'و رها کن کسانی را که آیین (فطری) خود را به بازی و سرگرمی گرفتند، و زندگی دنیا، آنها را مغرور ساخته، و با این (قرآن)، به آنها یادآوری نما، تا گرفتار (عواقب شوم) اعمال خود نشوند! (و در قیامت) جز خدا، نه یاوری دارند، و نه شفاعتکنندهای! و (چنین کسی) هر گونه عوضی بپردازد، از او پذیرفته نخواهد شد؛ آنها کسانی هستند که گرفتار اعمالی شدهاند که خود انجام دادهاند؛ نوشابهای از آب سوزان برای آنهاست؛ و عذاب دردناکی بخاطر اینکه کفر میورزیدند (و آیات الهی را انکار) میکردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,348,'بگو: «آیا غیر از خدا، چیزی را بخوانیم (و عبادت کنیم) که نه سودی به حال ما دارد، نه زیانی؛ و (به این ترتیب،) به عقب برگردیم بعد از آنکه خداوند ما را هدایت کرده است؟! همانند کسی که بر اثر وسوسههای شیطان، در روی زمین راه را گم کرده، و سرگردان مانده است؛ در حالی که یارانی هم دارد که او را به هدایت دعوت میکنند (و میگویند:) به سوی ما بیا!» بگو: «تنها هدایت خداوند، هدایت است؛ و ما دستور داریم که تسلیم پروردگار عالمیان باشیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,348,'و (نیز به ما فرمان داده شده به) اینکه: نماز را برپا دارید! و از او بپرهیزید! و تنها اوست که به سویش محشور خواهید شد.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,348,'اوست که آسمانها و زمین را بحق آفرید؛ و آن روز که (به هر چیز) میگوید: «موجود باش!» موجود میشود؛ سخن او، حق است؛ و در آن روز که در «صور» دمیده میشود، حکومت مخصوص اوست، از پنهان و آشکار با خبر است، و اوست حکیم و آگاه.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,348,'(به خاطر بیاورید) هنگامی را که ابراهیم به پدرش [= عمویش] «آزر» گفت: «آیا بتهائی را معبودان خود انتخاب میکنی؟! من، تو و قوم تو را در گمراهی آشکاری میبینم.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,348,'و این چنین، ملکوت آسمانها و زمین (و حکومت مطلقه خداوند بر آنها) را به ابراهیم نشان دادیم؛ (تا به آن استدلال کند،) و اهل یقین گردد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,348,'هنگامی که (تاریکی) شب او را پوشانید، ستارهای مشاهده کرد، گفت: «این خدای من است؟» امّا هنگامی که غروب کرد، گفت: «غروبکنندگان را دوست ندارم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,348,'و هنگامی که ماه را دید که (سینه افق را) میشکافد، گفت: «این خدای من است؟» امّا هنگامی که (آن هم) غروب کرد، گفت: «اگر پروردگارم مرا راهنمایی نکند، مسلّماً از گروه گمراهان خواهم بود.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,348,'و هنگامی که خورشید را دید که (سینه افق را) میشکافت، گفت: «این خدای من است؟ این (که از همه) بزرگتر است!» امّا هنگامی که غروب کرد، گفت: «ای قوم من از شریکهایی که شما (برای خدا) میسازید، بیزارم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,348,'من روی خود را به سوی کسی کردم که آسمانها و زمین را آفریده؛ من در ایمان خود خالصم؛ و از مشرکان نیستم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,348,'ولی قوم او [= ابراهیم]، با وی به گفتگو و ستیز پرداختند؛ گفت: «آیا درباره خدا با من گفتگو و ستیز میکنید؟! در حالی که خداوند، مرا با دلایل روشن هدایت کرده؛ و من از آنچه شما همتای (خدا) قرار میدهید، نمیترسم (و به من زیانی نمی رسانند)! مگر پروردگارم چیزی را بخواهد! وسعت آگاهی پروردگارم همه چیز را در برمیگیرد؛ آیا متذکّر (و بیدار) نمیشوید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,348,'چگونه من از بتهای شما بترسم؟! در حالی که شما از این نمیترسید که برای خدا، همتایی قرار دادهاید که هیچ گونه دلیلی درباره آن، بر شما نازل نکرده است! (راست بگویید) کدام یک از این دو دسته (بتپرستان و خداپرستان)، شایستهتر به ایمنی (از مجازات) هستند اگر میدانید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,348,'(آری،) آنها که ایمان آوردند، و ایمان خود را با شرک و ستم نیالودند، ایمنی تنها از آن آنهاست؛ و آنها هدایتیافتگانند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,348,'اینها دلایل ما بود که به ابراهیم در برابر قومش دادیم! درجات هر کس را بخواهیم (و شایسته بدانیم،) بالا میبریم؛ پروردگار تو، حکیم و داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,348,'و اسحاق و یعقوب را به او [= ابراهیم] بخشیدیم؛ و هر دو را هدایت کردیم؛ و نوح را (نیز) پیش از آن هدایت نمودیم؛ و از فرزندان او، داوود و سلیمان و ایّوب و یوسف و موسی و هارون را (هدایت کردیم)؛ اینگونه نیکوکاران را پاداش میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,348,'و (همچنین) زکریّا و یحیی و عیسی و الیاس را؛ همه از صالحان بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,348,'و اسماعیل و الیسع و یونس و لوط را؛ و همه را بر جهانیان برتری دادیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,348,'و از پدران و فرزندان و برادران آنها (افرادی را برتری دادیم) و برگزیدیم و به راه راست، هدایت نمودیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,348,'این، هدایت خداست؛ که هر کس از بندگان خود را بخواهد با آن راهنمایی میکند! و اگر آنها مشرک شوند، اعمال (نیکی) که انجام دادهاند، نابود میگردد (و نتیجهای از آن نمیگیرند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,348,'آنها کسانی هستند که کتاب و حکم و نبوّت به آنان دادیم؛ و اگر (بفرض) نسبت به آن کفر ورزند، (آیین حقّ زمین نمیماند؛ زیرا) کسان دیگری را نگاهبان آن میسازیم که نسبت به آن، کافر نیستند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,348,'آنها کسانی هستند که خداوند هدایتشان کرده؛ پس به هدایت آنان اقتدا کن! (و) بگو: «در برابر این (رسالت و تبلیغ)، پاداشی از شما نمیطلبم! این (رسالت)، چیزی جز یک یادآوری برای جهانیان نیست! (این وظیفه من است)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,348,'آنها خدا را درست نشناختند که گفتند: «خدا، هیچ چیز بر هیچ انسانی، نفرستاده است!» بگو: «چه کسی کتابی را که موسی آورد، نازل کرد؟! کتابی که برای مردم، نور و هدایت بود؛ 0امّا شما) آن را بصورت پراکنده قرارمیدهید؛ قسمتی را آشکار، و قسمت زیادی را پنهان میدارید؛ و مطالبی به شما تعلیم داده شده که نه شما و نه پدرانتان، از آن با خبر نبودید!» بگو: «خدا!» سپس آنها را در گفتگوهای لجاجتآمیزشان رها کن، تا بازی کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,348,'و این کتابی است که ما آن را نازل کردیم؛ کتابی است پربرکت، که آنچه را پیش از آن آمده، تصدیق میکند؛ (آن را فرستادیم تا مردم را به پاداشهای الهی، بشارت دهی،) و تا (اهل) امّالقری [= مکّه] و کسانی را که گرد آن هستند، بترسانی! (یقین بدان) آنها که به آخرت ایمان دارند، به آن ایمان میآورند؛ و بر نمازهای خویش، مراقبت می کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,348,'چه کسی ستمکارتر است از کسی که دروغی به خدا ببندد، یا بگوید: «بر من، وحی فرستاده شده»، در حالی که به او وحی نشده است، و کسی که بگوید: «من نیز همانند آنچه خدا نازل کرده است، نازل میکنم»؟! و اگر ببینی هنگامی که (این) ظالمان در شداید مرگ فرو رفتهاند، و فرشتگان دستها را گشوده، به آنان میگویند: «جان خود را خارج سازید! امروز در برابر دروغهایی که به خدا بستید و نسبت به آیات او تکبّر ورزیدید، مجازات خوارکنندهای خواهید دید»! (به حال آنها تأسف خواهی خورد)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,348,'و (روز قیامت به آنها گفته میشود:) همه شما تنها به سوی ما بازگشت نمودید، همانگونه که روز اوّل شما را آفریدیم! و آنچه را به شما بخشیده بودیم، پشت سر گذاردید! و شفیعانی را که شریک در شفاعت خود میپنداشتید، با شما نمیبینیم! پیوندهای شما بریده شده است؛ و تمام آنچه را تکیهگاه خود تصوّر میکردید، از شما دور و گم شدهاند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,348,'خداوند، شکافنده دانه و هسته است؛ زنده را از مرده خارج میسازد، و مرده را از زنده بیرون میآورد؛ این است خدای شما! پس چگونه از حقّ منحرف میشوید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,348,'او شکافنده صبح است؛ و شب را مایه آرامش، و خورشید و ماه را وسیله حساب قرار داده است؛ این، اندازهگیری خداوند توانای داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,348,'او کسی است که ستارگان را برای شما قرار داد، تا در تاریکیهای خشکی و دریا، به وسیله آنها راه یابید! ما نشانهها (ی خود) را برای کسانی که میدانند، (و اهل فکر و اندیشهاند) بیان داشتیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,348,'او کسی است که شما را از یک نفس آفرید! و شما دو گروه هستید: بعضی پایدار (از نظر ایمان یا خلقت کامل)، و بعضی ناپایدار؛ ما آیات خود را برای کسانی که میفهمند، تشریح نمودیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,348,'او کسی است که از آسمان، آبی نازل کرد، و به وسیله آن، گیاهان گوناگون رویاندیم؛ و از آن، ساقهها و شاخههای سبز، خارج ساختیم؛ و از آنها دانههای متراکم، و از شکوفه نخل، شکوفههایی با رشتههای باریک بیرون فرستادیم؛ و باغهایی از انواع انگور و زیتون و انار، (گاه) شبیه به یکدیگر، و (گاه) بیشباهت! هنگامی که میوه می دهد، به میوه آن و طرز رسیدنش بنگرید که در آن، نشانههایی (از عظمت خدا) برای افراد باایمان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,4,348,'آنان برای خدا همتایانی از جنّ قرار دادند، در حالی که خداوند همه آنها را آفریده است؛ و برای خدا، به دروغ و از روی جهل، پسران و دخترانی ساختند؛ منزّه است خدا، و برتر است از آنچه توصیف میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,4,348,'او پدید آورنده آسمانها و زمین است؛ چگونه ممکن است فرزندی داشته باشد؟! حال آنکه همسری نداشته، و همه چیز را آفریده؛ و او به همه چیز داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,4,348,'(آری، این است پروردگار شما! هیچ معبودی جز او نیست؛ آفریدگار همه چیز است؛ او را بپرستید و او نگهبان و مدّبر همه موجودات است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,4,348,'چشمها او را نمیبینند؛ ولی او همه چشمها را میبیند؛ و او بخشنده (انواع نعمتها، و با خبر از دقایق موجودات،) و آگاه (از همه) چیز است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,4,348,'دلایل روشن از طرف پروردگارتان برای شما آمد؛ کسی که (به وسیله آن، حقّ را) ببیند، به سود خود اوست؛ و کسی که از دیدن آن چشم بپوشد، به زیان خودش میباشد؛ و من نگاهبان شما نیستم (و شما را بر قبول ایمان مجبور نمیکنم)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,4,348,'و اینچنین آیات (خود) را تشریح میکنیم؛ بگذار آنها بگویند: «تو درس خواندهای (و آنها را از دیگری آموختهای)»! میخواهیم آن را برای کسانی که آماده درک حقایقند، روشن سازیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,4,348,'از آنچه که از سوی پروردگارت بر تو وحی شده، پیروی کن! هیچ معبودی جز او نیست! و از مشرکان، روی بگردان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,4,348,'اگر خدا میخواست، (همه به اجبار ایمان میآوردند،) و هیچ یک مشرک نمیشدند؛ و ما تو را مسؤول (اعمال) آنها قرار ندادهایم؛ و وظیفه نداری آنها را (به ایمان) مجبور سازی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,4,348,'(به معبود) کسانی که غیر خدا را میخوانند دشنام ندهید، مبادا آنها (نیز) از روی (ظلم و) جهل، خدا را دشنام دهند! اینچنین برای هر امّتی عملشان را زینت دادیم سپس بازگشت همه آنان به سوی پروردگارشان است؛ و آنها را از آنچه عمل میکردند، آگاه میسازد (و پاداش و کیفر میدهد).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,4,348,'با نهایت اصرار، به خدا سوگند یاد کردند که اگر نشانهای [= معجزهای] برای آنان بیاید، حتماً به آن ایمان میآورند؛ بگو: «معجزات فقط از سوی خداست (و در اختیار من نیست که به میل شما معجزهای بیاورم)؛ و شما از کجا میدانید که هرگاه معجزهای بیاید (ایمان میآورند؟ خیر،) ایمان نمیآورند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,4,348,'و ما دلها و چشمهای آنها را واژگونه میسازیم؛ (آری آنها ایمان نمیآورند) همانگونه که در آغاز، به آن ایمان نیاوردند! و آنان را در حال طغیان و سرکشی، به خود وامیگذاریم تا سرگردان شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,4,348,'(و حتّی) اگر فرشتگان را بر آنها نازل میکردیم، و مردگان با آنان سخن میگفتند، و همه چیز را در برابر آنها جمع مینمودیم، هرگز ایمان نمیآوردند؛ مگر آنکه خدا بخواهد! ولی بیشتر آنها نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,4,348,'اینچنین در برابر هر پیامبری، دشمنی از شیاطین انس و جنّ قرار دادیم؛ آنها بطور سری (و درگوشی) سخنان فریبنده و بیاساس (برای اغفال مردم) به یکدیگر میگفتند؛ و اگر پروردگارت میخواست، چنین نمیکردند؛ (و میتوانست جلو آنها را بگیرد؛ ولی اجبار سودی ندارد.) بنابر این، آنها و تهمتهایشان را به حال خود واگذار!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,4,348,'نتیجه (وسوسههای شیطان و تبلیغات شیطانصفتان) این خواهد شد که دلهای منکران قیامت، به آنها متمایل گردد؛ و به آن راضی شوند؛ و هر گناهی که بخواهند، انجام دهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,4,348,'(با این حال،) آیا غیر خدا را به داوری طلبم؟! در حالی که اوست که این کتاب آسمانی را، که همه چیز در آن آمده، به سوی شما فرستاده است؛ و کسانی که به آنها کتاب آسمانی دادهایم میدانند این کتاب، بحق از طرف پروردگارت نازل شده؛ بنابر این از تردیدکنندگان مباش!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,4,348,'و کلام پروردگار تو، با صدق و عدل، به حدّ تمام رسید؛ هیچ کس نمیتواند کلمات او را دگرگون سازد؛ و او شنونده داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,4,348,'اگر از بیشتر کسانی که در روی زمین هستند اطاعت کنی، تو را از راه خدا گمراه می کنند؛ (زیرا) آنها تنها از گمان پیروی مینمایند، و تخمین و حدس (واهی) میزنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,4,348,'پروردگارت به کسانی که از راه او گمراه گشتهاند، آگاهتر است؛ و همچنین از کسانی که هدایت یافتهاند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,4,348,'از (گوشت) آنچه نام خدا (هنگام سر بریدن) بر آن گفته شده، بخورید (و غیر از آن نخورید) اگر به آیات او ایمان دارید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,4,348,'چرا از چیزها [= گوشتها] ئی که نام خدا بر آنها برده شده نمیخورید؟! در حالی که (خداوند) آنچه را بر شما حرام بوده، بیان کرده است! مگر اینکه ناچار باشید؛ (که در این صورت، خوردن از گوشت آن حیوانات جایز است.) و بسیاری از مردم، به خاطر هوی و هوس و بیدانشی، (دیگران را) گمراه میسازند؛ و پروردگارت، تجاوزکاران را بهتر میشناسد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,4,348,'گناهان آشکار و پنهان را رها کنید! زیرا کسانی که گناه میکنند، بزودی در برابر آنچه مرتکب میشدند، مجازات خواهند شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,4,348,'و از آنچه نام خدا بر آن برده نشده، نخورید! این کار گناه است؛ و شیاطین به دوستان خود مطالبی مخفیانه القا میکنند، تا با شما به مجادله برخیزند؛ اگر از آنها اطاعت کنید، شما هم مشرک خواهید بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,4,348,'آیا کسی که مرده بود، سپس او را زنده کردیم، و نوری برایش قرار دادیم که با آن در میان مردم راه برود، همانند کسی است که در ظلمتها باشد و از آن خارج نگردد؟! این گونه برای کافران، اعمال (زشتی) که انجام میدادند، تزیین شده (و زیبا جلوه کرده) است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,4,348,'و (نیز) این گونه در هر شهر و آبادی، بزرگان گنهکاری قرار دادیم؛ (افرادی که همه گونه قدرت در اختیارشان گذاردیم؛ اما آنها سوء استفاده کرده، و راه خطا پیش گرفتند؛) و سرانجام کارشان این شد که به مکر (و فریب مردم) پرداختند؛ ولی تنها خودشان را فریب میدهند و نمیفهمند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,4,348,'و هنگامی که آیهای برای آنها بیاید، میگویند: «ما هرگز ایمان نمیآوریم، مگر اینکه همانند چیزی که به پیامبران خدا داده شده، به ما هم داده شود!» خداوند آگاهتر است که رسالت خویش را کجا قرار دهد! بزودی کسانی که مرتکب گناه شدند، (و مردم را از راه حق منحرف ساختند،) در مقابل مکر (و فریب و نیرنگی) که میکردند، گرفتار حقارت در پیشگاه خدا، و عذاب شدید خواهند شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,4,348,'آن کس را که خدا بخواهد هدایت کند، سینهاش را برای (پذیرش) اسلام، گشاده می سازد؛ و آن کس را که بخاطر اعمال خلافش بخواهد گمراه سازد، سینهاش را آنچنان تنگ میکند که گویا میخواهد به آسمان بالا برود؛ این گونه خداوند پلیدی را بر افرادی که ایمان نمیآورند قرار میدهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,4,348,'و این راه مستقیم (و سنت جاویدان) پروردگار توست؛ ما آیات خود را برای کسانی که پند میگیرند، بیان کردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,4,348,'برای آنها (در بهشت) خانه امن و امان نزد پروردگارشان خواهد بود؛ و او، ولیّ و یاور آنهاست بخاطر اعمال (نیکی) که انجام میدادند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,4,348,'در آن روز که (خدا) همه آنها را جمع و محشور میسازد، (میگوید:) ای جمعیّت شیاطین و جن! ّ شما افراد زیادی از انسانها را گمراه ساختید! دوستان و پیروان آنها از میان انسانها میگویند: «پروردگارا! هر یک از ما دو گروه [= پیشوایان و پیروانگمراه] از دیگری استفاده کردیم؛ (ما به لذّات هوس آلود و زودگذر رسیدیم؛ و آنها بر ما حکومت کردند؛) و به اجلی که برای ما مقرّر داشته بودی رسیدیم.» (خداوند) میگوید: «آتش جایگاه شماست؛ جاودانه در آن خواهید ماند، مگر آنچه خدا بخواهد» پروردگار تو حکیم و داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,4,348,'ما اینگونه بعضی از ستمگران را به بعضی دیگر وامیگذاریم به سبب اعمالی که انجام میدادند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,4,348,'(در آن روز به آنها میگوید:) ای گروه جنّ و انس! آیا رسولانی از شما به سوی شما نیامدند که آیات مرا برایتان بازگو میکردند، و شما را از ملاقات چنین روزی بیم می دادند؟! آنها میگویند: «بر ضدّ خودمان گواهی میدهیم؛ (آری، ما بد کردیم.)» و زندگی (پر زرق و برق) دنیا آنها را فریب داد؛ و به زیان خود گواهی میدهند که کافر بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,4,348,'این بخاطر آن است که پروردگارت هیچگاه (مردم) شهرها و آبادیها را بخاطر ستمهایشان در حال غفلت و بیخبری هلاک نمیکند. (بلکه قبلاً رسولانی برای آنها میفرستد.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,4,348,'و برای هر یک (از این دو دسته)، درجات (و مراتبی) است از آنچه عمل کردند؛ و پروردگارت از اعمالی که انجام میدهند، غافل نیست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,4,348,'پروردگارت بینیاز و مهربان است؛ (پس به کسی ستم نمیکند؛ بلکه همه، نتیجه اعمال خود را میگیرند؛) اگر بخواهد، همه شما را میبرد؛ سپس هر کس را بخواهد جانشین شما میسازد؛ همانطور که شما را از نسل اقوام دیگری به وجود آورد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,4,348,'آنچه به شما وعده داده میشود، یقیناً میآید؛ و شما نمیتوانید (خدا را) ناتوان سازید (و از عدالت و کیفر او فرار کنید)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,4,348,'بگو: «ای قوم من! هر کار در قدرت دارید بکنید! من (هم به وظیفه خود) عمل میکنم؛ امّا بزودی خواهید دانست چه کسی سرانجام نیک خواهد داشت (و پیروزی با چه کسی است! امّا) به یقین، ظالمان رستگار نخواهند شد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,4,348,'آنها [= مشرکان] سهمی از آنچه خداوند از زراعت و چهارپایان آفریده، برای او قرار دادند؛ (و سهمی برای بتها!) و بگمان خود گفتند: «این مال خداست! و این هم مال شرکای ما [= یعنی بتها] است!» آنچه مال شرکای آنها بود، به خدا نمیرسید؛ ولی آنچه مال خدا بود، به شرکایشان میرسید! (آری، اگر سهم بتها با کمبودی مواجه میشد، مال خدا را به بتها میدادند؛ امّا عکس آن را مجاز نمیدانستند!) چه بد حکم میکنند (که علاوه بر شرک، حتّی خدا را کمتر از بتها میدانند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,4,348,'همینگونه شرکای آنها [= بتها]، قتل فرزندانشان را در نظرشان جلوه دادند؛ (کودکان خود را قربانی بتها میکردند، و افتخار مینمودند!) سرانجام آنها را به هلاکت افکندند؛ و آیینشان را بر آنان مشتبه ساختند. و اگر خدا میخواست، چنین نمیکردند؛ (زیرا میتوانست جلو آنان را بگیرد؛ ولی اجبار سودی ندارد.) بنابر این، آنها و تهمتهایشان را به حال خود واگذار (و به آنها اعتنا مکن)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,4,348,'و گفتند: «این قسمت از چهارپایان و زراعت (که مخصوص بتهاست، برای همه) ممنوع است؛ و جز کسانی که ما بخواهیم -به گمان آنها- نباید از آن بخورند! و (اینها) چهارپایانی است که سوارشدن بر آنها (بر ما) حرام شده است!» و (نیز) چهارپایانی (بود) که (هنگام ذبح،) نام خدا را بر آن نمیبردند، و به خدا دروغ میبستند؛ (و میگفتند: «این احکام، همه از ناحیه اوست.») بزودی (خدا) کیفر افتراهای آنها را میدهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,4,348,'و گفتند: «آنچه (از بچّه) در شکم این حیوانات است، مخصوص مردان ماست؛ و بر همسران ما حرام است! امّا اگر مرده باشد [= مرده متولّد شود]، همگی در آن شریکند.» بزودی (خدا) کیفر این توصیف (و احکام دروغین) آنها را میدهد؛ او حکیم و داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,4,348,'به یقین آنها که فرزندان خود را از روی جهل و نادانی کشتند، گرفتار خسران شدند؛ (زیرا) آنچه را خدا به آنها روزی داده بود، بر خود تحریم کردند؛ و بر خدا افترا بستند. آنها گمراه شدند؛ و (هرگز) هدایت نیافته بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,4,348,'اوست که باغهای معروش [= باغهایی که درختانش روی داربستها قرار دارد]، و باغهای غیرمعروش [= باغهایی که نیاز به داربست ندارد] را آفرید؛ همچنین نخل و انواع زراعت را، که از نظر میوه و طعم با هم متفاوتند؛ و (نیز) درخت زیتون و انار را، که از جهتی با هم شبیه، و از جهتی تفاوت دارند؛ (برگ و ساختمان ظاهریشان شبیه یکدیگر است، در حالی که طعم میوه آنها متفاوت میباشد.) از میوه آن، به هنگامی که به ثمر مینشیند، بخورید! و حقّ آن را به هنگام درو، بپردازید! و اسراف نکنید، که خداوند مسرفان را دوست ندارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,4,348,'(او کسی است که) از چهارپایان، برای شما حیوانات باربر، و حیوانات کوچک (برای منافع دیگر) آفرید؛ از آنچه به شما روزی داده است، بخورید! و از گامهای شیطان پیروی ننمایید، که او دشمن آشکار شماست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,4,348,'هشت جفت از چهارپایان (برای شما) آفرید؛ از میش دو جفت، و از بز دو جفت؛ بگو: «آیا خداوند نرهای آنها را حرام کرده، یا مادهها را؟ یا آنچه شکم مادهها در برگرفته؟ اگر راست میگویید (و بر تحریم اینها دلیلی دارید)، به من خبر دهید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,4,348,'و از شتر یک جفت، و از گاو هم یک جفت (برای شما آفرید)؛ بگو: «کدامیک از اینها را خدا حرام کرده است؟ نرها یا مادهها را؟ یا آنچه را شکم مادهها دربرگرفته؟ یا هنگامی که خدا شما را به این موضوع توصیه کرد، شما گواه (بر این تحریم) بودید؟! پس چه کسی ستمکارتر است از آن کس که بر خدا دروغ میبندد، تا مردم را از روی جهل گمراه سازد؟! خداوند هیچ گاه ستمگران را هدایت نمیکند»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,4,348,'بگو: «در آنچه بر من وحی شده، هیچ غذای حرامی نمییابم؛ بجز اینکه مردار باشد، یا خونی که (از بدن حیوان) بیرون ریخته، یا گوشت خوک -که اینها همه پلیدند- یا حیوانی که به گناه، هنگام سر بریدن، نام غیر خدا [= نام بتها] بر آن برده شده است.» اما کسی که مضطر (به خوردن این محرمات) شود، بی آنکه خواهان لذت باشد و یا زیاده روی کند (گناهی بر او نیست)؛ زیرا پروردگارت، آمرزنده مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,4,348,'و بر یهودیان، هر حیوان ناخندار [= حیواناتی که سم یکپارچه دارند] را حرام کردیم؛ و از گاو و گوسفند، پیه و چربیشان را بر آنان تحریم نمودیم؛ مگر چربیهایی که بر پشت آنها قرار دارد، و یا در دو طرف پهلوها، و یا آنها که با استخوان آمیخته است؛ این را بخاطر ستمی که میکردند به آنها کیفر دادیم؛ و ما راست میگوییم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,4,348,'اگر تو را تکذیب کنند (و این حقایق را نپذیرند)، به آنها بگو: «پروردگار شما، رحمت گستردهای دارد؛ اما مجازات او هم از مجرمان دفع شدنی نیست! (و اگر ادامه دهید کیفر شما حتمی است)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,4,348,'بزودی مشرکان (برای تبرئه خویش) میگویند: «اگر خدا میخواست، نه ما مشرک میشدیم و نه پدران ما؛ و نه چیزی را تحریم میکردیم!» کسانی که پیش از آنها بودند نیز، همین گونه دروغ میگفتند؛ و سرانجام (طعم) کیفر ما را چشیدند. بگو: «آیا دلیل روشنی (بر این موضوع) دارید؟ پس آن را به ما نشان دهید؟ شما فقط از پندارهای بیاساس پیروی میکنید، و تخمینهای نابجا میزنید.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,4,348,'بگو: «دلیل رسا (و قاطع) برای خداست (دلیلی که برای هیچ کس بهانهای باقی نمیگذارد). و اگر او بخواهد، همه شما را (به اجبار) هدایت میکند. (ولی چون هدایت اجباری بیثمر است، این کار را نمیکند.)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,4,348,'بگو: «گواهان خود را، که گواهی میدهند خداوند اینها را حرام کرده است، بیاورید!» اگر آنها (بدروغ) گواهی دهند، تو با آنان (همصدا نشو! و) گواهی نده! و از هوی و هوس کسانی که آیات ما را تکذیب کردند، و کسانی که به آخرت ایمان ندارند و برای خدا شریک قائلند، پیروی مکن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,4,348,'بگو: «بیایید آنچه را پروردگارتان بر شما حرام کرده است برایتان بخوانم: اینکه چیزی را شریک خدا قرار ندهید! و به پدر و مادر نیکی کنید! و فرزندانتان را از (ترس) فقر، نکشید! ما شما و آنها را روزی میدهیم؛ و نزدیک کارهای زشت نروید، چه آشکار باشد چه پنهان! و انسانی را که خداوند محترم شمرده، به قتل نرسانید! مگر بحق (و از روی استحقاق)؛ این چیزی است که خداوند شما را به آن سفارش کرده، شاید درک کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,4,348,'و به مال یتیم، جز به بهترین صورت (و برای اصلاح)، نزدیک نشوید، تا به حد رشد خود برسد! و حق پیمانه و وزن را بعدالت ادا کنید! -هیچ کس را، جز بمقدار تواناییش، تکلیف نمیکنیم- و هنگامی که سخنی میگویید، عدالت را رعایت نمایید، حتی اگر در مورد نزدیکان (شما) بوده باشد و به پیمان خدا وفا کنید، این چیزی است که خداوند شما را به آن سفارش میکند، تا متذکّر شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,4,348,'این راه مستقیم من است، از آن پیروی کنید! و از راههای پراکنده (و انحرافی) پیروی نکنید، که شما را از طریق حق، دور میسازد! این چیزی است که خداوند شما را به آن سفارش میکند، شاید پرهیزگاری پیشه کنید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,4,348,'سپس به موسی کتاب (آسمانی) دادیم؛ (و نعمت خود را) بر آنها که نیکوکار بودند، کامل کردیم؛ و همه چیز را (که مورد نیاز آنها بود، در آن) روشن ساختیم؛ کتابی که مایه هدایت و رحمت بود؛ شاید به لقای پروردگارشان (و روز رستاخیز)، ایمان بیاورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,4,348,'و این کتابی است پر برکت، که ما (بر تو) نازل کردیم؛ از آن پیروی کنید، و پرهیزگاری پیشه نمائید، باشد که مورد رحمت (خدا) قرار گیرید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,4,348,'(ما این کتاب را با این امتیازات نازل کردیم) تا نگویید: «کتاب آسمانی تنها بر دو طایفه پیش از ما [= یهود و نصاری] نازل شده بود؛ و ما از بحث و بررسی آنها بی خبر بودیم»!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,4,348,'یا نگویید: «اگر کتاب آسمانی بر ما نازل میشد، از آنها هدایت یافتهتر بودیم»! اینک آیات و دلایل روشن از جانب پروردگارتان، و هدایت و رحمت برای شما آمد! پس، چه کسی ستمکارتر است از کسی که آیات خدا را تکذیب کرده، و از آن روی گردانده است؟! اما بزودی کسانی را که از آیات ما روی میگردانند، بخاطر همین اعراض بیدلیلشان، مجازات شدید خواهیم کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,4,348,'آیا جز این انتظار دارند که فرشتگان (مرگ) به سراغشان آیند، یا خداوند (خودش) به سوی آنها بیاید، یا بعضی از آیات پروردگارت (و نشانههای رستاخیز)؟! اما آن روز که بعضی از آیات پروردگارت تحقّق پذیرد، ایمانآوردن افرادی که قبلاً ایمان نیاوردهاند، یا در ایمانشان عمل نیکی انجام ندادهاند، سودی به حالشان نخواهد داشت! بگو: «(اکنون که شما چنین انتظارات نادرستی دارید،) انتظار بکشید ما هم انتظار (کیفر شما را) میکشیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,4,348,'کسانی که آیین خود را پراکنده ساختند، و به دستههای گوناگون (و مذاهب مختلف) تقسیم شدند، تو هیچ گونه رابطهای با آنها نداری! سر و کار آنها تنها با خداست؛ سپس خدا آنها را از آنچه انجام میدادند، با خبر میکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,4,348,'هر کس کار نیکی بجا آورد، ده برابر آن پاداش دارد، و هر کس کار بدی انجام دهد، جز بمانند آن، کیفر نخواهد دید؛ و ستمی بر آنها نخواهد شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,4,348,'بگو: «پروردگارم مرا به راه راست هدایت کرده؛ آیینی پابرجا (و ضامن سعادت دین و دنیا)؛ آیین ابراهیم؛ که از آیینهای خرافی روی برگرداند؛ و از مشرکان نبود.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,4,348,'بگو: «نماز و تمام عبادات من، و زندگی و مرگ من، همه برای خداوند پروردگار جهانیان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,4,348,'همتایی برای او نیست؛ و به همین مأمور شدهام؛ و من نخستین مسلمانم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,4,348,'بگو: «آیا غیر خدا، پروردگاری را بطلبم، در حالی که او پروردگار همه چیز است؟! هیچ کس، عمل (بدی) جز به زیان خودش، انجام نمیدهد؛ و هیچ گنهکاری گناه دیگری را متحمّل نمیشود؛ سپس بازگشت همه شما به سوی پروردگارتان است؛ و شما را از آنچه در آن اختلاف داشتید، خبر خواهد داد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,4,348,'و او کسی است که شما را جانشینان (و نمایندگان) خود در زمین ساخت، و درجات بعضی از شما را بالاتر از بعضی دیگر قرار داد، تا شما را به وسیله آنچه در اختیارتان قرار داده بیازماید؛ به یقین پروردگار تو سریع العقاب و آمرزنده مهربان است. (کیفر کسانی را که از بوته امتحان نادرست درآیند، زود میدهد؛ و نسبت به حق پویان مهربان است.)');
+INSERT INTO chapters (id, number, quran_id) VALUES(349,7,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,349,'المص');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,349,'این کتابی است که بر تو نازل شده؛ و نباید از ناحیه آن، ناراحتی در سینه داشته باشی! تا به وسیله آن، (مردم را از عواقب سوء عقاید و اعمال نادرستشان) بیم دهی؛ و تذکّری است برای مؤمنان.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,349,'از چیزی که از طرف پروردگارتان بر شما نازل شده، پیروی کنید! و از اولیا و معبودهای دیگر جز او، پیروی نکنید! اما کمتر متذکّر میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,349,'چه بسیار شهرها و آبادیها که آنها را (بر اثر گناه فراوانشان) هلاک کردیم! و عذاب ما شبهنگام، یا در روز هنگامی که استراحت کرده بودند، به سراغشان آمد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,349,'و در آن موقع که عذاب ما به سراغ آنها آمد، سخنی نداشتند جز اینکه گفتند: «ما ظالم بودیم!» (ولی این اعتراف به گناه، دیگر دیر شده بود؛ و سودی به حالشان نداشت.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,349,'به یقین، (هم) از کسانی که پیامبران به سوی آنها فرستاده شدند سؤال خواهیم کرد؛ (و هم) از پیامبران سؤال میکنیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,349,'و مسلماً (اعمالشان را) با علم (خود) برای آنان شرح خواهیم داد؛ و ما هرگز غایب نبودیم (بلکه همه جا حاضر و ناظر اعمال بندگان هستیم)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,349,'وزن کردن (اعمال، و سنجش ارزش آنها) در آن روز، حقّ است! کسانی که میزانهای (عمل) آنها سنگین است، همان رستگارانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,349,'و کسانی که میزانهای (عمل) آنها سبک است، افرادی هستند که سرمایه وجود خود را، بخاطر ظلم و ستمی که نسبت به آیات ما میکردند، از دست دادهاند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,349,'ما تسلّط و مالکیّت و حکومت بر زمین را برای شما قرار دادیم؛ و انواع وسایل زندگی را برای شما فراهم ساختیم؛ اما کمتر شکرگزاری میکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,349,'ما شما را آفریدیم؛ سپس صورت بندی کردیم؛ بعد به فرشتگان گفتیم: «برای آدم خضوع کنید!» آنها همه سجده کردند؛ جز ابلیس که از سجدهکنندگان نبود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,349,'(خداوند به او) فرمود: «در آن هنگام که به تو فرمان دادم، چه چیز تو را مانع شد که سجده کنی؟» گفت: «من از او بهترم؛ مرا از آتش آفریدهای و او را از گل!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,349,'گفت: «از آن (مقام و مرتبهات) فرود آی! تو حقّ نداری در آن (مقام و مرتبه) تکبّر کنی! بیرون رو، که تو از افراد پست و کوچکی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,349,'گفت: «مرا تا روزی که (مردم) برانگیخته میشوند مهلت ده (و زنده بگذار!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,349,'فرمود: «تو از مهلت داده شدگانی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,349,'گفت: «اکنون که مرا گمراه ساختی، من بر سر راه مستقیم تو، در برابر آنها کمین می کنم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,349,'سپس از پیش رو و از پشت سر، و از طرف راست و از طرف چپ آنها، به سراغشان میروم؛ و بیشتر آنها را شکرگزار نخواهی یافت!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,349,'فرمود: «از آن (مقام)، با ننگ و عار و خواری، بیرون رو! و سوگند یاد میکنم که هر کس از آنها از تو پیروی کند، جهنم را از شما همگی پر میکنم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,349,'و ای آدم! تو و همسرت در بهشت ساکن شوید! و از هر جا که خواستید، بخورید! امّا به این درخت نزدیک نشوید، که از ستمکاران خواهید بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,349,'سپس شیطان آن دو را وسوسه کرد، تا آنچه را از اندامشان پنهان بود، آشکار سازد؛ و گفت: «پروردگارتان شما را از این درخت نهی نکرده مگر بخاطر اینکه (اگر از آن بخورید،) فرشته خواهید شد، یا جاودانه (در بهشت) خواهید ماند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,349,'و برای آنها سوگند یاد کرد که من برای شما از خیرخواهانم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,349,'و به این ترتیب، آنها را با فریب (از مقامشان) فرودآورد. و هنگامی که از آن درخت چشیدند، اندامشان [= عورتشان] بر آنها آشکار شد؛ و شروع کردند به قرار دادن برگهای (درختان) بهشتی بر خود، تا آن را بپوشانند. و پروردگارشان آنها را نداد داد که: «آیا شما را از آن درخت نهی نکردم؟! و نگفتم که شیطان برای شما دشمن آشکاری است؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,349,'گفتند: «پروردگارا! ما به خویشتن ستم کردیم! و اگر ما را نبخشی و بر ما رحم نکنی، از زیانکاران خواهیم بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,349,'فرمود: «(از مقام خویش،) فرود آیید، در حالی که بعضی از شما نسبت به بعض دیگر، دشمن خواهید بود! (شیطان دشمن شماست، و شما دشمن او!) و برای شما در زمین، قرارگاه و وسیله بهرهگیری تا زمان معینی خواهد بود.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,349,'فرمود: «در آن [= زمین] زنده میشوید؛ و در آن میمیرید؛ و (در رستاخیز) از آن خارج خواهید شد.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,349,'ای فرزندان آدم! لباسی برای شما فرستادیم که اندام شما را میپوشاند و مایه زینت شماست؛ اما لباس پرهیزگاری بهتر است! اینها (همه) از آیات خداست، تا متذکّر (نعمتهای او) شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,349,'ای فرزندان آدم! شیطان شما را نفریبد، آن گونه که پدر و مادر شما را از بهشت بیرون کرد، و لباسشان را از تنشان بیرون ساخت تا عورتشان را به آنها نشان دهد! چه اینکه او و همکارانش شما را میبینند از جایی که شما آنها را نمیبینید؛ (امّا بدانید) ما شیاطین را اولیای کسانی قرار دادیم که ایمان نمیآورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,349,'و هنگامی که کار زشتی انجام میدهند میگویند: «پدران خود را بر این عمل یافتیم؛ و خداوند ما را به آن دستور داده است!» بگو: «خداوند (هرگز) به کار زشت فرمان نمیدهد! آیا چیزی به خدا نسبت میدهید که نمیدانید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,349,'بگو: «پروردگارم امر به عدالت کرده است؛ و توجّه خویش را در هر مسجد (و به هنگام عبادت) به سوی او کنید! و او را بخوانید، در حالی که دین (خود) را برای او خالص گردانید! (و بدانید) همان گونه که در آغاز شما را آفرید، (بار دیگر در رستاخیز) بازمیگردید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,349,'جمعی را هدایت کرده؛ و جمعی (که شایستگی نداشتهاند،) گمراهی بر آنها مسلّم شده است. آنها (کسانی هستند که) شیاطین را به جای خداوند، اولیای خود انتخاب کردند؛ و گمان میکنند هدایت یافتهاند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,349,'ای فرزندان آدم! زینت خود را به هنگام رفتن به مسجد، با خود بردارید! و (از نعمتهای الهی) بخورید و بیاشامید، ولی اسراف نکنید که خداوند مسرفان را دوست نمیدارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,349,'بگو: «چه کسی زینتهای الهی را که برای بندگان خود آفریده، و روزیهای پاکیزه را حرام کرده است؟!» بگو: «اینها در زندگی دنیا، برای کسانی است که ایمان آوردهاند؛ (اگر چه دیگران نیز با آنها مشارکت دارند؛ ولی) در قیامت، خالص (برای مؤمنان) خواهد بود.» این گونه آیات (خود) را برای کسانی که آگاهند، شرح میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,349,'بگو: «خداوند، تنها اعمال زشت را، چه آشکار باشد چه پنهان، حرام کرده است؛ و (همچنین) گناه و ستم بناحق را؛ و اینکه چیزی را که خداوند دلیلی برای آن نازل نکرده، شریک او قرار دهید؛ و به خدا مطلبی نسبت دهید که نمیدانید.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,349,'برای هر قوم و جمعیّتی، زمان و سرآمد (معیّنی) است؛ و هنگامی که سرآمد آنها فرا رسد، نه ساعتی از آن تأخیر میکنند، و نه بر آن پیشی میگیرند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,349,'ای فرزندان آدم! اگر رسولانی از خود شما به سراغتان بیایند که آیات مرا برای شما بازگو کنند، (از آنها پیروی کنید؛) کسانی که پرهیزگاری پیشه کنند و عمل صالح انجام دهند (و در اصلاح خویش و دیگران بکوشند)، نه ترسی بر آنهاست و نه غمناک می شوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,349,'و آنها که آیات ما را تکذیب کنند، و در برابر آن تکبّر ورزند، اهل دوزخند؛ جاودانه در آن خواهند ماند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,349,'چه کسی ستمکارتر است از آنها که بر خدا دروغ میبندند، یا آیات او را تکذیب می کنند؟! آنها نصیبشان را از آنچه مقدّر شده (از نعمتها و مواهب این جهان) میبرند؛ تا زمانی که فرستادگان ما [= فرشتگان قبض ارواح] به سراغشان روند و جانشان را بگیرند؛ از آنها میپرسند: «کجایند معبودهایی که غیر از خدا میخواندید؟! (چرا به یاری شما نمیآیند؟!)» میگویند: «آنها (همه) گم شدند (و از ما دور گشتند!)» و بر ضدّ خود گواهی میدهند که کافر بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,349,'(خداوند به آنها) میگوید: «در صفّ گروههای مشابه خود از جنّ و انس در آتش وارد شوید!» هر زمان که گروهی وارد میشوند، گروه دیگر را لعن میکنند؛ تا همگی با ذلّت در آن قرار گیرند. (در این هنگام) گروه پیروان درباره پیشوایان خود میگویند: «خداوندا! اینها بودند که ما را گمراه ساختند؛ پس کیفر آنها را از آتش دو برابر کن! (کیفری برای گمراهیشان، و کیفری بخاطر گمراه ساختن ما.)» میفرماید: «برای هر کدام (از شما) عذاب مضاعف است؛ ولی نمیدانید! (چرا که پیروان اگر گرد پیشوایان گمراه را نگرفته بودند، قدرتی بر اغوای مردم نداشتند.)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,349,'و پیشوایان آنها به پیروان خود میگویند: «شما امتیازی بر ما نداشتید؛ پس بچشید عذاب (الهی) را در برابر آنچه انجام میدادید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,349,'کسانی که آیات ما را تکذیب کردند، و در برابر آن تکبّر ورزیدند، (هرگز) درهای آسمان به رویشان گشوده نمیشود؛ و (هیچ گاه) داخل بهشت نخواهند شد مگر اینکه شتر از سوراخ سوزن بگذرد! این گونه، گنهکاران را جزا میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,349,'برای آنها بستری از (آتش) دوزخ، و روی آنها پوششهایی (از آن) است؛ و اینچنین ظالمان را جزا میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,349,'و کسانی که ایمان آورده و اعمال صالح انجام دادهاند -البته هیچ کس را جز به اندازه تواناییش تکلیف نمیکنیم- آنها اهل بهشتند؛ و جاودانه در آن خواهند ماند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,349,'و آنچه در دلها از کینه و حسد دارند، برمیکنیم (تا در صفا و صمیمیّت با هم زندگی کنند)؛ و از زیر (قصرها و درختان) آنها، نهرها جریان دارد؛ میگویند: «ستایش مخصوص خداوندی است که ما را به این (همه نعمتها) رهنمون شد؛ و اگر خدا ما را هدایت نکرده بود، ما (به اینها) راه نمییافتیم! مسلّماً فرستادگان پروردگار ما حق را آوردند!» و (در این هنگام) به آنان ندا داده میشود که: «این بهشت را در برابر اعمالی که انجام میدادید، به ارث بردید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,349,'و بهشتیان دوزخیان را صدا میزنند که: «آنچه را پروردگارمان به ما وعده داده بود، همه را حق یافتیم؛ آیا شما هم آنچه را پروردگارتان به شما وعده داده بود حق یافتید؟!» گفتند: «بله!» در این هنگام، ندادهندهای در میان آنها ندا میدهد که: «لعنت خدا بر ستمگران باد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,349,'همانها که (مردم را) از راه خدا بازمیدارند، و (با القای شبهات) میخواهند آن را کج و معوج نشان دهند؛ و آنها به آخرت کافرند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,349,'و در میان آن دو [= بهشتیان و دوزخیان]، حجابی است؛ و بر «اعراف» مردانی هستند که هر یک از آن دو را از چهرهشان میشناسند؛ و به بهشتیان صدا میزنند که: «درود بر شما باد!» امّا داخل بهشت نمیشوند، در حالی که امید آن را دارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,349,'و هنگامی که چشمشان به دوزخیان میافتد میگویند: «پروردگارا! ما را با گروه ستمگران قرار مده!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,349,'و اصحاب اعراف، مردانی (از دوزخیان را) که از سیمایشان آنها را میشناسند، صدا میزنند و میگویند: «(دیدید که) گردآوری شما (از مال و ثروت و آن و فرزند) و تکبّرهای شما، به حالتان سودی نداد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,349,'آیا اینها [= این واماندگان بر اعراف] همانان نیستند که سوگند یاد کردید رحمت خدا هرگز شامل حالشان نخواهد شد؟! (ولی خداوند بخاطر ایمان و بعضی اعمال خیرشان، آنها را بخشید؛ هم اکنون به آنها گفته میشود:) داخل بهشت شوید، که نه ترسی دارید و نه غمناک میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,349,'و دوزخیان، بهشتیان را صدا میزنند که: «(محبّت کنید) و مقداری آب، یا از آنچه خدا به شما روزی داده، به ما ببخشید!» آنها (در پاسخ) میگویند: «خداوند اینها را بر کافران حرام کرده است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,349,'همانها که دین و آیین خود را سرگرمی و بازیچه گرفتند؛ و زندگی دنیا آنان را مغرور ساخت؛ امروز ما آنها را فراموش میکنیم، همان گونه که لقای چنین روزی را فراموش کردند و آیات ما را انکار نمودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,349,'ما کتابی برای آنها آوردیم که (اسرار و رموز) آن را با آگاهی شرح دادیم؛ (کتابی) که مایه هدایت و رحمت برای جمعیّتی است که ایمان میآورند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,349,'آیا آنها جز انتظار تأویل آیات (و فرا رسیدن تهدیدهای الهی) دارند؟ آن روز که تأویل آنها فرا رسد، (کار از کار گذشته، و پشیمانی سودی ندارد؛ و) کسانی که قبلاً آن را فراموش کرده بودند میگویند: «فرستادگان پروردگار ما، حق را آوردند؛ آیا (امروز) شفیعانی برای ما وجود دارند که برای ما شفاعت کنند؟ یا (به ما اجازه داده شود به دنیا) بازگردیم، و اعمالی غیر از آنچه انجام میدادیم، انجام دهیم؟!» (ولی) آنها سرمایه وجود خود را از دست دادهاند؛ و معبودهایی را که به دروغ ساخته بودند، همگی از نظرشان: گم میشوند. (نه راه بازگشتی دارند، و نه شفیعانی!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,349,'پروردگار شما، خداوندی است که آسمانها و زمین را در شش روز [= شش دوران] آفرید؛ سپس به تدبیر جهان هستی پرداخت؛ با (پرده تاریک) شب، روز را می پوشاند؛ و شب به دنبال روز، به سرعت در حرکت است؛ و خورشید و ماه و ستارگان را آفرید، که مسخّر فرمان او هستند. آگاه باشید که آفرینش و تدبیر (جهان)، از آن او (و به فرمان او) ست! پر برکت (و زوالناپذیر) است خداوندی که پروردگار جهانیان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,349,'پروردگار خود را (آشکارا) از روی تضرّع، و در پنهانی، بخوانید! (و از تجاوز، دست بردارید که) او متجاوزان را دوست نمیدارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,349,'و در زمین پس از اصلاح آن فساد نکنید، و او را با بیم و امید بخوانید! (بیم از مسؤولیتها، و امید به رحمتش. و نیکی کنید) زیرا رحمت خدا به نیکوکاران نزدیک است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,349,'او کسی است که بادها را بشارت دهنده در پیشاپیش (باران) رحمتش میفرستد؛ تا ابرهای سنگینبار را (بر دوش) کشند؛ (سپس) ما آنها را به سوی زمینهای مرده میفرستیم؛ و به وسیله آنها، آب (حیاتبخش) را نازل میکنیم؛ و با آن، از هرگونه میوهای (از خاک تیره) بیرون میآوریم؛ این گونه (که زمینهای مرده را زنده کردیم،) مردگان را (نیز در قیامت) زنده میکنیم، شاید (با توجه به این مثال) متذکّر شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,349,'سرزمین پاکیزه) و شیرین)، گیاهش به فرمان پروردگار میروید؛ امّا سرزمینهای بد طینت (و شورهزار)، جز گیاه ناچیز و بیارزش، از آن نمیروید؛ این گونه آیات (خود) را برای آنها که شکرگزارند، بیان میکنیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,349,'ما نوح را به سوی قومش فرستادیم؛ او به آنان گفت: «ای قوم من! (تنها) خداوند یگانه را پرستش کنید، که معبودی جز او برای شما نیست! (و اگر غیر او را عبادت کنید،) من بر شما از عذاب روز بزرگی میترسم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,349,'(ولی) اشراف قومش به او گفتند: «ما تو را در گمراهی آشکاری میبینیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,349,'گفت: «ای قوم من! هیچ گونه گمراهی در من نیست؛ ولی من فرستادهای از جانب پروردگار جهانیانم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,349,'رسالتهای پروردگارم را به شما ابلاغ میکنم؛ و خیرخواه شما هستم؛ و از خداوند چیزهایی میدانم که شما نمیدانید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,349,'آیا تعجّب کردهاید که دستور آگاه کننده پروردگارتان به وسیله مردی از میان شما به شما برسد، تا (از عواقب اعمال خلاف) بیمتان دهد، و (در پرتو این دستور،) پرهیزگاری پیشه کنید و شاید مشمول رحمت (الهی) گردید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,349,'امّا سرانجام او را تکذیب کردند؛ و ما او و کسانی را که با وی در کشتی بودند، رهایی بخشیدیم؛ و کسانی که آیات ما را تکذیب کردند، غرق کردیم؛ چه اینکه آنها گروهی نابینا (و کوردل) بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,349,'و به سوی قوم عاد، برادرشان «هود» را (فرستادیم)؛ گفت: «ای قوم من! (تنها) خدا را پرستش کنید، که جز او معبودی برای شما نیست! آیا پرهیزگاری پیشه نمیکنید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,349,'اشراف کافر قوم او گفتند: «ما تو را در سفاهت (و نادانی و سبک مغزی) میبینیم، و ما مسلّماً تو را از دروغگویان میدانیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,349,'گرفت: «ای قوم من! هیچ گونه سفاهتی در من نیست؛ ولی فرستادهای از طرف پروردگار جهانیانم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,349,'رسالتهای پروردگارم را به شما ابلاغ میکنم؛ و من خیرخواه امینی برای شما هستم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,349,'آیا تعجّب کردهاید که دستور آگاه کننده پروردگارتان به وسیله مردی از میان شما به شما برسد تا (از مجازات الهی) بیمتان دهد؟! و به یاد آورید هنگامی که شما را جانشینان قوم نوح قرار داد؛ و شما را از جهت خلقت (جسمانی) گسترش (و قدرت) داد؛ پس نعمتهای خدا را به یاد آورید، شاید رستگار شوید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,349,'گفتند: «آیا به سراغ ما آمدهای که تنها خدای یگانه را بپرستیم، و آنچه را پدران ما میپرستند، رها کنیم؟! پس اگر راست میگوئی آنچه را (از بلا و عذاب الهی) به ما وعده میدهی، بیاور»!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,349,'گفت: «پلیدی و غضب پروردگارتان، شما را فرا گرفته است! آیا با من در مورد نامهایی مجادله میکنید که شما و پدرانتان 0بعنوان معبود و خدا، بر بتها) گذاردهاید، در حالی که خداوند هیچ دلیلی درباره آن نازل نکرده است؟! پس شما منتظر باشید، من هم با شما انتظار میکشم! (شما انتظار شکست من، و من انتظار عذاب الهی برای شما!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,349,'سرانجام، او و کسانی را که با او بودند، برحمت خود نجات بخشیدیم؛ و ریشه کسانی که آیات ما را تکذیب کردند و ایمان نیاوردند، قطع کردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,349,'و به سوی (قوم) ثمود، برادرشان صالح را (فرستادیم)؛ گفت: «ای قوم من! (تنها) خدا را بپرستید، که جز او، معبودی برای شما نیست! دلیل روشنی از طرف پروردگارتان برای شما آمده: این «ناقه» الهی برای شما معجزهای است؛ او را به حال خود واگذارید که در زمین خدا (از علفهای بیابان) بخورد! و آن را آزار نرسانید، که عذاب دردناکی شما را خواهد گرفت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,349,'و به خاطر بیاورید که شما را جانشینان قوم «عاد» قرار داد، و در زمین مستقر ساخت، که در دشتهایش، قصرها برای خود بنا میکنید؛ و در کوهها، برای خود خانهها می تراشید! بنابر این، نعمتهای خدا را متذکر شوید! و در زمین، به فساد نکوشید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,349,'(ولی) اشراف متکبر قوم او، به مستضعفانی که ایمان آورده بودند، گفتند: «آیا (براستی) شما یقین دارید که صالح از طرف پروردگارش فرستاده شده است؟!» آنها گفتند: «ما به آنچه او بدان مأموریت یافته، ایمان آوردهایم.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,349,'متکبران گفتند: «(ولی) ما به آنچه شما به آن ایمان آوردهاید، کافریم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,349,'سپس «ناقه» را پی کردند، و از فرمان پروردگارشان سرپیچیدند؛ و گفتند: «ای صالح! اگر تو از فرستادگان (خدا) هستی، آنچه ما را با آن تهدید میکنی، بیاور!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,349,'سرانجام زمین لرزه آنها را فرا گرفت؛ و صبحگاهان، (تنها) جسم بیجانشان در خانههاشان باقی مانده بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,349,'(صالح) از آنها روی برتافت؛ و گفت: «ای قوم! من رسالت پروردگارم را به شما ابلاغ کردم، و شرط خیرخواهی را انجام دادم، ولی (چه کنم که) شما خیرخواهان را دوست ندارید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,349,'و (به خاطر آورید) لوط را، هنگامی که به قوم خود گفت: «آیا عمل بسیار زشتی را انجام میدهید که هیچیک از جهانیان، پیش از شما انجام نداده است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,349,'آیا شما از روی شهوت به سراغ مردان میروید، نه زنان؟! شما گروه اسرافکار (و منحرفی) هستید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,349,'ولی پاسخ قومش چیزی جز این نبود که گفتند: «اینها را از شهر و دیار خود بیرون کنید، که اینها مردمی هستند که پاکدامنی را میطلبند (و با ما همصدا نیستند!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,349,'(چون کار به اینجا رسید،) ما او و خاندانش را رهایی بخشیدیم؛ جز همسرش، که از بازماندگان (در شهر) بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,349,'و (سپس چنان) بارانی (از سنگ) بر آنها فرستادیم؛ (که آنها را در هم کوبید و نابود ساخت.) پس بنگر سرانجام کار مجرمان چه شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,349,'و به سوی مدین، برادرشان شعیب را (فرستادیم)؛ گفت: «ای قوم من! خدا را بپرستید، که جز او معبودی ندارید! دلیل روشنی از طرف پروردگارتان برای شما آمده است؛ بنابر این، حق پیمانه و وزن را ادا کنید! و از اموال مردم چیزی نکاهید! و در روی زمین، بعد از آنکه (در پرتو ایمان و دعوت انبیاء) اصلاح شده است، فساد نکنید! این برای شما بهتر است اگر با ایمان هستید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,349,'و بر سر هر راه ننشینید که (مردم با ایمان را) تهدید کنید و مؤمنان را از راه خدا باز دارید، و با (القای شبهات،) آن را کج و معوج نشان دهید! و به خاطر بیاورید زمانی را که اندک بودید، و او شما را فزونی داد! و بنگرید سرانجام مفسدان چگونه بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,349,'و اگر گروهی از شما به آنچه من به آن فرستاده شدهام ایمان آوردهاند، و گروهی ایمان نیاوردهاند، صبر کنید تا خداوند میان ما داوری کند، که او بهترین داوران است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,349,'اشراف زورمند و متکبّر از قوم او گفتند: «ای شعیب! به یقین، تو و کسانی را که به تو ایمان آوردهاند، از شهر و دیار خود بیرون خواهیم کرد، یا به آیین ما بازگردید!» کفت: «آیا (میخواهید ما را بازگردانید) اگر چه مایل نباشیم؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,349,'اگر ما به آیین شما بازگردیم، بعد از آنکه خدا ما را از آن نجات بخشیده، به خدا دروغ بستهایم؛ و شایسته نیست که ما به آن بازگردیم مگر اینکه خدایی که پروردگار ماست بخواهد؛ علم پروردگار ما، به همه چیز احاطه دارد. تنها بر خدا توکل کردهایم. پروردگارا! میان ما و قوم ما بحق داوری کن، که تو بهترین داورانی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,349,'اشراف زورمند از قوم او که کافر شده بودند گفتند: «اگر از شعیب پیروی کنید، شما هم زیانکار خواهید شد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,349,'سپس زمین لرزه آنها را فرا گرفت؛ و صبحگاهان بصورت اجسادی بیجان در خانههاشان مانده بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,349,'آنها که شعیب را تکذیب کردند، (آنچنان نابود شدند که) گویا هرگز در آن (خانهها) سکونت نداشتند! آنها که شعیب را تکذیب کردند، زیانکار بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,349,'سپس از آنان روی برتافت و گفت: «ای قوم من! من رسالتهای پروردگارم را به شما ابلاغ کردم و برای شما خیرخواهی نمودم؛ با این حال، چگونه بر حال قوم بیایمان تأسف بخورم؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,349,'و ما در هیچ شهر و آبادی پیامبری نفرستادیم مگر اینکه اهل آن را به ناراحتیها و خسارتها گرفتار ساختیم؛ شاید (به خود آیند، و به سوی خدا) بازگردند و تضرع کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,349,'سپس (هنگامی که این هشدارها در آنان اثر نگذاشت)، نیکی (و فراوانی نعمت و رفاه) را به جای بدی (و ناراحتی و گرفتاری) قرار دادیم؛ آنچنان که فزونی گرفتند، (و همهگونه نعمت و برکت یافتند، و مغرور شدند،) و گفتند: «(تنها ما نبودیم که گرفتار این مشکلات شدیم؛) به پدران ما نیز ناراحتیهای جسمی و مالی رسید.» چون چنین شد، آنها را ناگهان (به سبب اعمالشان) گرفتیم (و مجازات کردیم)، در حالی که نمیفهمیدند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,349,'و اگر اهل شهرها و آبادیها، ایمان میآوردند و تقوا پیشه میکردند، برکات آسمان و زمین را بر آنها میگشودیم؛ ولی (آنها حق را) تکذیب کردند؛ ما هم آنان را به کیفر اعمالشان مجازات کردیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,349,'آیا اهل این آبادیها، از این ایمنند که عذاب ما شبانه به سراغ آنها بیاید در حالی که در خواب باشند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,349,'آیا اهل این آبادیها، از این ایمنند که عذاب ما هنگام روز به سراغشان بیاید در حالی که سرگرم بازی هستند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,349,'آیا آنها خود را از مکر الهی در امان میدانند؟! در حالی که جز زیانکاران، خود را از مکر (و مجازات) خدا ایمن نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,4,349,'آیا کسانی که وارث روی زمین بعد از صاحبان آن میشوند، عبرت نمیگیرند که اگر بخواهیم، آنها را نیز به گناهانشان هلاک میکنیم، و بر دلهایشان مهر مینهیم تا (صدای حق را) نشنوند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,4,349,'اینها، شهرها و آبادیهایی است که قسمتی از اخبار آن را برای تو شرح میدهیم؛ پیامبرانشان دلایل روشن برای آنان آوردند؛ (ولی آنها چنان لجوج بودند که) به آنچه قبلاً تکذیب کرده بودند، ایمان نمیآوردند! اینگونه خداوند بر دلهای کافران مهر مینهد (و بر اثر لجاجت و ادامه گناه، حس تشخیصشان را سلب میکند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,4,349,'و بیشتر آنها را بر سر پیمان خود نیافتیم؛ (بلکه) اکثر آنها را فاسق و گنهکار یافتیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,4,349,'سپس بدنبال آنها [= پیامبران پیشین] موسی را با آیات خویش به سوی فرعون و اطرافیان او فرستادیم؛ اما آنها (با عدم پذیرش)، به آن (آیات) ظلم کردند. ببین عاقبت مفسدان چگونه بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,4,349,'و موسی گفت: «ای فرعون! من فرستادهای از سوی پروردگار جهانیانم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,4,349,'سزاوار است که بر خدا جز حق نگویم. من دلیل روشنی از پروردگارتان برای شما آوردهام؛ پس بنی اسرائیل را با من بفرست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,4,349,'(فرعون) گفت: «اگر نشانهای آوردهای، نشان بده اگر از راستگویانی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,4,349,'(موسی) عصای خود را افکند؛ ناگهان اژدهای آشکاری شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,4,349,'و دست خود را (از گریبان) بیرون آورد؛ سفید (و درخشان) برای بینندگان بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,4,349,'اطرافیان فرعون گفتند: «بیشک، این ساحری ماهر و دانا است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,4,349,'میخواهد شما را از سرزمینتان بیرون کند؛ (نظر شما چیست، و) در برابر او چه دستوری دارید؟»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,4,349,'(سپس به فرعون) گفتند: «(کار) او و برادرش را به تأخیر انداز، و جمعآوریکنندگان را به همه شهرها بفرست...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,4,349,'تا هر ساحر دانا (و کارآزمودهای) را به خدمت تو بیاورند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,4,349,'ساحران نزد فرعون آمدند و گفتند: «آیا اگر ما پیروز گردیم، اجر و پاداش مهمی خواهیم داشت؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,4,349,'گفت: «آری، و شما از مقربان خواهید بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,4,349,'(روز مبارزه فرا رسید. ساحران) گفتند: «ای موسی! یا تو (وسایل سحرت را) بیفکن، یا ما میافکنیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,4,349,'گفت: «شما بیفکنید!» و هنگامی (که وسایل سحر خود را) افکندند، مردم را چشمبندی کردند و ترساندند؛ و سحر عظیمی پدید آوردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,4,349,'(ما) به موسی وحی کردیم که: «عصای خود را بیفکن!» ناگهان (بصورت مار عظیمی در آمد که) وسایل دروغین آنها را بسرعت برمیگرفت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,4,349,'(در این هنگام،) حق آشکار شد؛ و آنچه آنها ساخته بودند، باطل گشت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,4,349,'و در آنجا (همگی) مغلوب شدند؛ و خوار و کوچک گشتند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,4,349,'و ساحران (بیاختیار) به سجده افتادند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,4,349,'و گفتند: «ما به پروردگار جهانیان ایمان آوردیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,4,349,'پروردگار موسی و هارون!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,4,349,'فرعون گفت: «آیا پیش از آنکه به شما اجازه دهم، به او ایمان آوردید؟! حتماً این نیرنگ و توطئهای است که در این شهر (و دیار) چیدهاید، تا اهلش را از آن بیرون کنید؛ ولی بزودی خواهید دانست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,4,349,'سوگند میخورم که دستها و پاهای شما را بطور مخالف [= دست راست با پای چپ، یا دست چپ با پای راست] قطع میکنم؛ سپس همگی را به دار میآویزم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,4,349,'(ساحران) گفتند: «(مهم نیست،) ما به سوی پروردگارمان بازمیگردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,4,349,'انتقام تو از ما، تنها بخاطر این است که ما به آیات پروردگار خویش -هنگامی که به سراغ ما آمد- ایمان آوردیم. بار الها! صبر و استقامت بر ما فرو ریز! (و آخرین درجه شکیبائی را به ما مرحمت فرما!) و ما را مسلمان بمیران!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,4,349,'و اشراف قوم فرعون (به او) گفتند: «آیا موسی و قومش را رها میکنی که در زمین فساد کنند، و تو و خدایانت را رها سازد؟!» گفت: «بزودی پسرانشان را میکشیم، و دخترانشان را زنده نگه میداریم (تا به ما خدمت کنند)؛ و ما بر آنها کاملاً مسلّطیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,4,349,'موسی به قوم خود گفت: «از خدا یاری جویید، و استقامت پیشه کنید، که زمین از آن خداست، و آن را به هر کس از بندگانش که بخواهد، واگذار میکند؛ و سرانجام (نیک) برای پرهیزکاران است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,4,349,'گفتند: «پیش از آنکه به سوی ما بیایی آزار دیدیم، (هم اکنون) پس از آمدنت نیز آزار میبینیم! (کی این آزارها سر خواهد آمد؟)» گفت: «امید است پروردگارتان دشمن شما را هلاک کند، و شما را در زمین جانشین (آنها) سازد، و بنگرد چگونه عمل میکنید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,4,349,'و ما نزدیکان فرعون (و قوم او) را به خشکسالی و کمبود میوهها گرفتار کردیم، شاید متذکر گردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,4,349,'(اما آنها نه تنها پند نگرفتند، بلکه) هنگامی که نیکی (و نعمت) به آنها میرسید، میگفتند: «بخاطر خود ماست.» ولی موقعی که بدی (و بلا) به آنها میرسید، میگفتند: «از شومی موسی و کسان اوست»! آگاه باشید سرچشمه همه اینها، نزد خداست؛ ولی بیشتر آنها نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,4,349,'و گفتند: «هر زمان نشانه و معجزهای برای ما بیاوری که سحرمان کنی، ما به تو ایمان نمیآوریم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,4,349,'سپس (بلاها را پشت سر هم بر آنها نازل کردیم:) طوفان و ملخ و آفت گیاهی و قورباغهها و خون را -که نشانههایی از هم جدا بودند- بر آنها فرستادیم؛ (ولی باز بیدار نشدند، و) تکبر ورزیدند، و جمعیّت گنهکاری بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,4,349,'هنگامی که بلا بر آنها مسلط میشد، میگفتند: «ای موسی! از خدایت برای ما بخواه به عهدی که با تو کرده، رفتار کند! اگر این بلا را از ما مرتفع سازی، قطعاً به تو ایمان میآوریم، و بنی اسرائیل را با تو خواهیم فرستاد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,4,349,'اما هنگامی که بلا را، پس از مدت معینی که به آن میرسیدند، از آنها برمیداشتیم، پیمان خویش را میشکستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,4,349,'سرانجام از آنها انتقام گرفتیم، و آنان را در دریا غرق کردیم؛ زیرا آیات ما را تکذیب کردند، و از آن غافل بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,4,349,'و مشرقها و مغربهای پر برکت زمین را به آن قومِ به ضعف کشانده شده (زیر زنجیر ظلم و ستم)، واگذار کردیم؛ و وعده نیک پروردگارت بر بنی اسرائیل، بخاطر صبر و استقامتی که به خرج دادند، تحقّق یافت؛ و آنچه فرعون و فرعونیان (از کاخهای مجلّل) میساختند، و آنچه از باغهای داربستدار فراهم ساخته بودند، در هم کوبیدیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,4,349,'و بنی اسرائیل را (سالم) از دریا عبور دادیم؛ (ناگاه) در راه خود به گروهی رسیدند که اطراف بتهایشان، با تواضع و خضوع، گرد آمده بودند. (در این هنگام، بنی اسرائیل) به موسی گفتند: «تو هم برای ما معبودی قرار ده، همانگونه که آنها معبودان (و خدایانی) دارند!» گفت: «شما جمعیّتی جاهل و نادان هستید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,4,349,'اینها (را که میبینید)، سرانجام کارشان نابودی است؛ و آنچه انجام میدهند، باطل (و بیهوده) است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,4,349,'(سپس) گفت: «آیا غیر از خداوند، مبعودی برای شما بطلبم؟! خدایی که شما را بر جهانیان (و مردم عصرتان) برتری داد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,4,349,'(به خاطر بیاورید) زمانی را که از (چنگال) فرعونیان نجاتتان بخشیدیم! آنها که پیوسته شما را شکنجه میدادند، پسرانتان را میکشتند، و زنانتان را (برای خدمتگاری) زنده میگذاشتند؛ و در این، آزمایش بزرگی از سوی خدا برای شما بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,4,349,'و ما با موسی، سی شب وعده گذاشتیم؛ سپس آن را با ده شب (دیگر) تکمیل نمودیم؛ به این ترتیب، میعاد پروردگارش (با او)، چهل شب تمام شد. و موسی به برادرش هارون گفت: «جانشین من در میان قومم باش. و (آنها) را اصلاح کن! و از روش مفسدان، پیروی منما!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,4,349,'و هنگامی که موسی به میعادگاه ما آمد، و پروردگارش با او سخن گفت، عرض کرد: «پروردگارا! خودت را به من نشان ده، تا تو را ببینم!» گفت: «هرگز مرا نخواهی دید! ولی به کوه بنگر، اگر در جای خود ثابت ماند، مرا خواهی دید!» اما هنگامی که پروردگارش بر کوه جلوه کرد، آن را همسان خاک قرار داد؛ و موسی مدهوش به زمین افتاد. چون به هوش آمد، عرض کرد: «خداوندا! منزهی تو (از اینکه با چشم تو را ببینم)! من به سوی تو بازگشتم! و من نخستین مؤمنانم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,4,349,'(خداوند) فرمود: «ای موسی! من تو را با رسالتهای خویش، و با سخنگفتنم (با تو)، بر مردم برتری دادم و برگزیدم؛ پس آنچه را به تو دادهام بگیر و از شکرگزاران باش!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,4,349,'و برای او در الواح اندرزی از هر موضوعی نوشتیم؛ و بیانی از هر چیز کردیم -«پس آن را با جدّیت بگیر! و به قوم خود بگو: به نیکوترین آنها عمل کنند! (و آنها که به مخالفت برخیزند، کیفرشان دوزخ است؛) و بزودی جایگاه فاسقان را به شما نشان خواهم داد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,4,349,'بزودی کسانی را که در روی زمین بناحق تکبّر میورزند، از (ایمان به) آیات خود، منصرف میسازم! آنها چنانند که اگر هر آیه و نشانهای را ببینند، به آن ایمان نمیآورند؛ اگر راه هدایت را ببینند، آن را راه خود انتخاب نمیکنند؛ و اگر طریق گمراهی را ببینند، آن را راه خود انتخاب میکنند! (همه اینها) بخاطر آن است که آیات ما را تکذیب کردند، و از آن غافل بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,4,349,'و کسانی که آیات، و دیدار رستاخیز را تکذیب (و انکار) کنند، اعمالشان نابود می گردد؛ آیا جز آنچه را عمل میکردند پاداش داده میشوند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,4,349,'قوم موسی بعد (از رفتن) او (به میعادگاه خدا)، از زیورهای خود گوسالهای ساختند؛ جسد بیجانی که صدای گوساله داشت! آیا آنها نمیدیدند که با آنان سخن نمیگوید، و به راه (راست) هدایتشان نمیکند؟! آن را (خدای خود) انتخاب کردند، و ظالم بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,4,349,'و هنگامی که حقیقت به دستشان افتاد، و دیدند گمراه شدهاند، گفتند: «اگر پروردگارمان به ما رحم نکند، و ما را نیامرزد، بطور قطع از زیانکاران خواهیم بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,4,349,'و هنگامی که موسی خشمگین و اندوهناک به سوی قوم خود بازگشت، گفت: «پس از من، بد جانشینانی برایم بودید (و آیین مرا ضایع کردید)! آیا درمورد فرمان پروردگارتان (و تمدید مدّت میعاد او)، عجله نمودید (و زود قضاوت کردید؟!)» سپس الواح را افکند، و سر برادر خود را گرفت (و با عصبانیت) به سوی خود کشید؛ او گفت: «فرزند مادرم! این گروه، مرا در فشار گذاردند و ناتوان کردند؛ و نزدیک بود مرا بکشند، پس کاری نکن که دشمنان مرا شماتت کنند و مرا با گروه ستمکاران قرار مده!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,4,349,'(موسی) گفت: «پروردگارا! من و برادرم را بیامرز، و ما را در رحمت خود داخل فرما، و تو مهربانترین مهربانانی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,4,349,'کسانی که گوساله را (معبود خود) قرار دادند، بزودی خشم پروردگارشان، و ذلّت در زندگی دنیا به آنها میرسد؛ و اینچنین، کسانی را که (بر خدا) افترا میبندند، کیفر می دهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,4,349,'و آنها که گناه کردند، و بعد از آن توبه نمودند و ایمان آوردند، (امید عفو او را دارند؛ زیرا) پروردگار تو، در پی این کار، آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,4,349,'هنگامی که خشم موسی فرو نشست؛ الواح (تورات) را برگرفت؛ و در نوشتههای آن، هدایت و رحمت برای کسانی بود که از پروردگار خویش میترسند (و از مخالفت فرمانش بیم دارند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,4,349,'موسی از قوم خود، هفتاد تن از مردان را برای میعادگاه ما برگزید؛ و هنگامی که زمینلرزه آنها را فرا گرفت (و هلاک شدند)، گفت: «پروردگارا! اگر میخواستی، می توانستی آنها و مرا پیش از این نیز هلاک کنی! آیا ما را به آنچه سفیهانمان انجام دادهاند، (مجازات و) هلاک میکنی؟! این، جز آزمایش تو، چیز دیگر نیست؛ که هر کس را بخواهی (و مستحق بدانی)، به وسیله آن گمراه میسازی؛ و هر کس را بخواهی (و شایسته ببینی)، هدایت میکنی! تو ولیّ مایی، و ما را بیامرز، بر ما رحم کن، و تو بهترین آمرزندگانی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,4,349,'و برای ما، در این دنیا و سرای دیگر، نیکی مقرّر فرما؛ چه اینکه ما به سوی تو بازگشت کردهایم! «(خداوند در برابر این تقاضا، به موسی) گفت:» مجازاتم را به هر کس بخواهم میرسانم؛ و رحمتم همه چیز را فراگرفته؛ و آن را برای آنها که تقوا پیشه کنند، و زکات را بپردازند، و آنها که به آیات ما ایمان میآورند، مقرّر خواهم داشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,4,349,'همانها که از فرستاده (خدا)، پیامبر «امّی» پیروی میکنند؛ پیامبری که صفاتش را، در تورات و انجیلی که نزدشان است، مییابند؛ آنها را به معروف دستور میدهد، و از منکر باز میدارد؛ اشیار پاکیزه را برای آنها حلال میشمرد، و ناپاکیها را تحریم می کند؛ و بارهای سنگین، و زنجیرهایی را که بر آنها بود، (از دوش و گردنشان) بر میدارد، پس کسانی که به او ایمان آوردند، و حمایت و یاریش کردند، و از نوری که با او نازل شده پیروی نمودند، آنان رستگارانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,4,349,'بگو: «ای مردم! من فرستاده خدا به سوی همه شما هستم؛ همان خدایی که حکومت آسمانها و زمین، از آن اوست؛ معبودی جز او نیست؛ زنده میکند و میمیراند؛ پس ایمان بیاورید به خدا و فرستادهاش، آن پیامبر درس نخواندهای که به خدا و کلماتش ایمان دارد؛ و از او پیروی کنید تا هدایت یابید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,4,349,'و از قوم موسی، گروهی هستند که به سوی حق هدایت میکنند؛ و به حق و عدالت حکم مینمایند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,4,349,'ما آنها را به دوازده گروه -که هر یک شاخهای (از دودمان اسرائیل) بود - تقسیم کردیم. و هنگامی که قوم موسی (در بیابان) از او تقاضای آب کردند، به او وحی فرستادیم که: «عصای خود را بر سنگ بزن!» ناگهان دوازده چشمه از آن بیرون جست؛ آنچنان که هر گروه، چشمه و آبشخور خود را میشناخت. و ابر را بر سر آنها سایبان ساختیم؛ و بر آنها «مَن» و «سَلوی» فرستادیم؛ (و به آنان گفتیم:) از روزیهای پاکیزهای که به شما دادهایم، بخورید! (و شکر خدا را بجا آورید! آنها نافرمانی و ستم کردند؛ ولی) به ما ستم نکردند، لکن به خودشان ستم مینمودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,4,349,'و (به خاطر بیاورید) هنگامی را که به آنها گفته شد: «در این شهر [= بیت المقدّس] ساکن شوید، و از هر جا (و به هر کیفیت) بخواهید، از آن بخورید (و بهره گیرید)! و بگویید: خداوندا! گناهان ما را بریز! و از درِ (بیت المقدس) با تواضع وارد شوید! که اگر چنین کنید، گناهان شما را میبخشم؛ و نیکوکاران را پاداش بیشتر خواهیم داد.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,4,349,'اما ستمگران آنها، این سخن (و آن فرمانها) را، بغیر آنچه به آنها گفته شده بود، تغییر دادند؛ از اینرو بخاطر ستمی که روا میداشتند، بلایی از آسمان بر آنها فرستادیم (و مجازاتشان کردیم).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,4,349,'و از آنها درباره (سرگذشت) شهری که در ساحل دریا بود بپرس! زمانی که آنها در روزهای شنبه، تجاوز (و نافرمانی) خدا میکردند؛ همان هنگام که ماهیانشان، روز شنبه (که روز تعطیل و استراحت و عبادت بود، بر سطح آب،) آشکار میشدند؛ امّا در غیر روز شنبه، به سراغ آنها نمیآمدند؛ این چنین آنها را به چیزی آزمایش کردیم که نافرمانی میکردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,4,349,'و (به یاد آر) هنگامی را که گروهی از آنها (به گروه دیگر) گفتند: «چرا جمعی (گنهکار) را اندرز میدهید که سرانجام خداوند آنها را هلاک خواهد کرد، یا به عذاب شدیدی گرفتار خواهد ساخت؟! (آنها را به حال خود واگذارید تا نابود شوند!)» گفتند: «(این اندرزها،) برای اعتذار (و رفع مسؤولیت) در پیشگاه پروردگار شماست؛ بعلاوه شاید آنها (بپذیرند، و از گناه باز ایستند، و) تقوا پیشه کنند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,4,349,'امّا هنگامی که تذکراتی را که به آنها داده شده بود فراموش کردند، (لحظه عذاب فرا رسید؛ و) نهیکنندگان از بدی را رهایی بخشیدیم؛ و کسانی را که ستم کردند، بخاطر نافرمانیشان به عذاب شدیدی گرفتار ساختیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,4,349,'(آری،) هنگامی که در برابر آنچه از آن نهی شده بودند سرکشی کردند، به آنها گفتیم: «به شکل میمونهایی طردشده در آیید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,4,349,'و (نیز به خاطر بیاور) هنگامی را که پروردگارت اعلام کرد: تا دامنه قیامت، کسی را بر آنها مسلّط خواهد ساخت که همواره آنها را در عذاب سختی قرار دهد؛ زیرا پروردگارت مجازاتش سریع، (و در عین حال، نسبت به توبهکاران) آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,4,349,'و آنها را در زمین بصورت گروههایی، پراکنده ساختیم؛ گروهی از آنها صالح، و گروهی ناصالحند. و آنها را با نیکیها و بدیها آزمودیم، شاید بازگردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,4,349,'پس از آنها، فرزندانی جای آنها را گرفتند که وارث کتاب (آسمانی، تورات) شدند؛ (امّا با این حال،) متاع این دنیای پست را گرفته، (بر اطاعت فرمان خدا ترجیح میدهند) و میگویند: «(اگر ما گنهکاریم توبه میکنیم و) بزودی بخشیده خواهیم شد!» اما اگر متاع دیگری همانند آن به دستشان بیفتد، آن را (نیز) میگیرند، (و باز حکم خدا را پشت سر میافکنند.) آیا پیمان کتاب (خدا) از آنها گرفته نشده که بر خدا (دروغ نبندند، و) جز حق نگویند، و آنان بارها آنرا خواندهاند؟! و سرای آخرت برای پرهیزگاران بهتر است، آیا نمیفهمید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,4,349,'و آنها که به کتاب (خدا) تمسّک جویند، و نماز را برپا دارند، (پاداش بزرگی خواهند داشت؛ زیرا) ما پاداش مصلحان را ضایع نخواهیم کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,4,349,'و (نیز به خاطر بیاور) هنگامی که کوه را همچون سایبانی بر فراز آنها بلند کردیم، آنچنان که گمان کردند بر آنان فرود میآمد؛ (و در همین حال، از آنها پیمان گرفتیم و گفتیم:) آنچه را (از احکام و دستورها) به شما دادهایم، با قوّت (و جدیت) بگیرید! و آنچه در آن است، به یاد داشته باشید، (و عمل کنید،) تا پرهیزگار شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,4,349,'و (به خاطر بیاور) زمانی را که پروردگارت از پشت و صلب فرزندان آدم، ذریه آنها را برگرفت؛ و آنها را گواه بر خویشتن ساخت؛ (و فرمود:) «آیا من پروردگار شما نیستم؟» گفتند: «آری، گواهی میدهیم!» (چنین کرد مبادا) روز رستاخیز بگویید: «ما از این، غافل بودیم؛ (و از پیمان فطری توحید بیخبر ماندیم)»!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,4,349,'یا بگویید: «پدرانمان پیش از ما مشرک بودند، ما هم فرزندانی بعد از آنها بودیم؛ (و چارهای جز پیروی از آنان نداشتیم؛) آیا ما را به آنچه باطلگرایان انجام دادند مجازات میکنی؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,4,349,'این گونه، آیات را توضیح میدهیم؛ و شاید به سوی حق بازگردند (و بدانند ندای توحید در درون جانشان، از روز نخست بوده است)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,4,349,'و بر آنها بخوان سرگذشت آن کس را که آیات خود را به او دادیم؛ ولی (سرانجام) خود را از آن تهی ساخت و شیطان در پی او افتاد، و از گمراهان شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,4,349,'و اگر میخواستیم، (مقام) او را با این آیات (و علوم و دانشها) بالا میبردیم؛ (اما اجبار، بر خلاف سنت ماست؛ پس او را به حال خود رها کردیم) و او به پستی گرایید، و از هوای نفس پیروی کرد! مثل او همچون سگ (هار) است که اگر به او حمله کنی، دهانش را باز، و زبانش را برون میآورد، و اگر او را به حال خود واگذاری، باز همین کار را میکند؛ (گویی چنان تشنه دنیاپرستی است که هرگز سیراب نمیشود! (این مثل گروهی است که آیات ما را تکذیب کردند؛ این داستانها را (برای آنها) بازگو کن، شاید بیندیشند (و بیدار شوند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,4,349,'چه بد مثلی دارند گروهی که آیات ما را تکذیب کردند؛ و آنها تنها به خودشان ستم مینمودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,4,349,'آن کس را که خدا هدایت کند، هدایت یافته (واقعی) اوست؛ و کسانی را که (بخاطر اعمالشان) گمراه سازد، زیانکاران (واقعی) آنها هستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,4,349,'به یقین، گروه بسیاری از جن و انس را برای دوزخ آفریدیم؛ آنها دلها [= عقلها] یی دارند که با آن (اندیشه نمیکنند، و) نمیفهمند؛ و چشمانی که با آن نمیبینند؛ و گوشهایی که با آن نمیشنوند؛ آنها همچون چهارپایانند؛ بلکه گمراهتر! اینان همان غافلانند (چرا که با داشتن همهگونه امکانات هدایت، باز هم گمراهند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,4,349,'و برای خدا، نامهای نیک است؛ خدا را به آن (نامها) بخوانید! و کسانی را که در اسماء خدا تحریف میکنند (و بر غیر او مینهند، و شریک برایش قائل میشوند)، رها سازید! آنها بزودی جزای اعمالی را که انجام میدادند، میبینند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,4,349,'و از آنها که آفریدیم، گروهی بحق هدایت میکنند، و بحق اجرای عدالت مینمایند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,4,349,'و آنها که آیات ما را تکذیب کردند، به تدریج از جائی که نمیدانند، گرفتار مجازاتشان خواهیم کرد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(183,4,349,'و به آنها مهلت میدهم (تا مجازاتشان دردناکتر باشد)؛ زیرا طرح و نقشه من، قوی (و حساب شده) است. (و هیچ کس را قدرت فرار از آن نیست.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(184,4,349,'آیا فکر نکردند که همنشین آنها [= پیامبر] هیچگونه (اثری از) جنون ندارد؟! (پس چگونه چنین نسبت ناروایی به او میدهند؟!) او فقط بیم دهنده آشکاری است (که مردم را متوجه وظایفشان میسازد).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(185,4,349,'آیا در حکومت و نظام آسمانها و زمین، و آنچه خدا آفریده است، (از روی دقت و عبرت) نظر نیفکندند؟! (و آیا در این نیز اندیشه نکردند که) شاید پایان زندگی آنها نزدیک شده باشد؟! (اگر به این کتاب آسمانی روشن ایمان نیاورند،) بعد از آن به کدام سخن ایمان خواهند آورد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(186,4,349,'هر کس را خداوند (به جرم اعمال زشتش) گمراه سازد، هدایت کنندهای ندارد؛ و آنها را در طغیان و سرکشیشان رها میسازد، تا سرگردان شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(187,4,349,'درباره قیامت از تو سؤال میکنند، کی فرامیرسد؟! بگو: «علمش فقط نزد پروردگار من است؛ و هیچکس جز او (نمیتواند) وقت آن را آشکار سازد؛ (اما قیام قیامت، حتی) در آسمانها و زمین، سنگین (و بسیار پر اهمیت) است؛ و جز بطور ناگهانی، به سراغ شما نمیآید!» (باز) از تو سؤال میکنند، چنان که گویی تو از زمان وقوع آن باخبری! بگو: «علمش تنها نزد خداست؛ ولی بیشتر مردم نمیدانند.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(188,4,349,'بگو: «من مالک سود و زیان خویش نیستم، مگر آنچه را خدا بخواهد؛ (و از غیب و اسرار نهان نیز خبر ندارم، مگر آنچه خداوند اراده کند؛) و اگر از غیب باخبر بودم، سود فراوانی برای خود فراهم میکردم، و هیچ بدی (و زیانی) به من نمیرسید؛ من فقط بیمدهنده و بشارتدهندهام برای گروهی که ایمان میآورند! (و آماده پذیرش حقند)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(189,4,349,'او خدایی است که (همه) شما را از یک فرد آفرید؛ و همسرش را نیز از جنس او قرار داد، تا در کنار او بیاساید. سپس هنگامی که با او آمیزش کرد، حملی سبک برداشت، که با وجود آن، به کارهای خود ادامه میداد؛ و چون سنگین شد، هر دو از خداوند و پروردگار خود خواستند «اگر فرزند صالحی به ما دهی، از شاکران خواهیم بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(190,4,349,'اما هنگامی که خداوند فرزند صالحی به آنها داد، (موجودات دیگر را در این موهبت مؤثر دانستند؛ و) برای خدا، در این نعمت که به آنها بخشیده بود، همتایانی قائل شدند؛ خداوند برتر است از آنچه همتای او قرار میدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(191,4,349,'آیا موجوداتی را همتای او قرارمیدهند که چیزی را نمیآفرینند، و خودشان مخلوقند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(192,4,349,'و نمیتوانند آنان را یاری کنند، و نه خودشان را یاری میدهند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(193,4,349,'و هرگاه آنها را به سوی هدایت دعوت کنید، از شما پیروی نمیکنند؛ و برای شما یکسان است چه آنها را دعوت کنید و چه خاموش باشید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(194,4,349,'آنهایی را که غیر از خدا میخوانید (و پرستش میکنید)، بندگانی همچون خود شما هستند؛ آنها را بخوانید، و اگر راست میگویید باید به شما پاسخ دهند (و تقاضایتان را برآورند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(195,4,349,'آیا (آنها حداقل همانند خود شما) پاهایی دارند که با آن راه بروند؟! یا دستهایی دارند که با آن چیزی را بگیرند (و کاری انجام دهند)؟! یا چشمانی دارند که با آن ببینند؟! یا گوشهایی دارند که با آن بشنوند؟! (نه، هرگز، هیچکدام،) بگو: «(اکنون که چنین است،) بتهای خویش را که شریک خدا قرار دادهاید (بر ضد من) بخوانید، و برای من نقشه بکشید، و لحظهای مهلت ندهید، (تا بدانید کاری از آنها ساخته نیست)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(196,4,349,'ولی و سرپرست من، خدایی است که این کتاب را نازل کرده؛ و او همه صالحان را سرپرستی میکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(197,4,349,'و آنهایی را که جز او میخوانید، نمیتوانند یاریتان کنند، و نه (حتی) خودشان را یاری دهند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(198,4,349,'و اگر آنها را به هدایت فرا خوانید، سخنانتان را نمیشنوند! و آنها را میبینی (که با چشمهای مصنوعیشان) به تو نگاه میکنند، اما در حقیقت نمیبینند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(199,4,349,'(به هر حال) با آنها مدارا کن و عذرشان را بپذیر، و به نیکیها دعوت نما، و از جاهلان روی بگردان (و با آنان ستیزه مکن)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(200,4,349,'و هرگاه وسوسهای از شیطان به تو رسد، به خدا پناه بر؛ که او شنونده و داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(201,4,349,'پرهیزگاران هنگامی که گرفتار وسوسههای شیطان شوند، به یاد (خدا و پاداش و کیفر او) میافتند؛ و (در پرتو یاد او، راه حق را میبینند و) ناگهان بینا میگردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(202,4,349,'و (ناپرهیزگاران را) برادرانشان (از شیاطین) پیوسته در گمراهی پیش میبرند، و باز نمیایستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(203,4,349,'هنگامی که (در نزول وحی تاخیر افتد، و) آیهای برای آنان نیاوری، میگویند: «چرا خودت (از پیش خود) آن را برنگزیدی؟!» بگو: «من تنها از چیزی پیروی میکنم که بر من وحی میشود؛ این وسیله بینایی از طرف پروردگارتان، و مایه هدایت و رحمت است برای جمعیّتی که ایمان میآورند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(204,4,349,'هنگامی که قرآن خوانده شود، گوش فرا دهید و خاموش باشید؛ شاید مشمول رحمت خدا شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(205,4,349,'پروردگارت را در دل خود، از روی تضرع و خوف، آهسته و آرام، صبحگاهان و شامگاهان، یاد کن؛ و از غافلان مباش!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(206,4,349,'آنها که (در مقام قرب) نزد پروردگار تو هستند، (هیچگاه) از عبادتش تکبر نمیورزند، و او را تسبیح میگویند، و برایش سجده میکنند.');
+INSERT INTO chapters (id, number, quran_id) VALUES(350,8,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,350,'از تو درباره انفال [= غنایم، و هرگونه مال بدون مالک مشخص] سؤال میکنند؛ بگو: «انفال مخصوص خدا و پیامبر است؛ پس، از (مخالفت فرمان) خدا بپرهیزید! و خصومتهایی را که در میان شماست، آشتی دهید! و خدا و پیامبرش را اطاعت کنید اگر ایمان دارید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,350,'مؤمنان، تنها کسانی هستند که هرگاه نام خدا برده شود، دلهاشان ترسان میگردد؛ و هنگامی که آیات او بر آنها خوانده میشود، ایمانشان فزونتر میگردد؛ و تنها بر پروردگارشان توکل دارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,350,'آنها که نماز را برپا میدارند؛ و از آنچه به آنها روزی دادهایم، انفاق میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,350,'(آری،) مؤمنان حقیقی آنها هستند؛ برای آنان درجاتی (مهم) نزد پروردگارشان است؛ و برای آنها، آمرزش و روزی بینقص و عیب است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,350,'همانگونه که خدا تو را بحق از خانه (به سوی میدان بدر،) بیرون فرستاد، در حالی که گروهی از مؤمنان ناخشنود بودند (؛ ولی سرانجامش پیروزی بود! ناخشنودی عدهای از چگونگی تقسیم غنایم بدر نیز چنین است)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,350,'آنها پس از روشن شدن حق، باز با تو مجادله میکردند؛ (و چنان ترس و وحشت آنها را فراگرفته بود، که) گویی به سوی مرگ رانده میشوند، و آن را با چشم خود مینگرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,350,'و (به یاد آرید) هنگامی را که خداوند به شما وعده داد که یکی از دو گروه [= کاروان تجاری قریش، یا لشکر مسلح آنها] نصیب شما خواهد بود؛ و شما دوست میداشتید که کاروان (غیر مسلح) برای شما باشد (و بر آن پیروز شوید)؛ ولی خداوند میخواهد حق را با کلمات خود تقویت، و ریشه کافران را قطع کند؛ (از این رو شما را بر خلاف میلتان با لشکر قریش درگیر ساخت، و آن پیروزی بزرگ نصیبتان شد.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,350,'تا حق را تثبیت کند، و باطل را از میان بردارد، هر چند مجرمان کراهت داشته باشند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,350,'(به خاطر بیاورید) زمانی را (که از شدت ناراحتی در میدان بدر،) از پروردگارتان کمک میخواستید؛ و او خواسته شما را پذیرفت (و گفت): من شما را با یکهزار از فرشتگان، که پشت سر هم فرود میآیند، یاری میکنم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,350,'ولی خداوند، این را تنها برای شادی و اطمینان قلب شما قرار داد؛ وگرنه، پیروزی جز از طرف خدا نیست؛ خداوند توانا و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,350,'و (یاد آورید) هنگامی را که خواب سبکی که مایه آرامش از سوی خدا بود، شما را فراگرفت؛ و آبی از آسمان برایتان فرستاد، تا شما را با آن پاک کند؛ و پلیدی شیطان را از شما دور سازد؛ و دلهایتان را محکم، و گامها را با آن استوار دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,350,'و (به یاد آر) موقعی را که پروردگارت به فرشتگان وحی کرد: «من با شما هستم؛ کسانی را که ایمان آوردهاند، ثابت قدم دارید! بزودی در دلهای کافران ترس و وحشت میافکنم؛ ضربهها را بر بالاتر از گردن (بر سرهای دشمنان) فرود آرید! و همه انگشتانشان را قطع کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,350,'این بخاطر آن است که آنها با خدا و پیامبرش (ص) دشمنی ورزیدند؛ و هر کس با خدا و پیامبرش دشمنی کند، (کیفر شدیدی میبیند؛) و خداوند شدید العقاب است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,350,'این (مجازات دنیا) را بچشید! و برای کافران، مجازات آتش (در جهان دیگر) خواهد بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,350,'ای کسانی که ایمان آوردهاید! هنگامی که با انبوه کافران در میدان نبرد روبهرو شوید، به آنها پشت نکنید (و فرار ننمایید)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,350,'و هر کس در آن هنگام به آنها پشت کند -مگر آنکه هدفش کنارهگیری از میدان برای حمله مجدد، و یا به قصد پیوستن به گروهی (از مجاهدان) بوده باشد- (چنین کسی) به غضب خدا گرفتار خواهد شد؛ و جایگاه او جهنم، و چه بد جایگاهی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,350,'این شما نبودید که آنها را کشتید؛ بلکه خداوند آنها را کشت! و این تو نبودی (ای پیامبر که خاک و سنگ به صورت آنها) انداختی؛ بلکه خدا انداخت! و خدا میخواست مؤمنان را به این وسیله امتحان خوبی کند؛ خداوند شنوا و داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,350,'سرنوشت مؤمنان و کافران، همان بود که دیدید! و خداوند سستکننده نقشههای کافران است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,350,'اگر شما فتح و پیروزی میخواهید، پیروزی به سراغ شما آمد! و اگر (از مخالفت) خودداری کنید، برای شما بهتر است! و اگر بازگردید، ما هم باز خواهیم گشت؛ و جمعیت شما هر چند زیاد باشد، شما را (از یاری خدا) بینیاز نخواهد کرد؛ و خداوند با مؤمنان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,350,'ای کسانی که ایمان آوردهاید! خدا و پیامبرش را اطاعت کنید؛ و سرپیچی ننمایید در حالی که (سخنان او را) میشنوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,350,'و همانند کسانی نباشید که میگفتند: «شنیدیم!» ولی در حقیقت نمیشنیدند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,350,'بدترین جنبندگان نزد خدا، افراد کر و لالی هستند که اندیشه نمیکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,350,'و اگر خداوند خیری در آنها میدانست، (حرف حق را) به گوش آنها میرساند؛ ولی (با این حال که دارند،) اگر حق را به گوش آنها برساند، سرپیچی کرده و روگردان میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,350,'ای کسانی که ایمان آوردهاید! دعوت خدا و پیامبر را اجابت کنید هنگامی که شما را به سوی چیزی میخواند که شما را حیات میبخشد! و بدانید خداوند میان انسان و قلب او حایل میشود، و همه شما (در قیامت) نزد او گردآوری میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,350,'و از فتنهای بپرهیزید که تنها به ستمکاران شما نمیرسد؛ (بلکه همه را فرا خواهد گرفت؛ چرا که دیگران سکوت اختیار کردند.) و بدانید خداوند کیفر شدید دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,350,'و به خاطر بیاورید هنگامی را که شما در روی زمین، گروهی کوچک و اندک و زبون بودید؛ آنچنان که میترسیدید مردم شما را بربایند! ولی او شما را پناه داد؛ و با یاری خود تقویت کرد؛ و از روزیهای پاکیزه بهرهمند ساخت؛ شاید شکر نعمتش را بجا آورید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,350,'ای کسانی که ایمان آوردهاید! به خدا و پیامبر خیانت نکنید! و (نیز) در امانات خود خیانت روا مدارید، در حالی که میدانید (این کار، گناه بزرگی است)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,350,'و بدانید اموال و اولاد شما، وسیله آزمایش است؛ و (برای کسانی که از عهده امتحان برآیند،) پاداش عظیمی نزد خداست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,350,'ای کسانی که ایمان آوردهاید! اگر از (مخالفت فرمان) خدا بپرهیزید، برای شما وسیلهای جهت جدا ساختن حق از باطل قرارمیدهد؛ (روشنبینی خاصّی که در پرتو آن، حق را از باطل خواهید شناخت؛) و گناهانتان را میپوشاند؛ و شما را میزمرزد؛ و خداوند صاحب فضل و بخشش عظیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,350,'(به خاطر بیاور) هنگامی را که کافران نقشه میکشیدند که تو را به زندان بیفکنند، یا به قتل برسانند، و یا (از مکّه) خارج سازند؛ آنها چاره میاندیشیدند (و نقشه میکشیدند)، و خداوند هم تدبیر میکرد؛ و خدا بهترین چاره جویان و تدبیرکنندگان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,350,'و هنگامی که آیات ما بر آنها خوانده میشود، میگویند: «شنیدیم؛ (چیز مهمّی نیست؛) ما هم اگر بخواهیم مثل آن را میگوییم؛ اینها همان افسانههای پیشینیان است!» (ولی دروغ میگویند، و هرگز مثل آن را نمیآورند.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,350,'و (به خاطر بیاور) زمانی را که گفتند: «پروردگارا! اگر این حق است و از طرف توست، بارانی از سنگ از آسمان بر ما فرود آر! یا عذاب دردناکی برای ما بفرست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,350,'ولی (ای پیامبر!) تا تو در میان آنها هستی، خداوند آنها را مجازات نخواهد کرد؛ و (نیز) تا استغفار میکنند، خدا عذابشان نمیکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,350,'چرا خدا آنها را مجازات نکند، با اینکه از (عبادت موحدّان در کنار) مسجد الحرام جلوگیری میکنند در حالی که سرپرست آن نیستند؟! سرپرست آن، فقط پرهیزگارانند؛ ولی بیشتر آنها نمیدانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,350,'(آنها که مدّعی هستند ما هم نماز داریم،) نمازشان نزد خانه (خدا)، چیزی جز «سوت کشیدن» «کف زدن» نبود؛ پس بچشید عذاب (الهی) را بخاطر کفرتان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,350,'آنها که کافر شدند، اموالشان را برای بازداشتن (مردم) از راه خدا خرج میکنند؛ آنان این اموال را (که برای به دست آوردنش زحمت کشیدهاند، در این راه) مصرف میکنند، امّا مایه حسرت و اندوهشان خواهد شد؛ و سپس شکست خواهند خورد؛ و (در جهان دیگر) کافران همگی به سوی دوزخ گردآوری خواهند شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,350,'(اینها همه) بخاطر آن است که خداوند (میخواهد) ناپاک را از پاک جدا سازد، و ناپاکها را روی هم بگذارد، و همه را متراکم سازد، و یکجا در دوزخ قرار دهد؛ و اینها هستند زیانکاران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,350,'به آنها که کافر شدند بگو: «چنانچه از مخالفت باز ایستند، (و ایمان آورند،) گذشته آنها بخشوده خواهد شد؛ و اگر به اعمال سابق بازگردند، سنّت خداوند در گذشتگان، درباره آنها جاری میشود (؛ و حکم نابودی آنان صادر میگردد).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,350,'و با آنها پیکار کنید، تا فتنه [= شرک و سلب آزادی] برچیده شود، و دین (و پرستش) همه مخصوص خدا باشد! و اگر آنها (از راه شرک و فساد بازگردند، و از اعمال نادرست) خودداری کنند، (خداوند آنها را میپذیرد؛) خدا به آنچه انجام میدهند بیناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,350,'و اگر سرپیچی کنند، بدانید (ضرری به شما نمیرسانند؛) خداوند سرپرست شماست! چه سرپرست خوبی! و چه یاور خوبی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,350,'بدانید هرگونه غنیمتی به دست آورید، خمس آن برای خدا، و برای پیامبر، و برای ذیالقربی و یتیمان و مسکینان و واماندگان در راه (از آنها) است، اگر به خدا و آنچه بر بنده خود در روز جدایی حق از باطل، روز درگیری دو گروه (باایمان و بیایمان) [= روز جنگ بدر] نازل کردیم، ایمان آوردهاید؛ و خداوند بر هر چیزی تواناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,350,'در آن هنگام که شما در طرف پایین بودید، و آنها در طرف بالأ (و دشمن بر شما برتری داشت؛) و کاروان (قریش)، پایین تر از شما بود؛ (و وضع چنان سخت بود که) اگر با یکدیگر وعده میگذاشتید (که در میدان نبرد حاضر شوید)، در انجام وعده خود اختلاف میکردید؛ ولی (همه اینها) برای آن بود که خداوند، کاری را که میبایست انجام شود، تحقّق بخشد؛ تا آنها که هلاک (و گمراه) میشوند، از روی اتمام حجّت باشد؛ و آنها که زنده میشوند (و هدایت مییابند)، از روی دلیل روشن باشد؛ و خداوند شنوا و داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,350,'در آن هنگام که خداوند تعداد آنها را در خواب به تو کم نشان داد؛ و اگر فراوان نشان میداد، مسلّماً سست میشدید؛ و (درباره شروع جنگ با آنها) کارتان به اختلاف میکشید؛ ولی خداوند (شما را از شرّ اینها) سالم نگه داشت؛ خداوند به آنچه درون سینههاست، داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,350,'و در آن هنگام (که در میدان نبرد،) با هم روبهرو شدید، آنها را به چشم شما کم نشان میداد؛ و شما را (نیز) به چشم آنها کم مینمود؛ تا خداوند، کاری را که میبایست انجام گیرد، صورت بخشد؛ (شما نترسید و اقدام به جنگ کنید، آنها هم وحشت نکنند و حاضر به جنگ شوند، و سرانجام شکست بخورند!) و همه کارها به خداوند باز میگردد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,350,'ای کسانی که ایمان آوردهاید! هنگامی که (در میدان نبرد) با گروهی رو به رو میشوید، ثابت قدم باشید! و خدا را فراوان یاد کنید، تا رستگار شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,350,'و (فرمان) خدا و پیامبرش را اطاعت نمایید! و نزاع (و کشمکش) نکنید، تا سست نشوید، و قدرت (و شوکت) شما از میان نرود! و صبر و استقامت کنید که خداوند با استقامت کنندگان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,350,'و مانند کسانی نباشید که از روی هوی پرستی و غرور و خودنمایی در برابر مردم، از سرزمین خود به (سوی میدان بدر) بیرون آمدند؛ و (مردم را) از راه خدا بازمیداشتند؛ (و سرانجام شکست خوردند) و خداوند به آنچه عمل میکنند، احاطه (و آگاهی) دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,350,'و (به یاد آور) هنگامی را که شیطان، اعمال آنها [= مشرکان] را در نظرشان جلوه داد، و گفت: «امروز هیچ کس از مردم بر شما پیروز نمیگردد! و من، همسایه (و پناهدهنده) شما هستم!» امّا هنگامی که دو گروه (کافران، و مؤمنان مورد حمایت فرشتگان) در برابر یکدیگر قرار گرفتند، به عقب برگشت و گفت: «من از شما (دوستان و پیروانم) بیزارم! من چیزی میبینم که شما نمیبینید؛ من از خدا میترسم، خداوند شدیدالعقاب است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,350,'و هنگامی را که منافقان، و آنها که در دلهایشان بیماری است میگفتند: «این گروه (مسلمانان) را دینشان مغرور ساخته است.» (آنها نمیدانستند که) هر کس بر خدا توکّل کند، (پیروز میگردد؛) خداوند قدرتمند و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,350,'و اگر ببینی کافران را هنگامی که فرشتگان (مرگ)، جانشان را میگیرند و بر صورت و پشت آنها میزنند و (میگویند:) بچشید عذاب سوزنده را (، به حال آنان تأسف خواهی خورد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,350,'این، در مقابل کارهایی است که از پیش فرستادهاید؛ و خداوند نسبت به بندگانش، هرگز ستم روا نمیدارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,350,'(حال این گروه مشرکان،) همانند حال نزدیکان فرعون، و کسانی است که پیش از آنان بودند؛ آنها آیات خدا را انکار کردند؛ خداوند هم آنان را به گناهانشان کیفر داد؛ خداوند قویّ، و کیفرش شدید است');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,350,'این، بخاطر آن است که خداوند، هیچ نعمتی را که به گروهی داده، تغییر نمیدهد؛ جز آنکه آنها خودشان را تغییر دهند؛ و خداوند، شنوا و داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,350,'این، (درست) شبیه (حال) فرعونیان و کسانی است که پیش از آنها بودند؛ آیات پروردگارشان را تکذیب کردند؛ ما هم بخاطر گناهانشان، آنها را هلاک کردیم، و فرعونیان را غرق نمودیم؛ و همه آنها ظالم (و ستمگر) بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,350,'به یقین، بدترین جنبندگان نزد خدا، کسانی هستند که کافر شدند و ایمان نمیآورند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,350,'همان کسانی که با آنها پیمان بستی؛ سپس هر بار عهد و پیمان خود را میشکنند؛ و (از پیمان شکنی و خیانت،) پرهیز ندارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,350,'اگر آنها را در (میدان) جنگ بیابی، آنچنان به آنها حمله کن که جمعیّتهایی که پشت سر آنها هستند، پراکنده شوند؛ شاید متذکّر گردند (و عبرت گیرند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,350,'و هرگاه (با ظهور نشانههایی،) از خیانت گروهی بیم داشته باشی (که عهد خود را شکسته، حمله غافلگیرانه کنند)، بطور عادلانه به آنها اعلام کن که پیمانشان لغو شده است؛ زیرا خداوند، خائنان را دوست نمیدارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,350,'آنها که راه کفر پیش گرفتند، گمان نکنند (با این اعمال،) پیش بردهاند (و از قلمرو کیفر ما، بیرون رفتهاند)! آنها هرگز ما را ناتوان نخواهند کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,350,'هر نیرویی در قدرت دارید، برای مقابله با آنها [= دشمنان]، آماده سازید! و (همچنین) اسبهای ورزیده (برای میدان نبرد)، تا به وسیله آن، دشمن خدا و دشمن خویش را بترسانید! و (همچنین) گروه دیگری غیر از اینها را، که شما نمیشناسید و خدا آنها را میشناسد! و هر چه در راه خدا (و تقویت بنیه دفاعی اسلام) انفاق کنید، بطور کامل به شما بازگردانده میشود، و به شما ستم نخواهد شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,350,'و اگر تمایل به صلح نشان دهند، تو نیز از در صلح درآی؛ و بر خدا توکّل کن، که او شنوا و داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,350,'و اگر بخواهند تو را فریب دهند، خدا برای تو کافی است؛ او همان کسی است که تو را، با یاری خود و مؤمنان، تقویت کرد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,350,'و دلهای آنها را با هم، الفت داد! اگر تمام آنچه را روی زمین است صرف میکردی که میان دلهای آنان الفت دهی، نمیتوانستی! ولی خداوند در میان آنها الفت ایجاد کرد! او توانا و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,350,'ای پیامبر! خداوند و مؤمنانی که از تو پیروی میکنند، برای حمایت تو کافی است (؛ فقط بر آنها تکیه کن)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,350,'ای پیامبر! مؤمنان را به جنگ (با دشمن) تشویق کن! هرگاه بیست نفر با استقامت از شما باشند، بر دویست نفر غلبه میکنند؛ و اگر صد نفر باشند، بر هزار نفر از کسانی که کافر شدند، پیروز میگردند؛ چرا که آنها گروهی هستند که نمیفهمند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,350,'هم اکنون خداوند به شما تخفیف داد، و دانست که در شما ضعفی است؛ بنابراین، هرگاه یکصد نفر با استقامت از شما باشند، بر دویست نفر پیروز میشوند؛ و اگر یکهزار نفر باشند، بر دو هزار نفر به فرمان خدا غلبه خواهند کرد! و خدا با صابران است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,350,'هیچ پیامبری حق ندارد اسیرانی (از دشمن) بگیرد تا کاملاً بر آنها پیروز گردد (؛ و جای پای خود را در زمین محکم کند)! شما متاع ناپایدار دنیا را میخواهید؛ (و مایلید اسیران بیشتری بگیرید، و در برابر گرفتن فدیه آزاد کنید؛ ولی خداوند، سرای دیگر را (برای شما) میخواهد؛ و خداوند قادر و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,350,'اگر فرمان سابق خدا نبود (که بدون ابلاغ، هیچ امّتی را کیفر ندهد)، بخاطر چیزی [= اسیرانی] که گرفتید، مجازات بزرگی به شما میرسید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,350,'از آنچه به غنیمت گرفتهاید، حلال و پاکیزه بخورید؛ و از خدا بپرهیزید؛ خداوند آمرزنده و مهربان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,350,'ای پیامبر! به اسیرانی که در دست شما هستند بگو: «اگر خداوند، خیری در دلهای شما بداند، (و نیّات پاکی داشته باشید،) بهتر از آنچه از شما گرفته شده به شما میدهد؛ و شما را میبخشد؛ و خداوند آمرزنده و مهربان است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,350,'امّا اگر بخواهند با تو خیانت کنند، (تازگی ندارد) آنها پیش از این (نیز) به خدا خیانت کردند؛ و خداوند (شما را) بر آنها پیروز کرد؛ خداوند دانا و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,350,'کسانی که ایمان آوردند و هجرت نمودند و با اموال و جانهای خود در راه خدا جهاد کردند، و آنها که پناه دادند و یاری نمودند، آنها یاران یکدیگرند؛ و آنها که ایمان آوردند و مهاجرت نکردند، هیچ گونه ولایت [= دوستی و تعّهدی] در برابر آنها ندارید تا هجرت کنند! و (تنها) اگر در (حفظ) دین (خود) از شما یاری طلبند، بر شماست که آنها را یاری کنید، جز بر ضدّ گروهی که میان شما و آنها، پیمان (ترک مخاصمه) است؛ و خداوند به آنچه عمل میکنید، بیناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,350,'کسانی که کافر شدند، اولیاء (و یاوران و مدافعان) یکدیگرند؛ اگر (این دستور را) انجام ندهید، فتنه و فساد عظیمی در زمین روی میدهد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,350,'و آنها که ایمان آوردند و هجرت نمودند و در راه خدا جهاد کردند، و آنها که پناه دادند و یاری نمودند، آنان مؤمنان حقیقیاند؛ برای آنها، آمرزش (و رحمت خدا) و روزی شایستهای است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,350,'و کسانی که بعداً ایمان آوردند و هجرت کردند و با شما جهاد نمودند، از شما هستند؛ و خویشاوندان نسبت به یکدیگر، در احکامی که خدا مقرّر داشته، (از دیگران) سزاوارترند؛ خداوند به همه چیز داناست.');
+INSERT INTO chapters (id, number, quran_id) VALUES(351,9,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,351,'(این، اعلام) بیزاری از سوی خدا و پیامبر او، به کسانی از مشرکان است که با آنها عهد بستهاید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,351,'با این حال، چهار ماه (مهلت دارید که آزادانه) در زمین سیر کنید (و هر جا میخواهید بروید، و بیندیشید)! و بدانید شما نمیتوانید خدا را ناتوان سازید، (و از قدرت او فرار کنید! و بدانید) خداوند خوارکننده کافران است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,351,'و این، اعلامی است از ناحیه خدا و پیامبرش به (عموم) مردم در روز حج اکبر [= روز عید قربان] که: خداوند و پیامبرش از مشرکان بیزارند! با این حال، اگر توبه کنید، برای شما بهتر است! و اگر سرپیچی نمایید، بدانید شما نمیتوانید خدا را ناتوان سازید (و از قلمرو قدرتش خارج شوید)! و کافران را به مجازات دردناک بشارت ده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,351,'مگر کسانی از مشرکان که با آنها عهد بستید، و چیزی از آن را در حقّ شما فروگذار نکردند، و احدی را بر ضدّ شما تقویت ننمودند؛ پیمان آنها را تا پایان مدّتشان محترم بشمرید؛ زیرا خداوند پرهیزگاران را دوست دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,351,'(امّا) وقتی ماههای حرام پایان گرفت، مشرکان را هر جا یافتید به قتل برسانید؛ و آنها را اسیر سازید؛ و محاصره کنید؛ و در هر کمینگاه، بر سر راه آنها بنشینید! هرگاه توبه کنند، و نماز را برپا دارند، و زکات را بپردازند، آنها را رها سازید؛ زیرا خداوند آمرزنده و مهربان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,351,'و اگر یکی از مشرکان از تو پناهندگی بخواهد، به او پناه ده تا سخن خدا را بشنود (و در آن بیندیشد)! سپس او را به محل امنش برسان، چرا که آنها گروهی ناآگاهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,351,'چگونه برای مشرکان پیمانی نزد خدا و رسول او خواهد بود (در حالی که آنها همواره آماده شکستن پیمانشان هستند)؟! مگر کسانی که نزد مسجد الحرام با آنان پیمان بستید؛ (و پیمان خود را محترم شمردند؛) تا زمانی که در برابر شما وفادار باشند، شما نیز وفاداری کنید، که خداوند پرهیزگاران را دوست دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,351,'چگونه (پیمان مشرکان ارزش دارد)، در حالی که اگر بر شما غالب شوند، نه ملاحظه خویشاوندی با شما را میکنند، و نه پیمان را؟! شما را با زبان خود خشنود میکنند، ولی دلهایشان ابا دارد؛ و بیشتر آنها فرمانبردار نیستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,351,'آنها آیات خدا را به بهای کمی فروختند؛ و (مردم را) از راه او باز داشتند؛ آنها اعمال بدی انجام میدادند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,351,'(نه تنها درباره شما،) درباره هیچ فرد باایمانی رعایت خویشاوندی و پیمان را نمیکنند؛ و آنها همان تجاوز کارانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,351,'(ولی) اگر توبه کنند، نماز را برپا دارند، و زکات را بپردازند، برادر دینی شما هستند؛ و ما آیات خود را برای گروهی که میدانند (و میاندیشند)، شرح میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,351,'و اگر پیمانهای خود را پس از عهد خویش بشکنند، و آیین شما را مورد طعن قرار دهند، با پیشوایان کفر پیکار کنید؛ چرا که آنها پیمانی ندارند؛ شاید (با شدّت عمل) دست بردارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,351,'آیا با گروهی که پیمانهای خود را شکستند، و تصمیم به اخراج پیامبر گرفتند، پیکار نمیکنید؟! در حالی که آنها نخستین بار (پیکار با شما را) آغاز کردند؛ آیا از آنها میترسید؟! با اینکه خداوند سزاوارتر است که از او بترسید، اگر مؤمن هستید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,351,'با آنها پیکار کنید، که خداوند آنان را به دست شما مجازات میکند؛ و آنان را رسوا میسازد؛ و سینه گروهی از مؤمنان را شفا میبخشد (؛ و بر قلب آنها مرهم مینهد)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,351,'و خشم دلهای آنان را از میان میبرد! و خدا توبه هر کس را بخواهد (و شایسته بداند)، میپذیرد؛ و خداوند دانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,351,'آیا گمان کردید که (به حال خود) رها میشوید در حالی که هنوز کسانی که از شما جهاد کردند، و غیر از خدا و رسولش و مؤمنان را محرم اسرار خویش انتخاب ننمودند، (از دیگران) مشخصّ نشدهاند؟! (باید آزمون شوید؛ و صفوف از هم جدا گردد؛) و خداوند به آنچه عمل میکنید، آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,351,'مشرکان حق ندارند مساجد خدا را آباد کنند در حالی که به کفر خویش گواهی میدهند! آنها اعمالشان نابود (و بیارزش) شده؛ و در آتش (دوزخ)، جاودانه خواهند ماند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,351,'مساجد خدا را تنها کسی آباد میکند که ایمان به خدا و روز قیامت آورده، و نماز را برپا دارد، و زکات را بپردازد، و جز از خدا نترسد؛ امید است چنین گروهی از هدایتیافتگان باشند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,351,'آیا سیراب کردن حجاج، و آباد ساختن مسجد الحرام را، همانند (عمل) کسی قرار دادید که به خدا و روز قیامت ایمان آورده، و در راه او جهاد کرده است؟! (این دو،) نزد خدا مساوی نیستند! و خداوند گروه ظالمان را هدایت نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,351,'آنها که ایمان آوردند، و هجرت کردند، و با اموال و جانهایشان در راه خدا جهاد نمودند، مقامشان نزد خدا برتر است؛ و آنها پیروز و رستگارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,351,'پروردگارشان آنها را به رحمتی از ناحیه خود، و رضایت (خویش)، و باغهایی از بهشت بشارت میدهد که در آن، نعمتهای جاودانه دارند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,351,'همواره و تا ابد در این باغها (و در میان این نعمتها) خواهند بود؛ زیرا پاداش عظیم نزد خداوند است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,351,'ای کسانی که ایمان آوردهاید! هرگاه پدران و برادران شما، کفر را بر ایمان ترجیح دهند، آنها را ولیّ (و یار و یاور و تکیهگاه) خود قرار ندهید! و کسانی از شما که آنان را ولیّ خود قرار دهند، ستمگرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,351,'بگو: «اگر پدران و فرزندان و برادران و همسران و طایفه شما، و اموالی که به دست آوردهاید، و تجارتی که از کساد شدنش میترسید، و خانه هائی که به آن علاقه دارید، در نظرتان از خداوند و پیامبرش و جهاد در راهش محبوبتر است، در انتظار باشید که خداوند عذابش را بر شما نازل کند؛ و خداوند جمعیّت نافرمانبردار را هدایت نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,351,'خداوند شما را در جاهای زیادی یاری کرد (و بر دشمن پیروز شدید)؛ و در روز حنین (نیز یاری نمود)؛ در آن هنگام که فزونی جمعیّتتان شما را مغرور ساخت، ولی (این فزونی جمعیّت) هیچ به دردتان نخورد و زمین با همه وسعتش بر شما تنگ شده؛ سپس پشت (به دشمن) کرده، فرار نمودید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,351,'سپس خداوند «سکینه» خود را بر پیامبرش و بر مؤمنان نازل کرد؛ و لشکرهایی فرستاد که شما نمیدیدید؛ و کافران را مجازات کرد؛ و این است جزای کافران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,351,'سپس خداوند -بعد از آن- توبه هر کس را بخواهد (و شایسته بداند)، میپذیرد؛ و خداوند آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,351,'ای کسانی که ایمان آوردهاید! مشرکان ناپاکند؛ پس نباید بعد از امسال، نزدیک مسجد الحرام شوند! و اگر از فقر میترسید، خداوند هرگاه بخواهد، شما را به کرمش بینیاز میسازد؛ (و از راه دیگر جبران میکند؛) خداوند دانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,351,'با کسانی از اهل کتاب که نه به خدا، و نه به روز جزا ایمان دارند، و نه آنچه را خدا و رسولش تحریم کرده حرام میشمرند، و نه آیین حق را میپذیرند، پیکار کنید تا زمانی که با خضوع و تسلیم، جزیه را به دست خود بپردازند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,351,'یهود گفتند: «عزیر پسر خداست!» و نصاری کفتند: «مسیح پسر خداست!» این سخنی است که با زبان خود میگویند، که همانند گفتار کافران پیشین است؛ خدا آنان را بکشد، چگونه از حق انحراف مییابند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,351,'(آنها) دانشمندان و راهبان خویش را معبودهایی در برابر خدا قرار دادند، و (همچنین) مسیح فرزند مریم را؛ در حالی که دستور نداشتند جز خداوند یکتائی را که معبودی جز او نیست، بپرستند، او پاک و منزه است از آنچه همتایش قرار میدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,351,'آنها میخواهند نور خدا را با دهان خود خاموش کنند؛ ولی خدا جز این نمیخواهد که نور خود را کامل کند، هر چند کافران ناخشنود باشند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,351,'او کسی است که رسولش را با هدایت و آیین حق فرستاد، تا آن را بر همه آیینها غالب گرداند، هر چند مشرکان کراهت داشته باشند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,351,'ای کسانی که ایمان آوردهاید! بسیاری از دانشمندان (اهل کتاب) و راهبان، اموال مردم را بباطل میخورند، و (آنان را) از راه خدا بازمیدارند! و کسانی که طلا و نقره را گنجینه (و ذخیره و پنهان) میسازند، و در راه خدا انفاق نمیکنند، به مجازات دردناکی بشارت ده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,351,'در آن روز که آن را در آتش جهنم، گرم و سوزان کرده، و با آن صورتها و پهلوها و پشتهایشان را داغ میکنند؛ (و به آنها میگویند): این همان چیزی است که برای خود اندوختید (و گنجینه ساختید)! پس بچشید چیزی را که برای خود میاندوختید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,351,'تعداد ماهها نزد خداوند در کتاب الهی، از آن روز که آسمانها و زمین را آفریده، دوازده ماه است؛ که چهار ماه از آن، ماه حرام است؛ (و جنگ در آن ممنوع میباشد.) این، آیین ثابت و پابرجا (ی الهی) است! بنابر این، در این ماهها به خود ستم نکنید (و از هرگونه خونریزی بپرهیزید)! و (به هنگام نبرد) با مشرکان، دسته جمعی پیکار کنید، همان گونه که آنها دسته جمعی با شما پیکار میکنند؛ و بدانید خداوند با پرهیزگاران است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,351,'نسیء [= جا به جا کردن و تأخیر ماههای حرام]، افزایشی در کفر (مشرکان) است؛ که با آن، کافران گمراه میشوند؛ یک سال، آن را حلال، و سال دیگر آن را حرام می کنند، تا به مقدار ماههایی که خداوند تحریم کرده بشود (و عدد چهار ماه، به پندارشان تکمیل گردد)؛ و به این ترتیب، آنچه را خدا حرام کرده، حلال بشمرند. اعمال زشتشان در نظرشان زیبا جلوه داده شده؛ و خداوند جمعیّت کافران را هدایت نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,351,'ای کسانی که ایمان آوردهاید! چرا هنگامی که به شما گفته میشود: «به سوی جهاد در راه خدا حرکت کنید!» بر زمین سنگینی میکنید (و سستی به خرج میدهید)؟! آیا به زندگی دنیا به جای آخرت راضی شدهاید؟! با اینکه متاع زندگی دنیا، در برابر آخرت، جز اندکی نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,351,'اگر (به سوی میدان جهاد) حرکت نکنید، شما را مجازات دردناکی میکند، و گروه دیگری غیر از شما را به جای شما قرارمیدهد؛ و هیچ زیانی به او نمیرسانید؛ و خداوند بر هر چیزی تواناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,351,'اگر او را یاری نکنید، خداوند او را یاری کرد؛ (و در مشکلترین ساعات، او را تنها نگذاشت؛) آن هنگام که کافران او را (از مکّه) بیرون کردند، در حالی که دوّمین نفر بود (و یک نفر بیشتر همراه نداشت)؛ در آن هنگام که آن دو در غار بودند، و او به همراه خود میگفت: «غم مخور، خدا با ماست!» در این موقع، خداوند سکینه (و آرامش) خود را بر او فرستاد؛ و با لشکرهایی که مشاهده نمیکردید، او را تقویت نمود؛ و گفتار (و هدف) کافران را پایین قرار داد، (و آنها را با شکست مواجه ساخت؛) و سخن خدا (و آیین او)، بالا (و پیروز) است؛ و خداوند عزیز و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,351,'(همگی به سوی میدان جهاد) حرکت کنید؛ سبکبار باشید یا سنگین بار! و با اموال و جانهای خود، در راه خدا جهاد نمایید؛ این برای شما بهتر است اگر بدانید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,351,'(امّا گروهی از آنها، چنانند که) اگر غنایمی نزدیک (و در دسترس)، و سفری آسان باشد، (به طمع دنیا) از تو پیروی میکنند؛ ولی (اکنون که برای میدان تبوک،) راه بر آنها دور (و پر مشقت) است، (سرباز میزنند؛) و بزودی به خدا سوگند یاد میکنند که: «اگر توانایی داشتیم، همراه شما حرکت میکردیم!» (آنها با این اعمال و این دروغها، در واقع) خود را هلاک میکنند؛ و خداوند میداند آنها دروغگو هستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,351,'خداوند تو را بخشید؛ چرا پیش از آنکه راستگویان و دروغگویان را بشناسی، به آنها اجازه دادی؟! (خوب بود صبر میکردی، تا هر دو گروه خود را نشان دهند!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,351,'آنها که به خدا و روز جزا ایمان دارند، هیچ گاه برای ترک جهاد (در راه خدا) با اموال و جانهایشان، از تو اجازه نمیگیرند؛ و خداوند پرهیزگاران را میشناسد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,351,'تنها کسانی از تو اجازه (این کار را) میگیرند که به خدا و روز جزا ایمان ندارند، و دلهایشان با شکّ و تردید آمیخته است؛ آنها در تردید خود سرگردانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,351,'اگر آنها (راست میگفتند، و) اراده داشتند که (بسوی میدان جهاد) خارج شوند، وسیلهای برای آن فراهم میساختند! ولی خدا از حرکت آنها کراهت داشت؛ از این رو (توفیقش را از آنان سلب کرد؛ و) آنها را (از جهاد) باز داشت؛ و به آنان گفته شد: «با «قاعدین» [= کودکان و پیران و بیماران] بنشینید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,351,'اگر آنها همراه شما (بسوی میدان جهاد) خارج میشدند، جز اضطراب و تردید، چیزی بر شما نمیافزودند؛ و بسرعت در بین شما به فتنهانگیزی (و ایجاد تفرقه و نفاق) میپرداختند؛ و در میان شما، افرادی (سست و ضعیف) هستند که به سخنان آنها کاملاً گوش فرامیدهند؛ و خداوند، ظالمان را میشناسد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,351,'آنها پیش از این (نیز) در پی فتنهانگیزی بودند، و کارها را بر تو دگرگون ساختند (و به هم ریختند)؛ تا آن که حق فرا رسید، و فرمان خدا آشکار گشت (و پیروز شدید)، در حالی که آنها کراهت داشتند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,351,'بعضی از آنها میگویند: «به ما اجازه ده (تا در جهاد شرکت نکنیم)، و ما را به گناه نیفکن»! آگاه باشید آنها (هم اکنون) در گناه سقوط کردهاند؛ و جهنم، کافران را احاطه کرده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,351,'هرگاه نیکی به تو رسد، آنها را ناراحت میکند؛ و اگر مصیبتی به تو رسد، میگویند: «ما تصمیم خود را از پیش گرفتهایم.» و بازمیگردند در حالی که خوشحالند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,351,'بگو: «هیچ حادثهای برای ما رخ نمیدهد، مگر آنچه خداوند برای ما نوشته و مقرّر داشته است؛ او مولا (و سرپرست) ماست؛ و مؤمنان باید تنها بر خدا توکّل کنند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,351,'بگو: «آیا درباره ما، جز یکی از دو نیکی را انتظار دارید؟! (: یا پیروزی یا شهادت) ولی ما انتظار داریم که خداوند، عذابی از سوی خودش (در آن جهان) به شما برساند، یا (در این جهان) به دست ما (مجازات شوید) اکنون که چنین است، شما انتظار بکشید، ما هم با شما انتظار میکشیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,351,'بگو: «انفاق کنید؛ خواه از روی میل باشد یا اکراه، هرگز از شما پذیرفته نمیشود؛ چرا که شما قوم فاسقی بودید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,351,'هیچ چیز مانع قبول انفاقهای آنها نشد، جز اینکه آنها به خدا و پیامبرش کافر شدند، و نماز بجا نمیآورند جز با کسالت، و انفاق نمیکنند مگر با کراهت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,351,'و (فزونی) اموال و اولاد آنها، تو را در شگفتی فرو نبرد؛ خدا میخواهد آنان را به وسیله آن، در زندگی دنیا عذاب کند، و در حال کفر بمیرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,351,'آنها به خدا سوگند میخورند که از شما هستند، در حالی که از شما نیستند؛ ولی آنها گروهی هستند که میترسند (و به خاطر ترس از فاش شدن اسرارشان دروغ میگویند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,351,'اگر پناهگاه یا غارها یا راهی در زیر زمین بیابند، بسوی آن حرکت میکنند، و با سرعت و شتاب فرار میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,351,'و در میان آنها کسانی هستند که در (تقسیم) غنایم به تو خرده میگیرند؛ اگر از آن (غنایم، سهمی) به آنها داده شود، راضی میشوند؛ و اگر داده نشود، خشم میگیرند (؛ خواه حقّ آنها باشد یا نه)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,351,'(در حالی که) اگر به آنچه خدا و پیامبرش به آنان داده راضی باشند، و بگویند: «خداوند برای ما کافی است! و بزودی خدا و رسولش، از فضل خود به ما میبخشند؛ ما تنها رضای او را میطلبیم.» (برای آنها بهتر است)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,351,'زکاتها مخصوص فقرا و مساکین و کارکنانی است که برای (جمع آوری) آن زحمت میکشند، و کسانی که برای جلب محبّتشان اقدام میشود، و برای (آزادی) بردگان، و (ادای دین) بدهکاران، و در راه (تقویت آیین) خدا، و واماندگان در راه؛ این، یک فریضه (مهم) الهی است؛ و خداوند دانا و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,351,'از آنها کسانی هستند که پیامبر را آزار میدهند و میگویند: «او آدم خوشباوری است!» بگو: «خوشباور بودن او به نفع شماست! (ولی بدانید) او به خدا ایمان دارد؛ و (تنها) مؤمنان را تصدیق میکند؛ و رحمت است برای کسانی از شما که ایمان آوردهاند!» و آنها که رسول خدا را آزار میدهند، عذاب دردناکی دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,351,'آنها برای شما به خدا سوگند یاد میکنند، تا شما را راضی سازند؛ در حالی که شایستهتر این است که خدا و رسولش را راضی کنند، اگر ایمان دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,351,'آیا نمیدانند هر کس با خدا و رسولش دشمنی کند، برای او آتش دوزخ است؛ جاودانه در آن میماند؟! این، همان رسوایی بزرگ است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,351,'منافقان از آن بیم دارند که سورهای بر ضدّ آنان نازل گردد، و به آنها از اسرار درون قلبشان خبر دهد. بگو: «استهزا کنید! خداوند، آنچه را از آن بیم دارید، آشکار میسازد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,351,'و اگر از آنها بپرسی (: «چرا این اعمال خلاف را انجام دادید؟!»)، میگویند: «ما بازی و شوخی میکردیم!» بگو: «آیا خدا و آیات او و پیامبرش را مسخره میکردید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,351,'(بگو:) عذر خواهی نکنید (که بیهوده است؛ چرا که) شما پس از ایمان آوردن، کافر شدید! اگر گروهی از شما را (بخاطر توبه) مورد عفو قرار دهیم، گروه دیگری را عذاب خواهیم کرد؛ زیرا مجرم بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,351,'مردان منافق و زنان منافق، همه از یک گروهند! آنها امر به منکر، و نهی از معروف میکنند؛ و دستهایشان را (از انفاق و بخشش) میبندند؛ خدا را فراموش کردند، و خدا (نیز) آنها را فراموش کرد (، و رحمتش را از آنها قطع نمود)؛ به یقین، منافقان همان فاسقانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,351,'خداوند به مردان و زنان منافق و کفّار، وعده آتش دوزخ داده؛ جاودانه در آن خواهند ماند -همان برای آنها کافی است!- و خدا آنها را از رحمت خود دور ساخته؛ و عذاب همیشگی برای آنهاست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,351,'(شما منافقان،) همانند کسانی هستید که قبل از شما بودند (و راه نفاق پیمودند؛ بلکه) آنها از شما نیرومندتر، و اموال و فرزندانشان بیشتر بود! آنها از بهره خود (از مواهب الهی در راه گناه و هوس) استفاده کردند؛ شما نیز از بهره خود، (در این راه) استفاده کردید، همان گونه که آنها استفاده کردند؛ شما (در کفر و نفاق و استهزای مؤمنان) فرو رفتید، همان گونه که آنها فرو رفتند؛ (ولی سرانجام) اعمالشان در دنیا و آخرت نابود شد؛ و آنها همان زیانکارانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,351,'آیا خبر کسانی که پیش از آنها بودند، به آنان نرسیده است؟! «قوم نوح» و «عاد» و «ثمود» و «قوم ابراهیم» و «اصحاب مدین» [= قوم شعیب] و «شهرهای زیر و رو شده» [= قوم لوط]؛ پیامبرانشان دلایل روشن برای آنان آوردند، (ولی نپذیرفتند؛) خداوند به آنها ستم نکرد، امّا خودشان بر خویشتن ستم میکردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,351,'مردان و زنان باایمان، ولیّ (و یار و یاور) یکدیگرند؛ امر به معروف، و نهی از منکر میکنند؛ نماز را برپا میدارند؛ و زکات را میپردازند؛ و خدا و رسولش را اطاعت میکنند؛ بزودی خدا آنان را مورد رحمت خویش قرارمیدهد؛ خداوند توانا و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,351,'خداوند به مردان و زنان باایمان، باغهایی از بهشت وعده داده که نهرها از زیر درختانش جاری است؛ جاودانه در آن خواهند ماند؛ و مسکنهای پاکیزهای در بهشتهای جاودان (نصیب آنها ساخته)؛ و (خشنودی و) رضای خدا، (از همه اینها) برتر است؛ و پیروزی بزرگ، همین است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,351,'ای پیامبر! با کافران و منافقان جهاد کن، و بر آنها سخت بگیر! جایگاهشان جهنم است؛ و چه بد سرنوشتی دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,351,'به خدا سوگند میخورند که (در غیاب پیامبر، سخنان نادرست) نگفتهاند؛ در حالی که قطعاً سخنان کفرآمیز گفتهاند؛ و پس از اسلامآوردنشان، کافر شدهاند؛ و تصمیم (به کار خطرناکی) گرفتند، که به آن نرسیدند. آنها فقط از این انتقام میگیرند که خداوند و رسولش، آنان را به فضل (و کرم) خود، بینیاز ساختند! (با این حال،) اگر توبه کنند، برای آنها بهتر است؛ و اگر روی گردانند، خداوند آنها را در دنیا و آخرت، به مجازات دردناکی کیفر خواهد داد؛ و در سراسر زمین، نه ولیّ و حامی دارند، و نه یاوری!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,351,'بعضی از آنها با خدا پیمان بسته بودند که: «اگر خداوند ما را از فضل خود روزی دهد، قطعاً صدقه خواهیم داد؛ و از صالحان (و شاکران) خواهیم بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,351,'امّا هنگامی که خدا از فضل خود به آنها بخشید، بخل ورزیدند و سرپیچی کردند و روی برتافتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,351,'این عمل، (روح) نفاق را، تا روزی که خدا را ملاقات کنند، در دلهایشان برقرار ساخت. این بخاطر آن است که از پیمان الهی تخلّف جستند؛ و بخاطر آن است که دروغ میگفتند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,351,'آیا نمیدانستند که خداوند، اسرار و سخنان درگوشی آنها را میداند؛ و خداوند دانای همه غیبها (و امور پنهانی) است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,351,'آنهایی که از مؤمنان اطاعت کار، در صدقاتشان عیبجویی میکنند، و کسانی را که (برای انفاق در راه خدا) جز به مقدار (ناچیز) توانائی خود دسترسی ندارند، مسخره مینمایند، خدا آنها را مسخره میکند؛ (و کیفر استهزاکنندگان را به آنها میدهد؛) و برای آنها عذاب دردناکی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,351,'چه برای آنها استغفار کنی، و چه نکنی، (حتّی) اگر هفتاد بار برای آنها استغفار کنی، هرگز خدا آنها را نمیآمرزد! چرا که خدا و پیامبرش را انکار کردند؛ و خداوند جمعیّت فاسقان را هدایت نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,351,'تخلّفجویان (از جنگ تبوک،) از مخالفت با رسول خدا خوشحال شدند؛ و کراهت داشتند که با اموال و جانهای خود، در راه خدا جهاد کنند؛ و (به یکدیگر و به مؤمنان) گفتند: «در این گرما، (بسوی میدان) حرکت نکنید!» (به آنان) بگو: «آتش دوزخ از این هم گرمتر است!» اگر میدانستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,351,'از اینرو آنها باید کمتر بخندند و بسیار بگریند! (چرا که آتش جهنم در انتظارشان است) این، جزای کارهایی است که انجام میدادند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,351,'هرگاه خداوند تو را بسوی گروهی از آنان بازگرداند، و از تو اجازه خروج (بسوی میدان جهاد) بخواهند، بگو: «هیچ گاه با من خارج نخواهید شد! و هرگز همراه من، با دشمنی نخواهید جنگید! شما نخستین بار به کنارهگیری راضی شدید، اکنون نیز با متخلّفان بمانید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,351,'هرگز بر مرده هیچ یک از آنان، نماز نخوان! و بر کنار قبرش، (برای دعا و طلب آمرزش،) نایست! چرا که آنها به خدا و رسولش کافر شدند؛ و در حالی که فاسق بودند از دنیا رفتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,351,'مبادا اموال و فرزندانشان، مایه شگفتی تو گردد! (این برای آنها نعمت نیست؛ بلکه) خدا میخواهد آنها را به این وسیله در دنیا عذاب کند، و جانشان برآید در حالی که کافرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,351,'و هنگامی که سورهای نازل شود (و به آنان دستور دهد) که: «به خدا ایمان بیاورید! و همراه پیامبرش جهاد کنید!»، افرادی از آنها [= گروه منافقان] که توانایی دارند، از تو اجازه میخواهند و میگویند: «بگذار ما با قاعدین [= آنها که از جهاد معافند] باشیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,351,'(آری،) آنها راضی شدند که با متخلّفان باشند؛ و بر دلهایشان مهر نهاده شده؛ از این رو (چیزی) نمیفهمند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,351,'ولی پیامبر و کسانی که با او ایمان آوردند، با اموال و جانهایشان جهاد کردند؛ و همه نیکیها برای آنهاست؛ و آنها همان رستگارانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,351,'خداوند برای آنها باغهایی از بهشت فراهم ساخته که نهرها از زیر درختانش جاری است؛ جاودانه در آن خواهند بود؛ و این است رستگاری (و پیروزی) بزرگ!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,351,'و عذرآورندگان از اعراب، (نزد تو) آمدند که به آنها اجازه (عدم شرکت در جهاد) داده شود؛ و آنها که به خدا و پیامبرش دروغ گفتند، (بدون هیچ عذری در خانه خود) نشستند؛ بزودی به کسانی از آنها که مخالفت کردند (و معذور نبودند)، عذاب دردناکی خواهد رسید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,351,'بر ضعیفان و بیماران و آنها که وسیلهای برای انفاق (در راه جهاد) ندارند، ایرادی نیست (که در میدان جنگ شرکت نجویند،) هرگاه برای خدا و رسولش خیرخواهی کنند (؛ و از آنچه در توان دارند، مضایقه ننمایند). بر نیکوکاران راه مؤاخذه نیست؛ و خداوند آمرزنده و مهربان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,351,'و (نیز) ایرادی نیست بر آنها که وقتی نزد تو آمدند که آنان را بر مرکبی (برای جهاد) سوار کنی، گفتی: «مرکبی که شما را بر آن سوار کنم، ندارم!» (از نزد تو) بازگشتند در حالی که چشمانشان از اندوه اشکبار بود؛ زیرا چیزی نداشتند که در راه خدا انفاق کنند (و با آن به میدان بروند)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,351,'راه مؤاخذه تنها به روی کسانی باز است که از تو اجازه میخواهند در حالی که توانگرند؛ (و امکانات کافی برای جهاد دارند؛) آنها راضی شدند که با متخلّفان [= زنان و کودکان و بیماران] بمانند؛ و خداوند بر دلهایشان مهر نهاده؛ به همین جهت چیزی نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,351,'هنگامی که بسوی آنها (که از جهاد تخلّف کردند) باز گردید، از شما عذرخواهی میکنند؛ بگو: «عذرخواهی نکنید، ما هرگز به شما ایمان نخواهیم آورد! چرا که خدا ما را از اخبارتان آگاه ساخته؛ و خدا و رسولش، اعمال شما را میبینند؛ سپس به سوی کسی که دانای پنهان و آشکار است بازگشت داده میشوید؛ و او شما را به آنچه انجام میدادید، آگاه میکند (و جزا میدهد!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,351,'هنگامی که بسوی آنان بازگردید، برای شما به خدا سوگند یاد میکنند، تا از آنها اعراض (و صرف نظر) کنید؛ از آنها اعراض کنید (و روی بگردانید)؛ چرا که پلیدند! و جایگاهشان دوزخ است، بکیفر اعمالی که انجام میدادند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,351,'برای شما قسم یاد میکنند تا از آنها راضی شوید؛ اگر شما از آنها راضی شوید، خداوند (هرگز) از جمعیّت فاسقان راضی نخواهد شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,351,'بادیهنشینان عرب، کفر و نفاقشان شدیدتر است؛ و به ناآگاهی از حدود و احکامی که خدا بر پیامبرش نازل کرده، سزاوارترند؛ و خداوند دانا و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,351,'گروهی از (این) اعراب بادیهنشین، چیزی را که (در راه خدا) انفاق میکنند، غرامت محسوب میدارند؛ و انتظار حوادث دردناکی برای شما میکشند؛ حوادث دردناک برای خود آنهاست؛ و خداوند شنوا و داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,351,'گروهی (دیگر) از عربهای بادیهنشین، به خدا و روز رستاخیز ایمان دارند؛ و آنچه را انفاق میکنند، مایه تقرّب به خدا، و دعای پیامبر میدانند؛ آگاه باشید اینها مایه تقرّب آنهاست! خداوند بزودی آنان را در رحمت خود وارد خواهد ساخت؛ به یقین، خداوند آمرزنده و مهربان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,4,351,'پیشگامان نخستین از مهاجرین و انصار، و کسانی که به نیکی از آنها پیروی کردند، خداوند از آنها خشنود گشت، و آنها (نیز) از او خشنود شدند؛ و باغهایی از بهشت برای آنان فراهم ساخته، که نهرها از زیر درختانش جاری است؛ جاودانه در آن خواهند ماند؛ و این است پیروزی بزرگ!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,4,351,'و از (میان) اعراب بادیهنشین که اطراف شما هستند، جمعی منافقند؛ و از اهل مدینه (نیز)، گروهی سخت به نفاق پای بندند. تو آنها را نمیشناسی، ولی ما آنها را می شناسیم. بزودی آنها را دو بار مجازات میکنیم (: مجازاتی با رسوایی در دنیا، و مجازاتی به هنگام مرگ)؛ سپس بسوی مجازات بزرگی (در قیامت) فرستاده میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,4,351,'و گروهی دیگر، به گناهان خود اعتراف کردند؛ و کار خوب و بد را به هم آمیختند؛ امید میرود که خداوند توبه آنها را بپذیرد؛ به یقین، خداوند آمرزنده و مهربان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,4,351,'از اموال آنها صدقهای (بعنوان زکات) بگیر، تا بوسیله آن، آنها را پاک سازی و پرورش دهی! و (به هنگام گرفتن زکات،) به آنها دعا کن؛ که دعای تو، مایه آرامش آنهاست؛ و خداوند شنوا و داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,4,351,'آیا نمیدانستند که فقط خداوند توبه را از بندگانش میپذیرد، و صدقات را میگیرد، و خداوند توبهپذیر و مهربان است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,4,351,'بگو: «عمل کنید! خداوند و فرستاده او و مؤمنان، اعمال شما را میبینند! و بزودی، بسوی دانای نهان و آشکار، بازگردانده میشوید؛ و شما را به آنچه عمل میکردید، خبر میدهد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,4,351,'و گروهی دیگر، به فرمان خدا واگذار شدهاند (و کارشان با خداست)؛ یا آنها را مجازات میکند، و یا توبه آنان را میپذیرد (، هر طور که شایسته باشند)؛ و خداوند دانا و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,4,351,'(گروهی دیگر از آنها) کسانی هستند که مسجدی ساختند برای زیان (به مسلمانان)، و (تقوّیت) کفر، و تفرقهافکنی میان مؤمنان، و کمینگاه برای کسی که از پیش با خدا و پیامبرش مبارزه کرده بود؛ آنها سوگند یاد میکنند که: «جز نیکی (و خدمت)، نظری نداشتهایم!» امّا خداوند گواهی میدهد که آنها دروغگو هستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,4,351,'هرگز در آن (مسجد به عبادت) نایست! آن مسجدی که از روز نخست بر پایه تقوا بنا شده، شایستهتر است که در آن (به عبادت) بایستی؛ در آن، مردانی هستند که دوست میدارند پاکیزه باشند؛ و خداوند پاکیزگان را دوست دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,4,351,'آیا کسی که شالوده آن را بر تقوای الهی و خشنودی او بنا کرده بهتر است، یا کسی که اساس آن را بر کنار پرتگاه سستی بنا نموده که ناگهان در آتش دوزخ فرومیریزد؟ و خداوند گروه ستمگران را هدایت نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,4,351,'(امّا) این بنایی را که آنها ساختند، همواره بصورت یک وسیله شک و تردید، در دلهایشان باقی میماند؛ مگر اینکه دلهایشان پاره پاره شود (و بمیرند؛ وگرنه، هرگز از دل آنها بیرون نمیرود)؛ و خداوند دانا و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,4,351,'خداوند از مؤمنان، جانها و اموالشان را خریداری کرده، که (در برابرش) بهشت برای آنان باشد؛ (به این گونه که:) در راه خدا پیکار میکنند، میکشند و کشته میشوند؛ این وعده حقّی است بر او، که در تورات و انجیل و قرآن ذکر فرموده؛ و چه کسی از خدا به عهدش وفادارتر است؟! اکنون بشارت باد بر شما، به داد و ستدی که با خدا کردهاید؛ و این است آن پیروزی بزرگ!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,4,351,'توبهکنندگان، عبادت کاران، سپاسگویان، سیاحت کنندگان، رکوع کنندگان، سجدهآوران، آمران به معروف، نهی کنندگان از منکر، و حافظان حدود (و مرزهای) الهی، (مؤمنان حقیقیاند)؛ و بشارت ده به (اینچنین) مؤمنان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,4,351,'برای پیامبر و مؤمنان، شایسته نبود که برای مشرکان (از خداوند) طلب آمرزش کنند، هر چند از نزدیکانشان باشند؛ (آن هم) پس از آنکه بر آنها روشن شد که این گروه، اهل دوزخند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,4,351,'و استغفار ابراهیم برای پدرش [= عمویش آزر]، فقط بخاطر وعدهای بود که به او داده بود (تا وی را بسوی ایمان جذب کند)؛ امّا هنگامی که برای او روشن شد که وی دشمن خداست، از او بیزاری جست؛ به یقین، ابراهیم مهربان و بردبار بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,4,351,'چنان نبود که خداوند قومی را، پس از آن که آنها را هدایت کرد (و ایمان آوردند) گمراه (و مجازات) کند؛ مگر آنکه اموری را که باید از آن بپرهیزند، برای آنان بیان نماید (و آنها مخالفت کنند)؛ زیرا خداوند به هر چیزی داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,4,351,'حکومت آسمانها و زمین تنها از آن خداست؛ زنده میکند و میمیراند؛ و جز خدا، ولیّ و یاوری ندارید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,4,351,'مسلّماً خداوند رحمت خود را شامل حال پیامبر و مهاجران و انصار، که در زمان عسرت و شدّت (در جنگ تبوک) از او پیروی کردند، نمود؛ بعد از آنکه نزدیک بود دلهای گروهی از آنها، از حقّ منحرف شود (و از میدان جنگ بازگردند)؛ سپس خدا توبه آنها را پذیرفت، که او نسبت به آنان مهربان و رحیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,4,351,'(همچنین) آن سه نفر که (از شرکت در جنگ تبوک) تخلّف جستند، (و مسلمانان با آنان قطع رابطه نمودند،) تا آن حدّ که زمین با همه وسعتش بر آنها تنگ شد؛ (حتّی) در وجود خویش، جایی برای خود نمییافتند؛ (در آن هنگام) دانستند پناهگاهی از خدا جز بسوی او نیست؛ سپس خدا رحمتش را شامل حال آنها نمود، (و به آنان توفیق داد) تا توبه کنند؛ خداوند بسیار توبهپذیر و مهربان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,4,351,'ای کسانی که ایمان آوردهاید! از (مخالفت فرمان) خدا بپرهیزید، و با صادقان باشید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,4,351,'سزاوار نیست که اهل مدینه، و بادیهنشینانی که اطراف آنها هستند، از رسول خدا تخلّف جویند؛ و برای حفظ جان خویش، از جان او چشم بپوشند! این بخاطر آن است که هیچ تشنگی و خستگی، و گرسنگی در راه خدا به آنها نمیرسد و هیچ گامی که موجب خشم کافران میشود برنمیدارند، و ضربهای از دشمن نمیخورند، مگر اینکه به خاطر آن، عمل صالحی برای آنها نوشته میشود؛ زیرا خداوند پاداش نیکوکاران را تباه نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,4,351,'و هیچ مال کوچک یا بزرگی را (در این راه) انفاق نمیکنند، و هیچ سرزمینی را (بسوی میدان جهاد و یا در بازگشت) نمیپیمایند، مگر اینکه برای آنها نوشته میشود؛ تا خداوند آن را بعنوان بهترین اعمالشان، پاداش دهد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,4,351,'شایسته نیست مؤمنان همگی (بسوی میدان جهاد) کوچ کنند؛ چرا از هر گروهی از آنان، طایفهای کوچ نمیکند (و طایفهای در مدینه بماند)، تا در دین (و معارف و احکام اسلام) آگاهی یابند و به هنگام بازگشت بسوی قوم خود، آنها را بیم دهند؟! شاید (از مخالفت فرمان پروردگار) بترسند، و خودداری کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,4,351,'ای کسانی که ایمان آوردهاید! با کافرانی که به شما نزدیکترند، پیکار کنید! (و دشمن دورتر، شما را از دشمنان نزدیک غافل نکند!) آنها باید در شما شدّت و خشونت (و قدرت) احساس کنند؛ و بدانید خداوند با پرهیزگاران است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,4,351,'و هنگامی که سورهای نازل میشود، بعضی از آنان (به دیگران) میگویند: «این سوره، ایمان کدام یک از شما را افزون ساخت؟!» (به آنها بگو:) اما کسانی که ایمان آوردهاند، بر ایمانشان افزوده؛ و آنها (به فضل و رحمت الهی) خوشحالند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,4,351,'و امّا آنها که در دلهایشان بیماری است، پلیدی بر پلیدیشان افزوده؛ و از دنیا رفتند در حالی که کافر بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,4,351,'آیا آنها نمیبینند که در هر سال، یک یا دو بار آزمایش میشوند؟! باز توبه نمیکنند، و متذکّر هم نمیگردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,4,351,'و هنگامی که سورهای نازل میشود، بعضی از آنها [= منافقان] به یکدیگر نگاه میکنند و میگویند: «آیا کسی شما را میبیند؟ (اگر از حضور پیامبر بیرون رویم، کسی متوجّه ما نمیشود!)» سپس منصرف میشوند (و بیرون میروند)؛ خداوند دلهایشان را (از حق) منصرف ساخته؛ چرا که آنها، گروهی هستند که نمیفهمند (و بیدانشند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,4,351,'به یقین، رسولی از خود شما بسویتان آمد که رنجهای شما بر او سخت است؛ و اصرار بر هدایت شما دارد؛ و نسبت به مؤمنان، رئوف و مهربان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,4,351,'اگر آنها (از حق) روی بگردانند، (نگران مباش!) بگو: «خداوند مرا کفایت میکند؛ هیچ معبودی جز او نیست؛ بر او توکّل کردم؛ و او صاحب عرش بزرگ است!»');
+INSERT INTO chapters (id, number, quran_id) VALUES(352,10,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,352,'الر، این آیات کتاب استوار و حکمت آمیز است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,352,'آیا برای مردم، موجب شگفتی بود که به مردی از آنها وحی فرستادیم که مردم را (از عواقب کفر و گناه) بترسان، و به کسانی که ایمان آوردهاند بشارت ده که برای آنها، سابقه نیک (و پاداشهای مسلّم) نزد پروردگارشان است؟! (امّا) کافران گفتند: «این مرد، ساحر آشکاری است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,352,'پروردگار شما، خداوندی است که آسمانها و زمین را در شش روز [= شش دوران] آفرید؛ سپس بر تخت (قدرت) قرار گرفت، و به تدبیر کار (جهان) پرداخت؛ هیچ شفاعت کنندهای، جز با اذن او نیست؛ این است خداوند، پروردگار شما! پس او را پرستش کنید! آیا متذکّر نمیشوید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,352,'بازگشت همه شما بسوی اوست! خداوند وعده حقّی فرموده؛ او آفرینش را آغاز میکند، سپس آن را بازمیگرداند، تا کسانی را که ایمان آورده و کارهای شایسته انجام دادهاند، بعدالت جزا دهد؛ و برای کسانی که کافر شدند، نوشیدنی از مایع سوزان است؛ و عذابی دردناک، بخاطر آنکه کفر میورزیدند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,352,'او کسی است که خورشید را روشنایی، و ماه را نور قرار داد؛ و برای آن منزلگاههایی مقدّر کرد، تا عدد سالها و حساب (کارها) را بدانید؛ خداوند این را جز بحق نیافریده؛ او آیات (خود را) برای گروهی که اهل دانشند، شرح میدهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,352,'مسلّماً در آمد و شد شب و روز، و آنچه خداوند در آسمانها و زمین آفریده، آیات (و نشانههایی) است برای گروهی که پرهیزگارند (و حقایق را میبینند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,352,'آنها که ایمان به ملاقات ما (و روز رستاخیز) ندارند، و به زندگی دنیا خشنود شدند و بر آن تکیه کردند، و آنها که از آیات ما غافلند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,352,'(همه) آنها جایگاهشان آتش است، بخاطر کارهایی که انجام میدادند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,352,'(ولی) کسانی که ایمان آوردند و کارهای شایسته انجام دادند، پروردگارشان آنها را در پرتو ایمانشان هدایت میکند؛ از زیر (قصرهای) آنها در باغهای بهشت، نهرها جاری است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,352,'گفتار (و دعای) آنها در بهشت این است که: «خداوندا، منزهی تو!» و تحیّت آنها در آنجا: سلام؛ و آخرین سخنشان این است که: «حمد، مخصوص پروردگار عالمیان است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,352,'اگر همان گونه که مردم در به دست آوردن «خوبی» ها عجله دارند، خداوند در مجازاتشان شتاب میکرد، (بزودی) عمرشان به پایان میرسید (و همگی نابود میشدند)؛ ولی کسانی را که ایمان به لقای ما ندارند، به حال خود رها میکنیم تا در طغیانشان سرگردان شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,352,'هنگامی که به انسان زیان (و ناراحتی) رسد، ما را (در هر حال:) در حالی که به پهلو خوابیده، یا نشسته، یا ایستاده است، میخواند؛ امّا هنگامی که ناراحتی را از او برطرف ساختیم، چنان میرود که گویی هرگز ما را برای حل مشکلی که به او رسیده بود، نخوانده است! این گونه برای اسرافکاران، اعمالشان زینت داده شده است (که زشتی این عمل را درک نمیکنند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,352,'ما امّتهای پیش از شما را، هنگامی که ظلم کردند، هلاک نمودیم؛ در حالی که پیامبرانشان دلایل روشن برای آنها آوردند، ولی آنها ایمان نیاوردند؛ اینگونه گروه مجرمان را کیفر میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,352,'سپس شما را جانشینان آنها در روی زمین -پس از ایشان- قرار دادیم؛ تا ببینیم شما چگونه عمل میکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,352,'و هنگامی که آیات روشن ما بر آنها خوانده میشود، کسانی که ایمان به لقای ما (و روز رستاخیز) ندارند میگویند: «قرآنی غیر از این بیاور، یا آن را تبدیل کن! (و آیات نکوهش بتها را بردار)» بگو: «من حق ندارم که از پیش خود آن را تغییر دهم؛ فقط از چیزی که بر من وحی میشود، پیروی میکنم! من اگر پروردگارم را نافرمانی کنم، از مجازات روز بزرگ (قیامت) میترسم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,352,'بگو: «اگر خدا میخواست، من این آیات را بر شما نمیخواندم؛ و خداوند از آن آگاهتان نمیکرد؛ چه اینکه مدّتها پیش از این، در میان شما زندگی نمودم؛ (و هرگز آیهای نیاوردم؛) آیا نمیفهمید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,352,'چه کسی ستمکارتر است از آن کس که بر خدا دروغ میبندد، یا آیات او را تکذیب میکند؟! مسلماً مجرمان رستگار نخواهند شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,352,'آنها غیر از خدا، چیزهایی را میپرستند که نه به آنان زیان میرساند، و نه سودی میبخشد؛ و میگویند: «اینها شفیعان ما نزد خدا هستند!» بگو: «آیا خدا را به چیزی خبر میدهید که در آسمانها و زمین سراغ ندارد؟!» منزه است او، و برتر است از آن همتایانی که قرار میدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,352,'(در آغاز) همه مردم امّت واحدی بودند؛ سپس اختلاف کردند؛ و اگر فرمانی از طرف پروردگارت (درباره عدم مجازات سریع آنان) از قبل صادر نشده بود، در میان آنها در آنچه اختلاف داشتند داوری میشد (و سپس همگی به مجازات میرسیدند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,352,'میگویند: «چرا معجزهای از پروردگارش بر او نازل نمیشود؟!» بگو: «غیب (و معجزات) تنها برای خدا (و به فرمان او) است! شما در انتظار باشید، من هم با شما در انتظارم! (شما در انتظار معجزات بهانهجویانه باشید، و من هم در انتظار مجازات شما!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,352,'هنگامی که به مردم، پس از ناراحتی که به آنها رسیده است، رحمتی بچشانیم، در آیات ما نیرنگ میکنند (، و برای آن نعمت و رحمت توجیهات ناروا میکنند)؛ بگو: «خداوند سریعتر از شما مکر [= چارهجویی] میکند؛ و رسولان [= فرشتگان] ما، آنچه نیرنگ میکنید (و نقشه میکشید)، مینویسند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,352,'او کسی است که شما را در خشکی و دریا سیر میدهد؛ زمانی که در کشتی قرارمیگیرید، و بادهای موافق آنان را (بسوی مقصد) حرکت میدهد و خوشحال میشوند، ناگهان طوفان شدیدی میوزد؛ و امواج از هر سو به سراغ آنها میآید؛ و گمان میکنند هلاک خواهند شد؛ در آن هنگام، خدا را از روی اخلاص میخوانند که: «اگر ما را از این گرفتاری نجات دهی، حتماً از سپاسگزاران خواهیم بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,352,'امّا هنگامی که خدا آنها را رهایی بخشید، (باز) به ناحق، در زمین ستم میکنند. ای مردم! ستمهای شما، به زیان خود شماست! از زندگی دنیا بهره (میبرید)، سپس بازگشت شما بسوی ماست؛ و ما، شما را به آنچه عمل میکردید، خبر میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,352,'مثل زندگی دنیا، همانند آبی است که از آسمان نازل کردهایم؛ که در پی آن، گیاهان (گوناگون) زمین -که مردم و چهارپایان از آن میخورند- میروید؛ تا زمانی که زمین، زیبایی خود را یافته و آراسته میگردد، و اهل آن مطمئن میشوند که میتوانند از آن بهرهمند گردند، (ناگهان) فرمان ما، شبهنگام یا در روز، (برای نابودی آن) فرامیرسد؛ (سرما یا صاعقهای را بر آن مسلّط میسازیم؛) و آنچنان آن را درو میکنیم که گویی دیروز هرگز (چنین کشتزاری) نبوده است! این گونه، آیات خود را برای گروهی که میاندیشند، شرح میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,352,'و خداوند به سرای صلح و سلامت دعوت میکند؛ و هر کس را بخواهد (و شایسته و لایق ببیند)، به راه راست هدایت مینماید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,352,'کسانی که نیکی کردند، پاداش نیک و افزون بر آن دارند؛ و تاریکی و ذلّت، چهرههایشان را نمیپوشاند؛ آنها اهل بهشتند، و جاودانه در آن خواهند ماند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,352,'امّا کسانی که مرتکب گناهان شدند، جزای بدی بمقدار آن دارند؛ و ذلّت و خواری، چهره آنان را میپوشاند؛ و هیچ چیز نمیتواند آنها را از (مجازات) خدا نگه دارد! (چهرههایشان آنچنان تاریک است که) گویی با پارههایی از شب تاریک، صورت آنها پوشیده شده! آنها اهل دوزخند؛ و جاودانه در آن خواهند ماند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,352,'(به خاطر بیاورید) روزی را که همه آنها را جمع میکنیم، سپس به مشرکان میگوییم: «شما و معبودهایتان در جای خودتان باشید (تا به حسابتان رسیدگی شود!)» سپس آنها را از هم جدا میسازیم (و از هر یک جداگانه سؤال میکنیم). و معبودهایشان (به آنها) میگویند: «شما (هرگز) ما را عبادت نمیکردید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,352,'(آنها در پاسخ میگویند:) همین بس که خدا میان ما و شما گواه باشد، اگر ما از عبادت شما غافل بودیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,352,'در آن جا، هر کس عملی را که قبلاً انجام داده است، میآزماید. و همگی بسوی «اللّه» -مولا و سرپرستِ حقیقی خود- بازگردانده میشوند؛ و چیزهایی را که بدروغ همتای خدا قرار داده بودند، گم و نابود میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,352,'بگو: «چه کسی شما را از آسمان و زمین روزی میدهد؟ یا چه کسی مالک (و خالق) گوش و چشمهاست؟ و چه کسی زنده را از مرده، و مرده را از زنده بیرون میآورد؟ و چه کسی امور (جهان) را تدبیر میکند؟» بزودی (در پاسخ) میگویند: «خدا»، بگو: «پس چرا تقوا پیشه نمیکنید (و از خدا نمیترسید)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,352,'آن است خداوند، پروردگار حقّ شما (دارای همه این صفات)! با این حال، بعد از حق، چه چیزی جز گمراهی وجود دارد؟! پس چرا (از پرستش او) روی گردان میشوید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,352,'اینچنین فرمان پروردگارت بر فاسقان مسلّم شده که آنها (پس از این همه لجاجت و گناه)، ایمان نخواهند آورد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,352,'بگو: «آیا هیچ یک از معبودهای شما، آفرینش را ایجاد میکند و سپس بازمیگرداند؟!» بگو: «تنها خدا آفرینش را ایجاد کرده، سپس بازمیگرداند؛ با این حال، چرا از حق رویگردان میشوید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,352,'بگو: «آیا هیچ یک از معبودهای شما، به سوی حق هدایت میکند؟! بگو: «تنها خدا به حق هدایت میکند! آیا کسی که هدایت به سوی حق میکند برای پیروی شایستهتر است، یا آن کس که خود هدایت نمیشود مگر هدایتش کنند؟ شما را چه میشود، چگونه داوری میکنید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,352,'و بیشتر آنها، جز از گمان (و پندارهای بیاساس)، پیروی نمیکنند؛ (در حالی که) گمان، هرگز انسان را از حقّ بینیاز نمیسازد (و به حق نمیرساند)! به یقین، خداوند از آنچه انجام میدهند، آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,352,'شایسته نبود (و امکان نداشت) که این قرآن، بدون وحی الهی به خدا نسبت داده شود؛ ولی تصدیقی است برای آنچه پیش از آن است (از کتب آسمانی)، و شرح و تفصیلی بر آنها است؛ شکّی در آن نیست، و از طرف پروردگار جهانیان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,352,'آیا آنها میگویند: «او قرآن را بدروغ به خدا نسبت داده است»؟! بگو: «اگر راست می گویید، یک سوره همانند آن بیاورید؛ و غیر از خدا، هر کس را میتوانید (به یاری) طلبید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,352,'(ولی آنها از روی علم و دانش قرآن را انکار نکردند؛) بلکه چیزی را تکذیب کردند که آگاهی از آن نداشتند، و هنوز واقعیتش بر آنان روشن نشده است! پیشینیان آنها نیز همین گونه تکذیب کردند؛ پس بنگر عاقبت کار ظالمان چگونه بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,352,'بعضی از آنها، به آن ایمان میآورند؛ و بعضی ایمان نمیآورند؛ و پروردگارت به مفسدان آگاهتر است (و آنها را بهتر میشناسد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,352,'و اگر تو را تکذیب کردند، بگو: «عمل من برای من، و عمل شما برای شماست! شما از آنچه من انجام میدهم بیزارید و من (نیز) از آنچه شماانجام میدهید بیزارم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,352,'گروهی از آنان، بسوی تو گوش فرامیدهند (؛ امّا گویی هیچ نمیشنوند و کرند)! آیا تو میتوانی سخن خود را به گوش کران برسانی، هر چند نفهمند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,352,'و گروهی از آنان، به سوی تو مینگرند (امّا گویی هیچ نمیبینند)! آیا تو میتوانی نابینایان را هدایت کنی، هر چند نبینند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,352,'خداوند هیچ به مردم ستم نمیکند؛ ولی این مردمند که به خویشتن ستم میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,352,'(به یاد آور) روزی را که (خداوند) آنها را جمع (و محشور) میسازد؛ آنچنان که (احساس میکنند) گویی جز ساعتی از روز، (در دنیا) توقّف نکردند؛ به آن مقدار که یکدیگر را (ببینند و) بشناسند! مسلّماً آنها که لقای خداوند (و روز رستاخیز) را تکذیب کردند، زیان بردند و هدایت نیافتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,352,'اگر ما، پارهای از مجازاتهایی را که به آنها وعده دادهایم، (در حال حیات تو (به تو نشان دهیم، و یا) پیش از آنکه گرفتار عذاب شوند،) تو را از دنیا ببریم، در هر حال، بازگشتشان به سوی ماست؛ سپس خداوند بر آنچه آنها انجام میدادند گواه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,352,'برای هر امّتی، رسولی است؛ هنگامی که رسولشان به سوی آنان بیاید، بعدالت در میان آنها داوری میشود؛ و ستمی به آنها نخواهد شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,352,'و میگویند: «اگر راست میگوئی، این وعده (مجازات) کی خواهد بود؟»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,352,'بگو: «من (حتّی) برای خودم زیان و سودی را مالک نیستم، (تا چه رسد برای شما!) مگر آنچه خدا بخواهد. (این مقدار میدانم که) برای هر قوم و ملّتی، سرآمدی است؛ هنگامی که اجل آنها فرا رسد، (و فرمان مجازات یا مرگشان صادر شود،) نه ساعتی تأخیر میکنند، و نه پیشی میگیرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,352,'بگو: «اگر مجازات او، شبهنگام یا در روز به سراغ شما آید (، آیا میتوانید آن را از خود دفع کنید؟!)» پس مجرمان برای چه عجله میکنند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,352,'یا اینکه آنگاه که واقع شد، به آن ایمان میآورید! (به شما گفته میشود:) حالا؟! در حالی که قبلاً برای آن عجله میکردید! (ولی اکنون چه سود!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,352,'سپس به کسانی که ستم کردند گفته میشود: عذاب ابدی را بچشید! آیا جز به آنچه انجام میدادید کیفر داده میشوید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,352,'از تو میپرسند: «آیا آن (وعده مجازات الهی) حقّ است؟» بگو: «آری، به پروردگارم سوگند، قطعاً حقّ است؛ و شما نمیتوانید از آن جلوگیری کنید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,352,'و هر کس که ستم کرده، اگر تمامی آنچه روی زمین است در اختیار داشته باشد، (همه را از هول عذاب،) برای نجات خویش میدهد! و هنگامی که عذاب را ببینند، (پشیمان میشوند؛ امّا) پشیمانی خود را کتمان میکنند (، مبادا رسواتر شوند)! و در میان آنها، بعدالت داوری میشود؛ و ستمی بر آنها نخواهد شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,352,'آگاه باشید آنچه در آسمانها و زمین است، از آن خداست! آگاه باشید وعده خدا حقّ است، ولی بیشتر آنها نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,352,'اوست که زنده میکند و میمیراند، و به سوی او بازگردانده میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,352,'ای مردم! اندرزی از سوی پروردگارتان برای شما آمده است؛ و درمانی برای آنچه در سینههاست؛ (درمانی برای دلهای شما؛) و هدایت و رحمتی است برای مؤمنان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,352,'بگو: «به فضل و رحمت خدا باید خوشحال شوند؛ که این، از تمام آنچه گردآوری کردهاند، بهتر است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,352,'بگو: «آیا روزیهایی را که خداوند بر شما نازل کرده دیدهاید، که بعضی از آن را حلال، و بعضی را حرام نمودهاید؟!» بگو: «آیا خداوند به شما اجازه داده، یا بر خدا افترا می بندید (و از پیش خود، حلال و حرام میکنید؟!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,352,'آنها که بر خدا افترا میبندند، درباره (مجازات) روز رستاخیز، چه میاندیشند؟! خداوند نسبت به همه مردم فضل (و بخشش) دارد، امّا اکثر آنها سپاسگزاری نمیکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,352,'در هیچ حال (و اندیشهای) نیستی، و هیچ قسمتی از قرآن را تلاوت نمیکنی، و هیچ عملی را انجام نمیدهید، مگر اینکه ما گواه بر شما هستیم در آن هنگام که وارد آن می شوید! و هیچ چیز در زمین و آسمان، از پروردگار تو مخفی نمیماند؛ حتّی به اندازه سنگینی ذرّهای، و نه کوچکتر از آن و نه بزرگتر، مگر اینکه (همه آنها) در کتاب آشکار (و لوح محفوظ علم خداوند) ثبت است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,352,'آگاه باشید (دوستان و) اولیای خدا، نه ترسی دارند و نه غمگین میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,352,'همانها که ایمان آوردند، و (از مخالفت فرمان خدا) پرهیز میکردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,352,'در زندگی دنیا و در آخرت، شاد (و مسرور) ند؛ وعدههای الهی تخلّف ناپذیر است! این است آن رستگاری بزرگ!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,352,'سخن آنها تو را غمگین نسازد! تمام عزّت (و قدرت)، از آن خداست؛ و او شنوا و داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,352,'آگاه باشید تمام کسانی که در آسمانها و زمین هستند، از آن خدا میباشند! و آنها که غیر خدا را همتای او میخوانند، (از منطق و دلیلی) پیروی نمیکنند؛ آنها فقط از پندار بی اساس پیروی میکنند؛ و آنها فقط دروغ میگویند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,352,'او کسی است که شب را برای شما آفرید، تا در آن آرامش بیابید؛ و روز را روشنی بخش (تا به تلاش زندگی پردازید) در اینها نشانههایی است برای کسانی که گوش شنوا دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,352,'گفتند: «خداوند فرزندی برای خود انتخاب کرده است»! (از هر عیب و نقص و احتیاجی) منزه است! او بینیاز است! از آن اوست آنچه در آسمانها و آنچه در زمین است! شما هیچگونه دلیلی بر این ادعا ندارید! آیا به خدا نسبتی میدهید که نمیدانید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,352,'بگو: «آنها که به خدا دروغ میبندند، (هرگز) رستگار نمیشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,352,'بهرهای (ناچیز) از دنیا دارند؛ سپس بازگشتشان بسوی ماست؛ و بعد، به آنها مجازات شدید به سزای کفرشان میچشانیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,352,'سرگذشت نوح را بر آنها بخوان! در آن هنگام که به قوم خود گفت: «ای قوم من! اگر تذکّرات من نسبت به آیات الهی، بر شما سنگین (و غیر قابل تحمّل) است، (هر کار از دستتان ساخته است بکنید.) من بر خدا توکّل کردهام! فکر خود، و قدرت معبودهایتان را جمع کنید؛ سپس هیچ چیز بر شما پوشیده نماند؛ (تمام جوانب کارتان را بنگرید؛) سپس به حیات من پایان دهید، و (لحظهای) مهلتم ندهید! (امّا توانایی ندارید!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,352,'و اگر از قبول دعوتم روی بگردانید، (کار نادرستی کردهاید؛ چه اینکه) من از شما مزدی نمیخواهم؛ مزد من، تنها بر خداست! و من مأمورم که از مسلمین [= تسلیم شدگان در برابر فرمان خدا] باشم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,352,'امّا آنها او را تکذیب کردند! و ما، او و کسانی را که با او در کشتی بودند، نجات دادیم؛ و آنان را جانشین (و وارث کافران) قرار دادیم؛ و کسانی را که آیات ما را تکذیب کردند، غرق نمودیم! پس ببین عاقبت کار کسانی که انذار شدند (و به انذار الهی اهمیّت ندادند)، چگونه بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,352,'سپس بعد از نوح، رسولانی به سوی قومشان فرستادیم؛ آنان دلایل روشن برایشان آوردند؛ امّا آنها، به چیزی که پیش از آن تکذیب کرده بودند، ایمان نیاوردند! اینچنین بر دلهای تجاوزکاران مهر مینهیم (تا چیزی را درک نکنند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,352,'بعد از آنها، موسی و هارون را با آیات خود به سوی فرعون و اطرافیانش فرستادیم؛ اما آنها تکبّر کردند (و زیر بار حق نرفتند؛ چرا که) آنها گروهی مجرم بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,352,'و هنگامی که حق از نزد ما بسراغ آنها آمد، گفتند: «این، سحری است آشکار!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,352,'موسی گفت: «آیا درباره حقّ، هنگامی که به سوی شما آمد، (چنین) میگویید؟! آیا این سحر است؟! در حالی که ساحران (هرگز) رستگار (و پیروز) نمیشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,352,'گفتند: «آیا آمدهای که ما را، از آنچه پدرانمان را بر آن یافتیم، منصرف سازی؛ و بزرگی (و ریاست) در روی زمین، از آن شما دو تن باشد؟! ما (هرگز) به شما ایمان نمیآوریم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,352,'فرعون گفت: «(بروید و) هر جادوگر (و ساحر) دانایی را نزد من آورید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,352,'هنگامی که ساحران (به میدان مبارزه) آمدند، موسی به آنها گفت: «آنچه (از وسایل سحر) را میتوانید بیفکنید، بیفکنید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,352,'هنگامی که افکندند، موسی گفت: «آنچه شما آوردید، سحر است؛ که خداوند بزودی آن را باطل میکند؛ چرا که خداوند (هرگز) عمل مفسدان را اصلاح نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,352,'او حق را به وعده خویش، تحقق میبخشد؛ هر چند مجرمان کراهت داشته باشند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,352,'(در آغاز،) هیچ کس به موسی ایمان نیاورد، مگر گروهی از فرزندان قوم او؛ (آن هم) با ترس از فرعون و اطرافیانش، مبادا آنها را شکنجه کنند؛ زیرا فرعون، برتریجویی در زمین داشت؛ و از اسرافکاران بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,352,'موسی گفت: «ای قوم من! اگر شما به خدا ایمان آوردهاید، بر او توکّل کنید اگر تسلیم فرمان او هستید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,352,'گفتند: «تنها بر خدا توکل داریم؛ پروردگارا! ما را مورد شکنجه گروه ستمگر قرار مده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,352,'و ما را با رحمتت از (دست) قوم کافر رهایی بخش!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,352,'و به موسی و برادرش وحی کردیم که: «برای قوم خود، خانههایی در سرزمین مصر انتخاب کنید؛ و خانههایتان را مقابل یکدیگر (و متمرکز) قرار دهید! و نماز را برپا دارید! و به مؤمنان بشارت ده (که سرانجام پیروز میشوند!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,352,'موسی گفت: «پروردگارا! تو فرعون و اطرافیانش را زینت و اموالی (سرشار) در زندگی دنیا دادهای، پروردگارا! در نتیجه (بندگانت را) از راه تو گمراه میسازند! پروردگارا! اموالشان را نابود کن! و (بجرم گناهانشان،) دلهایشان را سخت و سنگین ساز، به گونهای که ایمان نیاورند تا عذاب دردناک را ببینند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,352,'فرمود: «دعای شما پذیرفته شد! استقامت به خرج دهید؛ و از راه (و رسم) کسانی که نمیدانند، تبعیت نکنید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,352,'(سرانجام) بنی اسرائیل را از دریا [= رود عظیم نیل] عبور دادیم؛ و فرعون و لشکرش از سر ظلم و تجاوز، به دنبال آنها رفتند؛ هنگامی که غرقاب دامن او را گرفت، گفت: «ایمان آوردم که هیچ معبودی، جز کسی که بنی اسرائیل به او ایمان آوردهاند، وجود ندارد؛ و من از مسلمین هستم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,352,'(امّا به او خطاب شد:) الآن؟!! در حالی که قبلاً عصیان کردی، و از مفسدان بودی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,352,'ولی امروز، بدنت را (از آب) نجات میدهیم، تا عبرتی برای آیندگان باشی! و بسیاری از مردم، از آیات ما غافلند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,352,'(سپس) بنی اسرائیل را در جایگاه صدق (و راستی) منزل دادیم؛ و از روزیهای پاکیزه به آنها عطا کردیم؛ (امّا آنها به نزاع و اختلاف برخاستند!) و اختلاف نکردند، مگر بعد از آنکه علم و آگاهی به سراغشان آمد! پروردگار تو روز قیامت، در آنچه اختلاف میکردند، میان آنها داوری میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,352,'و اگر در آنچه بر تو نازل کردهایم تردیدی داری، از کسانی که پیش از تو کتاب آسمانی را میخواندند بپرس، به یقین، «حق» از طرف پروردگارت به تو رسیده است؛ بنابر این، هرگز از تردیدکنندگان مباش! [مسلماً او تردیدی نداشت! این درسی برای مردم بود!]');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,352,'و از آنها مباش که آیات خدا را تکذیب کردند، که از زیانکاران خواهی بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,352,'(و بدان) آنها که فرمان پروردگار تو بر آنان تحقق یافته، (و بجرم اعمالشان، توفیق هدایت را از آنها گرفته هرگز) ایمان نمیآورند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,352,'هر چند تمام آیات (و نشانههای الهی) به آنان برسد، تا زمانی که عذاب دردناک را ببینند! (زیرا تاریکی گناه، قلبهایشان را فرا گرفته، و راهی به روشنایی ندارند!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,352,'چرا هیچ یک از شهرها و آبادیها ایمان نیاوردند که (ایمانشان بموقع باشد، و) به حالشان مفید افتد؟! مگر قوم یونس، هنگامی که آنها ایمان آوردند، عذاب رسوا کننده را در زندگی دنیا از آنان برطرف ساختیم؛ و تا مدّت معیّنی [= پایان زندگی و اجلشان] آنها را بهرهمند ساختیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,352,'و اگر پروردگار تو میخواست، تمام کسانی که روی زمین هستند، همگی به (اجبار) ایمان میآوردند؛ آیا تو میخواهی مردم را مجبور سازی که ایمان بیاورند؟! (ایمان اجباری چه سودی دارد؟!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,4,352,'(اما) هیچ کس نمیتواند ایمان بیاورد، جز به فرمان خدا (و توفیق و یاری و هدایت او)! و پلیدی (کفر و گناه) را بر کسانی قرارمیدهد که نمیاندیشند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,4,352,'بگو: «نگاه کنید چه چیز (از آیات خدا و نشانههای توحیدش) در آسمانها و زمین است!» اما این آیات و انذارها به حال کسانی که (به خاطر لجاجت) ایمان نمیآورند مفید نخواهد بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,4,352,'آیا آنها (چیزی) جز همانند روزهای پیشینیان (و بلاها و مجازاتهایشان) را انتظار میکشند؟! بگو: «شما انتظار بکشید، من نیز با شما انتظار میکشم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,4,352,'سپس (هنگام نزول بلا و مجازات،) فرستادگان خود و کسانی را که (به آنان) ایمان میآورند، نجات میدهیم و همین گونه، بر ما حق است که مؤمنان (به تو) را (نیز) رهایی بخشیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,4,352,'بگو: «ای مردم! اگر در عقیده من شک دارید، من آنهایی را که جز خدا میپرستید، نمیپرستم! تنها خداوندی را پرستش میکنم که شما را میمیراند! و من مأمورم که از مؤمنان باشم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,4,352,'و (به من دستور داده شده که:) روی خود را به آیینی متوجه ساز که از هر گونه شرک، خالی است؛ و از مشرکان مباش!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,4,352,'و جز خدا، چیزی را که نه سودی به تو میرساند و نه زیانی، مخوان! که اگر چنین کنی، از ستمکاران خواهی بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,4,352,'و اگر خداوند، (برای امتحان یا کیفر گناه،) زیانی به تو رساند، هیچ کس جز او آن را برطرف نمیسازد؛ و اگر اراده خیری برای تو کند، هیچ کس مانع فضل او نخواهد شد! آنرا به هر کس از بندگانش بخواهد میرساند؛ و او غفور و رحیم است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,4,352,'بگو: «ای مردم! حق از طرف پروردگارتان به سراغ شما آمده؛ هر کس (در پرتو آن) هدایت یابد، برای خود هدایت شده؛ و هر کس گمراه گردد، به زیان خود گمراه میگردد؛ و من مأمور (به اجبار) شما نیستم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,4,352,'و از آنچه بر تو وحی میشود پیروی کن، و شکیبا باش (و استقامت نما)، تا خداوند فرمان (پیروزی) را صادر کند؛ و او بهترین حاکمان است!');
+INSERT INTO chapters (id, number, quran_id) VALUES(353,11,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,353,'الر، این کتابی است که آیاتش استحکام یافته؛ سپس تشریح شده و از نزد خداوند حکیم و آگاه (نازل گردیده) است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,353,'(دعوت من این است) که: جز «اللّه» را نپرستید! من از سوی او برای شما بیم دهنده و بشارت دهندهام!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,353,'و اینکه: از پروردگار خویش آمرزش بطلبید؛ سپس بسوی او بازگردید؛ تا شما را تا مدّت معیّنی، (از مواهب زندگی این جهان،) به خوبی بهرهمند سازد؛ و به هر صاحب فضیلتی، به مقدار فضیلتش ببخشد! و اگر (از این فرمان) روی گردان شوید، من بر شما از عذاب روز بزرگی بیمناکم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,353,'(بدانید) بازگشت شما بسوی «اللّه» است، و او بر هر چیز تواناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,353,'آگاه باشید، آنها (سرها را به هم نزدیک ساخته، و) سینههاشان را در کنار هم قرارمیدهند، تا خود (و سخنان خویش) را از او [= پیامبر] پنهان دارند! آگاه باشید، آنگاه که آنها لباسهایشان را به خود میپیچند و خویش را در آن پنهان میکنند، (خداوند) میداند آنچه را پنهان میکنند و آنچه را آشکار میسازند؛ چرا که او، از اسرار درون سینهها، آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,353,'هیچ جنبندهای در زمین نیست مگر اینکه روزی او بر خداست! او قرارگاه و محل نقل و انتقالش را میداند؛ همه اینها در کتاب آشکاری ثبت است! [= در لوح محفوظ، در کتاب علم خدا]');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,353,'او کسی است که آسمانها و زمین را در شش روز [= شش دوران] آفرید؛ و عرش (حکومت) او، بر آب قرار داشت؛ (بخاطر این آفرید) تا شما را بیازماید که کدامیک عملتان بهتر است! و اگر (به آنها) بگویی: «شما بعد از مرگ، برانگیخته میشوید! «، مسلّماً» کافران میگویند: «این سحری آشکار است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,353,'و اگر مجازات را تا زمان محدودی از آنها به تأخیر اندازیم، (از روی استهزا میگویند: «چه چیز مانع آن شده است؟!» آگاه باشید، آن روز که (عذاب) به سراغشان آید، از آنها بازگردانده نخواهد شد؛ (و هیچ قدرتی مانع آن نخواهد بود؛) و آنچه را مسخره میکردند، دامانشان را میگیرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,353,'و اگر از جانب خویش، نعمتی به انسان بچشانیم، سپس آن را از او بگیریم، بسیار نومید و ناسپاس خواهد بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,353,'و اگر بعد از شدّت و رنجی که به او رسیده، نعمتهایی به او بچشانیم، میگوید: «مشکلات از من برطرف شد، و دیگر باز نخواهد گشت!» و غرق شادی و غفلت و فخرفروشی میشود...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,353,'مگر آنها که (در سایه ایمان راستین،) صبر و استقامت ورزیدند و کارهای شایسته انجام دادند؛ که برای آنها، آمرزش و اجر بزرگی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,353,'شاید (ابلاغ) بعض آیاتی را که به تو وحی میشود، (بخاطر عدم پذیرش آنها) ترک کنی (و به تأخیر اندازی)؛ و سینهات از این جهت تنگ (و ناراحت) شود که میگویند: «چرا گنجی بر او نازل نشده؟! و یا چرا فرشتهای همراه او نیامده است؟!» (ابلاغ کن، و نگران و ناراحت مباش! چرا که) تو فقط بیم دهندهای؛ و خداوند، نگاهبان و ناظر بر همه چیز است (؛ و به حساب آنان میرسد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,353,'آنها میگویند: «او به دروغ این (قرآن) را (به خدا) نسبت داده (و ساختگی است)!» بگو: «اگر راست میگویید، شما هم ده سوره ساختگی همانند این قرآن بیاورید؛ و تمام کسانی را که میتوانید -غیر از خدا- (برای این کار) دعوت کنید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,353,'و اگر آنها دعوت شما را نپذیرفتند، بدانید (قرآن) تنها با علم الهی نازل شده؛ و هیچ معبودی جز او نیست! آیا با این حال، تسلیم میشوید؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,353,'کسانی که زندگی دنیا و زینت آن را بخواهند، (نتیجه) اعمالشان را در همین دنیا بطور کامل به آنها میدهیم؛ و چیزی کم و کاست از آنها نخواهد شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,353,'(ولی) آنها در آخرت، جز آتش، (سهمی) نخواهند داشت؛ و آنچه را در دنیا (برای غیر خدا) انجام دادند، بر باد میرود؛ و آنچه را عمل میکردند، باطل و بیاثر میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,353,'آیا آن کس که دلیل آشکاری از پروردگار خویش دارد، و بدنبال آن، شاهدی از سوی او میباشد، و پیش از آن، کتاب موسی که پیشوا و رحمت بود (گواهی بر آن میدهد، همچون کسی است که چنین نباشد)؟! آنها [= حقطلبان و حقیقتجویان] به او (که دارای این ویژگیهاست،) ایمان میآورند! و هر کس از گروههای مختلف به او کافر شود، آتش وعدهگاه اوست! پس، تردیدی در آن نداشته باش که آن حق است از پروردگارت! ولی بیشتر مردم ایمان نمیآورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,353,'چه کسی ستمکارتر است از کسانی که بر خدا افترا میبندند؟! آنان (روز رستاخیز) بر پروردگارشان عرضه میشوند، در حالی که شاهدان [= پیامبران و فرشتگان] میگویند: «اینها همانها هستند که به پروردگارشان دروغ بستند! ای لعنت خدا بر ظالمان باد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,353,'همانها که (مردم را) از راه خدا بازمیدارند؛ و راه حق را کج و معوج نشان میدهند؛ و به سرای آخرت کافرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,353,'آنها هیچ گاه توانایی فرار در زمین را ندارند؛ و جز خدا، پشتیبانهایی نمییابند! عذاب خدا برای آنها مضاعف خواهد بود؛ (چرا که هم خودشان گمراه بودند، و هم دیگران را گمراه ساختند؛) آنها هرگز توانایی شنیدن (حق را) نداشتند؛ و (حقیقت را) نمیدیدند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,353,'آنان کسانی هستند که سرمایه وجود خود را از دست دادهاند؛ و تمام معبودهای دروغین از نظرشان گم شدند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,353,'(به ناچار) آنها در سرای آخرت، قطعاً از همه زیانکارترند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,353,'کسانی که ایمان آوردند و کارهای شایسته انجام دادند و در برابر پروردگارشان خضوع و خشوع کردند، آنها اهل بهشتند؛ و جاودانه در آن خواهند ماند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,353,'حال این دو گروه [= مؤمنان و منکران]، حال «نابینا و کر» و «بینا و شنوا» است؛ آیا این دو، همانند یکدیگرند؟! آیا پند نمیگیرند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,353,'ما نوح را بسوی قومش فرستادیم (؛ نخستین بار به آنها گفت): «من برای شما بیمدهندهای آشکارم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,353,'جز «الله» [= خدای یگانه یکتا] را نپرستید؛ زیرا بر شما از عذاب روز دردناکی میترسم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,353,'اشراف کافر قومش (در پاسخ او) گفتند: «ما تو را جز بشری همچون خودمان نمیبینیم! و کسانی را که از تو پیروی کردهاند، جز گروهی اراذل سادهلوح، مشاهده نمیکنیم؛ و برای شما فضیلتی نسبت به خود نمیبینیم؛ بلکه شما را دروغگو تصور میکنیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,353,'(نوح) گفت: «اگر من دلیل روشنی از پروردگارم داشته باشم، و از نزد خودش رحمتی به من داده باشد -و بر شما مخفی مانده- (آیا باز هم رسالت مرا انکار میکنید)؟! آیا ما میتوانیم شما را به پذیرش این دلیل روشن مجبور سازیم، با اینکه شما کراهت دارید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,353,'ای قوم! من به خاطر این دعوت، اجر و پاداشی از شما نمیطلبم؛ اجر من، تنها بر خداست! و من، آنها را که ایمان آوردهاند، (بخاطر شما) از خود طرد نمیکنم؛ چرا که آنها پروردگارشان را ملاقات خواهند کرد؛ (اگر آنها را از خود برانم، در دادگاه قیامت، خصم من خواهند بود؛) ولی شما را قوم جاهلی میبینم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,353,'ای قوم! چه کسی مرا در برابر (مجازات) خدا یاری میدهد اگر آنان را طرد کنم؟! آیا اندیشه نمیکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,353,'من هرگز به شما نمیگویم خزائن الهی نزد من است! و غیب هم نمیدانم! و نمیگویم من فرشتهام! و (نیز) نمیگویم کسانی که در نظر شما خوار میآیند، خداوند خیری به آنها نخواهد داد؛ خدا از دل آنان آگاهتر است! (با این حال، اگر آنها را برانم،) در این صورت از ستمکاران خواهم بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,353,'گفتند: «ای نوح! با ما جر و بحث کردی، و زیاد هم جر و بحث کردی! (بس است!) اکنون اگر راستی میگویی، آنچه را (از عذاب الهی) به ما وعده میدهی بیاور!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,353,'(نوح) گفت: «اگر خدا اراده کند، خواهد آورد؛ و شما قدرت فرار (از آن را) نخواهید داشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,353,'(اما چه سود که) هرگاه خدا بخواهد شما را (بخاطر گناهانتان) گمراه سازد، و من بخواهم شما را اندرز دهم، اندرز من سودی به حالتان نخواهد داشت! او پروردگار شماست؛ و بسوی او بازگشت داده میشوید.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,353,'(مشرکان) میگویند: «او [= محمد (ص)] این سخنان را بدروغ به خدا نسبت داده است! «بگو: «اگر من اینها را از پیش خود ساخته باشم و به او نسبت دهم، گناهش بر عهده من است؛ ولی من از گناهان شما بیزارم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,353,'به نوح وحی شد که: «جز آنها که (تاکنون) ایمان آوردهاند، دیگر هیچ کس از قوم تو ایمان نخواهد آورد! پس، از کارهایی که میکردند، غمگین مباش!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,353,'و (اکنون) در حضور ما و طبق وحی ما، کشتی بساز! و درباره آنها که ستم کردند شفاعت مکن، که (همه) آنها غرق شدنی هستند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,353,'او مشغول ساختن کشتی بود، و هر زمان گروهی از اشراف قومش بر او میگذشتند، او را مسخره میکردند؛ (ولی نوح) گفت: «اگر ما را مسخره میکنید، ما نیز شما را همینگونه مسخره خواهیم کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,353,'بزودی خواهید دانست چه کسی عذاب خوارکننده به سراغش خواهد آمد، و مجازات جاودان بر او وارد خواهد شد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,353,'(این وضع همچنان ادامه یافت) تا آن زمان که فرمان ما فرا رسید، و تنور جوشیدن گرفت؛ (به نوح) گفتیم: «از هر جفتی از حیوانات (از نر و ماده) یک زوج در آن (کشتی) حمل کن! همچنین خاندانت را (بر آن سوار کن) -مگر آنها که قبلاً وعده هلاک آنان داده شده [= همسر و یکی از فرزندانت]- و همچنین مؤمنان را!» اما جز عده کمی همراه او ایمان نیاوردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,353,'او گفت: «به نام خدا بر آن سوار شوید! و هنگام حرکت و توقف کشتی، یاد او کنید، که پروردگارم آمرزنده و مهربان است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,353,'و آن کشتی، آنها را از میان امواجی همچون کوهها حرکت میداد؛ (در این هنگام،) نوح فرزندش را که در گوشهای بود صدا زد: «پسرم! همراه ما سوار شو، و با کافران مباش!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,353,'گفت: «بزودی به کوهی پناه میبرم تا مرا از آب حفظ کند!» (نوح) گفت: «امروز هیچ نگهداری در برابر فرمان خدا نیسست؛ مگر آن کس را که او رحم کند!» در این هنگام، موج در میان آن دو حایل شد؛ و او در زمره غرقشدگان قرار گرفت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,353,'و گفته شد: «ای زمین، آبت را فرو بر! و ای آسمان، خودداری کن! و آب فرو نشست و کار پایان یافت و (کشتی) بر (دامنه کوه) جودی، پهلو گرفت؛ و (در این هنگام،) گفته شد:» دور باد قوم ستمگر (از سعادت و نجات و رحمت خدا!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,353,'نوح به پروردگارش عرض کرد: «پروردگارا! پسرم از خاندان من است؛ و وعده تو (در مورد نجات خاندانم) حق است؛ و تو از همه حکمکنندگان برتری!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,353,'فرمود: «ای نوح! او از اهل تو نیست! او عمل غیر صالحی است [= فرد ناشایستهای است]! پس، آنچه را از آن آگاه نیستی، از من مخواه! من به تو اندرز میدهم تا از جاهلان نباشی!!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,353,'عرض کرد: «پروردگارا! من به تو پناه میبرم که از تو چیزی بخواهم که از آن آگاهی ندارم! و اگر مرا نبخشی، و بر من رحم نکنی، از زیانکاران خواهم بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,353,'(به نوح) گفته شد: «ای نوح! با سلامت و برکاتی از ناحیه ما بر تو و بر تمام امتهایی که با تواند، فرود آی! و امتهای نیز هستند که ما آنها را از نعمتها بهرهمند خواهیم ساخت، سپس عذاب دردناکی از سوی ما به آنها میرسد (، چرا که این نعمتها را کفران میکنند!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,353,'اینها از خبرهای غیب است که به تو (ای پیامبر) وحی میکنیم؛ نه تو، و نه قومت، اینها را پیش از این نمیدانستید! بنابر این، صبر و استقامت کن، که عاقبت از آن پرهیزگاران است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,353,'(ما) به سوی (قوم) عاد، برادرشان «هود» را فرستادیم؛ (به آنها) گفت: «ای قوم من! خدا را پرستش کنید، که معبودی جز او برای شما نیست! شما فقط تهمت میزنید (و بتها را شریک او میخوانید)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,353,'ای قوم من! من از شما برای این (رسالت)، پاداشی نمیطلبم؛ پاداش من، تنها بر کسی است که مرا آفریده است؛ آیا نمیفهمید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,353,'و ای قوم من! از پروردگارتان طلب آمرزش کنید، سپس به سوی او بازگردید، تا (باران) آسمان را پی در پی بر شما بفرستد؛ و نیرویی بر نیرویتان بیفزاید! و گنهکارانه، روی (از حق) بر نتابید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,353,'گفتند: «ای هود! تو دلیل روشنی برای ما نیاوردهای! و ما خدایان خود را بخاطر حرف تو، رها نخواهیم کرد! و ما (اصلاً) به تو ایمان نمیآوریم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,353,'ما (درباره تو) فقط میگوییم: بعضی از خدایان ما، به تو زیان رسانده (و عقلت را ربوده) اند!» (هود) گفت: «من خدا را به شهادت میطلبم، شما نیز گواه باشید که من بیزارم از آنچه شریک (خدا) قرارمیدهید...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,353,'از آنچه غیر او (میپرستید)! حال که چنین است، همگی برای من نقشه بکشید؛ و مرا مهلت ندهید! (اما بدانید کاری از دست شما ساخته نیست!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,353,'من، بر «الله» که پروردگار من و شماست، توکل کردهام! هیچ جنبندهای نیست مگر اینکه او بر آن تسلط دارد؛ (اما سلطهای با عدالت! چرا که) پروردگار من بر راه راست است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,353,'پس اگر روی برگردانید، من رسالتی را که مأمور بودم به شما رساندم؛ و پروردگارم گروه دیگری را جانشین شما میکند؛ و شما کمترین ضرری به او نمیرسایند؛ پروردگارم حافظ و نگاهبان هر چیز است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,353,'و هنگامی که فرمان ما فرا رسید، «هود» و کسانی را که با او ایمان آورده بودند، به رحمت خود نجات دادیم؛ و آنها را از عذاب شدید، رهایی بخشیدیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,353,'و این قوم «عاد» بود که آیات پروردگارشان را انکار کردند؛ و پیامبران او را معصیت نمودند؛ و از فرمان هر ستمگر دشمن حق، پیروی کردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,353,'آنان، در این دنیا و روز قیامت، لعنت (و نام ننگینی) بدنبال دارند! بدانید «عاد» نسبت به پروردگارشان کفر ورزیدند! دور باد «عاد» -قوم هود- (از رحمت خدا، و خیر و سعادت)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,353,'و بسوی قوم «ثمود»، برادرشان «صالح» را (فرستادیم)؛ گفت: «ای قوم من! خدا را پرستش کنید، که معبودی جز او برای شما نیست! اوست که شما را از زمین آفرید، و آبادی آن را به شما واگذاشت! از او آمرزش بطلبید، سپس به سوی او بازگردید، که پروردگارم (به بندگان خود) نزدیک، و اجابتکننده (خواستههای آنها) است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,353,'گفتند: «ای صالح! تو پیش از این، مایه امید ما بودی! آیا ما را از پرستش آنچه پدرانمان میپرستیدند، نهی میکنی؟! در حالی که ما، در مورد آنچه به سوی آن دعوتمان میکنی، در شک و تردید هستیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,353,'گفت: «ای قوم! اگر من دلیل آشکاری از پروردگارم داشته باشم، و رحمتی از جانب خود به من داده باشد (، میتوانم از ابلاغ رسالت او سرپیچی کنم)؟! اگر من نافرمانی او کنم، چه کسی میتواند مرا در برابر وی یاری دهد؟! پس، (سخنان) شما، جز اطمینان به زیانکار بودنتان، چیزی بر من نمیافزاید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,353,'ای قوم من! این «ناقه» خداوند است، که برای شما نشانهای است؛ بگذارید در زمین خدا به چرا مشغول شود؛ هیچ گونه آزاری به آن نرسانید، که بزودی عذاب خدا شما را خواهد گرفت!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,353,'(اما) آنها آن (ناقه) را از پای در آوردند! و (صالح به آنها) گفت: «(مهلت شما تمام شد!) سه روز در خانههایتان بهرهمند گردید؛ (و بعد از آن، عذاب الهی فرا خواهد رسید؛) این وعدهای است که دروغ نخواهد بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,353,'و هنگامی که فرمان (مجازات) ما فرا رسید، صالح و کسانی را که با او ایمان آورده بودند، به رحمت خود (از آن عذاب) و از رسوایی آن روز، رهایی بخشیدیم؛ چرا که پروردگارت قوی و شکست ناپذیر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,353,'و کسانی را که ستم کرده بودند، صیحه (آسمانی) فروگرفت؛ و در خانههایشان به روی افتادند و مردند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,353,'آنچنان که گویی هرگز ساکن آن دیار نبودند! بدانید قوم ثمود، پروردگارشان را انکار کردند! دور باد قوم ثمود (از رحمت پروردگار)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,353,'فرستادگان ما [= فرشتگان] برای ابراهیم بشارت آوردند؛ گفتند: «سلام!» (او نیز) گفت: «سلام!» و طولی نکشید که گوساله بریانی (برای آنها) آورد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,353,'(اما) هنگامی که دید دست آنها به آن نمیرسد (و از آن نمیخورند، کار) آنها را زشت شمرد؛ و در دل احساس ترس نمود. به او گفتند: «نترس! ما به سوی قوم لوط فرستاده شدهایم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,353,'و همسرش ایستاده بود، (از خوشحالی) خندید؛ پس او را بشارت به اسحاق، و بعد از او یعقوب دادیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,353,'گفت: «ای وای بر من! آیا من فرزند میآورم در حالی که پیرزنم، و این شوهرم پیرمردی است؟! این راستی چیز عجیبی است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,353,'گفتند: «آیا از فرمان خدا تعجب میکنی؟! این رحمت خدا و برکاتش بر شما خانواده است؛ چرا که او ستوده و والا است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,353,'هنگامی که ترس ابراهیم فرو نشست، و بشارت به او رسید، درباره قوم لوط با ما مجادله میکرد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,353,'چرا که ابراهیم، بردبار و دلسوز و بازگشتکننده (بسوی خدا) بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,353,'ای ابراهیم! از این (درخواست) صرفنظر کن، که فرمان پروردگارت فرا رسیده؛ و بطور قطع عذاب (الهی) به سراغ آنها میآید؛ و برگشت ندارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,353,'و هنگامی که رسولان ما [= فرشتگان عذاب] به سراغ لوط آمدند، از آمدنشان ناراحت شد؛ و قلبش پریشان گشت؛ و گفت: «امروز روز سختی است!» (زیرا آنها را نشناخت؛ و ترسید قوم تبهکار مزاحم آنها شوند.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,353,'قوم او (بقصد مزاحمت میهمانان) بسرعت به سراغ او آمدند -و قبلاً کارهای بد انجام میدادند- گفت: «ای قوم من! اینها دختران منند؛ برای شما پاکیزهترند! (با آنها ازدواج کنید؛ و از زشتکاری چشم بپوشید!) از خدا بترسید؛ و مرا در مورد میهمانانم رسوا نسازید! آیا در میان شما یک مرد فهمیده و آگاه وجود ندارد؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,353,'گفتند: «تو که میدانی ما تمایلی به دختران تو نداریم؛ و خوب میدانی ما چه میخواهیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,353,'گفت: «(افسوس!) ای کاش در برابر شما قدرتی داشتم؛ یا تکیهگاه و پشتیبان محکمی در اختیار من بود! (آنگاه میدانستم با شما زشتسیرتان ددمنش چه کنم!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,353,'(فرشتگان عذاب) گفتند: «ای لوط! ما فرستادگان پروردگار توایم! آنها هرگز دسترسی به تو پیدا نخواهند کرد! در دل شب، خانوادهات را (از این شهر) حرکت ده! و هیچ یک از شما پشت سرش را نگاه نکند؛ مگر همسرت، که او هم به همان بلایی که آنها گرفتار میشوند، گرفتار خواهد شد! موعد آنها صبح است؛ آیا صبح نزدیک نیست؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,353,'و هنگامی که فرمان ما فرا رسید، آن (شهر و دیار) را زیر و رو کردیم؛ و بارانی از سنگ [= گِلهای متحجر] متراکم بر روی هم، بر آنها نازل نمودیم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,353,'(سنگهایی که) نزد پروردگارت نشاندار بود؛ و آن، (از سایر) ستمگران دور نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,353,'و بسوی «مدین» برادرشان شعیب را (فرستادیم)؛ گفت: «ای قوم من! خدا را پرستش کنید، که جز او، معبود دیگری برای شما نیست! پیمانه و وزن را کم نکنید (و دست به کمفروشی نزنید)! من (هم اکنون) شما را در نعمت میبینم؛ (ولی) از عذاب روز فراگیر، بر شما بیمناکم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,353,'و ای قوم من! پیمانه و وزن را با عدالت، تمام دهید! و بر اشیاء (و اجناس) مردم، عیب نگذارید؛ و از حق آنان نکاهید! و در زمین به فساد نکوشید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,353,'آنچه خداوند برای شما باقی گذارده (از سرمایههای حلال)، برایتان بهتر است اگر ایمان داشته باشید! و من، پاسدار شما (و مأمور بر اجبارتان به ایمان) نیستم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,353,'گفتند: «ای شعیب! آیا نمازت به تو دستور میدهد که آنچه را پدرانمان میپرستیدند، ترک کنیم؛ یا آنچه را میخواهیم در اموالمان انجام ندهیم؟! تو که مرد بردبار و فهمیدهای هستی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,353,'گفت: «ای قوم! به من بگویید، هرگاه من دلیل آشکاری از پروردگارم داشته باشم، و رزق (و موهبت) خوبی به من داده باشد، (آیا میتوانم بر خلاف فرمان او رفتار کنم؟!) من هرگز نمیخواهم چیزی که شما را از آن باز میدارم، خودم مرتکب شوم! من جز اصلاح -تا آنجا که توانایی دارم- نمیخواهم! و توفیق من، جز به خدا نیست! بر او توکّل کردم؛ و به سوی او بازمیگردم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,353,'و ای قوم من! دشمنی و مخالفت با من، سبب نشود که شما به همان سرنوشتی که قوم نوح یا قوم هود یا قوم صالح گرفتار شدند، گرفتار شوید! و قوم لوط از شما چندان دور نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,353,'از پروردگار خود، آمرزش بطلبید؛ و به سوی او بازگردید؛ که پروردگارم مهربان و دوستدار (بندگان توبهکار) است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,353,'گفتند: «ای شعیب! بسیاری از آنچه را میگویی، ما نمیفهمیم! و ما تو را در میان خود، ضعیف مییابیم؛ و اگر (بخاطر) قبیله کوچکت نبود، تو را سنگسار میکردیم؛ و تو در برابر ما قدرتی نداری!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,353,'گفت: «ای قوم! آیا قبیله کوچک من، نزد شما عزیزتر از خداوند است؟! در حالی که (فرمان) او را پشت سر انداختهاید! پروردگارم به آنچه انجام میدهید، احاطه دارد (و آگاه است)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,353,'ای قوم! هر کاری از دستتان ساخته است، انجام دهید، من هم کار خود را خواهم کرد؛ و بزودی خواهید دانست چه کسی عذاب خوارکننده به سراغش میآید، و چه کسی دروغگوست! شما انتظار بکشید، من هم در انتظارم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,353,'و هنگامی که فرمان ما فرا رسید، شعیب و کسانی را که با او ایمان آورده بودند، به رحمت خود نجات دادیم؛ و آنها را که ستم کردند، صیحه (آسمانی) فرو گرفت؛ و در دیار خود، به رو افتادند (و مردند)...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,353,'آنچنان که گویی هرگز از ساکنان آن (دیار) نبودند! دور باد مدین (و اهل آن) از رحمت خدا، همان گونه که قوم ثمود دور شدند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,353,'ما، موسی را با آیات خود و دلیل آشکاری فرستادیم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,353,'بسوی فرعون و اطرافیانش؛ اما آنها از فرمان فرعون پیروی کردند؛ در حالی که فرمان فرعون، مایه رشد و نجات نبود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,353,'روز قیامت، او در پیشاپیش قومش خواهد بود؛ و (به جای چشمههای زلال بهشت) آنها را وارد آتش میکند! و چه بد آبشخوری است (آتش)، که بر آن وارد میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,353,'آنان در این جهان و روز قیامت، لعنتی بدنبال دارند؛ و چه بد عطایی است (لعن و دوری از رحمت خدا)، که نصیب آنان میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,4,353,'این از اخبار شهرها و آبادیهاست که ما برای تو بازگو میکنیم؛ که بعضی (هنوز) برپا هستند، و بعضی درو شدهاند (و از میان رفتهاند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,4,353,'ما به آنها ستم نکردیم؛ بلکه آنها خودشان بر خویشتن ستم روا داشتند! و هنگامی که فرمان مجازات الهی فرا رسید، معبودانی را که غیر از خدا میخواندند، آنها را یاری نکردند؛ و جز بر هلاکت آنان نیفزودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,4,353,'و اینچنین است مجازات پروردگار تو، هنگامی که شهرها و آبادیهای ظالم را مجازات میکند! (آری،) مجازات او، دردناک و شدید است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,4,353,'در این، نشانهای است برای کسی که از عذاب آخرت میترسد؛ همان روزی است که مردم در آن جمع میشوند، و روزی که همه آن را مشاهده میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,4,353,'و ما آن (مجازات) را، جز تا زمان محدودی، تأخیر نمیاندازیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,4,353,'آن روز که (قیامت و زمان مجازات) فرا رسد، هیچ کس جز به اجازه او سخن نمیگوید؛ گروهی بدبختند و گروهی خوشبخت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,4,353,'امّا آنها که بدبخت شدند، در آتشند؛ و برای آنان در آنجا، «زفیر» و «شهیق» [= نالههای طولانی دم و بازدم] است...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,4,353,'جاودانه در آن خواهند ماند، تا آسمانها و زمین برپاست؛ مگر آنچه پروردگارت بخواهد! پروردگارت هر چه را بخواهد انجام میدهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,4,353,'امّا آنها که خوشبخت و سعادتمند شدند، جاودانه در بهشت خواهند ماند، تا آسمانها و زمین برپاست، مگر آنچه پروردگارت بخواهد! بخششی است قطع نشدنی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,4,353,'پس شکّ و تردیدی (در باطل بودن) معبودهایی که آنها میپرستند، به خود راه مده! آنها همانگونه این معبودها را پرستش میکنند که پدرانشان قبلاً میپرستیدند، و ما نصیب آنان را بیکم و کاست خواهیم داد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,4,353,'ما به موسی کتاب آسمانی دادیم؛ سپس در آن اختلاف شد؛ و اگر فرمان قبلی خدا (در زمینه آزمایش و اتمام حجّت بر آنها) نبود، در میان آنان داوری میشد! و آنها (هنوز) در شکّاند، شکّی آمیخته به بدگمانی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,4,353,'و پروردگارت اعمال هر یک را بیکم و کاست به آنها خواهد داد؛ او به آنچه عمل میکنند آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,4,353,'پس همانگونه که فرمان یافتهای، استقامت کن؛ و همچنین کسانی که با تو بسوی خدا آمدهاند (باید استقامت کنند)! و طغیان نکنید، که خداوند آنچه را انجام میدهید میبیند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,4,353,'و بر ظالمان تکیه ننمایید، که موجب میشود آتش شما را فرا گیرد؛ و در آن حال، هیچ ولیّ و سرپرستی جز خدا نخواهید داشت؛ و یاری نمیشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,4,353,'در دو طرف روز، و اوایل شب، نماز را برپا دار؛ چرا که حسنات، سیئات (و آثار آنها را) از بین میبرند؛ این تذکّری است برای کسانی که اهل تذکّرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,4,353,'و شکیبایی کن، که خداوند پاداش نیکوکاران را ضایع نخواهد کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,4,353,'چرا در قرون (و اقوام) قبل از شما، دانشمندان صاحب قدرتی نبودند که از فساد در زمین جلوگیری کنند؟! مگر اندکی از آنها، که نجاتشان دادیم! و آنان که ستم میکردند، از تنعّم و کامجوئی پیروی کردند؛ و گناهکار بودند (و نابود شدند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,4,353,'و چنین نبود که پروردگارت آبادیها را بظلم و ستم نابود کند در حالی که اهلش در صدد اصلاح بوده باشند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,4,353,'و اگر پروردگارت میخواست، همه مردم را یک امّت (بدون هیچ گونه اختلاف) قرار میداد؛ ولی آنها همواره مختلفند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,4,353,'مگر کسی را که پروردگارت رحم کند! و برای همین (پذیرش رحمت) آنها را آفرید! و فرمان پروردگارت قطعی شده که: جهنّم را از همه (سرکشان و طاغیان) جنّ و انس پر خواهم کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,4,353,'ما از هر یک از سرگذشتهای انبیا برای تو بازگو کردیم، تا به وسیله آن، قلبت را آرامش بخشیم؛ و ارادهات قوّی گردد. و در این (اخبار و سرگذشتها،) برای تو حقّ، و برای مؤمنان موعظه و تذکّر آمده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,4,353,'و به آنها که ایمان نمیآورند، بگو: «هر چه در قدرت دارید، انجام دهید! ما هم انجام میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,4,353,'و انتظار بکشید! ما هم منتظریم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,4,353,'و (آگاهی از) غیب (و اسرار نهان) آسمانها و زمین، تنها از آن خداست؛ و همه کارها به سوی او بازمیگردد! پس او را پرستش کن! و بر او توکّل نما! و پروردگارت از کارهایی که میکنید، هرگز غافل نیست!');
+INSERT INTO chapters (id, number, quran_id) VALUES(354,12,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,354,'الر، آن آیات کتاب آشکار است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,354,'ما آن را قرآنی عربی نازل کردیم، شاید شما درک کنید (و بیندیشید)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,354,'ما بهترین سرگذشتها را از طریق این قرآن -که به تو وحی کردیم- بر تو بازگو میکنیم؛ و مسلّماً پیش از این، از آن خبر نداشتی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,354,'(به خاطر بیاور) هنگامی را که یوسف به پدرش گفت: «پدرم! من در خواب دیدم که یازده ستاره، و خورشید و ماه در برابرم سجده میکنند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,354,'گفت: «فرزندم! خواب خود را برای برادرانت بازگو مکن، که برای تو نقشه (خطرناکی) میکشند؛ چرا که شیطان، دشمن آشکار انسان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,354,'و این گونه پروردگارت تو را برمیگزیند؛ و از تعبیر خوابها به تو میآموزد؛ و نعمتش را بر تو و بر خاندان یعقوب تمام و کامل میکند، همانگونه که پیش از این، بر پدرانت ابراهیم و اسحاق تمام کرد؛ به یقین، پروردگار تو دانا و حکیم است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,354,'در (داستان) یوسف و برادرانش، نشانهها (ی هدایت) برای سؤالکنندگان بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,354,'هنگامی که (برادران) گفتند: «یوسف و برادرش [= بنیامین] نزد پدر، از ما محبوبترند؛ در حالی که ما گروه نیرومندی هستیم! مسلّماً پدر ما، در گمراهی آشکاری است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,354,'یوسف را بکشید؛ یا او را به سرزمین دوردستی بیفکنید؛ تا توجه پدر، فقط به شما باشد؛ و بعد از آن، (از گناه خود توبه میکنید؛ و) افراد صالحی خواهید بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,354,'یکی از آنها گفت: «یوسف را نکشید! و اگر میخواهید کاری انجام دهید، او را در نهانگاه چاه بیفکنید؛ تا بعضی از قافلهها او را برگیرند (و با خود به مکان دوری ببرند)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,354,'(و برای انجام این کار، برادران نزد پدر آمدند و) گفتند: «پدرجان! چرا تو درباره (برادرمان) یوسف، به ما اطمینان نمیکنی؟! در حالی که ما خیرخواه او هستیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,354,'فردا او را با ما (به خارج شهر) بفرست، تا غذای کافی بخورد و تفریح کند؛ و ما نگهبان او هستیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,354,'(پدر) گفت: «من از بردن او غمگین میشوم؛ و از این میترسم که گرگ او را بخورد، و شما از او غافل باشید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,354,'گفتند: «با اینکه ما گروه نیرومندی هستیم، اگر گرگ او را بخورد، ما از زیانکاران خواهیم بود (و هرگز چنین چیزی) ممکن نیست!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,354,'هنگامی که او را با خود بردند، و تصمیم گرفتند وی را در مخفیگاه چاه قرار دهند، (سرانجام مقصد خود را عملی ساختند؛) و به او وحی فرستادیم که آنها را در آینده از این کارشان با خبر خواهی ساخت؛ در حالی که آنها نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,354,'(برادران یوسف) شب هنگام، گریان به سراغ پدر آمدند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,354,'گفتند: «ای پدر! ما رفتیم و مشغول مسابقه شدیم، و یوسف را نزد اثاث خود گذاردیم؛ و گرگ او را خورد! تو هرگز سخن ما را باور نخواهی کرد، هر چند راستگو باشیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,354,'و پیراهن او را با خونی دروغین (آغشته ساخته، نزد پدر) آوردند؛ گفت: «هوسهای نفسانی شما این کار را برایتان آراسته! من صبر جمیل (و شکیبائی خالی از ناسپاسی) خواهم داشت؛ و در برابر آنچه میگویید، از خداوند یاری میطلبم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,354,'و (در همین حال) کاروانی فرا رسید؛ و مأمور آب را (به سراغ آب) فرستادند؛ او دلو خود را در چاه افکند؛ (ناگهان) صدا زد: «مژده باد! این کودکی است (زیبا و دوست داشتنی!)» و این امر را بعنوان یک سرمایه از دیگران مخفی داشتند. و خداوند به آنچه آنها انجام میدادند، آگاه بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,354,'و (سرانجام،) او را به بهای کمی -چند درهم- فروختند؛ و نسبت به (فروختن) او، بی رغبت بودند (؛ چرا که میترسیدند رازشان فاش شود).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,354,'و آن کس که او را از سرزمین مصر خرید [= عزیز مصر]، به همسرش گفت: «مقام وی را گرامی دار، شاید برای ما سودمند باشد؛ و یا او را بعنوان فرزند انتخاب کنیم!» و اینچنین یوسف را در آن سرزمین متمکّن ساختیم! (ما این کار را کردیم، تا او را بزرگ داریم؛ و) از علم تعبیر خواب به او بیاموزیم؛ خداوند بر کار خود پیروز است، ولی بیشتر مردم نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,354,'و هنگامی که به بلوغ و قوّت رسید، ما «حکم» [= نبوّت] و «علم» به او دادیم؛ و اینچنین نیکوکاران را پاداش میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,354,'و آن زن که یوسف در خانه او بود، از او تمنّای کامجویی کرد؛ درها را بست و گفت: «بیا (بسوی آنچه برای تو مهیاست!)» (یوسف) گفت: «پناه میبرم به خدا! او [= عزیز مصر] صاحب نعمت من است؛ مقام مرا گرامی داشته؛ (آیا ممکن است به او ظلم و خیانت کنم؟!) مسلّماً ظالمان رستگار نمیشوند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,354,'آن زن قصد او کرد؛ و او نیز -اگر برهان پروردگار را نمیدید- قصد وی مینمود! اینچنین کردیم تا بدی و فحشا را از او دور سازیم؛ چرا که او از بندگان مخلص ما بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,354,'و هر دو به سوی در، دویدند (در حالی که همسر عزیز، یوسف را تعقیب میکرد)؛ و پیراهن او را از پشت (کشید و) پاره کرد. و در این هنگام، آقای آن زن را دم در یافتند! آن زن گفت: «کیفر کسی که بخواهد نسبت به اهل تو خیانت کند، جز زندان و یا عذاب دردناک، چه خواهد بود؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,354,'(یوسف) گفت: «او مرا با اصرار به سوی خود دعوت کرد!» و در این هنگام، شاهدی از خانواده آن زن شهادت داد که: «اگر پیراهن او از پیش رو پاره شده، آن آن راست میگوید، و او از دروغگویان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,354,'و اگر پیراهنش از پشت پاره شده، آن زن دروغ میگوید، و او از راستگویان است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,354,'هنگامی که (عزیز مصر) دید پیراهن او [= یوسف] از پشت پاره شده، گفت: «این از مکر و حیله شما زنان است؛ که مکر و حیله شما زنان، عظیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,354,'یوسف از این موضوع، صرفنظر کن! و تو ای زن نیز از گناهت استغفار کن، که از خطاکاران بودی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,354,'(این جریان در شهر منعکس شد؛) گروهی از زنان شهر گفتند: «همسر عزیز، جوانش [= غلامش] را بسوی خود دعوت میکند! عشق این جوان، در اعماق قلبش نفوذ کرده، ما او را در گمراهی آشکاری میبینیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,354,'هنگامی که (همسر عزیز) از فکر آنها باخبر شد، به سراغشان فرستاد (و از آنها دعوت کرد)؛ و برای آنها پشتی (گرانبها، و مجلس باشکوهی) فراهم ساخت؛ و به دست هر کدام، چاقویی (برای بریدن میوه) داد؛ و در این موقع (به یوسف) گفت: «وارد مجلس آنان شو!» هنگامی که چشمشان به او افتاد، او را بسیار بزرگ (و زیبا) شمردند؛ و (بیتوجه) دستهای خود را بریدند؛ و گفتند: «منزّه است خدا! این بشر نیست؛ این یک فرشته بزرگوار است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,354,'(همسر عزیز) گفت: «این همان کسی است که بخاطر (عشق) او مرا سرزنش کردید! (آری،) من او را به خویشتن دعوت کردم؛ و او خودداری کرد! و اگر آنچه را دستور میدهم انجام ندهد، به زندان خواهد افتاد؛ و مسلّماً خوار و ذلیل خواهد شد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,354,'(یوسف) گفت: «پروردگارا! زندان نزد من محبوبتر است از آنچه اینها مرا بسوی آن میخوانند! و اگر مکر و نیرنگ آنها را از من باز نگردانی، بسوی آنان متمایل خواهم شد و از جاهلان خواهم بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,354,'پروردگارش دعای او را اجابت کرد؛ و مکر آنان را از او بگردانید؛ چرا که او شنوا و داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,354,'و بعد از آنکه نشانههای (پاکی یوسف) را دیدند، تصمیم گرفتند او را تا مدّتی زندانی کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,354,'و دو جوان، همراه او وارد زندان شدند؛ یکی از آن دو گفت: «من در خواب دیدم که (انگور برای) شراب میفشارم!» و دیگری گفت: «من در خواب دیدم که نان بر سرم حمل میکنم؛ و پرندگان از آن میخورند؛ ما را از تعبیر این خواب آگاه کن که تو را از نیکوکاران میبینیم.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,354,'(یوسف) گفت: «پیش از آنکه جیره غذایی شما فرا رسد، شما را از تعبیر خوابتان آگاه خواهم ساخت. این، از دانشی است که پروردگارم به من آموخته است. من آیین قومی را که به خدا ایمان ندارند، و به سرای دیگر کافرند، ترک گفتم (و شایسته چنین موهبتی شدم)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,354,'من از آیین پدرانم ابراهیم و اسحاق و یعقوب پیروی کردم! برای ما شایسته نبود چیزی را همتای خدا قرار دهیم؛ این از فضل خدا بر ما و بر مردم است؛ ولی بیشتر مردم شکرگزاری نمیکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,354,'ای دوستان زندانی من! آیا خدایان پراکنده بهترند، یا خداوند یکتای پیروز؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,354,'این معبودهایی که غیر از خدا میپرستید، چیزی جز اسمهائی (بیمسمّا) که شما و پدرانتان آنها را خدا نامیدهاید، نیست؛ خداوند هیچ دلیلی بر آن نازل نکرده؛ حکم تنها از آن خداست؛ فرمان داده که غیر از او را نپرستید! این است آیین پابرجا؛ ولی بیشتر مردم نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,354,'ای دوستان زندانی من! امّا یکی از شما (دو نفر، آزاد میشود؛ و) ساقی شراب برای صاحب خود خواهد شد؛ و امّا دیگری به دار آویخته میشود؛ و پرندگان از سر او میخورند! و مطلبی که درباره آن (از من) نظر خواستید، قطعی و حتمی است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,354,'و به آن یکی از آن دو نفر، که میدانست رهایی مییابد، گفت: «مرا نزد صاحبت [= سلطان مصر] یادآوری کن!» ولی شیطان یادآوری او را نزد صاحبش از خاطر وی برد؛ و بدنبال آن، (یوسف) چند سال در زندان باقی ماند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,354,'پادشاه گفت: «من در خواب دیدم هفت گاو چاق را که هفت گاو لاغر آنها را میخورند؛ و هفت خوشه سبز و هفت خوشه خشکیده؛ (که خشکیدهها بر سبزها پیچیدند؛ و آنها را از بین بردند.) ای جمعیّت اشراف! درباره خواب من نظر دهید، اگر خواب را تعبیر میکنید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,354,'گفتند: «خوابهای پریشان و پراکندهای است؛ و ما از تعبیر این گونه خوابها آگاه نیستیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,354,'و یکی از آن دو که نجات یافته بود -و بعد از مدّتی به خاطرش آمد- گفت: «من تأویل آن را به شما خبر میدهم؛ مرا (به سراغ آن جوان زندانی) بفرستید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,354,'(او به زندان آمد، و چنین گفت:) یوسف، ای مرد بسیار راستگو! درباره این خواب اظهار نظر کن که هفت گاو چاق را هفت گاو لاغر میخورند؛ و هفت خوشه تر، و هفت خوشه خشکیده؛ تا من بسوی مردم بازگردم، شاید (از تعبیر این خواب) آگاه شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,354,'گفت: «هفت سال با جدیّت زراعت میکنید؛ و آنچه را درو کردید، جز کمی که میخورید، در خوشههای خود باقی بگذارید (و ذخیره نمایید).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,354,'پس از آن، هفت سال سخت (و خشکی و قحطی) میآید، که آنچه را برای آن سالها ذخیره کردهاید، میخورند؛ جز کمی که (برای بذر) ذخیره خواهید کرد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,354,'سپس سالی فرامیرسد که باران فراوان نصیب مردم میشود؛ و در آن سال، مردم عصاره (میوهها و دانههای روغنی را) میگیرند (و سال پر برکتی است.)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,354,'پادشاه گفت: «او را نزد من آورید!» ولی هنگامی که فرستاده او نزد وی [= یوسف] آمد گفت: «به سوی صاحبت بازگرد، و از او بپرس ماجرای زنانی که دستهای خود را بریدند چه بود؟ که خدای من به نیرنگ آنها آگاه است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,354,'(پادشاه آن زنان را طلبید و) گفت: «به هنگامی که یوسف را به سوی خویش دعوت کردید، جریان کار شما چه بود؟» گفتند: «منزّه است خدا، ما هیچ عیبی در او نیافتیم!» (در این هنگام) همسر عزیز گفت: «الآن حق آشکار گشت! من بودم که او را به سوی خود دعوت کردم؛ و او از راستگویان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,354,'این سخن را بخاطر آن گفتم تا بداند من در غیاب به او خیانت نکردم؛ و خداوند مکر خائنان را هدایت نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,354,'من هرگز خودم را تبرئه نمیکنم، که نفس (سرکش) بسیار به بدیها امر میکند؛ مگر آنچه را پروردگارم رحم کند! پروردگارم آمرزنده و مهربان است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,354,'پادشاه گفت: «او [= یوسف] را نزد من آورید، تا وی را مخصوص خود گردانم!» هنگامی که (یوسف نزد وی آمد و) با او صحبت کرد، (پادشاه به عقل و درایت او پی برد؛ و) گفت: «تو امروز نزد ما جایگاهی والا داری، و مورد اعتماد هستی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,354,'(یوسف) گفت: «مرا سرپرست خزائن سرزمین (مصر) قرار ده، که نگهدارنده و آگاهم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,354,'و اینگونه ما به یوسف در سرزمین (مصر) قدرت دادیم، که هر جا میخواست در آن منزل میگزید (و تصرّف میکرد)! ما رحمت خود را به هر کس بخواهیم (و شایسته بدانیم) میبخشیم؛ و پاداش نیکوکاران را ضایع نمیکنیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,354,'(امّا) پاداش آخرت، برای کسانی که ایمان آورده و پرهیزگاری داشتند، بهتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,354,'(سرزمین کنعان را قحطی فرا گرفت؛) برادران یوسف (در پی موادّ غذایی به مصر) آمدند؛ و بر او وارد شدند. او آنان را شناخت؛ ولی آنها او را نشناختند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,354,'و هنگامی که (یوسف) بارهای آنان را آماده ساخت، گفت: «(نوبت آینده) آن برادری را که از پدر دارید، نزد من آورید! آیا نمیبینید من حق پیمانه را ادا میکنم، و من بهترین میزبانان هستم؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,354,'و اگر او را نزد من نیاورید، نه کیل (و پیمانهای از غلّه) نزد من خواهید داشت؛ و نه (اصلاً) به من نزدیک شوید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,354,'گفتند: «ما با پدرش گفتگو خواهیم کرد؛ (و سعی میکنیم موافقتش را جلب نمائیم؛) و ما این کار را خواهیم کرد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,354,'(سپس) به کارگزاران خود گفت: «آنچه را بعنوان قیمت پرداختهاند، در بارهایشان بگذارید! شاید پس از بازگشت به خانواده خویش، آن را بشناسند؛ و شاید برگردند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,354,'هنگامی که به سوی پدرشان بازگشتند، گفتند: «ای پدر! دستور داده شده که (بدون حضور برادرمان بنیامین) پیمانهای (از غلّه) به ما ندهند؛ پس برادرمان را با ما بفرست، تا سهمی (از غلّه) دریافت داریم؛ و ما او را محافظت خواهیم کرد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,354,'گفت: «آیا نسبت به او به شما اطمینان کنم همانگونه که نسبت به برادرش (یوسف) اطمینان کردم (و دیدید چه شد)؟! و (در هر حال،) خداوند بهترین حافظ، و مهربانترین مهربانان است»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,354,'و هنگامی که متاع خود را گشودند، دیدند سرمایه آنها به آنها بازگردانده شده! گفتند: «پدر! ما دیگر چه میخواهیم؟! این سرمایه ماست که به ما باز پس گردانده شده است! (پس چه بهتر که برادر را با ما بفرستی؛) و ما برای خانواده خویش موادّ غذایی میآوریم؛ و برادرمان را حفظ خواهیم کرد؛ و یک بار شتر زیادتر دریافت خواهیم داشت؛ این پیمانه (بار) کوچکی است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,354,'گفت: «من هرگز او را با شما نخواهم فرستاد، تا پیمان مؤکّد الهی بدهید که او را حتماً نزد من خواهید آورد! مگر اینکه (بر اثر مرگ یا علّت دیگر،) قدرت از شما سلب گردد. و هنگامی که آنها پیمان استوار خود را در اختیار او گذاردند، گفت: «خداوند، نسبت به آنچه میگوییم، ناظر و نگهبان است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,354,'و (هنگامی که میخواستند حرکت کنند، یعقوب) گفت: «فرزندان من! از یک در وارد نشوید؛ بلکه از درهای متفرّق وارد گردید (تا توجه مردم به سوی شما جلب نشود)! و (من با این دستور،) نمیتوانم حادثهای را که از سوی خدا حتمی است، از شما دفع کنم! حکم و فرمان، تنها از آنِ خداست! بر او توکّل کردهام؛ و همه متوکّلان باید بر او توکّل کنند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,354,'و هنگامی که از همان طریق که پدر به آنها دستور داده بود وارد شدند، این کار هیچ حادثه حتمی الهی را نمیتوانست از آنها دور سازد، جز حاجتی در دل یعقوب (که از این طریق) انجام شد (و خاطرش آرام گرفت)؛ و او به خاطر تعلیمی که ما به او دادیم، علم فراوانی داشت؛ ولی بیشتر مردم نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,354,'هنگامی که (برادران) بر یوسف وارد شدند، برادرش را نزد خود جای داد و گفت: «من برادر تو هستم، از آنچه آنها انجام میدادند، غمگین و ناراحت نباش!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,354,'و هنگامی که (مأمور یوسف) بارهای آنها را بست، ظرف آبخوری پادشاه را در بارِ برادرش گذاشت؛ سپس کسی صدا زد؛ «ای اهل قافله، شما دزد هستید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,354,'آنها رو به سوی او کردند و گفتند: «چه چیز گم کردهاید؟»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,354,'گفتند: «پیمانه پادشاه را! و هر کس آن را بیاورد، یک بار شتر (غلّه) به او داده میشود؛ و من ضامن این (پاداش) هستم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,354,'گفتند: «به خدا سوگند شما میدانید ما نیامدهایم که در این سرزمین فساد کنیم؛ و ما (هرگز) دزد نبودهایم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,354,'آنها گفتند: «اگر دروغگو باشید، کیفرش چیست؟»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,354,'گفتند: «هر کس (آن پیمانه) در بارِ او پیدا شود، خودش کیفر آن خواهد بود؛ (و بخاطر این کار، برده شما خواهد شد؛) ما اینگونه ستمگران را کیفر میدهیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,354,'در این هنگام، (یوسف) قبل از بار برادرش، به کاوش بارهای آنها پرداخت؛ سپس آن را از بارِ برادرش بیرون آورد؛ این گونه راه چاره را به یوسف یاد دادیم! او هرگز نمیتوانست برادرش را مطابق آیین پادشاه (مصر) بگیرد، مگر آنکه خدا بخواهد! درجات هر کس را بخواهیم بالا میبریم؛ و برتر از هر صاحب علمی، عالمی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,354,'(برادران) گفتند: «اگر او [بنیامین] دزدی کند، (جای تعجب نیست؛) برادرش (یوسف) نیز قبل از او دزدی کرد» یوسف (سخت ناراحت شد، و) این (ناراحتی) را در درون خود پنهان داشت، و برای آنها آشکار نکرد؛ (همین اندازه) گفت: «شما (از دیدگاه من،) از نظر منزلت بدّترین مردمید! و خدا از آنچه توصیف میکنید، آگاهتر است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,354,'گفتند: «ای عزیز! او پدر پیری دارد (که سخت ناراحت میشود)؛ یکی از ما را به جای او بگیر؛ ما تو را از نیکوکاران میبینیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,354,'گفت: «پناه بر خدا که ما غیر از آن کس که متاع خود را نزد او یافتهایم بگیریم؛ در آن صورت، از ظالمان خواهیم بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,354,'هنگامی که (برادران) از او مأیوس شدند، به کناری رفتند و با هم به نجوا پرداختند؛ (برادر) بزرگشان گفت: «آیا نمیدانید پدرتان از شما پیمان الهی گرفته؛ و پیش از این درباره یوسف کوتاهی کردید؟! من از این سرزمین حرکت نمیکنم، تا پدرم به من اجازه دهد؛ یا خدا درباره من داوری کند، که او بهترین حکمکنندگان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,354,'شما به سوی پدرتان بازگردید و بگویید: پدر (جان)، پسرت دزدی کرد! و ما جز به آنچه میدانستیم گواهی ندادیم؛ و ما از غیب آگاه نبودیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,354,'(و اگر اطمینان نداری،) از آن شهر که در آن بودیم سؤال کن، و نیز از آن قافله که با آن آمدیم (بپرس)! و ما (در گفتار خود) صادق هستیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,354,'(یعقوب) گفت: «(هوای) نفس شما، مسأله را چنین در نظرتان آراسته است! من صبر میکنم، صبری زیبا (و خالی از کفران)! امیدوارم خداوند همه آنها را به من بازگرداند؛ چرا که او دانا و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,354,'و از آنها روی برگرداند و گفت: «وا اسفا بر یوسف!» و چشمان او از اندوه سفید شد، اما خشم خود را فرو میبرد (و هرگز کفران نمیکرد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,354,'گفتند: «به خدا تو آنقدر یاد یوسف میکنی تا در آستانه مرگ قرار گیری، یا هلاک گردی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,354,'گفت: «من غم و اندوهم را تنها به خدا میگویم (و شکایت نزد او میبرم)! و از خدا چیزهایی میدانم که شما نمیدانید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,354,'پسرانم! بروید، و از یوسف و برادرش جستجو کنید؛ و از رحمت خدا مأیوس نشوید؛ که تنها گروه کافران، از رحمت خدا مأیوس میشوند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,354,'هنگامی که آنها بر او [= یوسف] وارد شدند، گفتند: «ای عزیز! ما و خاندان ما را ناراحتی فرا گرفته، و متاع کمی (برای خرید موادّ غذایی) با خود آوردهایم؛ پیمانه را برای ما کامل کن؛ و بر ما تصدّق و بخشش نما، که خداوند بخشندگان را پاداش میدهد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,354,'گفت: «آیا دانستید با یوسف و برادرش چه کردید، آنگاه که جاهل بودید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,354,'گفتند: «آیا تو همان یوسفی؟!» گفت: «(آری،) من یوسفم، و این برادر من است! خداوند بر ما منّت گذارد؛ هر کس تقوا پیشه کند، و شکیبایی و استقامت نماید، (سرانجام پیروز میشود؛) چرا که خداوند پاداش نیکوکاران را ضایع نمیکند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,354,'گفتند: «به خدا سوگند، خداوند تو را بر ما برتری بخشیده؛ و ما خطاکار بودیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,354,'(یوسف) گفت: «امروز ملامت و توبیخی بر شما نیست! خداوند شما را میبخشد؛ و او مهربانترین مهربانان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,354,'این پیراهن مرا ببرید، و بر صورت پدرم بیندازید، بینا میشود! و همه نزدیکان خود را نزد من بیاورید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,354,'هنگامی که کاروان (از سرزمین مصر) جدا شد، پدرشان [= یعقوب] گفت: «من بوی یوسف را احساس میکنم، اگر مرا به نادانی و کم عقلی نسبت ندهید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,354,'گفتند: «به خدا تو در همان گمراهی سابقت هستی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,354,'امّا هنگامی که بشارت دهنده فرا رسید، آن (پیراهن) را بر صورت او افکند؛ ناگهان بینا شد! گفت: «آیا به شما نگفتم من از خدا چیزهایی میدانم که شما نمیدانید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,354,'گفتند: «پدر! از خدا آمرزش گناهان ما را بخواه، که ما خطاکار بودیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,354,'گفت: «بزودی برای شما از پروردگارم آمرزش میطلبم، که او آمرزنده و مهربان است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,354,'و هنگامی که بر یوسف وارد شدند، او پدر و مادر خود را در آغوش گرفت، و گفت: «همگی داخل مصر شوید، که انشاء الله در امن و امان خواهید بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,4,354,'و پدر و مادر خود را بر تخت نشاند؛ و همگی بخاطر او به سجده افتادند؛ و گفت: «پدر! این تعبیر خوابی است که قبلاً دیدم؛ پروردگارم آن را حقّ قرار داد! و او به من نیکی کرد هنگامی که مرا از زندان بیرون آورد، و شما را از آن بیابان (به اینجا) آورد بعد از آنکه شیطان، میان من و برادرانم فساد کرد. پروردگارم نسبت به آنچه میخواهد (و شایسته میداند،) صاحب لطف است؛ چرا که او دانا و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,4,354,'پروردگارا! بخشی (عظیم) از حکومت به من بخشیدی، و مرا از علم تعبیر خوابها آگاه ساختی! ای آفریننده آسمانها و زمین! تو ولیّ و سرپرست من در دنیا و آخرت هستی، مرا مسلمان بمیران؛ و به صالحان ملحق فرما!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,4,354,'این از خبرهای غیب است که به تو وحی میفرستیم! تو (هرگز) نزد آنها نبودی هنگامی که تصمیم میگرفتند و نقشه میکشیدند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,4,354,'و بیشتر مردم، هر چند اصرار داشته باشی، ایمان نمیآورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,4,354,'و تو (هرگز) از آنها پاداشی نمیطلبی؛ آن نیست مگر تذکّری برای جهانیان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,4,354,'و چه بسیار نشانهای (از خدا) در آسمانها و زمین که آنها از کنارش میگذرند، و از آن رویگردانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,4,354,'و بیشتر آنها که مدعی ایمان به خدا هستند، مشرکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,4,354,'آیا ایمن از آنند که عذاب فراگیری از سوی خدا به سراغ آنان بیاید، یا ساعت رستاخیز ناگهان فرارسد، در حالی که متوجّه نیستند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,4,354,'بگو: «این راه من است من و پیروانم، و با بصیرت کامل، همه مردم را به سوی خدا دعوت میکنیم! منزّه است خدا! و من از مشرکان نیستم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,4,354,'و ما نفرستادیم پیش از تو، جز مردانی از اهل آبادیها که به آنها وحی میکردیم! آیا (مخالفان دعوت تو،) در زمین سیر نکردند تا ببینند عاقبت کسانی که پیش از آنها بودند چه شد؟! و سرای آخرت برای پرهیزکاران بهتر است! آیا فکر نمیکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,4,354,'(پیامبران به دعوت خود، و دشمنان آنها به مخالفت خود همچنان ادامه دادند) تا آنگاه که رسولان مأیوس شدند، و (مردم) گمان کردند که به آنان دروغ گفته شده است؛ در این هنگام، یاری ما به سراغ آنها آمد؛ آنان را که خواستیم نجات یافتند؛ و مجازات و عذاب ما از قوم گنهکار بازگردانده نمیشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,4,354,'در سرگذشت آنها درس عبرتی برای صاحبان اندیشه بود! اینها داستان دروغین نبود؛ بلکه (وحی آسمانی است، و) هماهنگ است با آنچه پیش روی او (از کتب آسمانی پیشین) قرار دارد؛ و شرح هر چیزی (که پایه سعادت انسان است)؛ و هدایت و رحمتی است برای گروهی که ایمان میآورند!');
+INSERT INTO chapters (id, number, quran_id) VALUES(355,13,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,355,'المر، اینها آیات کتاب (آسمانی) است؛ و آنچه از طرف پروردگارت بر تو نازل شده، حقّ است؛ ولی بیشتر مردم ایمان نمیآورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,355,'خدا همان کسی است که آسمانها را، بدون ستونهایی که برای شما دیدنی باشد، برافراشت، سپس بر عرش استیلا یافت (و زمام تدبیر جهان را در کف قدرت گرفت)؛ و خورشید و ماه را مسخّر ساخت، که هر کدام تا زمان معینی حرکت دارند! کارها را او تدبیر میکند؛ آیات را (برای شما) تشریح مینماید؛ شاید به لقای پروردگارتان یقین پیدا کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,355,'و او کسی است که زمین را گسترد؛ و در آن کوهها و نهرهایی قرار داد؛ و در آن از تمام میوهها دو جفت آفرید؛ (پرده سیاه) شب را بر روز میپوشاند؛ در اینها آیاتی است برای گروهی که تفکر میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,355,'و در روی زمین، قطعاتی در کنار هم قرار دارد که با هم متفاوتند؛ و (نیز) باغهایی از انگور و زراعت و نخلها، (و درختان میوه گوناگون) که گاه بر یک پایه میرویند و گاه بر دو پایه؛ (و عجیبتر آنکه) همه آنها از یک آب سیراب میشوند! و با این حال، بعضی از آنها را از جهت میوه بر دیگری برتری میدهیم؛ در اینها نشانههایی است برای گروهی که عقل خویش را به کار میگیرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,355,'و اگر (از چیزی) تعجب میکنی، عجیب گفتار آنهاست که میگویند: «آیا هنگامی که ما خاک شدیم، (بار دیگر زنده میشویم و) به خلقت جدیدی بازمیگردیم؟!» آنها کسانی هستند که به پروردگارشان کافر شدهاند؛ و آنان غل و زنجیرها در گردنشان است؛ و آنها اهل دوزخند، و جاودانه در آن خواهند ماند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,355,'آنها پیش از حسنه (و رحمت)، از تو تقاضای شتاب در سیّئه (و عذاب) میکنند؛ با اینکه پیش از آنها بلاهای عبرت انگیز نازل شده است! و پروردگار تو نسبت به مردم -با اینکه ظلم میکنند- دارای مغفرت است؛ و (در عین حال،) پروردگارت دارای عذاب شدید است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,355,'کسانی که کافر شدند میگویند: «چرا آیه (و معجزهای) از پروردگارش بر او نازل نشده؟!» تو فقط بیم دهندهای! و برای هر گروهی هدایت کنندهای است (؛ و اینها همه بهانه است، نه برای جستجوی حقیقت)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,355,'خدا از جنینهایی که هر (انسان یا حیوان) مادّهای حمل میکند آگاه است؛ و نیز از آنچه رحمها کم میکنند (و پیش از موعد مقرّر میزایند)، و هم از آنچه افزون میکنند (و بعد از موقع میزایند)؛ و هر چیز نزد او مقدار معینی دارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,355,'او از غیب و شهود آگاه، و بزرگ و متعالی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,355,'برای او یکسان است کسانی از شما که پنهانی سخن بگویند، یا آن را آشکار سازند؛ و کسانی که شبانگاه مخفیانه حرکت میکنند، یا در روشنایی روز.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,355,'برای انسان، مأمورانی است که پی در پی، از پیش رو، و از پشت سرش او را از فرمان خدا [= حوادث غیر حتمی] حفظ میکنند؛ (امّا) خداوند سرنوشت هیچ قوم (و ملّتی) را تغییر نمیدهد مگر آنکه آنان آنچه را در خودشان است تغییر دهند! و هنگامی که خدا اراده سوئی به قومی (بخاطر اعمالشان) کند، هیچ چیز مانع آن نخواهد شد؛ و جز خدا، سرپرستی نخواهند داشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,355,'او کسی است که برق را به شما نشان میدهد، که هم مایه ترس است و هم مایه امید؛ و ابرهای سنگینبار ایجاد میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,355,'و رعد، تسبیح و حمد او میگوید؛ و (نیز) فرشتگان از ترس او! و صاعقهها را میفرستد؛ و هر کس را بخواهد گرفتار آن میسازد، (در حالی که آنها با مشاهده این همه آیات الهی، باز هم) درباره خدا به مجادله مشغولند! و او قدرتی بیانتها (و مجازاتی دردناک) دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,355,'دعوت حق از آن اوست! و کسانی را که (مشرکان) غیر از خدا میخوانند، (هرگز) به دعوت آنها پاسخ نمیگویند! آنها همچون کسی هستند که کفهای (دست) خود را به سوی آب میگشاید تا آب به دهانش برسد، و هرگز نخواهد رسید! و دعای کافران، جز در ضلال (و گمراهی) نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,355,'تمام کسانی که در آسمانها و زمین هستند -از روی اطاعت یا اکراه- و همچنین سایههایشان، هر صبح و عصر برای خدا سجده میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,355,'بگو: «چه کسی پروردگار آسمانها و زمین است؟» بگو: «اللّه!» (سپس) بگو: «آیا اولیا (و خدایانی) غیر از او برای خود برگزیدهاید که (حتّی) مالک سود و زیان خود نیستند (تا چه رسد به شما؟!)» بگو: «آیا نابینا و بینا یکسانند؟! یا ظلمتها و نور برابرند؟! آیا آنها همتایانی برای خدا قرار دادند بخاطر اینکه آنان همانند خدا آفرینشی داشتند، و این آفرینشها بر آنها مشتبه شده است؟!» بگو: «خدا خالق همه چیز است؛ و اوست یکتا و پیروز!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,355,'خداوند از آسمان آبی فرستاد؛ و از هر درّه و رودخانهای به اندازه آنها سیلابی جاری شد؛ سپس سیل بر روی خود کفی حمل کرد؛ و از آنچه (در کورهها،) برای به دست آوردن زینت آلات یا وسایل زندگی، آتش روی آن روشن میکنند نیز کفهایی مانند آن به وجود میآید -خداوند، حق و باطل را چنین مثل میزند!- امّا کفها به بیرون پرتاب میشوند، ولی آنچه به مردم سود میرساند [= آب یا فلز خالص] در زمین میماند؛ خداوند اینچنین مثال میزند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,355,'برای آنها که دعوت پروردگارشان را اجابت کردند، (سرانجام و) نتیجه نیکوتر است؛ و کسانی که دعوت او را اجابت نکردند، (آنچنان در وحشت عذاب الهی فرو میروند، که) اگر تمام آنچه روی زمین است، و همانندش، از آن آنها باشد، همه را برای رهایی از عذاب میدهند! (ولی از آنها پذیرفته نخواهد شد!) برای آنها حساب بدی است؛ و جایگاهشان جهنم، و چه بد جایگاهی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,355,'آیا کسی که میداند آنچه از طرف پروردگارت بر تو نازل شده حق است، همانند کسی است که نابیناست؟! تنها صاحبان اندیشه متذکّر میشوند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,355,'آنها که به عهد الهی وفا میکنند، و پیمان را نمیشکنند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,355,'و آنها که پیوندهایی را که خدا دستور به برقراری آن داده، برقرار میدارند؛ و از پروردگارشان میترسند؛ و از بدی حساب (روز قیامت) بیم دارند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,355,'و آنها که بخاطر ذات (پاک) پروردگارشان شکیبایی میکنند؛ و نماز را برپا میدارند؛ و از آنچه به آنها روزی دادهایم، در پنهان و آشکار، انفاق میکنند؛ و با حسنات، سیئات را از میان میبرند؛ پایان نیک سرای دیگر، از آن آنهاست...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,355,'(همان) باغهای جاویدان بهشتی که وارد آن میشوند؛ و همچنین پدران و همسران و فرزندان صالح آنها؛ و فرشتگان از هر دری بر آنان وارد میگردند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,355,'(و به آنان میگویند:) سلام بر شما بخاطر صبر و استقامتتان! چه نیکوست سرانجام آن سرا (ی جاویدان)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,355,'آنها که عهد الهی را پس از محکم کردن میشکنند، و پیوندهایی را که خدا دستور به برقراری آن داده قطع میکنند، و در روی زمین فساد مینمایند، لعنت برای آنهاست؛ و بدی (و مجازات) سرای آخرت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,355,'خدا روزی را برای هر کس بخواهد (و شایسته بداند) وسیع، برای هر کس بخواهد (و مصلحت بداند،) تنگ قرارمیدهد؛ ولی آنها [= کافران] به زندگی دنیا، شاد (و خوشحال) شدند؛ در حالی که زندگی دنیا در برابر آخرت، متاع ناچیزی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,355,'کسانی که کافر شدند میگویند: «چرا آیه (و معجزه) ای از پروردگارش بر او نازل نشده است؟!» بگو: «خداوند هر کس را بخواهد گمراه، و هر کس را که بازگردد، به سوی خودش هدایت میکند! (کمبودی در معجزهها نیست؛ لجاجت آنها مانع است!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,355,'آنها کسانی هستند که ایمان آوردهاند، و دلهایشان به یاد خدا مطمئن (و آرام) است؛ آگاه باشید، تنها با یاد خدا دلها آرامش مییابد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,355,'آنها که ایمان آوردند و کارهای شایسته انجام دادند، پاکیزهترین (زندگی) نصیبشان است؛ و بهترین سرانجامها!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,355,'همان گونه (که پیامبران پیشین را مبعوث کردیم،) تو را به میان امّتی فرستادیم که پیش از آنها امّتهای دیگری آمدند و رفتند، تا آنچه را به تو وحی نمودهایم بر آنان بخوانی، در حالی که به رحمان [= خداوندی که رحمتش همگان را فراگرفته] کفر میورزند؛ بگو: «او پروردگار من است! معبودی جز او نیست! بر او توکّل کردم؛ و بازگشتم بسوی اوست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,355,'اگر بوسیله قرآن، کوهها به حرکت درآیند یا زمینها قطعه قطعه شوند، یا بوسیله آن با مردگان سخن گفته شود، (باز هم ایمان نخواهند آورد!) ولی همه کارها در اختیار خداست! آیا آنها که ایمان آوردهاند نمیدانند که اگر خدا بخواهد همه مردم را (به اجبار) هدایت میکند (امّا هدایت اجباری سودی ندارد)! و پیوسته بلاهای کوبندهای بر کافران بخاطر اعمالشان وارد میشود، و یا بنزدیکی خانه آنها فرود میآید، تا وعده (نهایی) خدا فرا رسد؛ به یقین خداوند در وعد؛ خود تخلّف نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,355,'(تنها تو را استهزا نکردند،) پیامبران پیش از تو را نیز مورد استهزا قرار دادند؛ من به کافران مهلت دادم؛ سپس آنها را گرفتم؛ دیدی مجازات من چگونه بود؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,355,'آیا کسی که بالای سر همه ایستاده، (و حافظ و نگهبان و مراقب همه است،) و اعمال همه را میبییند (، همچون کسی است که هیچ یک از این صفات را ندارد)؟! آنان برای خدا همتایانی قرار دادند؛ بگو: «آنها را نام ببرید! آیا چیزی را به او خبر میدهید که از وجود آن در روی زمین بیخبر است، یا سخنان ظاهری (و تو خالی) میگویید؟!» (نه، شریکی برای خدا وجود ندارد؛) بلکه در نظر کافران، دروغهایشان زینت داده شده، (و بر اثر ناپاکی درون، چنین میپندارند که واقعیتی دارد؛) و آنها از راه (خدا) بازداشته شدهاند؛ و هر کس را خدا گمراه کند، راهنمایی برای او وجود نخواهد داشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,355,'در دنیا، برای آنها عذابی (دردناک) است؛ و عذاب آخرت سختتر است؛ و در برابر (عذاب) خدا، هیچ کس نمیتواند آنها را نگه دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,355,'توصیف بهشتی که به پرهیزگاران وعده داده شده، (این است که) نهرهای آب از زیر درختانش جاری است، میوه آن همیشگی، و سایهاش دائمی است؛ این سرانجام کسانی است که پرهیزگاری پیشه کردند؛ و سرانجام کافران، آتش است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,355,'کسانی که کتاب آسمانی به آنان دادهایم، از آنچه بر تو نازل شده، خوشحالند؛ و بعضی از احزاب (و گروهها)، قسمتی از آن را انکار میکنند؛ بگو: «من مأمورم که «اللّه» را بپرستم؛ و شریکی برای او قائل نشوم! به سوی او دعوت میکنم؛ و بازگشت من بسوی اوست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,355,'همانگونه (که به پیامبران پیشین کتاب آسمانی دادیم،) بر تو نیز این (قرآن) را بعنوان فرمان روشن و صریحی نازل کردیم؛ و اگر از هوسهای آنان -بعد از آنکه آگاهی برای تو آمده- پیروی کنی، هیچ کس در برابر خدا، از تو حمایت و جلوگیری نخواهد کرد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,355,'ما پیش از تو (نیز) رسولانی فرستادیم؛ و برای آنها همسران و فرزندانی قرار دادیم؛ و هیچ رسولی نمیتوانست ا (ز پیش خود) معجزهای بیاورد، مگر بفرمان خدا! هر زمانی نوشتهای دارد (و برای هر کاری، موعدی مقرّر است)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,355,'خداوند هر چه را بخواهد محو، و هر چه را بخواهد اثبات میکند؛ و «امّ الکتاب» [= لوح محفوظ] نزد اوست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,355,'و اگر پارهای از مجازاتها را که به آنها وعده میدهیم به تو نشان دهیم، یا (پیش از فرا رسیدن این مجازاتها) تو را بمیرانیم، در هر حال تو فقط مأمور ابلاغ هستی؛ و حساب (آنها) برماست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,355,'آیا ندیدند که ما پیوسته به سراغ زمین میآییم و از اطراف (و جوانب) آن کم میکنیم؟! (و جامعهها، تمدّنها، و دانشمندان تدریجاً از میان میروند.) و خداوند حکومت میکند؛ و هیچ کس را یارای جلوگیری یا ردّ احکام او نیست؛ و او سریع الحساب است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,355,'پیش از آنان نیز کسانی طرحها و نقشهها کشیدند؛ ولی تمام طرحها و نقشهها از آن خداست! او از کار هر کس آگاه است؛ و بزودی کفّار میدانند سرانجام (نیک و بد) در سرای دیگر از آن کیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,355,'آنها که کافر شدند میگویند: «تو پیامبر نیستی!» بگو: «کافی است که خداوند، و کسی که علم کتاب (و آگاهی بر قرآن) نزد اوست، میان من و شما گواه باشند!»');
+INSERT INTO chapters (id, number, quran_id) VALUES(356,14,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,356,'الر، (این) کتابی است که بر تو نازل کردیم، تا مردم را از تاریکیها (ی شرک و ظلم و جهل،) به سوی روشنایی (ایمان و عدل و آگاهی،) بفرمان پروردگارشان در آوری، بسوی راه خداوند عزیز و حمید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,356,'همان خدایی که آنچه در آسمانها و آنچه در زمین است، از آن اوست؛ وای بر کافران از مجازات شدید (الهی)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,356,'همانها که زندگی دنیا را بر آخرت ترجیح میدهند؛ و (مردم را) از راه خدا باز میدارند؛ و میخواهند راه حق را منحرف سازند؛ آنها در گمراهی دوری هستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,356,'ما هیچ پیامبری را، جز به زبان قومش، نفرستادیم؛ تا (حقایق را) برای آنها آشکار سازد؛ سپس خدا هر کس را بخواهد (و مستحق بداند) گمراه، و هر کس را بخواهد (و شایسته بداند) هدایت میکند؛ و او توانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,356,'ما موسی را با آیات خود فرستادیم؛ (و دستور دادیم:) قومت را از ظلمات به نور بیرون آر! و «ایّام اللّه» را به آنان یاد آور! در این، نشانههایی است برای هر صبر کننده شکرگزار!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,356,'و (به خاطر بیاور) هنگامی را که موسی به قومش گفت: «نعمت خدا را بر خود به یاد داشته باشید، زمانی که شما را از (چنگال) آل فرعون رهایی بخشید! همانها که شما را به بدترین وجهی عذاب میکردند؛ پسرانتان را سر میبریدند، و زنانتان را (برای خدمتگاری) زنده میگذاشتند؛ و در این، آزمایش بزرگی از طرف پروردگارتان برای شما بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,356,'و (همچنین به خاطر بیاورید) هنگامی را که پروردگارتان اعلام داشت: «اگر شکرگزاری کنید، (نعمت خود را) بر شما خواهم افزود؛ و اگر ناسپاسی کنید، مجازاتم شدید است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,356,'و موسی (به بنی اسرائیل) گفت: «اگر شما و همه مردم روی زمین کافر شوید، (به خدا زیانی نمیرسد؛ چرا که) خداوند، بینیاز و شایسته ستایش است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,356,'آیا خبر کسانی که پیش از شما بودند، به شما نرسید؟! «قوم نوح» و «عاد» و «ثمود» و آنها که پس از ایشان بودند؛ همانها که جز خداوند از آنان آگاه نیست؛ پیامبرانشان دلایل روشن برای آنان آوردند، ولی آنها (از روی تعجّب و استهزا) دست بر دهان گرفتند و گفتند: «ما به آنچه شما به آن فرستاده شدهاید، کافریم! و نسبت به آنچه ما را به سوی آن میخوانید، شکّ و تردید داریم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,356,'رسولان آنها گفتند: «آیا در خدا شکّ است؟! خدایی که آسمانها و زمین را آفریده؛ او شما را دعوت میکند تا گناهانتان را ببخشد، و تا موعد مقرّری شما را باقی گذارد!» آنها گفتند: «(ما اینها را نمیفهمیم! همین اندازه میدانیم که) شما انسانهایی همانند ما هستید، میخواهید ما را از آنچه پدرانمان میپرستیدند بازدارید؛ شما دلیل و معجزه روشنی برای ما بیاورید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,356,'پیامبرانشان به آنها گفتند: «درست است که ما بشری همانند شما هستیم، ولی خداوند بر هر کس از بندگانش بخواهد (و شایسته بداند)، نعمت میبخشد (و مقام رسالت عطا میکند)! و ما هرگز نمیتوانیم معجزهای جز بفرمان خدا بیاوریم! (و از تهدیدهای شما نمیهراسیم؛) افراد باایمان باید تنها بر خدا توکّل کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,356,'و چرا بر خدا توکّل نکنیم، با اینکه ما را به راههای (سعادت) رهبری کرده است؟! و ما بطور مسلّم در برابر آزارهای شما صبر خواهیم کرد (و دست از رسالت خویش بر نمیداریم)! و توکّلکنندگان، باید فقط بر خدا توکّل کنند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,356,'(ولی) کافران به پیامبران خود گفتند: «ما قطعاً شما را از سرزمین خود بیرون خواهیم کرد، مگر اینکه به آیین ما بازگردید!» در این حال، پروردگارشان به آنها وحی فرستاد که: «ما ظالمان را هلاک میکنیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,356,'و شما را بعد از آنان در زمین سکوت خواهیم داد، این (موفقیّت)، برای کسی است که از مقام (عدالت) من بترسد؛ و از عذاب (من) بیمناک باشد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,356,'و آنها (از خدا) تقاضای فتح و پیروزی (بر کفار) کردند؛ و (سرانجام) هر گردنکش منحرفی نومید و نابود شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,356,'به دنبال او جهنم خواهد بود؛ و از آب بد بوی متعفّنی نوشانده میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,356,'بزحمت جرعه جرعه آن را سرمیکشد؛ و هرگز حاضر نیست به میل خود آن را بیاشامد؛ و مرگ از هرجا به سراغ او میآید؛ ولی با این همه نمیمیرد! و بدنبال آن، عذاب شدیدی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,356,'اعمال کسانی که به پروردگارشان کافر شدند، همچون خاکستری است در برابر تندباد در یک روز طوفانی! آنها توانایی ندارند کمترین چیزی از آنچه را انجام دادهاند، به دست آورند؛ و این همان گمراهی دور و دراز است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,356,'آیا ندیدی خداوند، آسمانها و زمین را بحق آفریده است؟! اگر بخواهد، شما را میبرد و خلق تازهای میآورد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,356,'و این کار برای خدا مشکل نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,356,'و (در قیامت)، همه آنها در برابر خدا ظاهر میشوند؛ در این هنگام، ضعفا [= دنبالهروان نادان] به مستکبران (و رهبران گمراه) میگویند: «ما پیروان شما بودیم! آیا (اکنون که بخاطر پیروی از شما گرفتار مجازات الهی شدهایم،) شما حاضرید سهمی از عذاب الهی را بپذیرید و از ما بردارید؟» آنها میگویند: «اگر خدا ما را هدایت کرده بود، ما نیز شما را هدایت میکردیم! (ولی کار از اینها گذشته است،) چه بیتابی کنیم و چه شکیبایی، تفاوتی برای ما ندارد؛ راه گریزی برای ما نیست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,356,'و شیطان، هنگامی که کار تمام میشود، میگوید: «خداوند به شما وعده حق داد؛ و من به شما وعده (باطل) دادم، و تخلّف کردم! من بر شما تسلّطی نداشتم، جز اینکه دعوتتان کردم و شما دعوت مرا پذیرفتید! بنابر این، مرا سرزنش نکنید؛ خود را سرزنش کنید! نه من فریادرس شما هستم، و نه شما فریادرس من! من نسبت به شرک شما درباره خود، که از قبل داشتید، (و اطاعت مرا همردیف اطاعت خدا قرار دادید) بیزار و کافرم!» مسلّماً ستمکاران عذاب دردناکی دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,356,'و کسانی را که ایمان آوردند و اعمال صالح انجام دادند، به باغهای بهشت وارد میکنند؛ باغهایی که نهرها از زیر درختانش جاری است؛ به اذن پروردگارشان، جاودانه در آن میمانند؛ و تحیّت آنها در آن، «سلام» است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,356,'آیا ندیدی چگونه خداوند «کلمه طیبه» (و گفتار پاکیزه) را به درخت پاکیزهای تشبیه کرده که ریشه آن (در زمین) ثابت، و شاخه آن در آسمان است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,356,'هر زمان میوه خود را به اذن پروردگارش میدهد. و خداوند برای مردم مثلها میزند، شاید متذکّر شوند (و پند گیرند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,356,'(همچنین) «کلمه خبیثه» (و سخن آلوده) را به درخت ناپاکی تشبیه کرده که از روی زمین برکنده شده، و قرار و ثباتی ندارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,356,'خداوند کسانی را که ایمان آوردند، به خاطر گفتار و اعتقاد ثابتشان، استوار میدارد؛ هم در این جهان، و هم در سرای دیگر! و ستمگران را گمراه میسازد، (و لطف خود را از آنها برمیگیرد)؛ خداوند هر کار را بخواهد (و مصلحت بداند) انجام میدهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,356,'آیا ندیدی کسانی را که نعمت خدا را به کفران تبدیل کردند، و قوم خود را به سرای نیستی و نابودی کشاندند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,356,'(سرای نیستی و نابودی، همان) جهنم است که آنها در آتش آن وارد میشوند؛ و بد قرارگاهی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,356,'آنها برای خدا همتایانی قرار دادهاند، تا (مردم را) از راه او (منحرف و) گمراه سازند؛ بگو: «(چند روزی از زندگی دنیا و لذّات آن) بهره گیرید؛ امّا عاقبت کار شما به سوی آتش (دوزخ) است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,356,'به بندگان من که ایمان آوردهاند بگو نماز را برپا دارند؛ و از آنچه به آنها روزی دادهایم، پنهان و آشکار، انفاق کنند؛ پیش از آنکه روزی فرا رسد که نه در آن خرید و فروش است، و نه دوستی! (نه با مال میتوانند از کیفر خدا رهایی یابند، و نه با پیوندهای مادی!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,356,'خداوند همان کسی است که آسمانها و زمین را آفرید؛ و از آسمان، آبی نازل کرد؛ و با آن، میوهها (ی مختلف) را برای روزی شما (از زمین) بیرون آورد؛ و کشتیها را مسخّر شما گردانید، تا بر صفحه دریا به فرمان او حرکت کنند؛ و نهرها را (نیز) مسخّر شما نمود؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,356,'و خورشید و ماه را -که با برنامه منظّمی درکارند- به تسخیر شما درآورد؛ و شب و روز را (نیز) مسخّر شما ساخت؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,356,'و از هر چیزی که از او خواستید، به شما داد؛ و اگر نعمتهای خدا را بشمارید، هرگز آنها را شماره نتوانید کرد! انسان، ستمگر و ناسپاس است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,356,'(به یاد آورید) زمانی را که ابراهیم گفت: «پروردگارا! این شهر [= مکّه] را شهر امنی قرار ده! و من و فرزندانم را از پرستش بتها دور نگاه دار!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,356,'پروردگارا! آنها [= بتها] بسیاری از مردم را گمراه ساختند! هر کس از من پیروی کند از من است؛ و هر کس نافرمانی من کند، تو بخشنده و مهربانی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,356,'پروردگارا! من بعضی از فرزندانم را در سرزمین بیآب و علفی، در کنار خانهای که حرم توست، ساکن ساختم تا نماز را برپا دارند؛ تو دلهای گروهی از مردم را متوجّه آنها ساز؛ و از ثمرات به آنها روزی ده؛ شاید آنان شکر تو را بجای آورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,356,'پروردگارا! تو میدانی آنچه را ما پنهان و یا آشکار میکنیم؛ و چیزی در زمین و آسمان بر خدا پنهان نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,356,'حمد خدای را که در پیری، اسماعیل و اسحاق را به من بخشید؛ مسلّماً پروردگار من، شنونده (و اجابت کننده) دعاست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,356,'پروردگارا: مرا برپا کننده نماز قرار ده، و از فرزندانم (نیز چنین فرما)، پروردگارا: دعای مرا بپذیر!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,356,'پروردگارا! من و پدر و مادرم و همه مؤمنان را، در آن روز که حساب برپا میشود، بیامرز!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,356,'گمان مبر که خدا، از آنچه ظالمان انجام میدهند، غافل است! (نه، بلکه کیفر) آنها را برای روزی تأخیر انداخته است که چشمها در آن (به خاطر ترس و وحشت) از حرکت بازمیایستد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,356,'گردنها را کشیده، سرها را به آسمان بلندکرده، حتّی پلک چشمهایشان از حرکت بازمیماند؛ (زیرا به هر طرف نگاه کنند، آثار عذاب آشکار است!) و (در این حال) دلهایشان (فرومیریزد؛ و از اندیشه و امید،) خالی میگردد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,356,'و مردم را از روزی که عذاب الهی به سراغشان میآید، بترسان! آن روز که ظالمان میگویند: «پروردگارا! مدّت کوتاهی ما را مهلت ده، تا دعوت تو را بپذیریم و از پیامبران پیروی کنیم!» (امّا پاسخ میشنوند که:) مگر قبلاً سوگند یاد نکرده بودید که زوال و فنایی برای شما نیست؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,356,'(آری شما بودید که) در منازل (و کاخهای) کسانی که به خویشتن ستم کردند، ساکن شدید؛ و برای شما آشکار شد چگونه با آنان رفتار کردیم؛ و برای شما، مثلها (از سرگذشت پیشینیان) زدیم (باز هم بیدار نشدید)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,356,'آنها نهایت مکر (و نیرنگ) خود را به کار زدند؛ و همه مکرها (و توطئههایشان) نزد خدا آشکار است، هر چند مکرشان چنان باشد که کوهها را از جا برکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,356,'پس گمان مبر که خدا وعدهای را که به پیامبرانش داده، تخلّف کند! چرا که خداوند قادر و انتقام گیرنده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,356,'در آن روز که این زمین به زمین دیگر، و آسمانها (به آسمانهای دیگری) مبدل میشود، و آنان در پیشگاه خداوند واحد قهار ظاهر میگردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,356,'و در آن روز، مجرمان را با هم در غل و زنجیر میبینی! (که دستها و گردنهایشان را به هم بسته است!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,356,'لباسهایشان از قطران [= ماده چسبنده بد بوی قابل اشتعال] است؛ و صورتهایشان را آتش میپوشاند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,356,'تا خداوند هر کس را، هر آنچه انجام داده، جزا دهد! به یقین، خداوند سریع الحساب است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,356,'این (قرآن،) پیام (و ابلاغی) برای (عموم) مردم است؛ تا همه به وسیله آن انذار شوند، و بدانند او خدا یکتاست؛ و تا صاحبان مغز (و اندیشه) پند گیرند!');
+INSERT INTO chapters (id, number, quran_id) VALUES(357,15,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,357,'الر، این آیات کتاب، و قرآن مبین است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,357,'کافران (هنگامی که آثار شوم اعمال خود را ببینند،) چه بسا آرزو میکنند که ای کاش مسلمان بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,357,'بگذار آنها بخورند، و بهره گیرند، و آرزوها آنان را غافل سازد؛ ولی بزودی خواهند فهمید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,357,'ما اهل هیچ شهر و دیاری را هلاک نکردیم مگر اینکه اجل معیّن (و زمان تغییر ناپذیری) داشتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,357,'هیچ گروهی از اجل خود پیشی نمیگیرد؛ و از آن عقب نخواهد افتاد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,357,'و گفتند: «ای کسی که «ذکر» [= قرآن] بر او نازل شده، مسلماً تو دیوانهای!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,357,'اگر راست میگویی، چرا فرشتگان را نزد ما نمیزوری؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,357,'(امّا اینها باید بدانند) ما فرشتگان را، جز بحق، نازل نمیکنیم،؛ و هرگاه نازل شوند، دیگر به اینها مهلت داده نمیشود (؛ و در صورت انکار، به عذاب الهی نابود میگردند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,357,'ما قرآن را نازل کردیم؛ و ما بطور قطع نگهدار آنیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,357,'ما پیش از تو (نیز) پیامبرانی در میان امّتهای نخستین فرستادیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,357,'هیچ پیامبری به سراغ آنها نمیآمد مگر اینکه او را مسخره میکردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,357,'ما اینچنین (و از هر طریق ممکن) قرآن را به درون دلهای مجرمان راه میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,357,'(اما با این حال،) آنها به آن ایمان نمیآورند؛ روش اقوام پیشین نیز چنین بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,357,'و اگر دری از آسمان به روی آنان بگشاییم، و آنها پیوسته در آن بالا روند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,357,'باز میگویند: «ما را چشمبندی کردهاند؛ بلکه ما (سر تا پا) سحر شدهایم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,357,'ما در آسمان برجهایی قرار دادیم؛ و آن را برای بینندگان آراستیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,357,'و آن را از هر شیطان رانده شدهای حفظ کردیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,357,'مگر آن کس که استراق سمع کند (و دزدانه گوش فرا دهد) که «شهاب مبین» او را تعقیب میکند (و میراند)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,357,'و زمین را گستردیم؛ و در آن کوههای ثابتی افکندیم؛ و از هر گیاه موزون، در آن رویاندیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,357,'و برای شما انواع وسایل زندگی در آن قرار دادیم؛ همچنین برای کسانی که شما نمیتوانید به آنها روزی دهید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,357,'و خزائن همه چیز، تنها نزد ماست؛ ولی ما جز به اندازه معیّن آن را نازل نمیکنیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,357,'ما بادها را برای بارور ساختن (ابرها و گیاهان) فرستادیم؛ و از آسمان آبی نازل کردیم، و شما را با آن سیراب ساختیم؛ در حالی که شما توانایی حفظ و نگهداری آن را نداشتید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,357,'ماییم که زنده میکنیم و میمیرانیم؛ و ماییم وارث (همه جهان)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,357,'ما، هم پیشینیان شما را دانستیم؛ و هم متأخّران را!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,357,'پروردگار تو، قطعاً آنها را (در قیامت) جمع و محشور میکند؛ چرا که او حکیم و داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,357,'ما انسان را از گِل خشکیدهای (همچون سفال) که از گِل بد بوی (تیره رنگی) گرفته شده بود آفریدیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,357,'و جن را پیش از آن، از آتش گرم و سوزان خلق کردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,357,'و (به خاطر بیاور) هنگامی که پروردگارت به فرشتگان گفت: «من بشری را از گل خشکیدهای که از گل بدبویی گرفته شده، میآفرینم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,357,'هنگامی که کار آن را به پایان رساندم، و در او از روح خود (یک روح شایسته و بزرگ) دمیدم، همگی برای او سجده کنید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,357,'همه فرشتگان، بی استثنا، سجده کردند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,357,'جز ابلیس، که ابا کرد از اینکه با سجدهکنندگان باشد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,357,'(خداوند) فرمود: «ای ابلیس! چرا با سجدهکنندگان نیستی؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,357,'گفت: «من هرگز برای بشری که او را از گل خشکیدهای که از گل بدبویی گرفته شده است آفریدهای، سجده نخواهم کرد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,357,'فرمود: «از صف آنها [= فرشتگان] بیرون رو، که راندهشدهای (از درگاه ما!).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,357,'و لعنت (و دوری از رحمت حق) تا روز قیامت بر تو خواهد بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,357,'گفت: «پروردگارا! مرا تا روز رستاخیز مهلت ده (و زنده بگذار!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,357,'فرمود: «تو از مهلت یافتگانی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,357,'(امّا نه تا روز رستاخیز، بلکه) تا روز وقت معیّنی.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,357,'گفت: «پروردگارا! چون مرا گمراه ساختی، من (نعمتهای مادّی را) در زمین در نظر آنها زینت میدهم، و همگی را گمراه خواهم ساخت،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,357,'مگر بندگان مخلصت را.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,357,'فرمود: «این راه مستقیمی است که بر عهده من است (و سنّت همیشگیم)...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,357,'که بر بندگانم تسلّط نخواهی یافت؛ مگر گمراهانی که از تو پیروی میکنند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,357,'و دوزخ، میعادگاه همه آنهاست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,357,'هفت در دارد؛ و برای هر دری، گروه معیّنی از آنها تقسیم شدهاند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,357,'به یقین، پرهیزگاران در باغها (ی سرسبز بهشت) و در کنار چشمهها هستند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,357,'(فرشتگان به آنها میگویند:) داخل این باغها شوید با سلامت و امنیّت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,357,'هر گونه غلِّ [= حسد و کینه و دشمنی] را از سینه آنها برمیکنیم (و روحشان را پاک میسازیم)؛ در حالی که همه برابرند، و بر تختها روبهروی یکدیگر قرار دارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,357,'هیچ خستگی و تعبی در آنجا به آنها نمیرسد، و هیچ گاه از آن اخراج نمیگردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,357,'بندگانم را آگاه کن که من بخشنده مهربانم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,357,'و (اینکه) عذاب و کیفر من، همان عذاب دردناک است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,357,'و به آنها از مهمانهای ابراهیم خبر ده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,357,'هنگامی که بر او وارد شدند و سلام کردند؛ (ابراهیم) گفت: «ما از شما بیمناکیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,357,'گفتند: «نترس، ما تو را به پسری دانا بشارت میدهیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,357,'گفت: «آیا به من (چنین) بشارت میدهید با اینکه پیر شدهام؟! به چه چیز بشارت میدهید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,357,'گفتند: «تو را به حق بشارت دادیم؛ از مأیوسان مباش!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,357,'گفت: «جز گمراهان، چه کسی از رحمت پروردگارش مأیوس میشود؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,357,'(سپس) گفت: «مأموریت شما چیست ای فرستادگان خدا؟»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,357,'گفتند: «ما به سوی قومی گنهکار مأموریت یافتهایم (تا آنها را هلاک کنیم)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,357,'مگر خاندان لوط، که همگی آنها را نجات خواهیم داد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,357,'بجز همسرش، که مقدّر داشتیم از بازماندگان (در شهر، و هلاکشوندگان) باشد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,357,'هنگامی که فرستادگان (خدا) به سراغ خاندان لوط آمدند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,357,'(لوط) گفت: «شما گروه ناشناسی هستید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,357,'گفتند: «ما همان چیزی را برای تو آوردهایم که آنها [= کافران] در آن تردید داشتند (آری، ما مأمور عذابیم)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,357,'ما واقعیّت مسلّمی را برای تو آوردهایم؛ و راست میگوییم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,357,'پس، خانوادهات را در اواخر شب با خود بردار، و از اینجا ببر؛ و خودت به دنبال آنها حرکت کن؛ و کسی از شما به پشت سر خویش ننگرد؛ به همانجا که مأمور هستید بروید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,357,'و ما به لوط این موضوع را وحی فرستادیم که صبحگاهان، همه آنها ریشهکن خواهند شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,357,'(از سوی دیگر،) اهل شهر (از ورود میهمانان با خبر شدند، و بطرف خانه لوط) آمدند در حالی که شادمان بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,357,'(لوط) گفت: «اینها میهمانان منند؛ آبروی مرا نریزید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,357,'و از خدا بترسید، و مرا شرمنده نسازید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,357,'گفتند: «مگر ما تو را از جهانیان نهی نکردیم (و نگفتیم کسی را به میهمانی نپذیر؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,357,'گفت: «دختران من حاضرند، اگر میخواهید کار صحیحی انجام دهید (با آنها ازدواج کنید، و از گناه و آلودگی بپرهیزید!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,357,'به جان تو سوگند، اینها در مستی خود سرگردانند (و عقل و شعور خود را از دست دادهاند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,357,'سرانجام، هنگام طلوع آفتاب، صیحه (مرگبار -بصورت صاعقه یا زمینلرزه-) آنها را فراگرفت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,357,'سپس (شهر و آبادی آنها را زیر و رو کردیم؛) بالای آن را پایین قرار دادیم؛ و بارانی از سنگ بر آنها فرو ریختیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,357,'در این (سرگذشت عبرتانگیز)، نشانههایی است برای هوشیاران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,357,'و ویرانههای سرزمین آنها، بر سر راه (کاروانها)، همواره ثابت و برقرار است؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,357,'در این، نشانهای است برای مؤمنان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,357,'«اصحاب الأیکه» [= صاحبان سرزمینهای پردرخت = قوم شعیب] مسلماً قوم ستمگری بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,357,'ما از آنها انتقام گرفتیم؛ و (شهرهای ویران شده) این دو [= قوم لوط و اصحاب الأیکه] بر سر راه (شما در سفرهای شام)، آشکار است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,357,'و «اصحاب حجر» [= قوم ثمود] پیامبران را تکذیب کردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,357,'ما آیات خود را به آنان دادیم؛ ولی آنها از آن روی گرداندند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,357,'آنها خانههای امن در دل کوهها میتراشیدند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,357,'امّا سرانجام صیحه (مرگبار)، صبحگاهان آنان را فرا گرفت؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,357,'و آنچه را به دست آورده بودند، آنها را از عذاب الهی نجات نداد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,357,'ما آسمانها و زمین و آنچه را میان آن دو است، جز بحق نیافریدیم؛ و ساعت موعود [= قیامت] قطعاً فرا خواهد رسید (و جزای هر کس به او میرسد)! پس، از آنها به طرز شایستهای صرفنظر کن (و آنها را بر نادانیهایشان ملامت ننما)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,357,'به یقین، پروردگار تو، آفریننده آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,357,'ما به تو سوره حمد و قرآن عظیم دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,357,'(بنابر این،) هرگز چشم خود را به نعمتهای (مادّی)، که به گروههایی از آنها [= کفّار] دادیم، میفکن! و بخاطر آنچه آنها دارند، غمگین مباش! و بال (عطوفت) خود را برای مؤمنین فرود آر!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,357,'و بگو: «من انذارکننده آشکارم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,357,'(ما بر آنها عذابی میفرستیم) همان گونه که بر تجزیهگران (آیات الهی) فرستادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,357,'همانها که قرآن را تقسیم کردند (؛ آنچه را به سودشان بود پذیرفتند، و آنچه را بر خلاف هوسهایشان بود رها نمودند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,357,'به پروردگارت سوگند، (در قیامت) از همه آنها سؤال خواهیم کرد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,357,'از آنچه عمل میکردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,357,'آنچه را مأموریت داری، آشکارا بیان کن! و از مشرکان روی گردان (و به آنها اعتنا نکن)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,357,'ما شرّ استهزاکنندگان را از تو دفع خواهیم کرد؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,357,'همانها که معبود دیگری با خدا قرار دادند؛ امّا بزودی میفهمند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,357,'ما میدانیم سینهات از آنچه آنها میگویند تنگ میشود (و تو را سخت ناراحت میکنند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,357,'(برای دفع ناراحتی آنان) پروردگارت را تسبیح و حمد گو! و از سجدهکنندگان باش!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,357,'و پروردگارت را عبادت کن تا یقین [= مرگ] تو فرا رسد!');
+INSERT INTO chapters (id, number, quran_id) VALUES(358,16,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,358,'فرمان خدا (برای مجازات مشرکان و مجرمان،) فرا رسیده است؛ برای آن عجله نکنید! منزّه و برتر است خداوند از آنچه همتای او قرارمیدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,358,'فرشتگان را با روح (الهی) بفرمانش بر هر کس از بندگانش بخواهد نازل میکند؛ (و به آنها دستور میدهد) که مردم را انذار کنید؛ (و بگویید:) معبودی جز من نیست؛ از (مخالفت دستور) من، بپرهیزید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,358,'آسمانها و زمین را بحق آفرید؛ او برتر است از اینکه همتایی برای او قرار میدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,358,'انسان را از نطفه بیارزشی آفرید؛ و سرانجام (او موجودی فصیح، و) مدافع آشکار از خویشتن گردید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,358,'و چهارپایان را آفرید؛ در حالی که در آنها، برای شما وسیله پوشش، و منافع دیگری است؛ و از گوشت آنها میخورید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,358,'و در آنها برای شما زینت و شکوه است به هنگامی که آنها را به استراحتگاهشان بازمیگردانید، و هنگامی که (صبحگاهان) به صحرا میفرستید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,358,'آنها بارهای سنگین شما را به شهری حمل میکنند که جز با مشقّت زیاد، به آن نمیرسیدید؛ پروردگارتان رؤوف و رحیم است (که این وسایل حیات را در اختیارتان قرار داده)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,358,'همچنین اسبها و استرها و الاغها را آفرید؛ تا بر آنها سوار شوید و زینت شما باشد، و چیزهایی میآفریند که نمیدانید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,358,'و بر خداست که راه راست را (به بندگان) نشان دهد؛ امّا بعضی از راهها بیراهه است! و اگر خدا بخواهد، همه شما را (به اجبار) هدایت میکند (؛ ولی اجبار سودی ندارد).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,358,'او کسی است که از آسمان، آبی فرستاد، که نوشیدن شما از آن است؛ و (همچنین) گیاهان و درختانی که حیوانات خود را در آن به چرا میبرید، نیز از آن است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,358,'خداوند با آن (آب باران)، برای شما زراعت و زیتون و نخل و انگور، و از همه میوهها میرویاند؛ مسلماً در این، نشانه روشنی برای اندیشمندان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,358,'او شب و روز و خورشید و ماه را مسخّر شما ساخت؛ و ستارگان نیز به فرمان او مسخّر شمایند؛ در این، نشانههایی است (از عظمت خدا،) برای گروهی که عقل خود را به کار میگیرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,358,'(علاوه بر این،) مخلوقاتی را که در زمین به رنگهای گوناگون آفریده نیز مسخّر (فرمان شما) ساخت؛ در این، نشانه روشنی است برای گروهی که متذکّر میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,358,'او کسی است که دریا را مسخّر (شما) ساخت تا از آن، گوشت تازه بخورید؛ و زیوری برای پوشیدن (مانند مروارید) از آن استخراج کنید؛ و کشتیها را میبینی که سینه دریا را میشکافند تا شما (به تجارت پردازید و) از فضل خدا بهره گیرید؛ شاید شکر نعمتهای او را بجا آورید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,358,'و در زمین، کوههای ثابت و محکمی افکند تا لرزش آن را نسبت به شما بگیرد؛ و نهرها و راههایی ایجاد کرد، تا هدایت شوید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,358,'و (نیز) علاماتی قرار داد؛ و (شب هنگام) به وسیله ستارگان هدایت میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,358,'آیا کسی که (این گونه مخلوقات را) میآفریند، همچون کسی است که نمیآفریند؟! آیا متذکّر نمیشوید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,358,'و اگر نعمتهای خدا را بشمارید، هرگز نمیتوانید آنها را احصا کنید؛ خداوند بخشنده و مهربان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,358,'خداوند آنچه را پنهان میدارید و آنچه را آشکار میسازید، میداند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,358,'معبودهایی را که غیر از خدا میخوانند، چیزی را خلق نمیکنند؛ بلکه خودشان هم مخلوقند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,358,'آنها مردگانی هستند که هرگز استعداد حیات ندارند؛ و نمیدانند (عبادتکنندگانشان) در چه زمانی محشور میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,358,'معبود شما خداوند یگانه است؛ امّا کسانی که به آخرت ایمان نمیآورند، دلهایشان (حق را) انکار میکند و مستکبرند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,358,'قطعاً خداوند از آنچه پنهان میدارند و آنچه آشکار میسازند با خبر است؛ او مستکبران را دوست نمیدارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,358,'و هنگامی که به آنها گفته شود: «پروردگار شما چه نازل کرده است؟» میگویند: «اینها (وحی الهی نیست؛) همان افسانههای دروغین پیشینیان است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,358,'آنها باید روز قیامت، (هم) بار گناهان خود را بطور کامل بر دوش کشند؛ و هم سهمی از گناهان کسانی که بخاطر جهل، گمراهشان میسازند! بدانید آنها بار سنگین بدی بر دوش میکشند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,358,'کسانی که قبل از ایشان بودند (نیز) از این توطئهها داشتند؛ ولی خداوند به سراغ شالوده (زندگی) آنها رفت؛ و آن را از اساس ویران کرد؛ و سقف از بالا بر سرشان فرو ریخت؛ و عذاب (الهی) از آن جایی که نمیدانستند به سراغشان آمد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,358,'سپس روز قیامت خدا آنها را رسوا میسازد؛ و میگوید: «شریکانی که شما برای من ساختید، و بخاطر آنها با دیگران دشمنی میکردید، کجا هستید؟!» (در این هنگام،) کسانی که به آنها علم داده شده میگویند: «رسوایی و بدبختی، امروز بر کافران است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,358,'همانها که فرشتگان (مرگ) روحشان را میگیرند در حالی که به خود ظلم کرده بودند! در این موقع آنها تسلیم میشوند (و بدروغ میگویند:) ما کار بدی انجام نمیدادیم! آری، خداوند به آنچه انجام میدادید عالم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,358,'(به آنها گفته میشود:) اکنون از درهای جهنم وارد شوید در حالی که جاودانه در آن خواهید بود! چه جای بدی است جایگاه مستکبران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,358,'(ولی هنگامی که) به پرهیزگاران گفته میشد: «پروردگار شما چه چیز نازل کرده است؟» میگفتند: «خیر (و سعادت)» (آری،) برای کسانی که نیکی کردند، در این دنیا نیکی است؛ و سرای آخرت از آن هم بهتر است؛ و چه خوب است سرای پرهیزگاران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,358,'باغهایی از بهشت جاویدان است که همگی وارد آن میشوند؛ نهرها از زیر درختانش میگذرد؛ هر چه بخواهند در آنجا هست؛ خداوند پرهیزگاران را چنین پاداش میدهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,358,'همانها که فرشتگان (مرگ) روحشان را میگیرند در حالی که پاک و پاکیزهاند؛ به آنها میگویند: «سلام بر شما! وارد بهشت شوید به خاطر اعمالی که انجام میدادید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,358,'آیا آنها انتظاری جز این دارند که فرشتگان (قبض ارواح) به سراغشان بیایند، یا فرمان پروردگارت (برای مجازاتشان) فرا رسد (آنگاه توبه کنند؟! ولی توبه آنها در آن زمان بی اثر است! آری،) کسانی که پیش از ایشان بودند نیز چنین کردند! خداوند به آنها ستم نکرد؛ ولی آنان به خویشتن ستم مینمودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,358,'و سرانجام بدیهای اعمالشان به آنها رسید؛ و آنچه را (از وعدههای عذاب) استهزا میکردند، بر آنان وارد شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,358,'مشرکان گفتند: «اگر خدا میخواست، نه ما و نه پدران ما، غیر او را پرستش نمیکردیم؛ و چیزی را بدون اجازه او حرام نمیساختیم!» (آری،) کسانی که پیش از ایشان بودند نیز همین کارها را انجام دادند؛ ولی آیا پیامبران وظیفهای جز ابلاغ آشکار دارند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,358,'ما در هر امتی رسولی برانگیختیم که: «خدای یکتا را بپرستید؛ و از طاغوت اجتناب کنید!» خداوند گروهی را هدایت کرد؛ و گروهی ضلالت و گمراهی دامانشان را گرفت؛ پس در روی زمین بگردید و ببینید عاقبت تکذیبکنندگان چگونه بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,358,'هر قدر بر هدایت آنها حریص باشی، (سودی ندارد؛ چرا) که خداوند کسی را که گمراه ساخت، هدایت نمیکند؛ و آنها یاورانی نخواهند داشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,358,'آنها سوگندهای شدید به خدا یاد کردند که: «هرگز خداوند کسی را که میمیرد، برنمیانگیزد!» آری، این وعده قطعی خداست (که همه مردگان را برای جزا بازمیگرداند)؛ ولی بیشتر مردم نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,358,'هدف این است که آنچه را در آن اختلاف داشتند، برای آنها روشن سازد؛ و کسانی که منکر شدند، بدانند دروغ میگفتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,358,'(رستاخیز مردگان برای ما مشکل نیست؛ زیرا) وقتی چیزی را اراده میکنیم، فقط به آن میگوییم: «موجود باش!» بلافاصله موجود میشود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,358,'آنها که پس از ستم دیدن در راه خدا، هجرت کردند، در این دنیا جایگاه (و مقام) خوبی به آنها میدهیم؛ و پاداش آخرت، از آن هم بزرگتر است اگر میدانستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,358,'آنها کسانی هستند که صبر و استقامت پیشه کردند، و تنها بر پروردگارشان توکّل میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,358,'و پیش از تو، جز مردانی که به آنها وحی میکردیم، نفرستادیم! اگر نمیدانید، از آگاهان بپرسید (تا تعجب نکنید از اینکه پیامبر اسلام از میان همین مردان برانگیخته شده است)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,358,'(از آنها بپرسید که) از دلایل روشن و کتب (پیامبران پیشین آگاهند!) و ما این ذکر [= قرآن] را بر تو نازل کردیم، تا آنچه به سوی مردم نازل شده است برای آنها روشن سازی؛ و شاید اندیشه کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,358,'آیا توطئهگران از این ایمن گشتند که ممکن است خدا آنها را در زمین فروبرد، و یا مجازات (الهی)، از آن جا که انتظارش را ندارند، به سراغشان آید؟!...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,358,'یا به هنگامی (که برای کسب مال و ثروت افزونتر) در رفت و آمدند، دامانشان را بگیرد در حالی که قادر به فرار نیستند؟!...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,358,'یا بطور تدریجی، با هشدارهای خوفانگیز آنان را گرفتار سازد؟! چرا که پروردگار شما، رؤوف و رحیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,358,'آیا آنها مخلوقات خدا را ندیدند که سایههایشان از راست و چپ حرکت دارند، و با خضوع برای خدا سجده میکنند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,358,'(نه تنها سایهها، بلکه) تمام آنچه در آسمانها و زمین از جنبندگان وجود دارد، و همچنین فرشتگان، برای خدا سجده میکنند و تکبّر نمیورزند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,358,'آنها (تنها) از (مخالفت) پروردگارشان، که حاکم بر آنهاست، میترسند؛ و آنچه را مأموریت دارند انجام میدهند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,358,'خداوند فرمان داده: «دو معبود (برای خود) انتخاب نکنید؛ معبود (شما) همان خدای یگانه است؛ تنها از (کیفر) من بترسید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,358,'آنچه در آسمانها و زمین است، از آن اوست؛ و دین خالص (نیز) همواره از آن او میباشد؛ آیا از غیر او میترسید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,358,'آنچه از نعمتها دارید، همه از سوی خداست! و هنگامی که ناراحتی به شما رسد، فقط او را میخوانید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,358,'(امّا) هنگامی که ناراحتی و رنج را از شما برطرف میسازد، ناگاه گروهی از شما برای پروردگارشان همتا قائل میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,358,'(بگذار) تا نعمتهایی را که به آنها دادهایم کفران کنند! (اکنون) چند روزی (از متاع دنیا) بهره گیرید، امّا بزودی خواهید دانست (سرانجام کارتان به کجا خواهد کشید)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,358,'آنان برای بتهایی که هیچ گونه سود و زیانی از آنها سراغ ندارند، سهمی از آنچه به آنان روزی دادهایم قرارمیدهند؛ به خدا سوگند، (در دادگاه قیامت،) از این افتراها که میبندید، بازپرسی خواهید شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,358,'آنها (در پندار خود،) برای خداوند دختران قرارمیدهند؛ -منزّه است (از اینکه فرزندی داشته باشد)- ولی برای خودشان، آنچه را میل دارند قائل میشوند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,358,'در حالی که هرگاه به یکی از آنها بشارت دهند دختر نصیب تو شده، صورتش (از فرط ناراحتی) سیاه میشود؛ و به شدّت خشمگین میگردد؛...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,358,'بخاطر بشارت بدی که به او داده شده، از قوم و قبیله خود متواری میگردد؛ (و نمیداند) آیا او را با قبول ننگ نگهدارد، یا در خاک پنهانش کند؟! چه بد حکم میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,358,'برای آنها که به سرای آخرت ایمان ندارند، صفات زشت است؛ و برای خدا، صفات عالی است؛ و او قدرتمند و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,358,'و اگر خداوند مردم را بخاطر ظلمشان مجازات میکرد، جنبندهای را بر پشت زمین باقی نمیگذارد؛ ولی آنها را تا زمان معیّنی به تأخیر میاندازد. و هنگامی که اجلشان فرا رسد، نه ساعتی تأخیر میکنند، و نه ساعتی پیشی میگیرند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,358,'آنها برای خدا چیزهایی قرارمیدهند که خودشان از آن کراهت دارند [= فرزندان دختر]؛ با این حال زبانشان به دروغ میگوید سرانجام نیکی دارند! از این رو برای آنان آتش است؛ و آنها از پیشگامان (دوزخ) اند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,358,'به خدا سوگند، به سوی امتهای پیش از تو پیامبرانی فرستادیم؛ امّا شیطان اعمالشان را در نظرشان آراست؛ و امروز او ولیّ و سرپرستشان است؛ و مجازات دردناکی برای آنهاست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,358,'ما قرآن را بر تو نازل نکردیم مگر برای اینکه آنچه را در آن اختلاف دارند، برای آنها روشن کنی؛ و (این قرآن) مایه هدایت و رحمت است برای قومی که ایمان میآورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,358,'خداوند از آسمان، آبی فرستاد؛ و زمین را، پس از آنکه مرده بود، حیات بخشید! در این، نشانه روشنی است برای جمعیّتی که گوش شنوا دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,358,'و در وجود چهارپایان، برای شما (درسهای) عبرتی است: از درون شکم آنها، از میان غذاهای هضمشده و خون، شیر خالص و گوارا به شما مینوشانیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,358,'و از میوههای درختان نخل و انگور، مسکرات (ناپاک) و روزی خوب و پاکیزه میگیرید؛ در این، نشانه روشنی است برای جمعیّتی که اندیشه میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,358,'و پروردگار تو به زنبور عسل «وحی» (و الهام غریزی) نمود که: «از کوهها و درختان و داربستهایی که مردم میسازند، خانههایی برگزین!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,358,'سپس از تمام ثمرات (و شیره گلها) بخور و راههایی را که پروردگارت برای تو تعیین کرده است، براحتی بپیما! «از درون شکم آنها، نوشیدنی با رنگهای مختلف خارج میشود که در آن، شفا برای مردم است؛ به یقین در این امر، نشانه روشنی است برای جمعیّتی که میاندیشند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,358,'خداوند شما را آفرید؛ سپس شما را میمیراند؛ بعضی از شما به نامطلوبترین سنین بالای عمر میرسند، تا بعد از علم و آگاهی، چیزی ندانند (و همه چیز را فراموش کنند)؛ خداوند دانا و تواناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,358,'خداوند بعضی از شما را بر بعضی دیگر از نظر روزی برتری داد (چرا که استعدادها و تلاشهایتان متفاوت است)! اما آنها که برتری داده شدهاند، حاضر نیستند از روزی خود به بردگانشان بدهند و همگی در آن مساوی گردند؛ آیا آنان نعمت خدا را انکار مینمایند (که شکر او را ادا نمیکنند)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,358,'خداوند برای شما از جنس خودتان همسرانی قرار داد؛ و از همسرانتان برای شما فرزندان و نوههایی به وجود آورد؛ و از پاکیزهها به شما روزی داد؛ آیا به باطل ایمان میآورند، و نعمت خدا را انکار میکنند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,358,'آنها غیر از خدا، موجوداتی را میپرستند که هیچ رزقی را برای آنان از آسمانها و زمین در اختیار ندارند؛ و توان این کار را نیز ندارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,358,'پس، برای خدا امثال (و شبیهها) قائل نشوید! خدا میداند، و شما نمیدانید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,358,'خداوند مثالی زده: برده مملوکی را که قادر بر هیچ چیز نیست؛ و انسان (با ایمانی) را که از جانب خود، رزقی نیکو به او بخشیدهایم، و او پنهان و آشکار از آنچه خدا به او داده، انفاق میکند؛ آیا این دو نفر یکسانند؟! شکر مخصوص خداست، ولی اکثر آنها نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,358,'خداوند مثالی (دیگر) زده است: دو نفر را، که یکی از آن دو، گنگ مادرزاد است؛ و قادر بر هیچ کاری نیست؛ و سربار صاحبش میباشد؛ او را در پی هر کاری بفرستد، خوب انجام نمیدهد؛ آیا چنین انسانی، با کسی که امر به عدل و داد میکند، و بر راهی راست قرار دارد، برابر است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,358,'غیب آسمانها و زمین، مخصوص خداست (و او همه را میداند)؛ و امر قیامت (بقدری نزدیک و آسان است) درست همانند چشم برهم زدن، و یا از آن هم نزدیکتر؛ چرا که خدا بر هر چیزی تواناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,358,'و خداوند شما را از شکم مادرانتان خارج نمود در حالی که هیچ چیز نمیدانستید؛ و برای شما، گوش و چشم و عقل قرار داد، تا شکر نعمت او را بجا آورید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,358,'آیا آنها به پرندگانی که بر فراز آسمانها نگهداشته شده، نظر نیفکندند؟ هیچ کس جز خدا آنها را نگاه نمیدارد؛ در این امر، نشانههایی (از عظمت و قدرت خدا) است برای کسانی که ایمان میآورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,358,'و خدا برای شما از خانههایتان محل سکونت (و آرامش) قرار داد؛ و از پوست چهارپایان نیز برای شما خانههایی قرار داد که روز کوچ کردن و روز اقامتتان، به آسانی میتوانید آنها را جا به جا کنید؛ و از پشم و کرک و موی آنها، برای شما اثاث و متاع (و وسایل مختلف زندگی) تا زمان معیّنی قرار داد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,358,'و (نیز) خداوند از آنچه آفریده است سایههایی برای شما قرار داده؛ و از کوهها پناهگاههایی؛ و برای شما پیراهنهایی آفریده، که شما را از گرما (و سرما) حفظ میکند؛ و پیراهنهایی که به هنگام جنگ، حافظ شماست؛ این گونه نعمتهایش را بر شما کامل میکند، شاید تسلیم فرمان او شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,358,'(با این همه،) اگر روی برتابند، (نگران مباش؛) تو فقط وظیفه ابلاغ آشکار داری.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,358,'آنها نعمت خدا را میشناسند؛ سپس آن را انکار میکنند؛ و اکثرشان کافرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,358,'(به خاطر بیاورید) روزی را که از هر امّتی گواهی بر آنان برمیانگیزیم؛ سپس به آنان که کفر ورزیدند، اجازه (سخن گفتن) داده نمیشود؛ (بلکه دست و پا و گوش و چشم، حتّی پوست تن آنها گواهی میدهند!) و (نیز) اجازه عذرخواهی و تقاضای عفو به آنان نمیدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,358,'و هنگامی که ظالمان عذاب را ببینند، نه به آنها تخفیف داده میشود، و نه مهلت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,358,'و هنگامی که مشرکان معبودهایی را که همتای خدا قرار دادند میبینند، میگویند: «پروردگارا! اینها همتایانی هستند که ما به جای تو، آنها را میخواندیم! «در این هنگام، معبودان به آنها میگویند: «شما دروغگو هستید! (شما هوای نفس خود را پرستش میکردید!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,358,'و در آن روز، همگی (ناگزیر) در پیشگاه خدا تسلیم میشوند؛ و تمام آنچه را (نسبت به خدا) دروغ میبستند، گم و نابود میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,358,'کسانی که کافر شدند و (مردم را) از راه خدا بازداشتند، بخاطر فسادی که میکردند، عذابی بر عذابشان میافزاییم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,358,'(به یاد آورید) روزی را که از هر امتی، گواهی از خودشان بر آنها برمیانگیزیم؛ و تو را گواه بر آنان قرارمیدهیم! و ما این کتاب را بر تو نازل کردیم که بیانگر همه چیز، و مایه هدایت و رحمت و بشارت برای مسلمانان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,358,'خداوند به عدل و احسان و بخشش به نزدیکان فرمان میدهد؛ و از فحشا و منکر و ستم، نهی میکند؛ خداوند به شما اندرز میدهد، شاید متذکّر شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,358,'و هنگامی که با خدا عهد بستید، به عهد او وفا کنید! و سوگندها را بعد از محکم ساختن نشکنید، در حالی که خدا را کفیل و ضامن بر (سوگند) خود قرار دادهاید، به یقین خداوند از آنچه انجام میدهید، آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,358,'همانند آن زن (سبک مغز) نباشید که پشمهای تابیده خود را، پس از استحکام، وامیتابید! در حالی که (سوگند و پیمان) خود را وسیله خیانت و فساد قرار میدهید؛ بخاطر اینکه گروهی، جمعیّتشان از گروه دیگر بیشتر است (و کثرت دشمن را بهانهای برای شکستن بیعت با پیامبر میشمرید)! خدا فقط شما را با این وسیله آزمایش میکند؛ و به یقین روز قیامت، آنچه را در آن اختلاف داشتید، برای شما روشن میسازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,358,'و اگر خدا میخواست، همه شما را امت واحدی قرارمیداد؛ (و همه را به اجبار وادار به ایمان میکرد؛ امّا ایمان اجباری فایدهای ندارد!) ولی خدا هر کس را بخواهد (و شایسته بداند) گمراه، و هر کس را بخواهد (و لایق بداند) هدایت میکند! (به گروهی توفیق هدایت داده، و از گروهی سلب میکند!) و یقیناً شما از آنچه انجام میدادید، بازپرسی خواهید شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,358,'سوگندهایتان را وسیله تقلّب و خیانت در میان خود قرار ندهید، مبادا گامی بعد از ثابتگشتن (بر ایمان) متزلزل شود؛ و به خاطر بازداشتن (مردم) از راه خدا، آثار سوء آن را بچشید! و برای شما، عذاب عظیمی خواهد بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,358,'و (هرگز) پیمان الهی را با بهای کمی مبادله نکنید (و هر بهایی در برابر آن ناچیز است!) آنچه نزد خداست، برای شما بهتر است اگر میدانستید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,358,'آنچه نزد شماست فانی میشود؛ امّا آنچه نزد خداست باقی است؛ و به کسانی که صبر و استقامت پیشه کنند، مطابق بهترین اعمالی که انجام میدادند پاداش خواهیم داد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,358,'هر کس کار شایستهای انجام دهد، خواه مرد باشد یا زن، در حالی که مؤمن است، او را به حیاتی پاک زنده میداریم؛ و پاداش آنها را به بهترین اعمالی که انجام میدادند، خواهیم داد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,358,'هنگامی که قرآن میخوانی، از شرّ شیطان مطرود، به خدا پناه بر!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,358,'چرا که او، بر کسانی که ایمان دارند و بر پروردگارشان توکّل میکنند، تسلّطی ندارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,4,358,'تسلّط او تنها بر کسانی است که او را به سرپرستی خود برگزیدهاند، و آنها که نسبت به او [= خدا] شرک میورزند (و فرمان شیطان را به جای فرمان خدا، گردن مینهند)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,4,358,'و هنگامی که آیهای را به آیه دیگر مبدّل کنیم [= حکمی را نسخ نماییم] -و خدا بهتر میداند چه حکمی را نازل کند- آنها میگویند: «تو افترا میبندی!» امّا بیشترشان (حقیقت را) نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,4,358,'بگو، روح القدس آن را از جانب پروردگارت بحقّ نازل کرده، تا افراد باایمان را ثابتقدم گرداند؛ و هدایت و بشارتی است برای عموم مسلمانان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,4,358,'ما میدانیم که آنها میگویند: «این آیات را انسانی به او تعلیم میدهد!» در حالی که زبان کسی که اینها را به او نسبت میدهند عجمی است؛ ولی این (قرآن)، زبان عربی آشکار است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,4,358,'به یقین، کسانی که به آیات الهی ایمان نمیآورند، خدا آنها را هدایت نمیکند؛ و برای آنان عذاب دردناکی است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,4,358,'تنها کسانی دروغ میبندند که به آیات خدا ایمان ندارند؛ (آری،) دروغگویان واقعی آنها هستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,4,358,'کسانی که بعد از ایمان کافر شوند -بجز آنها که تحت فشار واقع شدهاند در حالی که قلبشان آرام و با ایمان است- آری، آنها که سینه خود را برای پذیرش کفر گشودهاند، غضب خدا بر آنهاست؛ و عذاب عظیمی در انتظارشان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,4,358,'این به خاطر آن است که زندگی دنیا (و پست را) بر آخرت ترجیح دادند؛ و خداوند افراد بیایمان (لجوج) را هدایت نمیکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,4,358,'آنها کسانی هستند که (بر اثر فزونی گناه،) خدا بر قلب و گوش و چشمانشان مهر نهاده؛ (به همین دلیل نمیفهمند،) و غافلان واقعی همانها هستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,4,358,'و ناچار آنها در آخرت زیانکارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,4,358,'امّا پروردگار تو نسبت به کسانی که بعد از فریبخوردن، (به ایمان بازگشتند و) هجرت کردند؛ سپس جهاد کردند و در راه خدا استقامت نمودند؛ پروردگارت، بعد از انجام این کارها، بخشنده و مهربان است (و آنها را مشمول رحمت خود میسازد).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,4,358,'(به یاد آورید) روزی را که هر کس (در فکر خویشتن است؛ و تنها) به دفاع از خود برمیخیزد؛ و نتیجه اعمال هر کسی، بیکم و کاست، به او داده میشود؛ و به آنها ظلم نخواهد شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,4,358,'خداوند (برای آنان که کفران نعمت میکنند،) مثلی زده است: منطقه آبادی که امن و آرام و مطمئن بود؛ و همواره روزیش از هر جا میرسید؛ امّا به نعمتهای خدا ناسپاسی کردند؛ و خداوند به خاطر اعمالی که انجام میدادند، لباس گرسنگی و ترس را بر اندامشان پوشانید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,4,358,'پیامبری از خودشان به سراغ آنها آمد، او را تکذیب کردند؛ از این رو عذاب الهی آنها را فراگرفت در حالی که ظالم بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,4,358,'پس، از آنچه خدا روزیتان کرده است، حلال و پاکیزه بخورید؛ و شکر نعمت خدا را بجا آورید اگر او را میپرستید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,4,358,'خداوند، تنها مردار، خون، گوشت خوک و آنچه را با نام غیر خدا سر بریدهاند، بر شما حرام کرده است؛ امّا کسانی که ناچار شوند، در حالی که تجاوز و تعدّی از حدّ ننمایند، (خدا آنها را میبخشد؛ چرا که) خدا بخشنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,4,358,'به خاطر دروغی که بر زبانتان جاری میشود (و چیزی را مجاز و چیزی را ممنوع میکنید،) نگویید: «این حلال است و آن حرام»، تا بر خدا افترا ببندید به یقین کسانی که به خدا دروغ میبندند، رستگار نخواهند شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,4,358,'بهره کمی است (که در این دنیا نصیبشان میشود)؛ و عذاب دردناکی در انتظار آنان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,4,358,'چیزهایی را که پیش از این برای تو شرح دادیم، بر یهود حرام کردیم؛ ما به آنها ستم نکردیم، اما آنها به خودشان ظلم و ستم میکردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,4,358,'امّا پروردگارت نسبت به آنها که از روی جهالت، بدی کردهاند، سپس توبه کرده و در مقام جبران برآمدهاند، پروردگارت بعد از آن آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,4,358,'ابراهیم (به تنهایی) امّتی بود مطیع فرمان خدا؛ خالی از هر گونه انحراف؛ و از مشرکان نبود؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,4,358,'شکرگزار نعمتهای پروردگار بود؛ خدا او را برگزید؛ و به راهی راست هدایت نمود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,4,358,'ما در دنیا به او (همّت) نیکویی دادیم؛ و در آخرت از نیکان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,4,358,'سپس به تو وحی فرستادیم که از آیین ابراهیم -که ایمانی خالص داشت و از مشرکان نبود- پیروی کن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,4,358,'(تحریمهای) روز شنبه (برای یهود) فقط بعنوان یک مجازات بود، که در آن هم اختلاف کردند؛ و پروردگارت روز قیامت، در آنچه اختلاف داشتند، میان آنها داوری میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,4,358,'با حکمت و اندرز نیکو، به راه پروردگارت دعوت نما! و با آنها به روشی که نیکوتر است، استدلال و مناظره کن! پروردگارت، از هر کسی بهتر میداند چه کسی از راه او گمراه شده است؛ و او به هدایتیافتگان داناتر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,4,358,'و هر گاه خواستید مجازات کنید، تنها بمقداری که به شما تعدّی شده کیفر دهید! و اگر شکیبایی کنید، این کار برای شکیبایان بهتر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,4,358,'صبر کن، و صبر تو فقط برای خدا و به توفیق خدا باشد! و بخاطر (کارهای) آنها، اندوهگین و دلسرد مشو! و از توطئههای آنها، در تنگنا قرار مگیر!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,4,358,'خداوند با کسانی است که تقوا پیشه کردهاند، و کسانی که نیکوکارند.');
+INSERT INTO chapters (id, number, quran_id) VALUES(359,17,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,359,'پاک و منزّه است خدایی که بندهاش را در یک شب، از مسجد الحرام به مسجد الاقصی -که گرداگردش را پربرکت ساختهایم- برد، تا برخی از آیات خود را به او نشان دهیم؛ چرا که او شنوا و بیناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,359,'ما به موسی کتاب آسمانی دادیم؛ و آن را وسیله هدایت بنی اسرائیل ساختیم؛ (و گفتیم:) غیر ما را تکیهگاه خود قرار ندهید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,359,'ای فرزندان کسانی که با نوح (بر کشتی) سوار کردیم! او بنده شکرگزاری بود. (شما هم مانند او باشید، تا نجات یابید!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,359,'ما به بنی اسرائیل در کتاب (تورات) اعلام کردیم که دوبار در زمین فساد خواهید کرد، و برتریجویی بزرگی خواهید نمود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,359,'هنگامی که نخستین وعده فرا رسد، گروهی از بندگان پیکارجوی خود را بر ضدّ شما میانگیزیم (تا شما را سخت در هم کوبند؛ حتی برای به دست آوردن مجرمان)، خانهها را جستجو میکنند؛ و این وعدهای است قطعی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,359,'سپس شما را بر آنها چیره میکنیم؛ و شما را به وسیله داراییها و فرزندانی کمک خواهیم کرد؛ و نفرات شما را بیشتر (از دشمن) قرارمیدهیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,359,'اگر نیکی کنید، به خودتان نیکی میکنید؛ و اگر بدی کنید باز هم به خود میکنید. و هنگامی که وعده دوم فرا رسد، (آنچنان دشمن بر شما سخت خواهد گرفت که) آثار غم و اندوه در صورتهایتان ظاهر میشود؛ و داخل مسجد (الاقصی) میشوند همان گونه که بار اول وارد شدند؛ و آنچه را زیر سلطه خود میگیرند، در هم میکوبند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,359,'امید است پروردگارتان به شما رحم کند! هرگاه برگردید، ما هم بازمیگردیم؛ و جهنّم را برای کافران، زندان سختی قرار دادیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,359,'این قرآن، به راهی که استوارترین راههاست، هدایت میکند؛ و به مؤمنانی که اعمال صالح انجام میدهند، بشارت میدهد که برای آنها پاداش بزرگی است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,359,'و اینکه آنها که به قیامت ایمان نمیآورند، عذاب دردناکی برای آنان آماده ساختهایم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,359,'انسان (بر اثر شتابزدگی)، بدیها را طلب میکند آن گونه که نیکیها را میطلبد؛ و انسان، همیشه عجول بوده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,359,'ما شب و روز را دو نشانه توحید و عظمت خود قرار دادیم؛ سپس نشانه شب را محو کرده، و نشانه روز را روشنیبخش ساختیم تا (در پرتو آن،) فضل پروردگارتان را بطلبید (و به تلاش زندگی برخیزید)، و عدد سالها و حساب را بدانید؛ و هر چیزی را بطور مشخّص و آشکار، بیان کردیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,359,'و هر انسانی، اعمالش را بر گردنش آویختهایم؛ و روز قیامت، کتابی برای او بیرون میآوریم که آن را در برابر خود، گشوده میبیند! (این همان نامه اعمال اوست!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,359,'(و به او میگوییم:) کتابت را بخوان، کافی است که امروز، خود حسابگر خویش باشی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,359,'هر کس هدایت شود، برای خود هدایت یافته؛ و آن کس که گمراه گردد، به زیان خود گمراه شده است؛ و هیچ کس بار گناه دیگری را به دوش نمیکشد؛ و ما هرگز (قومی را) مجازات نخواهیم کرد، مگر آنکه پیامبری مبعوث کرده باشیم (تا وظایفشان را بیان کند.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,359,'و هنگامی که بخواهیم شهر و دیاری را هلاک کنیم، نخست اوامر خود را برای «مترفین» (و ثروتمندان مست شهوت) آنجا، بیان میداریم، سپس هنگامی که به مخالفت برخاستند و استحقاق مجازات یافتند، آنها را به شدّت درهم میکوبیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,359,'چه بسیار مردمی که در قرون بعد از نوح، زندگی میکردند؛ (و طبق همین سنت،) آنها را هلاک کردیم! و کافی است که پروردگارت از گناهان بندگانش آگاه، و نسبت به آن بیناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,359,'آن کس که (تنها) زندگی زودگذر (دنیا) را میطلبد، آن مقدار از آن را که بخواهیم -و به هر کس اراده کنیم- میدهیم؛ سپس دوزخ را برای او قرار خواهیم داد، که در آتش سوزانش میسوزد در حالی که نکوهیده و رانده (درگاه خدا) است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,359,'و آن کس که سرای آخرت را بطلبد، و برای آن سعی و کوشش کند -در حالی که ایمان داشته باشد- سعی و تلاش او، (از سوی خدا) پاداش داده خواهد شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,359,'هر یک از این دو گروه را از عطای پروردگارت، بهره و کمک میدهیم؛ و عطای پروردگارت هرگز (از کسی) منع نشده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,359,'ببین چگونه بعضی را (در دنیا بخاطر تلاششان) بر بعضی دیگر برتری بخشیدهایم؛ درجات آخرت و برتریهایش، از این هم بیشتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,359,'هرگز معبود دیگری را با خدا قرار مده، که نکوهیده و بییار و یاور خواهی نشست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,359,'و پروردگارت فرمان داده: جز او را نپرستید! و به پدر و مادر نیکی کنید! هرگاه یکی از آن دو، یا هر دوی آنها، نزد تو به سن پیری رسند، کمترین اهانتی به آنها روا مدار! و بر آنها فریاد مزن! و گفتار لطیف و سنجیده و بزرگوارانه به آنها بگو!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,359,'و بالهای تواضع خویش را از محبّت و لطف، در برابر آنان فرود آر! و بگو: «پروردگارا! همانگونه که آنها مرا در کوچکی تربیت کردند، مشمول رحمتشان قرار ده!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,359,'پروردگار شما از درون دلهایتان آگاهتر است؛ (اگر لغزشی در این زمینه داشتید) هر گاه صالح باشید (و جبران کنید) او بازگشتکنندگان را میبخشد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,359,'و حقّ نزدیکان را بپرداز، و (همچنین حق) مستمند و وامانده در راه را! و هرگز اسراف و تبذیر مکن،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,359,'چرا که تبذیرکنندگان، برادران شیاطینند؛ و شیطان در برابر پروردگارش، بسیار ناسپاس بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,359,'و هرگاه از آنان [= مستمندان] روی برتابی، و انتظار رحمت پروردگارت را داشته باشی (تا گشایشی در کارت پدید آید و به آنها کمک کنی)، با گفتار نرم و آمیخته با لطف با آنها سخن بگو!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,359,'هرگز دستت را بر گردنت زنجیر مکن، (و ترک انفاق و بخشش منما) و بیش از حدّ (نیز) دست خود را مگشای، تا مورد سرزنش قرار گیری و از کار فرومانی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,359,'به یقین، پروردگارت روزی را برای هر کس بخواهد، گشاده یا تنگ میدارد؛ او نسبت به بندگانش، آگاه و بیناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,359,'و فرزندانتان را از ترس فقر، نکشید! ما آنها و شما را روزی میدهیم؛ مسلماً کشتن آنها گناه بزرگی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,359,'و نزدیک زنا نشوید، که کار بسیار زشت، و بد راهی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,359,'و کسی را که خداوند خونش را حرام شمرده، نکشید، جز بحق! و آن کس که مظلوم کشته شده، برای ولیش سلطه (و حق قصاص) قرار دادیم؛ اما در قتل اسراف نکند، چرا که او مورد حمایت است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,359,'و به مال یتیم، جز به بهترین راه نزدیک نشوید، تا به سر حد بلوغ رسد! و به عهد (خود) وفا کنید، که از عهد سؤال میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,359,'و هنگامی که پیمانه میکنید، حق پیمانه را ادا نمایید، و با ترازوی درست وزن کنید! این برای شما بهتر، و عاقبتش نیکوتر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,359,'از آنچه به آن آگاهی نداری، پیروی مکن، چرا که گوش و چشم و دل، همه مسؤولند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,359,'و روی زمین، با تکبر راه مرو! تو نمیتوانی زمین را بشکافی، و طول قامتت هرگز به کوهها نمیرسد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,359,'همه اینها گناهش نزد پروردگار تو ناپسند است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,359,'این (احکام)، از حکمتهایی است که پروردگارت به تو وحی فرستاده؛ و هرگز معبودی با خدا قرار مده، که در جهنم افکنده میشوی، در حالی که سرزنش شده، و رانده (درگاه خدا) خواهی بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,359,'آیا پروردگارتان فرزندان پسر را مخصوص شما ساخته، و خودش دخترانی از فرشتگان برگزیده است؟! شما سخن بزرگ (و بسیار زشتی) میگویید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,359,'ما در این قرآن، انواع بیانات مؤثر را آوردیم تا متذکر شوند! ولی (گروهی از کوردلان،) جز بر نفرتشان نمیافزاید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,359,'بگو: «اگر آنچنان که آنها میگویند با او خدایانی بود، در این صورت، (خدایان) سعی میکردند راهی به سوی (خداوند) صاحب عرش پیدا کنند.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,359,'او پاک و برتر است از آنچه آنها میگویند، بسیار برتر و منزهتر!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,359,'آسمانهای هفتگانه و زمین و کسانی که در آنها هستند، همه تسبیح او میگویند؛ و هر موجودی، تسبیح و حمد او میگوید؛ ولی شما تسبیح آنها را نمیفهمید؛ او بردبار و آمرزنده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,359,'و هنگامی که قرآن میخوانی، میان تو و آنها که به آخرت ایمان نمیآورند، حجاب ناپیدایی قرارمیدهیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,359,'و بر دلهایشان پوششهایی، تا آن را نفهمند؛ و در گوشهایشان سنگینی؛ و هنگامی که پروردگارت را در قرآن به یگانگی یاد میکنی، آنها پشت میکنند و از تو روی بر میگردانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,359,'هنگامی که به سخنان تو گوش فرامیدهند، ما بهتر میدانیم برای چه گوش فرا میدهند؛ (و همچنین) در آن هنگام که با هم نجوا میکنند؛ آنگاه که ستمگران میگویند: «شما جز از انسانی که افسون شده، پیروی نمیکنید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,359,'ببین چگونه برای تو مثلها زدند! در نتیجه گمراه شدند، و نمیتوانند راه حق را پیدا کنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,359,'و گفتند: «آیا هنگامی که ما، استخوانهای پوسیده و پراکندهای شدیم، دگر بار آفرینش تازهای خواهیم یافت؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,359,'بگو: «شما سنگ باشید یا آهن،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,359,'یا هر مخلوقی که در نظر شما، از آن هم سختتر است (و از حیات و زندگی دورتر میباشد، باز خدا قادر است شما را به زندگی مجدد بازگرداند). آنها بزودی می گویند: «چه کسی ما را بازمیگرداند؟!» بگو: «همان کسی که نخستین بار شما را آفرید.» آنان سر خود را (از روی تعجب و انکار،) به سوی تو خم میکنند و میگویند: «در چه زمانی خواهد بود؟!» بگو: «شاید نزدیک باشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,359,'همان روز که شما را (از قبرهایتان) فرامیخواند؛ شما هم اجابت میکنید در حالی که حمد او را میگویید؛ میپندارید تنها مدت کوتاهی (در جهان برزخ) درنگ کردهاید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,359,'به بندگانم بگو: «سخنی بگویند که بهترین باشد! چرا که (شیطان بوسیله سخنان ناموزون)، میان آنها فتنه و فساد میکند؛ همیشه شیطان دشمن آشکاری برای انسان بوده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,359,'پروردگار شما، از (نیات و اعمال) شما آگاهتر است؛ اگر بخواهد (و شایسته بداند)، شما را مشمول رحمت خود میسازد؛ و اگر بخواهد، مجازات میکند؛ و ما تو را بعنوان مأمور بر آنان نفرستادهایم (که آنان را مجبور به ایمان کنی!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,359,'پروردگار تو، از حال همه کسانی که در آسمانها و زمین هستند، آگاهتر است؛ و (اگر تو را بر دیگران برتری دادیم، بخاطر شایستگی توست،) ما بعضی از پیامبران را بر بعضی دیگر برتری دادیم؛ و به داوود، زبور بخشیدیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,359,'بگو: «کسانی را که غیر از خدا (معبود خود) میپندارید، بخوانید! آنها نه میتوانند مشکلی را از شما برطرف سازند، و نه تغییری در آن ایجاد کنند.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,359,'کسانی را که آنان میخوانند، خودشان وسیلهای (برای تقرب) به پروردگارشان میجویند، وسیلهای هر چه نزدیکتر؛ و به رحمت او امیدوارند؛ و از عذاب او میترسند؛ چرا که عذاب پروردگارت، همواره در خور پرهیز و وحشت است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,359,'هیچ شهر و آبادی نیست مگر اینکه آن را پیش از روز قیامت هلاک میکنیم؛ یا (اگر گناهکارند،) به عذاب شدیدی گرفتارشان خواهیم ساخت؛ این، در کتاب الهی [= لوح محفوظ] ثبت است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,359,'هیچ چیز مانع ما نبود که این معجزات (درخواستی بهانهجویان) را بفرستیم جز اینکه پیشینیان (که همین درخواستها را داشتند، و با ایشان هماهنگ بودند)، آن را تکذیب کردند؛ (از جمله،) ما به (قوم) ثمود، ناقه دادیم؛ (معجزهای) که روشنگر بود؛ اما بر آن ستم کردند (و ناقه را کشتند). ما معجزات را فقط برای بیم دادن (و اتمام حجت) میفرستیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,359,'(به یاد آور) زمانی را که به تو گفتیم: «پروردگارت احاطه کامل به مردم دارد؛ (و از وضعشان کاملاً آگاه است.) و ما آن رؤیایی را که به تو نشان دادیم، فقط برای آزمایش مردم بود؛ همچنین شجره ملعونه [= درخت نفرین شده] را که در قرآن ذکر کردهایم. ما آنها را بیم داده (و انذار) میکنیم؛ اما جز طغیان عظیم، چیزی بر آنها نمیافزاید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,359,'(به یاد آورید) زمانی را که به فرشتگان گفتیم: «برای آدم سجده کنید!» آنها همگی سجده کردند، جز ابلیس که گفت: «آیا برای کسی سجده کنم که او را از خاک آفریدهای؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,359,'(سپس) گفت: «به من بگو، این کسی را که بر من برتری دادهای (به چه دلیل بوده است؟) اگر مرا تا روز قیامت زنده بگذاری، همه فرزندانش را، جز عده کمی، گمراه و ریشهکن خواهم ساخت!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,359,'فرمود: «برو! هر کس از آنان از تو تبعیت کند، جهنم کیفر شماست، کیفری است فراوان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,359,'هر کدام از آنها را میتوانی با صدایت تحریک کن! و لشکر سواره و پیادهات را بر آنها گسیل دار! و در ثروت و فرزندانشان شرکت جوی! و آنان را با وعدهها سرگرم کن! -ولی شیطان، جز فریب و دروغ، وعدهای به آنها نمیدهد-');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,359,'(اما بدان) تو هرگز سلطهای بر بندگان من، نخواهی یافت (و آنها هیچگاه به دام تو گرفتار نمیشوند)! همین قدر کافی است که پروردگارت حافظ آنها باشد.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,359,'پروردگارتان کسی است که کشتی را در دریا برای شما به حرکت درمیآورد، تا از نعمت او بهرهمند شوید؛ او نسبت به شما مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,359,'و هنگامی که در دریا ناراحتی به شما برسد، جز او، تمام کسانی را که (برای حل مشکلات خود) میخوانید، فراموش میکنید؛ اما هنگامی که شما را به خشکی نجات دهد، روی میگردانید؛ و انسان، بسیار ناسپاس است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,359,'آیا از این ایمن هستید که در خشکی (با یک زلزله شدید) شما را در زمین فرو ببرد، یا طوفانی از سنگریزه بر شما بفرستد (و در آن مدفونتان کند)، سپس حافظ (و یاوری) برای خود نیابید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,359,'یا اینکه ایمن هستید که بار دیگر شما را به دریا بازگرداند، و تندباد کوبندهای بر شما بفرستد، و شما را بخاطر کفرتان غرق کند، سپس دادخواه و خونخواهی در برابر ما پیدا نکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,359,'ما آدمیزادگان را گرامی داشتیم؛ و آنها را در خشکی و دریا، (بر مرکبهای راهوار) حمل کردیم؛ و از انواع روزیهای پاکیزه به آنان روزی دادیم؛ و آنها را بر بسیاری از موجوداتی که خلق کردهایم، برتری بخشیدیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,359,'(به یاد آورید) روزی را که هر گروهی را با پیشوایشان میخوانیم! کسانی که نامه عملشان به دست راستشان داده شود، آن را (با شادی و سرور) میخوانند؛ و بقدر رشته شکاف هسته خرمایی به آنان ستم نمیشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,359,'اما کسی که در این جهان (از دیدن چهره حق) نابینا بوده است، در آخرت نیز نابینا و گمراهتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,359,'نزدیک بود آنها تو را (با وسوسههای خود) از آنچه بر تو وحی کردهایم بفریبند، تا غیر آن را به ما نسبت دهی؛ و در آن صورت، تو را به دوستی خود برمیگزینند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,359,'و اگر ما تو را ثابت قدم نمیساختیم (و در پرتو مقام عصمت، مصون از انحراف نبودی)، نزدیک بود به آنان تمایل کنی.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,359,'اگر چنین میکردی، ما دو برابر مجازات (مشرکان) در زندگی دنیا، و دو برابر (مجازات) آنها را بعد از مرگ، به تو میچشاندیم؛ سپس در برابر ما، یاوری برای خود نمییافتی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,359,'و نزدیک بود (با نیرنگ و توطئه) تو را از این سرزمین بلغزانند، تا از آن بیرونت کنند! و هرگاه چنین میکردند، (گرفتار مجازات سخت الهی شده،) و پس از تو، جز مدت کمی باقی نمیماندند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,359,'این سنت (ما در مورد) پیامبرانی است که پیش از تو فرستادیم؛ و هرگز برای سنت ما تغییر و دگرگونی نخواهی یافت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,359,'نماز را از زوال خورشید (هنگام ظهر) تا نهایت تاریکی شب [= نیمه شب] برپا دار؛ و همچنین قرآن فجر [= نماز صبح] را؛ چرا که قرآن فجر، مشهود (فرشتگان شب و روز) است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,359,'و پاسی از شب را (از خواب برخیز، و) قرآن (و نماز) بخوان! این یک وظیفه اضافی برای توست؛ امید است پروردگارت تو را به مقامی در خور ستایش برانگیزد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,359,'و بگو: «پروردگارا! مرا (در هر کار،) با صداقت وارد کن، و با صداقت خارج ساز! و از سوی خود، حجتی یاری کننده برایم قرار ده!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,359,'و بگو: «حق آمد، و باطل نابود شد؛ یقیناً باطل نابود شدنی است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,359,'و از قرآن، آنچه شفا و رحمت است برای مؤمنان، نازل میکنیم؛ و ستمگران را جز خسران (و زیان) نمیافزاید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,359,'هنگامی که به انسان نعمت میبخشیم، (از حق) روی میگرداند و متکبرانه دور میشود؛ و هنگامی که (کمترین) بدی به او میرسد، (از همه چیز) مایوس میگردد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,359,'بگو: «هر کس طبق روش (و خلق و خوی) خود عمل میکند؛ و پروردگارتان کسانی را که راهشان نیکوتر است، بهتر میشناسد.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,359,'و از تو درباره «روح» سؤال میکنند، بگو: «روح از فرمان پروردگار من است؛ و جز اندکی از دانش، به شما داده نشده است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,359,'و اگر بخواهیم، آنچه را بر تو وحی فرستادهایم، از تو میگیریم؛ سپس کسی را نمییابی که در برابر ما، از تو دفاع کند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,359,'مگر رحمت پروردگارت (شامل حالت گردد،) که فضل پروردگارت بر تو بزرگ بوده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,359,'بگو: «اگر انسانها و پریان (جن و انس) اتفاق کنند که همانند این قرآن را بیاورند، همانند آن را نخواهند آورد؛ هر چند یکدیگر را (در این کار) کمک کنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,359,'ما در این قرآن، برای مردم از هر چیز نمونهای آوردیم (و همه معارف در آن جمع است)؛ اما بیشتر مردم (در برابر آن، از هر کاری) جز انکار، ابا داشتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,359,'و گفتند: «ما هرگز به تو ایمان نمیآوریم تا اینکه چشمهجوشانی از این سرزمین (خشک و سوزان) برای ما خارج سازی...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,359,'یا باغی از نخل و انگور از آن تو باشد؛ و نهرها در لابهلای آن جاری کنی...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,359,'یا قطعات (سنگهای) آسمان را -آنچنان که میپنداری- بر سر ما فرود آری؛ یا خداوند و فرشتگان را در برابر ما بیاوری...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,359,'یا برای تو خانهای پر نقش و نگار از طلا باشد؛ یا به آسمان بالا روی؛ حتی اگر به آسمان روی، ایمان نمیآوریم مگر آنکه نامهای بر ما فرود آوری که آن را بخوانیم! «بگو:» منزه است پروردگارم (از این سخنان بیمعنی)! مگر من جز انسانی فرستاده خدا هستم؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,359,'تنها چیزی که بعد از آمدن هدایت مانع شد مردم ایمان بیاورند، این بود (که از روی نادانی و بیخبری) گفتند: «آیا خداوند بشری را بعنوان رسول فرستاده است؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,359,'بگو: «(حتی) اگر در روی زمین فرشتگانی (زندگی میکردند، و) با آرامش گام برمیداشتند، ما فرشتهای را به عنوان رسول، بر آنها میفرستادیم!» (چرا که رهنمای هر گروهی باید از جنس خودشان باشد).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,359,'بگو: «همین کافی است که خداوند، میان من و شما گواه باشد؛ چرا که او نسبت به بندگانش آگاه و بیناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,359,'هر کس را خدا هدایت کند، هدایت یافته واقعی اوست؛ و هر کس را (بخاطر اعمالش) گمراه سازد، هادیان و سرپرستانی غیر خدا برای او نخواهی یافت؛ و روز قیامت، آنها را بر صورتهایشان محشور میکنیم، در حالی که نابینا و گنگ و کرند؛ جایگاهشان دوزخ است؛ هر زمان آتش آن فرونشیند، شعله تازهای بر آنان میافزاییم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,359,'این کیفر آنهاست، بخاطر اینکه نسبت به آیات ما کافر شدند و گفتند: «آیا هنگامی که ما استخوانهای پوسیده و خاکهای پراکندهای شدیم، بار دیگر آفرینش تازهای خواهیم یافت؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,359,'آیا نمیدانند خدایی که آسمانها و زمین را آفریده، قادر است مثل آنان را بیافریند (و به زندگی جدید بازشان گرداند)؟! و برای آنان سرآمدی قطعی -که شکّی در آن نیست- قرار داده؛ امّا ظالمان، جز کفر و انکار را پذیرا نیستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,4,359,'بگو: «اگر شما مالک خزائن رحمت پروردگار من بودید. در آن صورت، (بخاطر تنگ نظری) امساک میکردید، مبادا انفاق، مایه تنگدستی شما شود» و انسان تنگ نظر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,4,359,'ما به موسی نه معجزه روشن دادیم؛ پس از بنی اسرائیل سؤال کن آن زمان که این (معجزات نه گانه) به سراغ آنها آمد (چگونه بودند)؟! فرعون به او گفت: «ای موسی! گمان میکنم تو دیوانه (یا ساحری)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,4,359,'(موسی) گفت: «تو میدانی این آیات را جز پروردگار آسمانها و زمین -برای روشنی دلها- نفرستاده؛ و من گمان میکنم ای فرعون، تو (بزودی) هلاک خواهی شد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,4,359,'پس (فرعون) تصمیم گرفت آنان را از آن سرزمین ریشه کن سازد؛ ولی ما، او و تمام کسانی را که با او بودند، غرق کردیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,4,359,'و بعد از آن به بنی اسرائیل گفتیم: «در این سرزمین [= مصر و شام] ساکن شوید! امّا هنگامی که وعده آخرت فرا رسد، همه شما را دسته جمعی (به آن دادگاه عدل) میآوریم»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,4,359,'و ما قرآن را بحق نازل کردیم؛ و بحق نازل شد؛ و تو را، جز بعنوان بشارتدهنده و بیمدهنده، نفرستادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,4,359,'و قرآنی که آیاتش را از هم جدا کردیم، تا آن را با درنگ بر مردم بخوانی؛ و آن را بتدریج نازل کردیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,4,359,'بگو: «خواه به آن ایمان بیاورید، و خواه ایمان نیاورید، کسانی که پیش از آن به آنها دانش داده شده، هنگامی که (این آیات) بر آنان خوانده میشود، سجدهکنان به خاک میافتند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,4,359,'و میگویند: «منزّه است پروردگار ما، که وعدههایش به یقین انجامشدنی است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,4,359,'آنها (بیاختیار) به زمین میافتند و گریه میکنند؛ و (تلاوت این آیات، همواره) بر خشوعشان میافزاید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,4,359,'بگو: ««اللّه» را بخوانید یا «رحمان» را، هر کدام را بخوانید، (ذات پاکش یکی است؛ و) برای او بهترین نامهاست!» و نمازت را زیاد بلند، یا خیلی آهسته نخوان؛ و در میان آن دو، راهی (معتدل) انتخاب کن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,4,359,'و بگو: «ستایش برای خداوندی است که نه فرزندی برای خود انتخاب کرده، و نه شریکی در حکومت دارد، و نه بخاطر ضعف و ذلّت، (حامی و) سرپرستی برای اوست!» و او را بسیار بزرگ بشمار!');
+INSERT INTO chapters (id, number, quran_id) VALUES(360,18,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,360,'حمد مخصوص خدایی است که این کتاب (آسمانی) را بر بنده (برگزیده) اش نازل کرد، و هیچ گونه کژی در آن قرار نداد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,360,'در حالی که ثابت و مستقیم و نگاهبان کتابهای (آسمانی) دیگر است؛ تا (بدکاران را) از عذاب شدید او بترساند؛ و مؤمنانی را که کارهای شایسته انجام میدهند، بشارت دهد که پاداش نیکویی برای آنهاست...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,360,'(همان بهشت برین) که جاودانه در آن خواهند ماند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,360,'و (نیز) آنها را که گفتند: «خداوند، فرزندی (برای خود) انتخاب کرده است»، انذار کند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,360,'نه آنها (هرگز) به این سخن یقین دارند، و نه پدرانشان! سخن بزرگی از دهانشان خارج میشود! آنها فقط دروغ میگویند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,360,'] گویی میخواهی بخاطر اعمال آنان، خود را از غم و اندوه هلاک کنی اگر به این گفتار ایمان نیاورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,360,'ما آنچه را روی زمین است زینت آن قرار دادیم، تا آنها را بیازماییم که کدامینشان بهتر عمل میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,360,'(ولی) این زرق و برقها پایدار نیست، و ما (سرانجام) قشر روی زمین را خاک بی گیاهی قرار میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,360,'آیا گمان کردی اصحاب کهف و رقیم از آیات عجیب ما بودند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,360,'زمانی را به خاطر بیاور که آن جوانان به غار پناه بردند، و گفتند: «پروردگارا! ما را از سوی خودت رحمتی عطا کن، و راه نجاتی برای ما فراهم ساز!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,360,'ما (پرده خواب را) در غار بر گوششان زدیم، و سالها در خواب فرو رفتند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,360,'سپس آنان را برانگیختیم تا بدانیم (و این امر آشکار گردد که) کدام یک از آن دو گروه، مدّت خواب خود را بهتر حساب کردهاند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,360,'ما داستان آنان را بحق برای تو بازگو میکنیم؛ آنها جوانانی بودند که به پروردگارشان ایمان آوردند، و ما بر هدایتشان افزودیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,360,'و دلهایشان را محکم ساختیم در آن موقع که قیام کردند و گفتند: «پروردگار ما، پروردگار آسمانها و زمین است؛ هرگز غیر او معبودی را نمیخوانیم؛ که اگر چنین کنیم، سخنی بگزاف گفتهایم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,360,'این قوم ما هستند که معبودهایی جز خدا انتخاب کردهاند؛ چرا دلیل آشکاری (بر این کار) نمیآورند؟! و چه کسی ظالمتر است از آن کس که بر خدا دروغ ببندد؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,360,'و (به آنها گفتیم:) هنگامی که از آنان و آنچه جز خدا میپرستند کنارهگیری کردید، به غار پناه برید؛ که پروردگارتان (سایه) رحمتش را بر شما میگستراند؛ و در این امر، آرامشی برای شما فراهم میسازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,360,'و (اگر در آنجا بودی) خورشید را میدیدی که به هنگام طلوع، به سمت راست غارشان متمایل میگردد؛ و به هنگام غروب، به سمت چپ؛ و آنها در محل وسیعی از آن (غار) قرار داشتند؛ این از آیات خداست! هر کس را خدا هدایت کند، هدایت یافته واقعی اوست؛ و هر کس را گمراه نماید، هرگز ولیّ و راهنمایی برای او نخواهی یافت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,360,'و (اگر به آنها نگاه میکردی) میپنداشتی بیدارند؛ در حالی که در خواب فرو رفته بودند! و ما آنها را به سمت راست و چپ میگرداندیم (تا بدنشان سالم بماند). و سگ آنها دستهای خود را بر دهانه غار گشوده بود (و نگهبانی میکرد). اگر نگاهشان میکردی، از آنان میگریختی؛ و سر تا پای تو از ترس و وحشت پر میشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,360,'اینگونه آنها را (از خواب) برانگیختیم تا از یکدیگر سؤال کنند؛ یکی از آنها گفت: «چه مدّت خوابیدید؟!» گفتند: «یک روز، یا بخشی از یک روز!» (و چون نتوانستند مدّت خوابشان را دقیقاً بدانند) گفتند: «پروردگارتان از مدّت خوابتان آگاهتر است! اکنون یک نفر از خودتان را با این سکّهای که دارید به شهر بفرستید، تا بنگرد کدام یک از آنها غذای پاکیزهتری دارند، و مقداری از آن برای روزی شما بیاورد. امّا باید دقّت کند، و هیچ کس را از وضع شما آگاه نسازد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,360,'چرا که اگر آنان از وضع شما آگاه شوند، سنگسارتان میکنند؛ یا شما را به آیین خویش بازمیگردانند؛ و در آن صورت، هرگز روی رستگاری را نخواهید دید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,360,'و اینچنین مردم را متوّجه حال آنها کردیم، تا بدانند که وعده خداوند (در مورد رستاخیز) حقّ است؛ و در پایان جهان و قیام قیامت شکّی نیست! در آن هنگام که میان خود درباره کار خویش نزاع داشتند، گروهی میگفتند: «بنایی بر آنان بسازید (تا برای همیشه از نظر پنهان شوند! و از آنها سخن نگویید که) پروردگارشان از وضع آنها آگاهتر است!» ولی آنها که از رازشان آگاهی یافتند (و آن را دلیلی بر رستاخیز دیدند) گفتند: «ما مسجدی در کنار (مدفن) آنها میسازیم (تا خاطره آنان فراموش نشود.)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,360,'گروهی خواهند گفت: «آنها سه نفر بودند، که چهارمین آنها سگشان بود!» و گروهی میگویند: «پنچ نفر بودند، که ششمین آنها سگشان بود.» -همه اینها سخنانی بیدلیل است- و گروهی میگویند: «آنها هفت نفر بودند، و هشتمین آنها سگشان بود.» بگو: «پروردگار من از تعدادشان آگاهتر است!» جز گروه کمی، تعداد آنها را نمیدانند. پس درباره آنان جز با دلیل سخن مگو؛ و از هیچ کس درباره آنها سؤال مکن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,360,'و هرگز در مورد کاری نگو: «من فردا آن را انجام میدهم»...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,360,'مگر اینکه خدا بخواهد! و هرگاه فراموش کردی، (جبران کن) و پروردگارت را به خاطر بیاور؛ و بگو: «امیدوارم که پروردگارم مرا به راهی روشنتر از این هدایت کند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,360,'آنها در غارشان سیصد سال درنگ کردند، و نه سال (نیز) بر آن افزودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,360,'بگو: «خداوند از مدّت توقفشان آگاهتر است؛ غیب آسمانها و زمین از آن اوست! راستی چه بینا و شنواست! آنها هیچ ولیّ و سرپرستی جز او ندارند! و او هیچ کس را در حکم خود شرکت نمیدهد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,360,'آنچه را از کتاب پروردگارت به تو وحی شده تلاوت کن! هیچ چیز سخنان او را دگرگون نمیسازد؛ و هرگز پناهگاهی جز او نمییابی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,360,'با کسانی باش که پروردگار خود را صبح و عصر میخوانند، و تنها رضای او را میطلبند! و هرگز بخاطر زیورهای دنیا، چشمان خود را از آنها برمگیر! و از کسانی که قلبشان را از یاد خود غافل ساختیم اطاعت مکن! همانها که از هوای نفس پیروی کردند، و کارهایشان افراطی است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,360,'بگو: «این حقّ است از سوی پروردگارتان! هر کس میخواهد ایمان بیاورد (و این حقیقت را پذیرا شود)، و هر کس میخواهد کافر گردد!» ما برای ستمگران آتشی آماده کردیم که سراپردهاش آنان را از هر سو احاطه کرده است! و اگر تقاضای آب کنند، آبی برای آنان میاورند که همچون فلز گداخته صورتها را بریان میکند! چه بد نوشیدنی، و چه بد محل اجتماعی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,360,'مسلّماً کسانی که ایمان آوردند و کارهای شایسته انجام دادند، ما پاداش نیکوکاران را ضایع نخواهیم کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,360,'آنها کسانی هستند که بهشت جاودان برای آنان است؛ باغهایی از بهشت که نهرها از زیر درختان و قصرهایش جاری است؛ در آنجا با دستبندهایی از طلا آراسته میشوند؛ و لباسهایی (فاخر) به رنگ سبز، از حریر نازک و ضخیم، دربر میکنند؛ در حالی که بر تختها تکیه کردهاند. چه پاداش خوبی، و چه جمع نیکویی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,360,'(ای پیامبر!) برای آنان مثالی بزن: آن دو مرد، که برای یکی از آنها دو باغ از انواع انگورها قرار دادیم؛ و گرداگرد آن دو (باغ) را با درختان نخل پوشاندیم؛ و در میانشان زراعت پر برکتی قراردادیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,360,'هر دو باغ، میوه آورده بود، (میوههای فراوان،) و چیزی فروگذار نکرده بود؛ و میان آن دو، نهر بزرگی جاری ساخته بودیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,360,'صاحب این باغ، درآمد فراوانی داشت؛ به همین جهت، به دوستش -در حالی که با او گفتگو میکرد- چنین گفت: «من از نظر ثروت از تو برتر، و از نظر نفرات نیرومندترم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,360,'و در حالی که نسبت به خود ستمکار بود، در باغ خویش گام نهاد، و گفت: «من گمان نمیکنم هرگز این باغ نابود شود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,360,'و باور نمیکنم قیامت برپا گردد! و اگر به سوی پروردگارم بازگردانده شوم (و قیامتی در کار باشد)، جایگاهی بهتر از این جا خواهم یافت!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,360,'دوست (با ایمان) وی -در حالی که با او گفتگو میکرد- گفت: «آیا به خدایی که تو را از خاک، و سپس از نطفه آفرید، و پس از آن تو را مرد کاملی قرار داد، کافر شدی؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,360,'ولیّ من کسی هستم که «اللّه» پروردگار من است؛ و هیچ کس را شریک پروردگارم قرارنمیدهم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,360,'چرا هنگامی که وارد باغت شدی، نگفتی این نعمتی است که خدا خواسته است؟! قوّت (و نیرویی) جز از ناحیه خدا نیست! و اگر میبینی من از نظر مال و فرزند از تو کمترم (مطلب مهمّی نیست)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,360,'شاید پروردگارم بهتر از باغ تو به من بدهد؛ و مجازات حساب شدهای از آسمان بر باغ تو فروفرستد، بگونهای که آن را به زمین بیگیاه لغزندهای مبدّل کند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,360,'و یا آب آن در اعمال زمین فرو رود، آن گونه که هرگز نتوانی آن را به دست آوری!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,360,'(به هر حال عذاب الهی فرا رسید،) و تمام میوههای آن نابود شد؛ و او بخاطر هزینه هایی که در آن صرف کرده بود، پیوسته دستهای خود را به هم میمالید -در حالی که تمام باغ بر داربستهایش فرو ریخته بود- و میگفت: «ای کاش کسی را همتای پروردگارم قرار نداده بودم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,360,'و گروهی نداشت که او را در برابر (عذاب) خداوند یاری دهند؛ و از خودش (نیز) نمیتوانست یاری گیرد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,360,'در آنجا ثابت شد که ولایت (و قدرت) از آن خداوند بر حق است! اوست که برترین ثواب، و بهترین عاقبت را (برای مطیعان) دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,360,'(ای پیامبر!) زندگی دنیا را برای آنان به آبی تشبیه کن که از آسمان فرو میفرستیم؛ و بوسیله آن، گیاهان زمین (سرسبز میشود و) در هم فرومیرود. امّا بعد از مدتی میخشکد؛ و بادها آن را به هر سو پراکنده میکند؛ و خداوند بر همه چیز تواناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,360,'مال و فرزند، زینت زندگی دنیاست؛ و باقیات صالحات [= ارزشهای پایدار و شایسته] ثوابش نزد پروردگارت بهتر و امیدبخشتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,360,'و روزی را به خاطر بیاور که کوهها را به حرکت درآوریم؛ و زمین را آشکار (و مسطح) میبینی؛ و همه آنان [= انسانها] را برمیانگیزیم، و احدی از ایشان را فروگذار نخواهیم کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,360,'آنها همه در یک صف به (پیشگاه) پروردگارت عرضه میشوند؛ (و به آنان گفته میشود:) همگی نزد ما آمدید، همان گونه که نخستین بار شما را آفریدیم! اما شما گمان میکردید ما هرگز موعدی برایتان قرار نخواهیم داد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,360,'و کتاب [= کتابی که نامه اعمال همه انسانهاست] در آن جا گذارده میشود، پس گنهکاران را میبینی که از آنچه در آن است، ترسان و هراسانند؛ و میگویند: «ای وای بر ما! این چه کتابی است که هیچ عمل کوچک و بزرگی را فرونگذاشته مگر اینکه آن را به شمار آورده است؟! و (این در حالی است که) همه اعمال خود را حاضر میبینند؛ و پروردگارت به هیچ کس ستم نمیکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,360,'به یاد آرید زمانی را که به فرشتگان گفتیم: «برای آدم سجده کنید!» آنها همگی سجده کردند جز ابلیس -که از جن بود- و از فرمان پروردگارش بیرون شد آیا (با این حال،) او و فرزندانش را به جای من اولیای خود انتخاب میکنید، در حالی که آنها دشمن شما هستند؟! (فرمانبرداری از شیطان و فرزندانش به جای اطاعت خدا،) چه جایگزینی بدی است برای ستمکاران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,360,'من هرگز آنها [= ابلیس و فرزندانش] را به هنگام آفرینش آسمانها و زمین، و نه به هنگام آفرینش خودشان، حاضر نساختم! و من هیچ گاه گمراهکنندگان را دستیار خود قرار نمیدهم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,360,'به خاطر بیاورید روزی را که (خداوند) میگوید: «همتایانی را که برای من میپنداشتید، بخوانید (تا به کمک شما بشتابند!)» ولی هر چه آنها را میخوانند، جوابشان نمیدهند؛ و در میان این دو گروه، کانون هلاکتی قراردادهایم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,360,'و گنهکاران، آتش (دوزخ) را میبینند؛ و یقین میکنند که با آن درمیآمیزند، و هیچ گونه راه گریزی از آن نخواهند یافت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,360,'و در این قرآن، از هر گونه مثلی برای مردم بیان کردهایم؛ ولی انسان بیش از هر چیز، به مجادله میپردازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,360,'و چیزی مردم را بازنداشت از اینکه -وقتی هدایت به سراغشان آمد- ایمان بیاورند و از پروردگارشان طلب آمرزش کنند، جز اینکه (خیرهسری کردند؛ گویی میخواستند) سرنوشت پیشینیان برای آنان بیاید، یا عذاب (الهی) در برابرشان قرار گیرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,360,'ما پیامبران را، جز بعنوان بشارت دهنده و انذار کننده، نمیفرستیم؛ اما کافران همواره مجادله به باطل میکنند، تا (به گمان خود،) حق را بوسیله آن از میان بردارند! و آیات ما، و مجازاتهایی را که به آنان وعده داده شده است، به باد مسخره گرفتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,360,'چه کسی ستمکارتر است از آن کس که آیات پروردگارش به او تذکّر داده شده، و از آن روی گرداند، و آنچه را با دستهای خود پیش فرستاد فراموش کرد؟! ما بر دلهای اینها پردههایی افکندهایم تا نفهمند؛ و در گوشهایشان سنگینی قرار دادهایم (تا صدای حق را نشنوند)! و از این رو اگر آنها را به سوی هدایت بخوانی، هرگز هدایت نمیشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,360,'و پروردگارت، آمرزنده و صاحب رحمت است؛ اگر میخواست آنان را به خاطر اعمالشان مجازات کند، عذاب را هر چه زودتر برای آنها میفرستاد؛ ولی برای آنان موعدی است که هرگز از آن راه فراری نخواهند داشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,360,'این شهرها و آبادیهایی است که ما آنها را هنگامی که ستم کردند هلاک نمودیم؛ و برای هلاکتشان موعدی قرار دادیم! (آنها ویرانههایش را با چشم میبینند، و عبرت نمیگیرند!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,360,'به خاطر بیاور هنگامی را که موسی به دوست خود گفت: دست از جستجو برنمیدارم تا به محل تلاقی دو دریا برسم؛ هر چند مدت طولانی به راه خود ادامه دهم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,360,'(ولی) هنگامی که به محل تلاقی آن دو دریا رسیدند، ماهی خود را (که برای تغذیه همراه داشتند) فراموش کردند؛ و ماهی راه خود را در دریا پیش گرفت (و روان شد).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,360,'هنگامی که از آن جا گذشتند، (موسی) به یار همسفرش گفت: «غذای ما را بیاور، که سخت از این سفر خسته شدهایم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,360,'گفت: «به خاطر داری هنگامی که ما (برای استراحت) به کنار آن صخره پناه بردیم، من (در آن جا) فراموش کردم جریان ماهی را بازگو کنم -و فقط شیطان بود که آن را از خاطر من برد- و ماهی بطرز شگفتآوری راه خود را در دریا پیش گرفت!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,360,'(موسی) گفت: «آن همان بود که ما میخواستیم!» سپس از همان راه بازگشتند، در حالی که پیجویی میکردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,360,'(در آن جا) بندهای از بندگان ما را یافتند که رحمت (و موهبت عظیمی) از سوی خود به او داده، و علم فراوانی از نزد خود به او آموخته بودیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,360,'موسی به او گفت: «آیا از تو پیروی کنم تا از آنچه به تو تعلیم داده شده و مایه رشد و صلاح است، به من بیاموزی؟»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,360,'گفت: «تو هرگز نمیتوانی با من شکیبایی کنی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,360,'و چگونه میتوانی در برابر چیزی که از رموزش آگاه نیستی شکیبا باشی؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,360,'(موسی) گفت: «به خواست خدا مرا شکیبا خواهی یافت؛ و در هیچ کاری مخالفت فرمان تو نخواهم کرد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,360,'(خضر) گفت: «پس اگر میخواهی بدنبال من بیایی، از هیچ چیز مپرس تا خودم (به موقع) آن را برای تو بازگو کنم.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,360,'آن دو به راه افتادند؛ تا آن که سوار کشتی شدند، (خضر) کشتی را سوراخ کرد. (موسی) گفت: «آیا آن را سوراخ کردی که اهلش را غرق کنی؟! راستی که چه کار بدی انجام دادی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,360,'گفت: «آیا نگفتم تو هرگز نمیتوانی با من شکیبایی کنی؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,360,'(موسی) گفت: «مرا بخاطر این فراموشکاریم مؤاخذه مکن و از این کارم بر من سخت مگیر!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,360,'باز به راه خود ادامه دادند، تا اینکه نوجوانی را دیدند؛ و او آن نوجوان را کشت. (موسی) گفت: «آیا انسان پاکی را، بی آنکه قتلی کرده باشد، کشتی؟! براستی کار زشتی انجام دادی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,360,'(باز آن مرد عالم) گفت: «آیا به تو نگفتم که تو هرگز نمیتوانی با من صبر کنی؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,360,'(موسی) گفت: «بعد از این اگر درباره چیزی از تو سؤال کردم، دیگر با من همراهی نکن؛ (زیرا) از سوی من معذور خواهی بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,360,'باز به راه خود ادامه دادند تا به مردم قریهای رسیدند؛ از آنان خواستند که به ایشان غذا دهند؛ ولی آنان از مهمان کردنشان خودداری نمودند؛ (با این حال) در آن جا دیواری یافتند که میخواست فروریزد؛ و (آن مرد عالم) آن را برپا داشت. (موسی) گفت: «(لااقل) میخواستی در مقابل این کار مزدی بگیری!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,360,'او گفت: «اینک زمان جدایی من و تو فرا رسیده؛ اما بزودی راز آنچه را که نتوانستی در برابر آن صبر کنی، به تو خبر میدهم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,360,'اما آن کشتی مال گروهی از مستمندان بود که با آن در دریا کار میکردند؛ و من خواستم آن را معیوب کنم؛ (چرا که) پشت سرشان پادشاهی (ستمگر) بود که هر کشتی (سالمی) را بزور میگرفت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,360,'و اما آن نوجوان، پدر و مادرش با ایمان بودند؛ و بیم داشتیم که آنان را به طغیان و کفر وادارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,360,'از این رو، خواستیم که پروردگارشان به جای او، فرزندی پاکتر و با محبتتر به آن دو بدهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,360,'و اما آن دیوار، از آن دو نوجوان یتیم در آن شهر بود؛ و زیر آن، گنجی متعلق به آن دو وجود داشت؛ و پدرشان مرد صالحی بود؛ و پروردگار تو میخواست آنها به حد بلوغ برسند و گنجشان را استخراج کنند؛ این رحمتی از پروردگارت بود؛ و من آن (کارها) را خودسرانه انجام ندادم؛ این بود راز کارهایی که نتوانستی در برابر آنها شکیبایی به خرج دهی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,360,'و از تو درباره «ذو القرنین» میپرسند؛ بگو: «بزودی بخشی از سرگذشت او را برای شما بازگو خواهم کرد.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,360,'ما به او در روی زمین، قدرت و حکومت دادیم؛ و اسباب هر چیز را در اختیارش گذاشتیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,360,'او از این اسباب، (پیروی و استفاده) کرد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,360,'تا به غروبگاه آفتاب رسید؛ (در آن جا) احساس کرد (و در نظرش مجسّم شد) که خورشید در چشمه تیره و گلآلودی فرو میرود؛ و در آن جا قومی را یافت؛ گفتیم: «ای ذو القرنین! آیا میخواهی (آنان) را مجازات کنی، و یا روش نیکویی در مورد آنها انتخاب نمایی؟»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,360,'گفت: «اما کسی را که ستم کرده است، مجازات خواهیم کرد؛ سپس به سوی پروردگارش بازمیگردد، و خدا او را مجازات شدیدی خواهد کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,360,'و اما کسی که ایمان آورد و عمل صالح انجام دهد، پاداشی نیکوتر خواهد داشت؛ و ما دستور آسانی به او خواهیم داد.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,360,'سپس (بار دیگر) از اسبابی (که در اختیار داشت) بهره گرفت...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,360,'تا به خاستگاه خورشید رسید؛ (در آن جا) دید خورشید بر جمعیّتی طلوع میکند که در برابر (تابش) آفتاب، پوششی برای آنها قرار نداده بودیم (و هیچ گونه سایبانی نداشتند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,360,'(آری) اینچنین بود (کار ذو القرنین)! و ما بخوبی از امکاناتی که نزد او بود آگاه بودیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,360,'(باز) از اسباب مهمّی (که در اختیار داشت) استفاده کرد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,360,'(و همچنان به راه خود ادامه داد) تا به میان دو کوه رسید؛ و در کنار آن دو (کوه) قومی را یافت که هیچ سخنی را نمیفهمیدند (و زبانشان مخصوص خودشان بود)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,360,'(آن گروه به او) گفتند: «ای ذو القرنین یأجوج و مأجوج در این سرزمین فساد میکنند؛ آیا ممکن است ما هزینهای برای تو قرار دهیم، که میان ما و آنها سدّی ایجاد کنی؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,360,'(ذو القرنین) گفت: «آنچه پروردگارم در اختیار من گذارده، بهتر است (از آنچه شما پیشنهاد میکنید)! مرا با نیرویی یاری دهید، تا میان شما و آنها سدّ محکمی قرار دهم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,360,'قطعات بزرگ آهن برایم بیاورید (و آنها را روی هم بچینید)!» تا وقتی که کاملاً میان دو کوه را پوشانید، گفت: «(در اطراف آن آتش بیفروزید، و) در آن بدمید!» (آنها دمیدند) تا قطعات آهن را سرخ و گداخته کرد، و گفت: «(اکنون) مس مذاب برایم بیاورید تا بر روی آن بریزم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,360,'(سرانجام چنان سدّ نیرومندی ساخت) که آنها [= طایفه یأجوج و مأجوج] قادر نبودند از آن بالا روند؛ و نمیتوانستند نقبی در آن ایجاد کنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,360,'(آنگاه) گفت: «این از رحمت پروردگار من است! امّا هنگامی که وعده پروردگارم فرا رسد، آن را در هم میکوبد؛ و وعده پروردگارم حق است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,360,'و در آن روز (که جهان پایان میگیرد)، ما آنان را چنان رها میکنیم که درهم موج میزنند؛ و در صور [= شیپور] دمیده میشود؛ و ما همه را جمع میکنیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,4,360,'در آن روز، جهنم را بر کافران عرضه میداریم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,4,360,'همانها که پردهای چشمانشان را از یاد من پوشانده بود، و قدرت شنوایی نداشتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,4,360,'آیا کافران پنداشتند میتوانند بندگانم را به جای من اولیای خود انتخاب کنند؟! ما جهنم را برای پذیرایی کافران آماده کردهایم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,4,360,'بگو: «آیا به شما خبر دهیم که زیانکارترین (مردم) در کارها، چه کسانی هستند؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,4,360,'آنها که تلاشهایشان در زندگی دنیا گم (و نابود) شده؛ با این حال، میپندارند کار نیک انجام میدهند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,4,360,'آنها کسانی هستند که به آیات پروردگارشان و لقای او کافر شدند؛ به همین جهت، اعمالشان حبط و نابود شد! از این رو روز قیامت، میزانی برای آنها برپا نخواهیم کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,4,360,'(آری،) این گونه است! کیفرشان دوزخ است، بخاطر آنکه کافر شدند، و آیات من و پیامبرانم را به سخریه گرفتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,4,360,'امّا کسانی که ایمان آوردند و کارهای شایسته انجام دادند، باغهای بهشت برین محل پذیرایی آنان خواهد بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,4,360,'آنها جاودانه در آن خواهند ماند؛ و هرگز تقاضای نقل مکان از آن جا نمیکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,4,360,'بگو: «اگر دریاها برای (نوشتن) کلمات پروردگارم مرکّب شود، دریاها پایان میگیرد. پیش از آنکه کلمات پروردگارم پایان یابد؛ هر چند همانند آن (دریاها) را کمک آن قرار دهیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,4,360,'بگو: «من فقط بشری هستم مثل شما؛ (امتیازم این است که) به من وحی میشود که تنها معبودتان معبود یگانه است؛ پس هر که به لقای پروردگارش امید دارد، باید کاری شایسته انجام دهد، و هیچ کس را در عبادت پروردگارش شریک نکند!');
+INSERT INTO chapters (id, number, quran_id) VALUES(361,19,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,361,'کهیعص');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,361,'(این) یادی است از رحمت پروردگار تو نسبت به بندهاش زکریا...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,361,'در آن هنگام که پروردگارش را در خلوتگاه (عبادت) پنهان خواند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,361,'گفت: «پروردگارا! استخوانم سست شده؛ و شعله پیری تمام سرم را فراگرفته؛ و من هرگز در دعای تو، از اجابت محروم نبودهام!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,361,'و من از بستگانم بعد از خودم بیمناکم (که حق پاسداری از آیین تو را نگاه ندارند)! و (از طرفی) همسرم نازا و عقیم است؛ تو از نزد خود جانشینی به من ببخش...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,361,'که وارث من و دودمان یعقوب باشد؛ و او را مورد رضایتت قرار ده!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,361,'ای زکریا! ما تو را به فرزندی بشارت میدهیم که نامش «یحیی» است؛ و پیش از این، همنامی برای او قرار ندادهایم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,361,'گفت: «پروردگارا! چگونه برای من فرزندی خواهد بود؟! در حالی که همسرم نازا و عقیم است، و من نیز از شدّت پیری افتاده شدهام!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,361,'فرمود: «پروردگارت این گونه گفته (و اراده کرده)! این بر من آسان است؛ و قبلاً تو را آفریدم در حالی که چیزی نبودی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,361,'عرض کرد: «پروردگارا! نشانهای برای من قرار ده!» فرمود: «نشانه تو این است که سه شبانه روز قدرت تکلّم (با مردم) نخواهی داشت؛ در حالی که زبانت سالم است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,361,'او از محراب عبادتش به سوی مردم بیرون آمد؛ و با اشاره به آنها گفت: «(بشکرانه این موهبت،) صبح و شام خدا را تسبیح گویید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,361,'ای یحیی! کتاب (خدا) را با قوّت بگیر! و ما فرمان نبوّت (و عقل کافی) در کودکی به او دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,361,'و رحمت و محبتّی از ناحیه خود به او بخشیدیم، و پاکی (دل و جان)! و او پرهیزگار بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,361,'او نسبت به پدر و مادرش نیکوکار بود؛ و جبّار (و متکّبر) و عصیانگر نبود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,361,'سلام بر او، آن روز که تولّد یافت، و آن روز که میمیرد، و آن روز که زنده برانگیخته میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,361,'و در این کتاب (آسمانی)، مریم را یاد کن، آن هنگام که از خانوادهاش جدا شد، و در ناحیه شرقی (بیت المقدس) قرار گرفت؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,361,'و میان خود و آنان حجابی افکند (تا خلوتگاهش از هر نظر برای عبادت آماده باشد). در این هنگام، ما روح خود را بسوی او فرستادیم؛ و او در شکل انسانی بیعیب و نقص، بر مریم ظاهر شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,361,'او (سخت ترسید و) گفت: «من از شرّ تو، به خدای رحمان پناه میبرم اگر پرهیزگاری!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,361,'گفت: «من فرستاده پروردگار توام؛ (آمدهام) تا پسر پاکیزهای به تو ببخشم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,361,'گفت: «چگونه ممکن است فرزندی برای من باشد؟! در حالی که تاکنون انسانی با من تماس نداشته، و زن آلودهای هم نبودهام!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,361,'گفت: «مطلب همین است! پروردگارت فرموده: این کار بر من آسان است! (ما او را میآفرینیم، تا قدرت خویش را آشکار سازیم؛) و او را برای مردم نشانهای قرار دهیم؛ و رحمتی باشد از سوی ما! و این امری است پایان یافته (و جای گفتگو ندارد)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,361,'سرانجام (مریم) به او باردار شد؛ و او را به نقطه دور دستی برد (و خلوت گزید)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,361,'درد زایمان او را به کنار تنه درخت خرمایی کشاند؛ (آنقدر ناراحت شد که) گفت: «ای کاش پیش از این مرده بودم، و بکلّی فراموش میشدم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,361,'ناگهان از طرف پایین پایش او را صدا زد که: «غمگین مباش! پروردگارت زیر پای تو چشمه آبی (گوارا) قرار داده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,361,'و این تنه نخل را به طرف خود تکان ده، رطب تازهای بر تو فرو میریزد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,361,'(از این غذای لذیذ) بخور؛ و (از آن آب گوارا) بنوش؛ و چشمت را (به این مولود جدید) روشن دار! و هرگاه کسی از انسانها را دیدی، (با اشاره) بگو: من برای خداوند رحمان روزهای نذر کردهام؛ بنابراین امروز با هیچ انسانی هیچ سخن نمیگویم! (و بدان که این نوزاد، خودش از تو دفاع خواهد کرد!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,361,'(مریم) در حالی که او را در آغوش گرفته بود، نزد قومش آورد؛ گفتند: «ای مریم! کار بسیار عجیب و بدی انجام دادی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,361,'ای خواهر هارون! نه پدرت مرد بدی بود، و نه مادرت زن بد کارهای!!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,361,'(مریم) به او اشاره کرد؛ گفتند: «چگونه با کودکی که در گاهواره است سخن بگوییم؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,361,'(ناگهان عیسی زبان به سخن گشود و) گفت: «من بنده خدایم؛ او کتاب (آسمانی) به من داده؛ و مرا پیامبر قرار داده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,361,'و مرا -هر جا که باشم- وجودی پربرکت قرار داده؛ و تا زمانی که زندهام، مرا به نماز و زکات توصیه کرده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,361,'و مرا نسبت به مادرم نیکوکار قرار داده؛ و جبّار و شقی قرار نداده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,361,'و سلام (خدا) بر من، در آن روز که متولّد شدم، و در آن روز که میمیرم، و آن روز که زنده برانگیخته خواهم شد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,361,'این است عیسی پسر مریم؛ گفتار حقّی که در آن تردید میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,361,'هرگز برای خدا شایسته نبود که فرزندی اختیار کند! منزّه است او! هرگاه چیزی را فرمان دهد، میگوید: «موجود باش!» همان دم موجود میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,361,'و خداوند، پروردگار من و شماست! او را پرستش کنید؛ این است راه راست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,361,'ولی (بعد از او) گروههایی از میان پیروانش اختلاف کردند؛ وای به حال کافران از مشاهده روز بزرگ (رستاخیز)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,361,'در آن روز که نزد ما میآیند، چه گوشهای شنوا و چه چشمهای بینایی پیدا میکنند! ولی این ستمگران امروز در گمراهی آشکارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,361,'آنان را از روز حسرت [= روز رستاخیز که برای همه مایه تأسف است] بترسان، در آن هنگام که همه چیز پایان مییابد! و آنها در غفلتند و ایمان نمیآورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,361,'ما، زمین و تمام کسانی را که بر آن هستند، به ارث میبریم؛ و همگی بسوی ما بازگردانده میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,361,'در این کتاب، ابراهیم را یاد کن، که او بسیار راستگو، و پیامبر (خدا) بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,361,'هنگامی که به پدرش گفت: «ای پدر! چرا چیزی را میپرستی که نه میشنود، و نه میبیند، و نه هیچ مشکلی را از تو حلّ میکند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,361,'ای پدر! دانشی برای من آمده که برای تو نیامده است؛ بنابر این از من پیروی کن، تا تو را به راه راست هدایت کنم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,361,'ای پدر! شیطان را پرستش مکن، که شیطان نسبت به خداوند رحمان، عصیانگر بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,361,'ای پدر! من از این میترسم که از سوی خداوند رحمان عذابی به تو رسد، در نتیجه از دوستان شیطان باشی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,361,'گفت: «ای ابراهیم! آیا تو از معبودهای من روی گردانی؟! اگر (از این کار) دست برنداری، تو را سنگسار میکنم! و برای مدّتی طولانی از من دور شو!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,361,'(ابراهیم) گفت: «سلام بر تو! من بزودی از پروردگارم برایت تقاضای عفو میکنم؛ چرا که او همواره نسبت به من مهربان بوده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,361,'و از شما، و آنچه غیر خدا میخوانید، کنارهگیری میکنم؛ و پروردگارم را میخوانم؛ و امیدوارم در خواندن پروردگارم بیپاسخ نمانم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,361,'هنگامی که از آنان و آنچه غیر خدا میپرستیدند کنارهگیری کرد، ما اسحاق و یعقوب را به او بخشیدیم؛ و هر یک را پیامبری (بزرگ) قرار دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,361,'و از رحمت خود به آنان عطا کردیم؛ و برای آنها نام نیک و مقام برجستهای (در میان همه امّتها) قرار دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,361,'و در این کتاب (آسمانی) از موسی یاد کن، که او مخلص بود، و رسول و پیامبری والا مقام!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,361,'ما او را از طرف راست (کوه) طور فراخواندیم؛ و نجواکنان او را (به خود) نزدیک ساختیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,361,'و ما از رحمت خود، برادرش هارون را -که پیامبر بود- به او بخشیدیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,361,'و در این کتاب (آسمانی) از اسماعیل (نیز) یاد کن، که او در وعدههایش صادق، و رسول و پیامبری (بزرگ) بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,361,'او همواره خانوادهاش را به نماز و زکات فرمان میداد؛ و همواره مورد رضایت پروردگارش بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,361,'و در این کتاب، از ادریس (نیز) یاد کن، او بسیار راستگو و پیامبر (بزرگی) بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,361,'و ما او را به مقام والایی رساندیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,361,'آنها پیامبرانی بودند که خداوند مشمول نعمتشان قرار داده بود، از فرزندان آدم، و از کسانی که با نوح بر کشتی سوار کردیم، و از دودمان ابراهیم و یعقوب، و از کسانی که هدایت کردیم و برگزیدیم. آنها کسانی بودند که وقتی آیات خداوند رحمان بر آنان خوانده میشد به خاک میافتادند، در حالی که سجده میکردند و گریان بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,361,'امّا پس از آنان، فرزندان ناشایستهای روی کار آمدند که نماز را تباه کردند، و از شهوات پیروی نمودند؛ و بزودی (مجازات) گمراهی خود را خواهند دید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,361,'مگر آنان که توبه کنند، و ایمان بیاورند، و کار شایسته انجام دهند؛ چنین کسانی داخل بهشت میشوند، و کمترین ستمی به آنان نخواهد شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,361,'وارد باغهایی جاودانی میشوند که خداوند رحمان بندگانش را به آن وعده داده است؛ هر چند آن را ندیدهاند؛ مسلماً وعده خدا تحقق یافتنی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,361,'در آن جا هرگز گفتار لغو و بیهودهای نمیشنوند؛ و جز سلام در آن جا سخنی نیست؛ و هر صبح و شام، روزی آنان در بهشت مقرّر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,361,'این همان بهشتی است که به بندگان پرهیزگار خود، به ارث میدهیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,361,'(پس از تأخیر وحی، جبرئیل به پیامبر عرض کرد:) ما جز بفرمان پروردگار تو، نازل نمیشویم؛ آنچه پیش روی ما، و پشت سر ما، و آنچه میان این دو میباشد، همه از آن اوست؛ و پروردگارت هرگز فراموشکار نبوده (و نیست)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,361,'همان پروردگار آسمانها و زمین، و آنچه میان آن دو قرار دارد! او را پرستش کن؛ و در راه عبادتش شکیبا باش! آیا مثل و مانندی برای او مییابی؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,361,'انسان میگوید: «آیا پس از مردن، زنده (از قبر) بیرون خواهم آمد؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,361,'آیا انسان به خاطر نمیآورد که ما پیش از این او را آفریدیم در حالی که چیزی نبود؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,361,'سوگند به پروردگارت که همه آنها را همراه با شیاطین در قیامت جمع میکنیم؛ سپس همه را -در حالی که به زانو درآمدهاند- گرداگرد جهنم حاضر میسازیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,361,'سپس از هر گروه و جمعیّتی، کسانی را که در برابر خداوند رحمان از همه سرکش تر بودهاند، جدا میکنیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,361,'بعد از آن، ما بخوبی از کسانی که برای سوختن در آتش سزاوارترند، آگاهتریم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,361,'و همه شما (بدون استثنا) وارد جهنم میشوید؛ این امری است حتمی و قطعی بر پروردگارت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,361,'سپس آنها را که تقوا پیشه کردند از آن رهایی میبخشیم؛ و ظالمان را -در حالی که (از ضعف و ذلّت) به زانو درآمدهاند- در آن رها میسازیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,361,'و هنگامی که آیات روشن ما بر آنان خوانده میشود، کافران به مؤمنان میگویند: «کدام یک از دو گروه [= ما و شما] جایگاهش بهتر، و جلسات انس و مشورتش زیباتر، و بخشش او بیشتر است؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,361,'چه بسیار اقوامی را پیش از آنان نابود کردیم که هم مال و ثروتشان از آنها بهتر بود، و هم ظاهرشان آراستهتر!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,361,'بگو: «کسی که در گمراهی است، باید خداوند به او مهلت دهد تا زمانی که وعده الهی را با چشم خود ببینند: یا عذاب (این دنیا)، یا (عذاب) قیامت! (آن روز) خواهند دانست چه کسی جایش بدتر، و لشکرش ناتوانتر است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,361,'(امّا) کسانی که در راه هدایت گام نهادند، خداوند بر هدایتشان میافزاید؛ و آثار شایستهای که (از انسان) باقی میماند، ثوابش در پیشگاه پروردگارت بهتر، و عاقبتش خوبتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,361,'آیا دیدی کسی را که به آیات ما کافر شد، و گفت: «اموال و فرزندان فراوانی به من داده خواهد شد»؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,361,'آیا او از غیب آگاه گشته، یا نزد خدا عهد و پیمانی گرفته است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,361,'هرگز چنین نیست! ما بزودی آنچه را میگوید مینویسیم و عذاب را بر او مستمرّ خواهیم داشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,361,'آنچه را او میگوید (از اموال و فرزندان)، از او به ارث میبریم، و به صورت تنها نزد ما خواهد آمد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,361,'و آنان غیر از خدا، معبودانی را برای خود برگزیدند تا مایه عزّتشان باشد! (چه پندار خامی!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,361,'هرگز چنین نیست! به زودی (معبودها) منکر عبادت آنان خواهند شد؛ (بلکه) بر ضدّشان قیام میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,361,'آیا ندیدی که ما شیاطین را بسوی کافران فرستادیم تا آنان را شدیداً تحریک کنند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,361,'پس درباره آنان شتاب مکن؛ ما آنها (و اعمالشان) را به دقت شماره میکنیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,361,'در آن روز که پرهیزگاران را دسته جمعی بسوی خداوند رحمان (و پاداشهای او) محشور میکنیم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,361,'و مجرمان را (همچون شتران تشنهکامی که به سوی آبگاه میروند) به جهنّم میرانیم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,361,'آنان هرگز مالک شفاعت نیستند؛ مگر کسی که نزد خداوند رحمان، عهد و پیمانی دارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,361,'و گفتند: «خداوند رحمان فرزندی برای خود برگزیده است».');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,361,'راستی مطلب زشت و زنندهای گفتید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,361,'نزدیک است به خاطر این سخن آسمانها از هم متلاشی گردد، و زمین شکافته شود، و کوهها بشدّت فرو ریزد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,361,'از این رو که برای خداوند رحمان فرزندی قائل شدند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,361,'در حالی که هرگز برای خداوند رحمان سزاوار نیست که فرزندی برگزیند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,361,'تمام کسانی که در آسمانها و زمین هستند، بنده اویند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,361,'خداوند همه آنها را احصا کرده، و به دقّت شمرده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,361,'و همگی روز رستاخیز، تک و تنها نزد او حاضر میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,361,'مسلّماً کسانی که ایمان آورده و کارهای شایسته انجام دادهاند، خداوند رحمان محبّتی برای آنان در دلها قرار میدهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,361,'و ما فقط آن [= قرآن] را بر زبان تو آسان ساختیم تا پرهیزگاران را بوسیله آن بشارت دهی، و دشمنان سرسخت را با آنان انذار کنی.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,361,'چه بسیار اقوام (بیایمان و گنهکاری) را که پیش از آنان هلاک کردیم؛ آیا احدی از آنها را احساس میکنی؟! یا کمترین صدایی از آنان میشنوی؟!');
+INSERT INTO chapters (id, number, quran_id) VALUES(362,20,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,362,'طه');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,362,'ما قرآن را بر تو نازل نکردیم که خود را به زحمت بیفکنی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,362,'آن را فقط برای یادآوری کسانی که (از خدا) میترسند نازل ساختیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,362,'(این قرآن) از سوی کسی نازل شده که زمین و آسمانهای بلند را آفریده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,362,'همان بخشندهای که بر عرش مسلّط است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,362,'از آن اوست آنچه در آسمانها، و آنچه در زمین، و آنچه میان آن دو، و آنچه در زیر خاک (پنهان) است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,362,'اگر سخن آشکارا بگویی (یا مخفی کنی)، او اسرار -و حتی پنهانتر از آن- را نیز میداند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,362,'او خداوندی است که معبودی جز او نیست؛ و نامهای نیکوتر از آن اوست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,362,'و آیا خبر موسی به تو رسیده است؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,362,'هنگامی که (از دور) آتشی مشاهده کرد، و به خانواده خود گفت: «(اندکی) درنگ کنید که من آتشی دیدم! شاید شعلهای از آن برای شما بیاورم؛ یا بوسیله این آتش راه را پیدا کنم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,362,'هنگامی که نزد آتش آمد، ندا داده شد که: «ای موسی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,362,'من پروردگار توام! کفشهایت را بیرون آر، که تو در سرزمین مقدّس «طوی» هستی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,362,'و من تو را (برای مقام رسالت) برگزیدم؛ اکنون به آنچه بر تو وحی میشود، گوش فراده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,362,'من «اللّه» هستم؛ معبودی جز من نیست! مرا بپرست، و نماز را برای یاد من بپادار!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,362,'بطور قطع رستاخیز خواهد آمد! میخواهم آن را پنهان کنم، تا هر کس در برابر سعی و کوشش خود، جزا داده شود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,362,'پس مبادا کسی که به آن ایمان ندارد و از هوسهای خویش پیروی میکند، تو را از آن بازدارد؛ که هلاک خواهی شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,362,'و آن چیست در دست راست تو، ای موسی؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,362,'گفت: «این عصای من است؛ بر آن تکیه میکنم، برگ درختان را با آن برای گوسفندانم فرومیریزم؛ و مرا با آن کارها و نیازهای دیگری است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,362,'گفت: «ای موسی! آن را بیفکن.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,362,'پس موسی آن (عصا) را افکند، که ناگهان اژدهایی شد که به هر سو میشتافت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,362,'گفت: «آن را بگیر و نترس، ما آن را به صورت اولش بازمیگردانیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,362,'و دستت را به گریبانت ببر، تا سفید و بیعیب بیرون آید؛ این نشانه دیگری (از سوی خداوند) است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,362,'تا از نشانههای بزرگ خویش به تو نشان دهیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,362,'اینک به سوی فرعون برو، که او طغیان کرده است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,362,'(موسی) گفت: «پروردگارا! سینهام را گشاده کن؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,362,'و کارم را برایم آسان گردان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,362,'و گره از زبانم بگشای؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,362,'تا سخنان مرا بفهمند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,362,'و وزیری از خاندانم برای من قرار ده...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,362,'برادرم هارون را!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,362,'با او پشتم را محکم کن؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,362,'و او را در کارم شریک ساز؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,362,'تا تو را بسیار تسبیح گوییم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,362,'و تو را بسیار یاد کنیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,362,'چرا که تو همیشه از حال ما آگاه بودهای!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,362,'فرمود: «ای موسی! آنچه را خواستی به تو داده شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,362,'و ما بار دیگر تو را مشمول نعمت خود ساختیم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,362,'آن زمان که به مادرت آنچه لازم بود الهام کردیم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,362,'که: «او را در صندوقی بیفکن، و آن صندوق را به دریا بینداز، تا دریا آن را به ساحل افکند؛ و دشمن من و دشمن او، آن را برگیرد!» و من محبّتی از خودم بر تو افکندم، تا در برابر دیدگان [= علم] من، ساخته شوی (و پرورش یابی)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,362,'در آن هنگام که خواهرت (در نزدیکی کاخ فرعون) راه میرفت و میگفت: «آیا کسی را به شما نشان دهم که این نوزاد را کفالت میکند (و دایه خوبی برای او خواهد بود)!» پس تو را به مادرت بازگرداندیم، تا چشمش به تو روشن شود؛ و غمگین نگردد! و تو یکی (از فرعونیان) را کشتی؛ اما ما تو را از اندوه نجات دادیم! و بارها تو را آزمودیم! پس از آن، سالیانی در میان مردم «مدین» توقف نمودی؛ سپس در زمان مقدّر (برای فرمان رسالت) به این جا آمدی، ای موسی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,362,'و من تو را برای خودم ساختم (و پرورش دادم)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,362,'(اکنون) تو و برادرت با آیات من بروید، و در یاد من کوتاهی نکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,362,'بسوی فرعون بروید؛ که طغیان کرده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,362,'اما بنرمی با او سخن بگویید؛ شاید متذکّر شود، یا (از خدا) بترسد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,362,'(موسی و هارون) گفتند: «پروردگارا! از این میترسیم که بر ما پیشی گیرد (و قبل از بیان حق، ما را آزار دهد)؛ یا طغیان کند (و نپذیرد)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,362,'فرمود: «نترسید! من با شما هستم؛ (همه چیز را) میشنوم و میبینم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,362,'به سراغ او بروید و بگویید: «ما فرستادگان پروردگار توئیم! بنی اسرائیل را با ما بفرست؛ و آنان را شکنجه و آزار مکن! ما نشانه روشنی از سوی پروردگارت برای تو آوردهایم! و درود بر آن کس باد که از هدایت پیروی میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,362,'به ما وحی شده که عذاب بر کسی است که (آیات الهی را) تکذیب کند و سرپیچی نماید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,362,'(فرعون) گفت: «پروردگار شما کیست، ای موسی؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,362,'گفت: «پروردگار ما همان کسی است که به هر موجودی، آنچه را لازمه آفرینش او بوده داده؛ سپس هدایت کرده است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,362,'گفت: «پس تکلیف نسلهای گذشته (که به اینها ایمان نداشتند) چه خواهد شد؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,362,'گفت: «آگاهی مربوط به آنها، نزد پروردگارم در کتابی ثبت است؛ پروردگارم هرگز گمراه نمیشود، و فراموش نمیکند (و آنچه شایسته آنهاست به ایشان میدهد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,362,'همان خداوندی که زمین را برای شما محل آسایش قرار داد؛ و راههایی در آن ایجاد کرد؛ و از آسمان، آبی فرستاد!» که با آن، انواع گوناگون گیاهان را (از خاک تیره) برآوردیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,362,'هم خودتان بخورید؛ و هم چهارپایانتان را در آن به چرا برید! مسلّماً در اینها نشانههای روشنی برای خردمندان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,362,'ما شما را از آن [= زمین] آفریدیم؛ و در آن بازمیگردانیم؛ و بار دیگر (در قیامت) شما را از آن بیرون میآوریم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,362,'ما همه آیات خود را به او نشان دادیم؛ اما او تکذیب کرد و سرباز زد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,362,'گفت: «ای موسی! آیا آمدهای که با سحر خود، ما را از سرزمینمان بیرون کنی؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,362,'قطعاً ما هم سحری همانند آن برای تو خواهیم آورد! هم اکنون (تاریخش را تعیین کن، و) موعدی میان ما و خودت قرار ده که نه ما و نه تو، از آن تخلّف نکنیم؛ آن هم در مکانی که نسبت به همه یکسان باشد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,362,'گفت: «میعاد ما و شما روز زینت [= روز عید] است؛ به شرط اینکه همه مردم، هنگامی که روز، بالا میآید، جمع شوند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,362,'فرعون آن مجلس را ترک گفت؛ و تمام مکر و فریب خود را جمع کرد؛ و سپس همه را (در روز موعود) آورد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,362,'موسی به آنان گفت: «وای بر شما! دروغ بر خدا نبندید، که شما را با عذابی نابود میسازد! و هر کس که (بر خدا) دروغ ببندد، نومید (و شکست خورده) میشود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,362,'آنها در میان خود، در مورد ادامه راهشان به نزاع برخاستند؛ و مخفیانه و درگوشی با هم سخن گفتند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,362,'گفتند: «این دو (نفر) مسلّماً ساحرند! میخواهند با سحرشان شما را از سرزمینتان بیرون کنند و راه و رسم نمونه شما را از بین ببرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,362,'اکنون که چنین است، تمام نیرو و نقشه خود را جمع کنید، و در یک صف (به میدان مبارزه) بیایید؛ امروز رستگاری از آن کسی است که برتری خود را اثبات کند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,362,'(ساحران) گفتند: «ای موسی! آیا تو اول (عصای خود را) میافکنی، یا ما کسانی باشیم که اول بیفکنیم؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,362,'گفت: «شما اول بیفکنید!» در این هنگام طنابها و عصاهای آنان بر اثر سحرشان چنان به نظر میرسید که حرکت میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,362,'موسی ترس خفیفی در دل احساس کرد (مبادا مردم گمراه شوند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,362,'گفتیم: «نترس! تو مسلّماً (پیروز و) برتری!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,362,'و آنچه را در دست راست داری بیفکن، تمام آنچه را ساختهاند میبلعد! آنچه ساختهاند تنها مکر ساحر است؛ و ساحر هر جا رود رستگار نخواهد شد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,362,'(موسی عصای خود را افکند، و آنچه را که آنها ساخته بودند بلعید.) ساحران همگی به سجده افتادند و گفتند: «ما به پروردگار هارون و موسی ایمان آوردیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,362,'(فرعون) گفت: «آیا پیش از آنکه به شما اذن دهم به او ایمان آوردید؟! مسلّماً او بزرگ شماست که به شما سحر آموخته است! به یقین دستها و پاهایتان را بطور مخالف قطع میکنم؛ و شما را از تنههای نخل به دار میآویزم؛ و خواهید دانست مجازات کدام یک از ما دردناکتر و پایدارتر است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,362,'گفتند: «سوگند به آن کسی که ما را آفریده، هرگز تو را بر دلایل روشنی که برای ما آمده، مقدّم نخواهیم داشت! هر حکمی میخواهی بکن؛ تو تنها در این زندگی دنیا میتوانی حکم کنی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,362,'ما به پروردگارمان ایمان آوردیم تا گناهانمان و آنچه را از سحر بر ما تحمیل کردی ببخشاید؛ و خدا بهتر و پایدارتر است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,362,'هر کس در محضر پروردگارش خطاکار حاضر شود، آتش دوزخ برای اوست؛ در آن جا، نه میمیرد و نه زندگی میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,362,'و هر کس با ایمان نزد او آید، و اعمال صالح انجام داده باشد، چنین کسانی درجات عالی دارند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,362,'باغهای جاویدان بهشت، که نهرها از زیر درختانش جاری است، در حالی که همیشه در آن خواهند بود؛ این است پاداش کسی که خود را پاک نماید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,362,'ما به موسی وحی فرستادیم که: «شبانه بندگانم را (از مصر) با خود ببر؛ و برای آنها راهی خشک در دریا بگشا؛ که نه از تعقیب (فرعونیان) خواهی ترسید، و نه از غرق شدن در دریا!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,362,'(به این ترتیب) فرعون با لشکریانش آنها را دنبال کردند؛ و دریا آنان را (در میان امواج خروشان خود) بطور کامل پوشانید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,362,'فرعون قوم خود را گمراه ساخت؛ و هرگز هدایت نکرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,362,'ای بنی اسرائیل! ما شما را از چنگال دشمنتان نجات دادیم؛ و در طرف راست کوه طور، با شما وعده گذاردیم؛ و «منّ» و «سلوی» بر شما نازل کردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,362,'بخورید از روزیهای پاکیزهای که به شما دادهایم؛ و در آن طغیان نکنید، که غضب من بر شما وارد شود و هر کس غضبم بر او وارد شود، سقوب میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,362,'و من هر که را توبه کند، و ایمان آورد، و عمل صالح انجام دهد، سپس هدایت شود، میآمرزم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,362,'ای موسی! چه چیز سبب شد که از قومت پیشی گیری، و (برای آمدن به کوه طور) عجله کنی؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,362,'عرض کرد: «پروردگارا! آنان در پی منند؛ و من به سوی تو شتاب کردم، تا از من خشنود شوی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,362,'فرمود: «ما قوم تو را بعد از تو، آزمودیم و سامری آنها را گمراه ساخت!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,362,'موسی خشمگین و اندوهناک به سوی قوم خود بازگشت و گفت: «ای قوم من! مگر پروردگارتان وعده نیکویی به شما نداد؟! آیا مدّت جدایی من از شما به طول انجامید، یا میخواستید غضب پروردگارتان بر شما نازل شود که با وعده من مخالفت کردید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,362,'گفتند: «ما به میل و اراده خود از وعده تو تخلّف نکردیم؛ بلکه مقداری از زیورهای قوم را که با خود داشتیم افکندیم!» و سامری اینچنین القا کرد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,362,'و برای آنان مجسّمه گوسالهای که صدایی همچون صدای گوساله (واقعی) داشت پدید آورد؛ و (به یکدیگر) گفتند: «این خدای شما، و خدای موسی است!» و او فراموش کرد (پیمانی را که با خدا بسته بود)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,362,'آیا نمیبینند که (این گوساله) هیچ پاسخی به آنان نمیدهد، و مالک هیچ گونه سود و زیانی برای آنها نیست؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,362,'و پیش از آن، هارون به آنها گفته بود: «ای قوم من! شما به این وسیله مورد آزمایش قرار گرفتهاید! پروردگار شما خداوند رحمان است! پس، از من پیروی کنید، و فرمانم را اطاعت نمایید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,362,'ولی آنها گفتند: «ما همچنان گرد آن میگردیم (و به پرستش گوساله ادامه میدهیم) تا موسی به سوی ما بازگردد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,362,'(موسی) گفت: «ای هارون! چرا هنگامی که دیدی آنها گمراه شدند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,362,'از من پیروی نکردی؟! آیا فرمان مرا عصیان نمودی؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,362,'(هارون) گفت: «ای فرزند مادرم! [= ای برادر!] ریش و سر مرا مگیر! من ترسیدم بگویی تو میان بنی اسرائیل تفرقه انداختی، و سفارش مرا به کار نبستی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,362,'(موسی رو به سامری کرد و) گفت: «تو چرا این کار را کردی، ای سامری؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,362,'گفت: «من چیزی دیدم که آنها ندیدند؛ من قسمتی از آثار رسول (و فرستاده خدا) را گرفتم، سپس آن را افکندم، و اینچنین (هوای) نفس من این کار را در نظرم جلوه داد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,362,'(موسی) گفت: «برو، که بهره تو در زندگی دنیا این است که (هر کس با تو نزدیک شود) بگوئی «با من تماس نگیر!» و تو میعادی (از عذاب خدا) داری، که هرگز تخلّف نخواهد شد! (اکنون) بنگر به این معبودت که پیوسته آن را پرستش میکردی! و ببین ما آن را نخست میسوزانیم؛ سپس ذرّات آن را به دریا میپاشیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,362,'معبود شما تنها خداوندی است که جز او معبودی نیست؛ و علم او همه چیز را فرا گرفته است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,362,'این گونه بخشی از اخبار پیشین را برای تو بازگو میکنیم؛ و ما از نزد خود، ذکر (و قرآنی) به تو دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,4,362,'هر کس از آن روی گردان شود، روز قیامت بار سنگینی (از گناه و مسؤولیّت) بر دوش خواهد داشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,4,362,'در حالی که جاودانه در آن خواهند ماند؛ و بد باری است برای آنها در روز قیامت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,4,362,'همان روزی که در «صور» دمیده میشود؛ و مجرمان را با بدنهای کبود، در آن روز جمع میکنیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,4,362,'آنها آهسته با هم گفتگو میکنند؛ (بعضی میگویند:) شما فقط ده (شبانه روز در عالم برزخ) توقّف کردید! (و نمیدانند چقدر طولانی بوده است!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,4,362,'ما به آنچه آنها میگویند آگاهتریم، هنگامی که نیکوروشترین آنها میگوید: «شما تنها یک روز درنگ کردید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,4,362,'و از تو درباره کوهها سؤال میکنند؛ بگو: «پروردگارم آنها را (متلاشی کرده) برباد میدهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,4,362,'سپس زمین را صاف و هموار و بیآب و گیاه رها میسازد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,4,362,'به گونهای که در آن، هیچ پستی و بلندی نمیبینی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,4,362,'در آن روز، همه از دعوت کننده الهی پیروی نموده، و قدرت بر مخالفت او نخواهند داشت (و همگی از قبرها برمیخیزند)؛ و همه صداها در برابر (عظمت) خداوند رحمان، خاضع میشود؛ و جز صدای آهسته چیزی نمیشنوی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,4,362,'در آن روز، شفاعت هیچ کس سودی نمیبخشد، جز کسی که خداوند رحمان به او اجازه داده، و به گفتار او راضی است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,4,362,'آنچه را پیش رو دارند، و آنچه را (در دنیا) پشت سرگذاشتهاند میداند؛ ولی آنها به (علم) او احاطه ندارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,4,362,'و (در آن روز) همه چهرهها در برابر خداوند حیّ قیوم، خاضع میشود؛ و مأیوس (و زیانکار) است آن که بار ستمی بر دوش دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,4,362,'(امّا) آن کس که کارهای شایسته انجام دهد، در حالی که مؤمن باشد، نه از ظلمی میترسد، و نه از نقصان حقش.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,4,362,'و این گونه آن را قرآنی عربی [= فصیح و گویا] نازل کردیم، و انواع وعیدها (و انذارها) را در آن بازگو نمودیم، شاید تقوا پیشه کنند؛ یا برای آنان تذکّری پدید آورد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,4,362,'پس بلندمرتبه است خداوندی که سلطان حقّ است! پس نسبت به (تلاوت) قرآن عجله مکن، پیش از آنکه وحی آن بر تو تمام شود؛ و بگو: «پروردگارا! علم مرا افزون کن!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,4,362,'پیش از این، از آدم پیمان گرفته بودیم؛ امّا او فراموش کرد؛ و عزم استواری برای او نیافتیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,4,362,'و به یاد آور هنگامی را که به فرشتگان گفتیم: «برای آدم سجده کنید!» همگی سجده کردند؛ جز ابلیس که سرباز زد (و سجده نکرد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,4,362,'پس گفتیم: «ای آدم! این (ابلیس) دشمن تو و (دشمن) همسر توست! مبادا شما را از بهشت بیرون کند؛ که به زحمت و رنج خواهی افتاد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,4,362,'(امّا تو در بهشت راحت هستی! و مزیّتش) برای تو این است که در آن گرسنه و برهنه نخواهی شد؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,4,362,'و در آن تشنه نمیشوی، و حرارت آفتاب آزارت نمیدهد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,4,362,'ولی شیطان او را وسوسه کرد و گفت: «ای آدم! آیا میخواهی تو را به درخت زندگی جاوید، و ملکی بیزوال راهنمایی کنم؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,4,362,'سرانجام هر دو از آن خوردند، (و لباس بهشتیشان فرو ریخت،) و عورتشان آشکار گشت و برای پوشاندن خود، از برگهای (درختان) بهشتی جامه دوختند! (آری) آدم پروردگارش را نافرمانی کرد، و از پاداش او محروم شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,4,362,'سپس پروردگارش او را برگزید، و توبهاش را پذیرفت، و هدایتش نمود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,4,362,'(خداوند) فرمود: «هر دو از آن (بهشت) فرود آیید، در حالی که دشمن یکدیگر خواهید بود! ولی هرگاه هدایت من به سراغ شما آید، هر کس از هدایت من پیروی کند، نه گمراه میشود، و نه در رنج خواهد بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,4,362,'و هر کس از یاد من روی گردان شود، زندگی (سخت و) تنگی خواهد داشت؛ و روز قیامت، او را نابینا محشور میکنیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,4,362,'میگوید: «پروردگارا! چرا نابینا محشورم کردی؟! من که بینا بودم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,4,362,'میفرماید: «آن گونه که آیات من برای تو آمد، و تو آنها را فراموش کردی؛ امروز نیز تو فراموش خواهی شد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,4,362,'و این گونه جزا میدهیم کسی را که اسراف کند، و به آیات پروردگارش ایمان نیاورد! و عذاب آخرت، شدیدتر و پایدارتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,4,362,'آیا برای هدایت آنان کافی نیست که بسیاری از نسلهای پیشین را (که طغیان و فساد کردند) هلاک نمودیم، و اینها در مسکنهای (ویران شده) آنان راه میروند! مسلّماً در این امر، نشانههای روشنی برای خردمندان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,4,362,'و اگر سنّت و تقدیر پروردگارت و ملاحظه زمان مقرّر نبود، عذاب الهی بزودی دامان آنان را میگرفت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,4,362,'پس در برابر آنچه میگویند، صبر کن! و پیش از طلوع آفتاب، و قبل از غروب آن؛ تسبیح و حمد پروردگارت را بجا آور؛ و همچنین (برخی) از ساعات شب و اطراف روز (پروردگارت را) تسبیح گوی؛ باشد که (از الطاف الهی) خشنود شوی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,4,362,'و هرگز چشمان خود را به نعمتهای مادّی، که به گروههایی از آنان دادهایم، میفکن! اینها شکوفههای زندگی دنیاست؛ تا آنان را در آن بیازماییم؛ و روزی پروردگارت بهتر و پایدارتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,4,362,'خانواده خود را به نماز فرمان ده؛ و بر انجام آن شکیبا باش! از تو روزی نمیخواهیم؛ (بلکه) ما به تو روزی میدهیم؛ و عاقبت نیک برای تقواست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,4,362,'گفتند: «چرا (پیامبر) معجزه و نشانهای از سوی پروردگارش برای ما نمیآورد؟! (بگو:) آیا خبرهای روشنی که در کتابهای (آسمانی) نخستین بوده، برای آنها نیامد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,4,362,'اگر ما آنان را پیش از آن (که قرآن نازل شود) با عذابی هلاک میکردیم، (در قیامت) میگفتند: «پروردگارا! چرا پیامبری برای ما نفرستادی تا از آیات تو پیروی کنیم، پیش از آنکه ذلیل و رسوا شویم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,4,362,'بگو: «همه (ما و شما) در انتظاریم! (ما در انتظار وعده پیروزی، و شما در انتظار شکست ما!) حال که چنین است، انتظار بکشید! امّا بزودی میدانید چه کسی از اصحاب صراط مستقیم، و چه کسی هدایت یافته است!');
+INSERT INTO chapters (id, number, quran_id) VALUES(363,21,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,363,'حساب مردم به آنان نزدیک شده، در حالی که در غفلتند و روی گردانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,363,'هیچ یادآوری تازهای از طرف پروردگارشان برای آنها نمیآید، مگر آنکه با بازی (و شوخی) به آن گوش میدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,363,'این در حالی است که دلهایشان در لهو و بیخبری فرو رفته است! و ستمگران پنهانی نجوا کردند (و گفتند): «آیا جز این است که او بشری همانند شماست؟! آیا به سراغ سحر میروید، با اینکه (چشم دارید و) میبینید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,363,'(پیامبر) گفت: «پروردگارم همه سخنان را، چه در آسمان باشد و چه در زمین، میداند؛ و او شنوا و داناست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,363,'آنها گفتند: «(آنچه محمّد (ص) آورده وحی نیست؛) بلکه خوابهایی آشفته است! اصلاً آن را بدروغ به خدا بسته؛ نه، بلکه او یک شاعر است! (اگر راست میگوید) باید معجزهای برای ما بیاورد؛ همان گونه که پیامبران پیشین (با معجزات) فرستاده شدند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,363,'تمام آبادیهایی که پیش از اینها هلاک کردیم (تقاضای معجزات گوناگون کردند، و خواسته آنان عملی شد، ولی) هرگز ایمان نیاوردند؛ آیا اینها ایمان میآورند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,363,'ما پیش از تو، جز مردانی که به آنان وحی میکردیم، نفرستادیم! (همه انسان بودند، و از جنس بشر!) اگر نمیدانید، از آگاهان بپرسید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,363,'آنان را پیکرهایی که غذا نخورند قرار ندادیم! عمر جاویدان هم نداشتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,363,'سپس وعدهای را که به آنان داده بودیم، وفا کردیم! آنها و هر کس را که میخواستیم (از چنگ دشمنانشان) نجات دادیم؛ و مسرفان را هلاک نمودیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,363,'ما بر شما کتابی نازل کردیم که وسیله تذکّر (و بیداری) شما در آن است! آیا نمیفهمید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,363,'چه بسیار آبادیهای ستمگری را در هم شکستیم؛ و بعد از آنها، قوم دیگری روی کار آوردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,363,'هنگامی که عذاب ما را احساس کردند، ناگهان پا به فرار گذاشتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,363,'(گفتیم:) فرار نکنید؛ و به زندگی پر ناز و نعمت، و به مسکنهای پر زرق و برقتان بازگردید! شاید (سائلان بیایند و) از شما تقاضا کنند (شما هم آنان را محروم بازگردانید)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,363,'گفتند: «ای وای بر ما! به یقین ما ستمگر بودیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,363,'و همچنان این سخن را تکرار میکردند، تا آنها را درو کرده و خاموش ساختیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,363,'ما آسمان و زمین، و آنچه را در میان آنهاست از روی بازی نیافریدیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,363,'(بفرض محال) اگر میخواستیم سرگرمی انتخاب کنیم، چیزی متناسب خود انتخاب میکردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,363,'بلکه ما حق را بر سر باطل میکوبیم تا آن را هلاک سازد؛ و این گونه، باطل محو و نابود میشود! امّا وای بر شما از توصیفی که (درباره خدا و هدف آفرینش) میکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,363,'از آن اوست آنان که در آسمانها و زمینند! و آنها که نزد اویند [= فرشتگان] هیچ گاه از عبادتش استکبار نمیورزند، و هرگز خسته نمیشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,363,'(تمام) شب و روز را تسبیح میگویند؛ و سست نمیگردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,363,'آیا آنها خدایانی از زمین برگزیدند که (خلق میکنند و) منتشر میسازند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,363,'اگر در آسمان و زمین، جز «اللّه» خدایان دیگری بود، فاسد میشدند (و نظام جهان به هم میخورد)! منزه است خداوند پروردگار عرش، از توصیفی که آنها میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,363,'هیچ کس نمیتواند بر کار او خرده بگیرد؛ ولی در کارهای آنها، جای سؤال و ایراد است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,363,'آیا آنها معبودانی جز خدا برگزیدند؟! بگو: «دلیلتان را بیاورید! این سخن کسانی است که با من هستند، و سخن کسانی [= پیامبرانی] است که پیش از من بودند!» امّا بیشتر آنها حق را نمیدانند؛ و به همین دلیل (از آن) روی گردانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,363,'ما پیش از تو هیچ پیامبری را نفرستادیم مگر اینکه به او وحی کردیم که: «معبودی جز من نیست؛ پس تنها مرا پرستش کنید.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,363,'آنها گفتند: «خداوند رحمان فرزندی برای خود انتخاب کرده است»! او منزه است (از این عیب و نقص)؛ آنها [= فرشتگان] بندگان شایسته اویند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,363,'هرگز در سخن بر او پیشی نمیگیرند؛ و (پیوسته) به فرمان او عمل میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,363,'او اعمال امروز و آینده و اعمال گذشته آنها را میداند؛ و آنها جز برای کسی که خدا راضی (به شفاعت برای او) است شفاعت نمیکنند؛ و از ترس او بیمناکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,363,'و هر کس از آنها بگوید: «من جز خدا، معبودی دیگرم»، کیفر او را جهنم میدهیم! و ستمگران را این گونه کیفر خواهیم داد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,363,'آیا کافران ندیدند که آسمانها و زمین به هم پیوسته بودند، و ما آنها را از یکدیگر باز کردیم؛ و هر چیز زندهای را از آب قرار دادیم؟! آیا ایمان نمیآورند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,363,'و در زمین، کوههای ثابت و پابرجایی قرار دادیم، مبادا آنها را بلرزاند! و در آن، درّهها و راههایی قرار دادیم تا هدایت شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,363,'و آسمان را سقف محفوظی قرار دادیم؛ ولی آنها از آیات آن رویگردانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,363,'او کسی است که شب و روز و خورشید و ماه را آفرید؛ هر یک در مداری در حرکتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,363,'پیش از تو (نیز) برای هیچ انسانی جاودانگی قرار ندادیم؛ (وانگهی آنها که انتظار مرگ تو را میکشند،) آیا اگر تو بمیری، آنان جاوید خواهند بود؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,363,'هر انسانی طعم مرگ را میچشد! و شما را با بدیها و خوبیها آزمایش میکنیم؛ و سرانجام بسوی ما بازگردانده میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,363,'هنگامی که کافران تو را میبینند، کاری جز استهزا کردن تو ندارند؛ (و میگویند:) آیا این همان کسی است که سخن از خدایان شما میگوید؟! در حالی که خودشان ذکر خداوند رحمان را انکار میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,363,'(آری،) انسان از عجله آفریده شده؛ ولی عجله نکنید؛ بزودی آیاتم را به شما نشان خواهم داد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,363,'آنها میگویند: «اگر راست میگویید، این وعده (قیامت) کی فرا میرسد؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,363,'ولی اگر کافران میدانستند زمانی که (فرا میرسد) نمیتوانند شعلههای آتش را از صورت و از پشتهای خود دور کنند، و هیچ کس آنان را یاری نمیکند (این قدر درباره قیامت شتاب نمیکردند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,363,'(آری، این مجازات الهی) بطور ناگهانی به سراغشان میآید و مبهوتشان میکند؛ آنچنان که توانایی دفع آن را ندارند، و به آنها مهلت داده نمیشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,363,'(اگر تو را استهزا کنند نگران نباش،) پیامبران پیش از تو را (نیز) استهزا کردند؛ امّا سرانجام، آنچه را استهزا میکردند دامان مسخرهکنندگان را گرفت (و مجازات الهی آنها را در هم کوبید)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,363,'بگو: «چه کسی شما را در شب و روز از (مجازات) خداوند بخشنده نگاه میدارد؟!» ولی آنان از یاد پروردگارشان رویگردانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,363,'آیا آنها خدایانی دارند که میتوانند در برابر ما از آنان دفاع کنند؟! (این خدایان ساختگی، حتّی) نمیتوانند خودشان را یاری دهند (تا چه رسد به دیگران)؛ و نه از ناحیه ما با نیرویی یاری میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,363,'ما آنها و پدرانشان را (از نعمتها) بهرهمند ساختیم، تا آنجا که عمر طولانی پیدا کردند (و مایه غرور و طغیانشان شد)؛ آیا نمیبینند که ما پیوسته به سراغ زمین آمده، و از آن (و اهلش) میکاهیم؟! آیا آنها غالبند (یا ما)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,363,'بگو: «من تنها بوسیله وحی شما را انذار میکنم!» ولی آنها که گوشهایشان کر است، هنگامی که انذار میشوند، سخنان را نمیشنوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,363,'اگر کمترین عذاب پروردگارت به آنان برسد، فریادشان بلند میشود که: «ای وای بر ما! ما همگی ستمگر بودیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,363,'ما ترازوهای عدل را در روز قیامت برپا میکنیم؛ پس به هیچ کس کمترین ستمی نمیشود؛ و اگر بمقدار سنگینی یک دانه خردل (کار نیک و بدی) باشد، ما آن را حاضر میکنیم؛ و کافی است که ما حسابکننده باشیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,363,'ما به موسی و هارون، «فرقان» [= وسیله جدا کردن حق از باطل] و نور، و آنچه مایه یادآوری برای پرهیزگاران است، دادیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,363,'همانان که از پروردگارشان در نهان میترسند، و از قیامت بیم دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,363,'و این (قرآن) ذکر مبارکی است که (بر شما) نازل کردیم؛ آیا شما آن را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,363,'ما وسیله رشد ابراهیم را از قبل به او دادیم؛ و از (شایستگی) او آگاه بودیم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,363,'آن هنگام که به پدرش (آزر) و قوم او گفت: «این مجسمههای بیروح چیست که شما همواره آنها را پرستش میکنید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,363,'گفتند: «ما پدران خود را دیدیم که آنها را عبادت میکنند.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,363,'گفت: «مسلّماً هم شما و هم پدرانتان، در گمراهی آشکاری بودهاید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,363,'گفتند: «آیا مطلب حقّی برای ما آوردهای، یا شوخی میکنی؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,363,'گفت: «(کاملاً حقّ آوردهام) پروردگار شما همان پروردگار آسمانها و زمین است که آنها را ایجاد کرده؛ و من بر این امر، از گواهانم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,363,'و به خدا سوگند، در غیاب شما، نقشهای برای نابودی بتهایتان میکشم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,363,'سرانجام (با استفاده از یک فرصت مناسب)، همه آنها -جز بت بزرگشان- را قطعه قطعه کرد؛ شاید سراغ او بیایند (و او حقایق را بازگو کند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,363,'(هنگامی که منظره بتها را دیدند،) گفتند: «هر کس با خدایان ما چنین کرده، قطعاً از ستمگران است (و باید کیفر سخت ببیند)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,363,'(گروهی) گفتند: «شنیدیم نوجوانی از (مخالفت با) بتها سخن میگفت که او را ابراهیم میگویند.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,363,'(جمعیّت) گفتند: «او را در برابر دیدگان مردم بیاورید، تا گواهی دهند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,363,'(هنگامی که ابراهیم را حاضر کردند،) گفتند: «تو این کار را با خدایان ما کردهای، ای ابراهیم؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,363,'گفت: «بلکه این کار را بزرگشان کرده است! از آنها بپرسید اگر سخن میگویند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,363,'آنها به وجدان خویش بازگشتند؛ و (به خود) گفتند: «حقّا که شما ستمگرید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,363,'سپس بر سرهایشان واژگونه شدند؛ (و حکم وجدان را بکلّی فراموش کردند و گفتند:) تو میدانی که اینها سخن نمیگویند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,363,'(ابراهیم) گفت: «آیا جز خدا چیزی را میپرستید که نه کمترین سودی برای شما دارد، و نه زیانی به شما میرساند! (نه امیدی به سودشان دارید، و نه ترسی از زیانشان!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,363,'اف بر شما و بر آنچه جز خدا میپرستید! آیا اندیشه نمیکنید (و عقل ندارید)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,363,'گفتند: «او را بسوزانید و خدایان خود را یاری کنید، اگر کاری از شما ساخته است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,363,'(سرانجام او را به آتش افکندند؛ ولی ما) گفتیم: «ای آتش! بر ابراهیم سرد و سالم باش!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,363,'آنها میخواستند ابراهیم را با این نقشه نابود کنند؛ ولی ما آنها را زیانکارترین مردم قرار دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,363,'و او و لوط را به سرزمین (شام) -که آن را برای همه جهانیان پربرکت ساختیم- نجات دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,363,'و اسحاق، و علاوه بر او، یعقوب را به وی بخشیدیم؛ و همه آنان را مردانی صالح قرار دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,363,'و آنان را پیشوایانی قرار دادیم که به فرمان ما، (مردم را) هدایت میکردند؛ و انجام کارهای نیک و برپاداشتن نماز و ادای زکات را به آنها وحی کردیم؛ و تنها ما را عبادت میکردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,363,'و لوط را (به یاد آور) که به او حکومت و علم دادیم؛ و از شهری که اعمال زشت و کثیف انجام میدادند، رهایی بخشیدیم؛ چرا که آنها مردم بد و فاسقی بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,363,'و او را در رحمت خود داخل کردیم؛ و او از صالحان بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,363,'و نوح را (به یاد آور) هنگامی که پیش از آن (زمان، پروردگار خود را) خواند! ما دعای او را مستجاب کردیم؛ و او و خاندانش را از اندوه بزرگ نجات دادیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,363,'و او را در برابر جمعیّتی که آیات ما را تکذیب کرده بودند یاری دادیم؛ چرا که قوم بدی بودند؛ از این رو همه آنها را غرق کردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,363,'و داوود و سلیمان را (به خاطر بیاور) هنگامی که درباره کشتزاری که گوسفندان بی شبان قوم، شبانگاه در آن چریده (و آن را تباه کرده) بودند، داوری میکردند؛ و ما بر حکم آنان شاهد بودیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,363,'ما (حکم واقعی) آن را به سلیمان فهماندیم؛ و به هر یک از آنان (شایستگی) داوری، و علم فراوانی دادیم؛ و کوهها و پرندگان را با داوود مسخّر ساختیم، که (همراه او) تسبیح (خدا) میگفتند؛ و ما این کار را انجام دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,363,'و ساختن زره را بخاطر شما به او تعلیم دادیم، تا شما را در جنگهایتان حفظ کند؛ آیا شکرگزار (این نعمتهای خدا) هستید؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,363,'و تندباد را مسخّر سلیمان ساختیم، که بفرمان او بسوی سرزمینی که آن را پربرکت کرده بودیم جریان مییافت؛ و ما از همه چیز آگاه بودهایم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,363,'و گروهی از شیاطین (را نیز مسخّر او قرار دادیم، که در دریا) برایش غوّاصی میکردند؛ و کارهایی غیر از این (نیز) برای او انجام میدادند؛ و ما آنها را (از سرکشی) حفظ میکردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,363,'و ایّوب را (به یاد آور) هنگامی که پروردگارش را خواند (و عرضه داشت): «بدحالی و مشکلات به من روی آورده؛ و تو مهربانترین مهربانانی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,363,'ما دعای او را مستجاب کردیم؛ و ناراحتیهایی را که داشت برطرف ساختیم؛ و خاندانش را به او بازگرداندیم؛ و همانندشان را بر آنها افزودیم؛ تا رحمتی از سوی ما و تذکّری برای عبادتکنندگان باشد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,363,'و اسماعیل و ادریس و ذاالکفل را (به یاد آور) که همه از صابران بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,363,'و ما آنان را در رحمت خود وارد ساختیم؛ چرا که آنها از صالحان بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,363,'و ذاالنون [= یونس] را (به یاد آور) در آن هنگام که خشمگین (از میان قوم خود) رفت؛ و چنین میپنداشت که ما بر او تنگ نخواهیم گرفت؛ (امّا موقعی که در کام نهنگ فرو رفت،) در آن ظلمتها (ی متراکم) صدا زد: «(خداوندا!) جز تو معبودی نیست! منزّهی تو! من از ستمکاران بودم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,363,'ما دعای او را به اجابت رساندیم؛ و از آن اندوه نجاتش بخشیدیم؛ و این گونه مؤمنان را نجات میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,363,'و زکریا را (به یاد آور) در آن هنگام که پروردگارش را خواند (و عرض کرد): «پروردگار من! مرا تنها مگذار (و فرزند برومندی به من عطا کن)؛ و تو بهترین وارثانی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,363,'ما هم دعای او را پذیرفتیم، و یحیی را به او بخشیدیم؛ و همسرش را (که نازا بود) برایش آماده (بارداری) کردیم؛ چرا که آنان (خاندانی بودند که) همواره در کارهای خیر بسرعت اقدام میکردند؛ و در حال بیم و امید ما را میخواندند؛ و پیوسته برای ما (خاضع و) خاشع بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,363,'و به یاد آور زنی را که دامان خود را پاک نگه داشت؛ و ما از روح خود در او دمیدیم؛ و او و فرزندش [= مسیح] را نشانه بزرگی برای جهانیان قرار دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,363,'این (پیامبران بزرگ و پیروانشان) همه امّت واحدی بودند (و پیرو یک هدف)؛ و من پروردگار شما هستم؛ پس مرا پرستش کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,363,'(گروهی از پیروان ناآگاه آنها) کار خود را به تفرقه در میان خود کشاندند؛ (ولی سرانجام) همگی بسوی ما بازمیگردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,363,'و هر کس چیزی از اعمال شایسته بجا آورد، در حالی که ایمان داشته باشد، کوشش او ناسپاسی نخواهد شد؛ و ما تمام اعمال او را (برای پاداش) مینویسیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,363,'و حرام است بر شهرها و آبادیهایی که (بر اثر گناه) نابودشان کردیم (که به دنیا بازگردند؛) آنها هرگز باز نخواهند گشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,363,'تا آن زمان که «یأجوج» و «مأجوج» گشوده شوند؛ و آنها از هر محلّ مرتفعی بسرعت عبور میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,363,'و وعده حقّ [= قیامت] نزدیک میشود؛ در آن هنگام چشمهای کافران از وحشت از حرکت بازمیماند؛ (میگویند:) ای وای بر ما که از این (جریان) در غفلت بودیم؛ بلکه ما ستمکار بودیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,363,'شما و آنچه غیر خدا میپرستید، هیزم جهنّم خواهید بود؛ و همگی در آن وارد میشوید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,363,'اگر اینها خدایانی بودند، هرگز وارد آن نمیشدند! در حالی که همگی در آن جاودانه خواهند بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,4,363,'برای آنان در آن [= دوزخ] نالههای دردناکی است و چیزی نمیشنوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,4,363,'(امّا) کسانی که از قبل، وعده نیک از سوی ما به آنها داده شده [= مؤمنان صالح] از آن دور نگاهداشته میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,4,363,'آنها صدای آتش دوزخ را نمیشوند؛ و در آنچه دلشان بخواهد، جاودانه متنعّم هستند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,4,363,'وحشت بزرگ، آنها را اندوهگین نمیکند؛ و فرشتگان به استقبالشان میآیند، (و میگویند:) این همان روزی است که به شما وعده داده میشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,4,363,'در آن روز که آسمان را چون طوماری در هم میپیچیم، (سپس) همان گونه که آفرینش را آغاز کردیم، آن را بازمیگردانیم؛ این وعدهای است بر ما، و قطعاً آن را انجام خواهیم داد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,4,363,'در «زبور» بعد از ذکر (تورات) نوشتیم: «بندگان شایستهام وارث (حکومت) زمین خواهند شد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,4,363,'در این، ابلاغ روشنی است برای جمعیّت عبادتکنندگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,4,363,'ما تو را جز برای رحمت جهانیان نفرستادیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,4,363,'بگو: «تنها چیزی که به من وحی میشود این است که معبود شما خدای یگانه است؛ آیا (با این حال) تسلیم (حقّ) میشوید؟ (و بتها را کنار میگذارید؟)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,4,363,'اگر باز (روی گردان شوند، بگو: «من به همه شما یکسان اعلام خطر میکنم؛ و نمیدانم آیا وعده (عذاب خدا) که به شما داده میشود نزدیک است یا دور!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,4,363,'او سخنان آشکار را میداند، و آنچه را کتمان میکنید (نیز) میداند (و چیزی بر او پوشیده نیست)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,4,363,'و من نمیدانم شاید این آزمایشی برای شماست؛ و مایه بهرهگیری تا مدّتی (معیّن)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,4,363,'(و پیامبر) گفت: «پروردگارا! بحق داوری فرما (و این طغیانگران را کیفر ده)! و پروردگار ما (خداوند) رحمان است که در برابر نسبتهای ناروای شما، از او استمداد میطلبم!»');
+INSERT INTO chapters (id, number, quran_id) VALUES(364,22,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,364,'ای مردم! از (عذاب) پروردگارتان بترسید، که زلزله رستاخیز امر عظیمی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,364,'روزی که آن را میبینید، (آنچنان وحشت سراپای همه را فرامیگیرد که) هر مادر شیردهی، کودک شیرخوارش را فراموش میکند؛ و هر بارداری جنین خود را بر زمین مینهد؛ و مردم را مست میبینی، در حالی که مست نیستند؛ ولی عذاب خدا شدید است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,364,'گروهی از مردم، بدون هیچ علم و دانشی، به مجادله درباره خدا برمیخیزند؛ و از هر شیطان سرکشی پیروی میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,364,'بر او نوشته شده که هر کس ولایتش را بر گردن نهد، بطور مسلّم گمراهش میسازد، و به آتش سوزان راهنماییش میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,364,'ای مردم! اگر در رستاخیز شک دارید، (به این نکته توجّه کنید که:) ما شما را از خاک آفریدیم، سپس از نطفه، و بعد از خون بسته شده، سپس از «مضغه» [= چیزی شبیه گوشت جویده شده]، که بعضی دارای شکل و خلقت است و بعضی بدون شکل؛ تا برای شما روشن سازیم (که بر هر چیز قادریم)! و جنینهایی را که بخواهیم تا مدّت معیّنی در رحم (مادران) قرارمیدهیم؛ (و آنچه را بخواهیم ساقظ میکنیم؛) بعد شما را بصورت طفل بیرون میآوریم؛ سپس هدف این است که به حدّ رشد و بلوغ خویش برسید. در این میان بعضی از شما میمیرند؛ و بعضی آن قدر عمر میکنند که به بدترین مرحله زندگی (و پیری) میرسند؛ آنچنان که بعد از علم و آگاهی، چیزی نمیدانند! (از سوی دیگر،) زمین را (در فصل زمستان) خشک و مرده میبینی، اما هنگامی که آب باران بر آن فرو میفرستیم، به حرکت درمیآید و میروید؛ و از هر نوع گیاهان زیبا میرویاند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,364,'این بخاطر آن است که (بدانید) خداوند حق است؛ و اوست که مردگان را زنده میکند؛ و بر هر چیزی تواناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,364,'و اینکه رستاخیز آمدنی است، و شکّی در آن نیست؛ و خداوند تمام کسانی را که در قبرها هستند زنده میکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,364,'و گروهی از مردم، بدون هیچ دانش و هیچ هدایت و کتاب روشنی بخشی، درباره خدا مجادله میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,364,'آنها با تکبّر و بیاعتنایی (نسبت به سخنان الهی)، میخواهند مردم را از راه خدا گمراه سازند! برای آنان در دنیا رسوایی است؛ و در قیامت، عذاب سوزان به آنها میچشانیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,364,'(و به آنان میگوییم:) این در برابر چیزی است که دستهایتان از پیش برای شما فرستاده؛ و خداوند هرگز به بندگان ظلم نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,364,'بعضی از مردم خدا را تنها با زبان میپرستند (و ایمان قلبیشان بسیار ضعیف است)؛ همین که (دنیا به آنها رو کند و نفع و) خیری به آنان برسد، حالت اطمینان پیدا میکنند؛ اما اگر مصیبتی برای امتحان به آنها برسد، دگرگون میشوند (و به کفر رومیآورند)! (به این ترتیب) هم دنیا را از دست دادهاند، و هم آخرت را؛ و این همان خسران و زیان آشکار است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,364,'او جز خدا کسی را میخواند که نه زیانی به او میرساند، و نه سودی؛ این همان گمراهی بسیار عمیق است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,364,'او کسی را میخواند که زیانش از نفعش نزدیکتر است؛ چه بد مولا و یاوری، و چه بد مونس و معاشری!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,364,'خداوند کسانی را که ایمان آورده و اعمال صالح انجام دادهاند، در باغهایی از بهشت وارد میکند که نهرها زیر درختانش جاری است؛ (آری،) خدا هر چه را اراده کند انجام میدهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,364,'هر کس گمان میکند که خدا پیامبرش را در دنیا و آخرت یاری نخواهد کرد (و از این نظر عصبانی است، هر کاری از دستش ساخته است بکند)، ریسمانی به سقف خانه خود بیاویزد، و خود را حلق آویز و نفس خود را قطع کند (و تا لبه پرتگاه مرگ پیش رود)؛ ببیند آیا این کار خشم او را فرو مینشاند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,364,'این گونه ما آن [= قرآن] را بصورت آیات روشنی نازل کردیم؛ و خداوند هر کس را بخواهد هدایت میکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,364,'مسلّماً کسانی که ایمان آوردهاند، و یهود و صابئان [= ستارهپرستان] و نصاری و مجوس و مشرکان، خداوند در میان آنان روز قیامت داوری میکند؛ (و حق را از باطل جدا میسازد؛) خداوند بر هر چیز گواه (و از همه چیز آگاه) است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,364,'آیا ندیدی که تمام کسانی که در آسمانها و کسانی که در زمینند برای خدا سجده میکنند؟! و (همچنین) خورشید و ماه و ستارگان و کوهها و درختان و جنبندگان، و بسیاری از مردم! امّا بسیاری (ابا دارند، و) فرمان عذاب درباره آنان حتمی است؛ و هر کس را خدا خوار کند، کسی او را گرامی نخواهد داشت! خداوند هر کار را بخواهد (و صلاح بداند) انجام میدهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,364,'اینان دو گروهند که درباره پروردگارشان به مخاصمه و جدال پرداختند؛ کسانی که کافر شدند، لباسهایی از آتش برای آنها بریده شده، و مایع سوزان و جوشان بر سرشان ریخته میشود؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,364,'آنچنان که هم درونشان با آن آب میشود، و هم پوستهایشان.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,364,'و برای آنان گرزهایی از آهن (سوزان) است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,364,'هر گاه بخواهند از غم و اندوههای دوزخ خارج شوند، آنها را به آن بازمیگردانند؛ و (به آنان گفته میشود:) بچشید عذاب سوزان را!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,364,'خداوند کسانی را که ایمان آورده و اعمال صالح انجام دادهاند، در باغهایی از بهشت وارد میکند که از زیر درختانش نهرها جاری است؛ آنان با دستبندهایی از طلا و مروارید زینت میشوند؛ و در آنجا لباسهایشان از حریر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,364,'و بسوی سخنان پاکیزه هدایت میشوند، و به راه خداوند شایسته ستایش، راهنمایی میگردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,364,'کسانی که کافر شدند، و مؤمنان را از راه خدا بازداشتند، و (همچنین) از مسجد الحرام، که آن را برای همه مردم، برابر قرار دادیم، چه کسانی که در آنجا زندگی میکنند یا از نقاط دور وارد میشوند (، مستحقّ عذابی دردناکند)؛ و هر کس بخواهد در این سرزمین از راه حق منحرف گردد و دست به ستم زند، ما از عذابی دردناک به او میچشانیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,364,'(به خاطر بیاور) زمانی را که جای خانه (کعبه) را برای ابراهیم آماده ساختیم (تا خانه را بنا کند؛ و به او گفتیم:) چیزی را همتای من قرار مده! و خانهام را برای طوافکنندگان و قیامکنندگان و رکوعکنندگان و سجودکنندگان (از آلودگی بتها و از هر گونه آلودگی) پاک ساز!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,364,'و مردم را دعوت عمومی به حج کن؛ تا پیاده و سواره بر مرکبهای لاغر از هر راه دوری بسوی تو بیایند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,364,'تا شاهد منافع گوناگون خویش (در این برنامه حیاتبخش) باشند؛ و در ایّام معیّنی نام خدا را، بر چهارپایانی که به آنان داده است، (به هنگام قربانیکردن) ببرند؛ پس از گوشت آنها بخورید؛ و بینوای فقیر را نیز اطعام نمایید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,364,'سپس، باید آلودگیهایشان را برطرف سازند؛ و به نذرهای خود وفا کنند؛ و بر گرد خانه گرامی کعبه، طواف کنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,364,'(مناسک حج) این است! و هر کس برنامههای الهی را بزرگ دارد، نزد پروردگارش برای او بهتر است! و چهارپایان برای شما حلال شده، مگر آنچه (ممنوع بودنش) بر شما خوانده میشود. از پلیدیهای بتها اجتناب کنید! و از سخن باطل بپرهیزید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,364,'(برنامه و مناسک حج را انجام دهید) در حالی که همگی خالص برای خدا باشد! هیچ گونه همتایی برای او قائل نشوید! و هر کس همتایی برای خدا قرار دهد، گویی از آسمان سقوب کرده، و پرندگان (در وسط هوا) او را میربایند؛ و یا تندباد او را به جای دوردستی پرتاب میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,364,'این است (مناسک حج)! و هر کس شعائر الهی را بزرگ دارد، این کار نشانه تقوای دلهاست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,364,'در آن (حیوانات قربانی)، منافعی برای شماست تا زمان معیّنی [= روز ذبح آنها] سپس محل آن، خانه قدیمی و گرامی (کعبه) است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,364,'برای هر امّتی قربانگاهی قرار دادیم، تا نام خدا را (به هنگام قربانی) بر چهارپایانی که به آنان روزی دادهایم ببرند، و خدای شما معبود واحدی است؛ در برابر (فرمان) او تسلیم شوید و بشارت ده متواضعان و تسلیمشوندگان را.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,364,'همانها که چون نام خدا برده میشود، دلهایشان پر از خوف (پروردگار) میگردد؛ و شکیبایان در برابر مصیبتهایی که به آنان میرسد؛ و آنها که نماز را برپا میدارند، و از آنچه به آنان روزی دادهایم انفاق میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,364,'و شترهای چاق و فربه را (در مراسم حج) برای شما از شعائر الهی قرار دادیم؛ در آنها برای شما خیر و برکت است؛ نام خدا را (هنگام قربانی کردن) در حالی که به صف ایستادهاند بر آنها ببرید؛ و هنگامی که پهلوهایشان آرام گرفت (و جان دادند)، از گوشت آنها بخورید، و مستمندان قانع و فقیران را نیز از آن اطعام کنید! این گونه ما آنها را مسخّرتان ساختیم، تا شکر خدا را بجا آورید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,364,'نه گوشتها و نه خونهای آنها، هرگز به خدا نمیرسد. آنچه به او میرسد، تقوا و پرهیزگاری شماست. این گونه خداوند آنها را مسخّر شما ساخته، تا او را بخاطر آنکه شما را هدایت کرده است بزرگ بشمرید؛ و بشارت ده نیکوکاران را!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,364,'خداوند از کسانی که ایمان آوردهاند دفاع میکند؛ خداوند هیچ خیانتکار ناسپاسی را دوست ندارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,364,'به کسانی که جنگ بر آنان تحمیل گردیده، اجازه جهاد داده شده است؛ چرا که مورد ستم قرار گرفتهاند؛ و خدا بر یاری آنها تواناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,364,'همانها که از خانه و شهر خود، به ناحق رانده شدند، جز اینکه میگفتند: «پروردگار ما، خدای یکتاست!» و اگر خداوند بعضی از مردم را بوسیله بعضی دیگر دفع نکند، دیرها و صومعهها، و معابد یهود و نصارا، و مساجدی که نام خدا در آن بسیار برده میشود، ویران میگردد! و خداوند کسانی را که یاری او کنند (و از آیینش دفاع نمایند) یاری میکند؛ خداوند قوی و شکست ناپذیر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,364,'همان کسانی که هر گاه در زمین به آنها قدرت بخشیدیم، نماز را برپا میدارند، و زکات میدهند، و امر به معروف و نهی از منکر میکنند، و پایان همه کارها از آن خداست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,364,'اگر تو را تکذیب کنند، (امر تازهای نیست؛) پیش از آنها قوم نوح و عاد و ثمود (پیامبرانشان را) تکذیب کردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,364,'و همچنین قوم ابراهیم و قوم لوط؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,364,'و اصحاب مدین (قوم شعیب)؛ و نیز موسی (از سوی فرعونیان) تکذیب شد؛ امّا من به کافران مهلت دادم، سپس آنها را مجازات کردم. دیدی چگونه (عمل آنها را) انکار نمودم (و چگونه به آنان پاسخ گفتم)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,364,'چه بسیار شهرها و آبادیهایی که آنها را نابود و هلاک کردیم در حالی که (مردمش) ستمگر بودند، بگونهای که بر سقفهای خود فروریخت! (نخست سقفها ویران گشت؛ و بعد دیوارها بر روی سقفها!) و چه بسیار چاه پر آب که بیصاحب ماند؛ و چه بسیار قصرهای محکم و مرتفع!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,364,'آیا آنان در زمین سیر نکردند، تا دلهایی داشته باشند که حقیقت را با آن درک کنند؛ یا گوشهای شنوایی که با آن (ندای حق را) بشنوند؟! چرا که چشمهای ظاهر نابینا نمیشود، بلکه دلهایی که در سینههاست کور میشود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,364,'آنان از تو تقاضای شتاب در عذاب میکنند؛ در حالی که خداوند هرگز از وعده خود تخلّف نخواهد کرد! و یک روز نزد پروردگارت، همانند هزار سال از سالهایی است که شما میشمرید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,364,'و چه بسیار شهرها و آبادیهایی که به آنها مهلت دادم، در حالی که ستمگر بودند؛ (امّا از این مهلت برای اصلاح خویش استفاده نکردند.) سپس آنها را مجازات کردم؛ و بازگشت، تنها بسوی من است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,364,'بگو: «ای مردم! من برای شما بیمدهنده آشکاری هستم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,364,'آنها که ایمان آوردند و اعمال صالح انجام دادند، آمرزش و روزی پر ارزشی برای آنهاست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,364,'و آنها که در (محو) آیات ما تلاش کردند، و چنین میپنداشتند که میتوانند بر اراده حتمی ما غالب شوند، اصحاب دوزخند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,364,'هیچ پیامبری را پیش از تو نفرستادیم مگر اینکه هرگاه آرزو میکرد (و طرحی برای پیشبرد اهداف الهی خود میریخت)، شیطان القائاتی در آن میکرد؛ امّا خداوند القائات شیطان را از میان میبرد، سپس آیات خود را استحکام میبخشید؛ و خداوند علیم و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,364,'هدف این بود که خداوند القای شیطان را آزمونی قرار دهد برای آنها که در دلهایشان بیماری است، و آنها که سنگدلند؛ و ظالمان در عداوت شدید دور از حقّ قرار گرفتهاند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,364,'و (نیز) هدف این بود که آگاهان بدانند این حقّی است از سوی پروردگارت، و در نتیجه به آن ایمان بیاورند، و دلهایشان در برابر آن خاضع گردد؛ و خداوند کسانی را که ایمان آوردند، بسوی صراط مستقیم هدایت میکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,364,'کافران همواره در باره قرآن در شکّ هستند، تا آنکه روز قیامت بطور ناگهانی فرارسد، یا عذاب روز عقیم [= روزی که قادر بر جبران گذشته نیستند] به سراغشان آید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,364,'حکومت و فرمانروایی در آن روز از آن خداست؛ و میان آنها داوری میکند: کسانی که ایمان آورده و کارهای شایسته انجام دادهاند، در باغهای پرنعمت بهشتند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,364,'و کسانی که کافر شدند و آیات ما را تکذیب کردند، عذاب خوارکنندهای برای آنهاست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,364,'و کسانی که در راه خدا هجرت کردند، سپس کشته شدند یا به مرگ طبیعی از دنیا رفتند، خداوند به آنها روزی نیکویی میدهد؛ که او بهترین روزیدهندگان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,364,'خداوند آنان را در محلی وارد میکند که از آن خشنود خواهند بود؛ و خداوند دانا و بردبار است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,364,'(آری،) مطلب چنین است! و هر کس به همان مقدار که به او ستم شده مجازات کند، سپس مورد تعدّی قرار گیرد، خدا او را یاری خواهد کرد؛ یقیناً خداوند بخشنده و آمرزنده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,364,'این (وعده نصرت الهی) بخاطر آن است (که او بر هر چیز قادر است؛ خداوندی) که شب را در روز، و روز را در شب داخل میکند؛ و خداوند شنوا و بیناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,364,'این بخاطر آن است که خداوند حقّ است؛ و آنچه را غیر از او میخوانند باطل است؛ و خداوند بلندمقام و بزرگ است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,364,'آیا ندیدی خداوند از آسمان، آبی فرستاد، و زمین (بر اثر آن) سرسبز و خرّم میگردد؟! و خداوند لطیف و آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,364,'آنچه در آسمانها و آنچه در زمین است از آن اوست؛ و خداوند بینیاز، و شایسته هر گونه ستایش است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,364,'آیا ندیدی که خداوند آنچه را در زمین است مسخّر شما کرد؛ و (نیز) کشتیهایی را که به فرمان او بر صفحه اقیانوسها حرکت میکنند؛ و آسمان [= کرات و سنگهای آسمانی] را نگه میدارد، تا جز بفرمان او، بر زمین فرو نیفتند؟ خداوند نسبت به مردم رحیم و مهربان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,364,'و او کسی است که شما را زنده کرد، سپس میمیراند، بار دیگر زنده میکند، امّا این انسان بسیار ناسپاس است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,364,'برای هر امّتی عبادتی قرار دادیم، تا آن عبادت را (در پیشگاه خدا) انجام دهند؛ پس نباید در این امر با تو به نزاع برخیزند! بسوی پروردگارت دعوت کن، که بر هدایت مستقیم قرار داری (و راه راست همین است که تو میپویی).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,364,'و اگر آنان با تو به جدال برخیزند، بگو: «خدا از کارهایی که شما انجام میدهید آگاهتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,364,'و خداوند در روز قیامت، میان شما در آنچه اختلاف میکردید، داوری میکند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,364,'آیا نمیدانستی خداوند آنچه را در آسمان و زمین است میداند؟! همه اینها در کتابی ثبت است (همان کتاب علم بیپایان پروردگار)؛ و این بر خداوند آسان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,364,'آنها غیر از خداوند، چیزهایی را میپرستند که او هیچ گونه دلیلی بر آن نازل نکرده است، و چیزهایی را که علم و آگاهی به آن ندارند! و برای ستمگران، یاور و راهنمایی نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,364,'و هنگامی که آیات روشن ما بر آنان خوانده میشود، در چهره کافران آثار انکار مشاهده میکنی، آنچنان که نزدیک است برخیزند و با مشت به کسانی که آیات ما را بر آنها میخوانند حمله کنند! بگو: «آیا شما را به بدتر از این خبر دهم؟ همان آتش سوزنده [= دوزخ] که خدا به کافران وعده داده؛ و بد سرانجامی است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,364,'ای مردم! مثلی زده شده است، به آن گوش فرا دهید: کسانی را که غیر از خدا میخوانید، هرگز نمیتوانند مگسی بیافرینند، هر چند برای این کار دست به دست هم دهند! و هرگاه مگس چیزی از آنها برباید، نمیتوانند آن را باز پس گیرند! هم این طلبکنندگان ناتوانند، و هم آن مطلوبان (هم این عابدان، و هم آن معبودان)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,364,'خدا را آن گونه که باید بشناسند نشناختند؛ خداوند قوّی و شکستناپذیر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,364,'خداوند از فرشتگان رسولانی برمیگزیند، و همچنین از مردم؛ خداوند شنوا و بیناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,364,'آنچه را در پیش روی آنها و پشت سر آنهاست میداند؛ و همه امور بسوی خدا بازمیگردد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,364,'ای کسانی که ایمان آوردهاید! رکوع کنید، و سجود بجا آورید، و پروردگارتان را عبادت کنید، و کار نیک انجام دهید، شاید رستگار شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,364,'و در راه خدا جهاد کنید، و حقّ جهادش را ادا نمایید! او شما را برگزید، و در دین (اسلام) کار سنگین و سختی بر شما قرار ندارد؛ از آیین پدرتان ابراهیم پیروی کنید؛ خداوند شما را در کتابهای پیشین و در این کتاب آسمانی «مسلمان» نامید، تا پیامبر گواه بر شما باشد، و شما گواهان بر مردم! پس نماز را برپا دارید، و زکات را بدهید، و به خدا تمسّک جویید، که او مولا و سرپرست شماست! چه مولای خوب، و چه یاور شایستهای!');
+INSERT INTO chapters (id, number, quran_id) VALUES(365,23,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,365,'مؤمنان رستگار شدند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,365,'آنها که در نمازشان خشوع دارند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,365,'و آنها که از لغو و بیهودگی رویگردانند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,365,'و آنها که زکات را انجام میدهند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,365,'و آنها که دامان خود را (از آلودهشدن به بیعفتی) حفظ میکنند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,365,'تنها آمیزش جنسی با همسران و کنیزانشان دارند، که در بهرهگیری از آنان ملامت نمیشوند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,365,'و کسانی که غیر از این طریق را طلب کنند، تجاوزگرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,365,'و آنها که امانتها و عهد خود را رعایت میکنند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,365,'و آنها که بر نمازهایشان مواظبت مینمایند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,365,'(آری،) آنها وارثانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,365,'(وارثانی) که بهشت برین را ارث میبرند، و جاودانه در آن خواهند ماند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,365,'و ما انسان را از عصارهای از گِل آفریدیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,365,'سپس او را نطفهای در قرارگاه مطمئن [= رحم] قرار دادیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,365,'سپس نطفه را بصورت علقه [= خون بسته]، و علقه را بصورت مضغه [= چیزی شبیه گوشت جویده شده]، و مضغه را بصورت استخوانهایی درآوردیم؛ و بر استخوانها گوشت پوشاندیم؛ سپس آن را آفرینش تازهای دادیم؛ پس بزرگ است خدایی که بهترین آفرینندگان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,365,'سپس شما بعد از آن میمیرید؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,365,'سپس در روز قیامت برانگیخته میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,365,'ما بر بالای سر شما هفت راه [= طبقات هفتگانه آسمان] قرار دادیم؛ و ما (هرگز) از خلق (خود) غافل نبودهایم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,365,'و از آسمان، آبی به اندازه معیّن نازل کردیم؛ و آن را در زمین (در جایگاه مخصوصی) ساکن نمودیم؛ و ما بر از بین بردن آن کاملاً قادریم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,365,'سپس بوسیله آن باغهایی از درختان نخل و انگور برای شما ایجاد کردیم؛ باغهایی که در آن میوههای بسیار است؛ و از آن میخورید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,365,'و (نیز) درختی را که از طور سینا میروید [= درخت زیتون]، و از آن روغن و «نان خورش» برای خورندگان فراهم میگردد (آفریدیم)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,365,'و برای شما در چهارپایان عبرتی است؛ از آنچه در درون آنهاست [= از شیر] شما را سیراب میکنیم؛ و برای شما در آنها منافع بسیاری است؛ و از گوشت آنها میخورید؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,365,'و بر آنها و بر کشتیها سوار میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,365,'و ما نوح را بسوی قومش فرستادیم؛ او به آنها گفت: «ای قوم من! خداوند یکتا را بپرستید، که جز او معبودی برای شما نیست! آیا (از پرستش بتها) پرهیز نمیکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,365,'جمعیّت اشرافی (و مغرور) از قوم نوح که کافر بودند گفتند: «این مرد جز بشری همچون شما نیست، که میخواهد بر شما برتری جوید! اگر خدا میخواست (پیامبری بفرستد) فرشتگانی نازل میکرد؛ ما چنین چیزی را هرگز در نیاکان خود نشنیدهایم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,365,'او فقط مردی است که به نوعی جنون مبتلاست! پس مدّتی درباره او صبر کنید (تا مرگش فرا رسد، یا از این بیماری رهایی یابد!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,365,'(نوح) گفت: «پروردگارا! مرا در برابر تکذیبهای آنان یاری کن!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,365,'ما به نوح وحی کردیم که: «کشتی را در حضور ما، و مطابق وحی ما بساز. و هنگامی که فرمان ما (برای غرق آنان) فرا رسد، و آب از تنور بجوشد (که نشانه فرا رسیدن طوفان است)، از هر یک از انواع حیوانات یک جفت در کشتی سوار کن؛ و همچنین خانوادهات را، مگر آنانی که قبلاً وعده هلاکشان داده شده [= همسر و فرزند کافرت]؛ و دیگر درباره ستمگران با من سخن مگو، که آنان همگی هلاک خواهند شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,365,'و هنگامی که تو و همه کسانی که با تو هستند بر کشتی سوار شدید، بگو: «ستایش برای خدایی است که ما را از قوم ستمگر نجات بخشید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,365,'و بگو: «پروردگارا! ما را در منزلگاهی پربرکت فرود آر، و تو بهترین فرودآورندگانی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,365,'(آری،) در این ماجرا (برای صاحبان عقل و اندیشه) آیات و نشانههایی است؛ و ما مسلّماً همگان را آزمایش میکنیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,365,'سپس جمعیّت دیگری را بعد از آنها به وجود آوردیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,365,'و در میان آنان رسولی از خودشان فرستادیم که: «خدا را بپرستید؛ جز او معبودی برای شما نیست؛ آیا (با این همه، از شرک و بت پرستی) پرهیز نمیکنید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,365,'ولی اشرافیان (خودخواه) از قوم او که کافر بودند، و دیدار آخرت را تکذیب میکردند، و در زندگی دنیا به آنان ناز و نعمت داده بودیم، گفتند: «این بشری است مثل شما؛ از آنچه میخورید میخورد؛ و از آنچه مینوشید مینوشد! (پس چگونه میتواند پیامبر باشد؟!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,365,'و اگر از بشری همانند خودتان اطاعت کنید، مسلّماً زیانکارید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,365,'آیا او به شما وعده میدهد هنگامی که مردید و خاک و استخوانهایی (پوسیده) شدید، بار دیگر (از قبرها) بیرون آورده میشوید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,365,'هیهات، هیهات از این وعدههایی که به شما داده میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,365,'مسلّماً غیر از این زندگی دنیای ما، چیزی در کار نیست؛ پیوسته گروهی از ما میمیریم، و نسل دیگری جای ما را میگیرد؛ و ما هرگز برانگیخته نخواهیم شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,365,'او فقط مردی دروغگوست که بر خدا افترا بسته؛ و ما هرگز به او ایمان نخواهیم آورد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,365,'(پیامبرشان) گفت: «پروردگارا! مرا در برابر تکذیبهای آنان یاری کن!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,365,'(خداوند) فرمود: «بزودی از کار خود پشیمان خواهند شد! (امّا زمانی که دیگر سودی به حالشان ندارد.)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,365,'سرانجام صیحه آسمانی آنها را بحق فرو گرفت؛ و ما آنها را همچون خاشاکی بر سیلاب قرار دادیم؛ دور باد قوم ستمگر (از رحمت خدا)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,365,'سپس اقوام دیگری را پس از آنها پدید آوردیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,365,'هیچ ارمتی بر اجل و سر رسید حتمی خود پیشی نمیگیرد، و از آن تأخیر نیز نمیکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,365,'سپس رسولان خود را یکی پس از دیگری فرستادیم؛ هر زمان رسولی برای (هدایت) قومی میآمد، او را تکذیب میکردند؛ ولی ما این امّتهای سرکش را یکی پس از دیگری هلاک نمودیم، و آنها را احادیثی قرار دادیم (چنان محو شدند که تنها نام و گفتگویی از آنان باقی ماند.) دور باد (از رحمت خدا) قومی که ایمان نمیآورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,365,'سپس موسی و برادرش هارون را با آیات خود و دلیلی روشن فرستادیم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,365,'بسوی فرعون و اطرافیان اشرافی او؛ امّا آنها تکبّر کردند، و آنها مردمی برتریجوی بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,365,'آنها گفتند: «آیا ما به دو انسان همانند خودمان ایمان بیاوریم، در حالی که قوم آنها بردگان ما هستند؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,365,'(آری،) آنها این دو را تکذیب کردند؛ و سرانجام همگی هلاک شدند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,365,'و ما به موسی کتاب (آسمانی) دادیم؛ شاید آنان [= بنی اسرائیل] هدایت شوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,365,'و ما فرزند مریم [= عیسی] و مادرش را آیت و نشانهای قرار دادیم؛ و آنها را در سرزمین مرتفعی که دارای امنیّت و آب جاری بود جای دادیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,365,'ای پیامبران! از غذاهای پاکیزه بخورید، و عمل صالح انجام دهید، که من به آنچه انجام میدهید آگاهم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,365,'و این امّت شما امّت واحدی است؛ و من پروردگار شما هستم؛ پس، از مخالفت فرمان من بپرهیزید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,365,'امّا آنها کارهای خود را در میان خویش به پراکندگی کشاندند، و هر گروهی به راهی رفتند؛ (و عجب اینکه) هر گروه به آنچه نزد خود دارند خوشحالند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,365,'آنها را در جهل و غفلتشان بگذار تا زمانی (که مرگشان فرا رسد یا گرفتار عذاب الهی شوند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,365,'آنها گمان میکنند اموال و فرزندانی که بعنوان کمک به آنان میدهیم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,365,'برای این است که درهای خیرات را با شتاب به روی آنها بگشاییم!! (چنین نیست) بلکه آنها نمیفهمند (که این وسیله امتحانشان است).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,365,'مسلّماً کسانی که از خوف پروردگارشان بیمناکند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,365,'و آنان که به آیات پروردگارشان ایمان میآورند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,365,'و آنها که به پروردگارشان شرک نمیورزند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,365,'و آنها که نهایت کوشش را در انجام طاعات به خرج میدهند و با این حال، دلهایشان هراسناک است از اینکه سرانجام بسوی پروردگارشان بازمیگردند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,365,'(آری) چنین کسانی در خیرات سرعت میکنند و از دیگران پیشی میگیرند (و مشمول عنایات ما هستند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,365,'و ما هیچ کس را جز به اندازه تواناییش تکلیف نمیکنیم؛ و نزد ما کتابی است که (تمام اعمال بندگان را ثبت کرده و) بحق سخن میگوید؛ و به آنان هیچ ستمی نمیشود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,365,'ولی دلهای آنها از این نامه اعمال (و روز حساب و آیات قرآن) در بیخبری فرورفته؛ و اعمال (زشت) دیگری جز این دارند که پیوسته آن را انجام میدهند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,365,'تا زمانی که متنعّمان مغرور آنها را در چنگال عذاب گرفتار سازیم؛ در این هنگام، نالههای دردناک و استغاثهآمیز سرمیدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,365,'(امّا به آنها گفته میشود:) امروز فریاد نکنید، زیرا از سوی ما یاری نخواهید شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,365,'(آیا فراموش کردهاید که) در گذشته آیات من پیوسته بر شما خوانده میشد؛ امّا شما اعراض کرده به عقب بازمیگشتید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,365,'در حالی که در برابر او [=پیامبر] استکبار میکردید، و شبها در جلسات خود به بدگویی میپرداختید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,365,'آیا آنها در این گفتار نیندیشیدند، یا اینکه چیزی برای آنان آمده که برای نیاکانشان نیامده است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,365,'یا اینکه پیامبرشان را نشناختند (و از سوابق او آگاه نیستند)، از این رو او را انکار میکنند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,365,'یا میگویند او دیوانه است؟! ولی او حق را برای آنان آورده؛ امّا بیشترشان از حق کراهت دارند (و گریزانند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,365,'و اگر حق از هوسهای آنها پیروی کند، آسمانها و زمین و همه کسانی که در آنها هستند تباه میشوند! ولی ما قرآنی به آنها دادیم که مایه یادآوری (و عزّت و شرف) برای آنهاست، امّا آنان از (آنچه مایه) یادآوریشان (است) رویگردانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,365,'یا اینکه تو از آنها مزد و هزینهای (در برابر دعوتت) میخواهی؟ با اینکه مزد پروردگارت بهتر، و او بهترین روزی دهندگان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,365,'بطور قطع و یقین، تو آنان را به راه راست دعوت میکنی.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,365,'امّا کسانی که به آخرت ایمان ندارند از این راه منحرفند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,365,'و اگر به آنان رحم کنید و گرفتاریها و مشکلاتشان را برطرف سازیم، (نه تنها بیدار نمیشوند، بلکه) در طغیانشان لجاجت میورزند و (در این وادی) سرگردان میمانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,365,'ما آنها را به عذاب و بلا گرفتار ساختیم (تا بیدار شوند)، امّا آنان نه در برابر پروردگارشان تواضع کردند، و نه به درگاهش تضرّع میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,365,'(این وضع همچنان ادامه مییابد) تا زمانی که دری از عذاب شدید به روی آنان بگشاییم، (و چنان گرفتار میشوند که) ناگهان بکلّی مأیوس گردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,365,'و او کسی است که برای شما گوش و چشم و قلب [=عقل] ایجاد کرد؛ امّا کمتر شکر او را بجا میآورید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,365,'و او کسی است که شما را در زمین آفرید؛ و به سوی او محشور میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,365,'و او کسی است که زنده میکند و میمیراند؛ و رفت و آمد شب و روز از آن اوست؛ آیا اندیشه نمیکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,365,'(نه،) بلکه آنان نیز مثل آنچه پیشینیان گفته بودند گفتند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,365,'آنها گفتند: «آیا هنگامی که مردیم و خاک و استخوانهایی (پوسیده) شدیم، آیا بار دیگر برانگیخته خواهیم شد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,365,'این وعده به ما و پدرانمان از قبل داده شده؛ این فقط افسانههای پیشینیان است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,365,'بگو: «زمین و کسانی که در آن هستند از آن کیست، اگر شما میدانید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,365,'بزودی (در پاسخ تو) میگویند: «همه از آن خداست!» بگو: «آیا متذکّر نمیشوید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,365,'بگو: «چه کسی پروردگار آسمانهای هفتگانه، و پروردگار عرش عظیم است؟»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,365,'بزودی خواهند گفت: «همه اینها از آن خداست!» بگو: «آیا تقوا پیشه نمیکنید (و از خدا نمیترسید و دست از شرک برنمیدارید)؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,365,'بگو: «اگر میدانید، چه کسی حکومت همه موجودات را در دست دارد، و به بی پناهان پناه میدهد، و نیاز به پناهدادن ندارد؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,365,'خواهند گفت: «(همه اینها) از آن خداست» بگو: «با این حال چگونه میگویید سحر شدهاید (و این سخنان سحر و افسون است)؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,365,'نه، (واقع این است که) ما حقّ را برای آنها آوردیم؛ و آنان دروغ میگویند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,365,'خدا هرگز فرزندی برای خود انتخاب نکرده؛ و معبود دیگری با او نیست؛ که اگر چنین میشد، هر یک از خدایان مخلوقات خود را تدبیر و اداره میکردند و بعضی بر بعضی دیگر برتری میجستند (و جهان هستی به تباهی کشیده میشد)؛ منزّه است خدا از آنچه آنان توصیف میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,365,'او دانای نهان و آشکار است؛ پس برتر است از آنچه برای او همتا قرار میدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,365,'بگو: «پروردگار من! اگر عذابهایی را که به آنان وعده داده میشود به من نشان دهی (و در زندگیم آن را ببینم)...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,365,'پروردگار من! مرا (در این عذابها) با گروه ستمگران قرار مده!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,365,'و ما تواناییم که آنچه را به آنها وعده میدهیم به تو نشان دهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,365,'بدی را به بهترین راه و روش دفع کن (و پاسخ بدی را به نیکی ده)! ما به آنچه توصیف میکنند آگاهتریم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,365,'و بگو: «پروردگارا! از وسوسههای شیاطین به تو پناه میبرم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,365,'و از اینکه آنان نزد من حاضر شوند (نیز) -ای پروردگار من- به تو پناه میبرم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,365,'(آنها همچنان به راه غلط خود ادامه میدهند) تا زمانی که مرگ یکی از آنان فرارسد، میگوید: «پروردگار من! مرا بازگردانید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,4,365,'شاید در آنچه ترک کردم (و کوتاهی نمودم) عمل صالحی انجام دهم!» (ولی به او میگویند:) چنین نیست! این سخنی است که او به زبان میگوید (و اگر بازگردد، کارش همچون گذشته است)! و پشت سر آنان برزخی است تا روزی که برانگیخته شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,4,365,'هنگامی که در «صور» دمیده شود، هیچ یک از پیوندهای خویشاوندی میان آنها در آن روز نخواهد بود؛ و از یکدیگر تقاضای کمک نمیکنند (چون کاری از کسی ساخته نیست)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,4,365,'و کسانی که وزنه اعمالشان سنگین است، همان رستگارانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,4,365,'و آنان که وزنه اعمالشان سبک باشد، کسانی هستند که سرمایه وجود خود را از دست داده، در جهنم جاودانه خواهند ماند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,4,365,'شعلههای سوزان آتش همچون شمشیر به صورتهایشان نواخته میشود؛ و در دوزخ چهرهای عبوس دارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,4,365,'(به آنها گفته میشود:) آیا آیات من بر شما خوانده نمیشد، پس آن را تکذیب میکردید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,4,365,'میگویند: «پروردگارا! بدبختی ما بر ما چیره شد، و ما قوم گمراهی بودیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,4,365,'پروردگارا! ما را از این (دوزخ) بیرون آر، اگر بار دیگر تکرار کردیم قطعاً ستمگریم (و مستحق عذاب)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,4,365,'(خداوند) میگوید: «دور شوید در دوزخ، و با من سخن مگویید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,4,365,'(فراموش کردهاید) گروهی از بندگانم میگفتند: پروردگارا! ما ایمان آوردیم؛ ما را ببخش و بر ما رحم کن؛ و تو بهترین رحم کنندگانی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,4,365,'امّا شما آنها را به باد مسخره گرفتید تا شما را از یاد من غافل کردند؛ و شما به آنان میخندیدید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,4,365,'ولی من امروز آنها را بخاطر صبر و استقامتشان پاداش دادم؛ آنها پیروز و رستگارند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,4,365,'(خداوند) میگوید: «چند سال در روی زمین توقّف کردید؟»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,4,365,'(در پاسخ) میگویند: «تنها به اندازه یک روز، یا قسمتی از یک روز! از آنها که میتوانند بشمارند بپرس!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,4,365,'میگوید: «(آری،) شما مقدار کمی توقّف نمودید اگر میدانستید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,4,365,'آیا گمان کردید شما را بیهوده آفریدهایم، و بسوی ما باز نمیگردید؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,4,365,'پس برتر است خداوندی که فرمانروای حقّ است (از اینکه شما را بیهدف آفریده باشد)! معبودی جز او نیست؛ و او پروردگار عرش کریم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,4,365,'و هر کس معبود دیگری را با خدا بخواند -و مسلّماً هیچ دلیلی بر آن نخواهد داشت- حساب او نزد پروردگارش خواهد بود؛ یقیناً کافران رستگار نخواهند شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,4,365,'و بگو: «پروردگارا! مرا ببخش و رحمت کن؛ و تو بهترین رحم کنندگانی!');
+INSERT INTO chapters (id, number, quran_id) VALUES(366,24,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,366,'(این) سورهای است که آن را فرو فرستادیم، و (عمل به آن را) واجب نمودیم، و در آن آیات روشنی نازل کردیم، شاید شما متذکّر شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,366,'هر یک از زن و مرد زناکار را صد تازیانه بزنید؛ و نباید رأفت (و محبّت کاذب) نسبت به آن دو شما را از اجرای حکم الهی مانع شود، اگر به خدا و روز جزا ایمان دارید! و باید گروهی از مؤمنان مجازاتشان را مشاهده کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,366,'مرد زناکار جز با زن زناکار یا مشرک ازدواج نمیکند؛ و زن زناکار را، جز مرد زناکار یا مشرک، به ازدواج خود درنمیآورد؛ و این کار بر مؤمنان حرام شده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,366,'و کسانی که زنان پاکدامن را متهمّ میکنند، سپس چهار شاهد (بر مدّعای خود) نمیآورند، آنها را هشتاد تازیانه بزنید و شهادتشان را هرگز نپذیرید؛ و آنها همان فاسقانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,366,'مگر کسانی که بعد از آن توبه کنند و جبران نمایند (که خداوند آنها را میبخشد) زیرا خداوند آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,366,'و کسانی که همسران خود را (به عمل منافی عفّت) متهمّ میکنند، و گواهانی جز خودشان ندارند، هر یک از آنها باید چهار مرتبه به نام خدا شهادت دهد که از راستگویان است؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,366,'و در پنجمین بار بگوید که لعنت خدا بر او باد اگر از دروغگویان باشد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,366,'آن زن نیز میتواند کیفر (زنا) را از خود دور کند، به این طریق که چهار بار خدا را به شهادت طلبد که آن مرد (در این نسبتی که به او میدهد) از دروغگویان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,366,'و بار پنجم بگوید که غضب خدا بر او باد اگر آن مرد از راستگویان باشد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,366,'و اگر فضل و رحمت خدا شامل حال شما نبود و اینکه او توبهپذیر و حکیم است (بسیاری از شما گرفتار مجازات سخت الهی میشدید)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,366,'مسلّماً کسانی که آن تهمت عظیم را عنوان کردند گروهی (متشکّل و توطئهگر) از شما بودند؛ امّا گمان نکنید این ماجرا برای شما بد است، بلکه خیر شما در آن است؛ آنها هر کدام سهم خود را از این گناهی که مرتکب شدند دارند؛ و از آنان کسی که بخش مهمّ آن را بر عهده داشت عذاب عظیمی برای اوست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,366,'چرا هنگامی که این (تهمت) را شنیدید، مردان و زنان با ایمان نسبت به خود (و کسی که همچون خود آنها بود) گمان خیر نبردند و نگفتند این دروغی بزرگ و آشکار است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,366,'چرا چهار شاهد برای آن نیاوردند؟! اکنون که این گواهان را نیاوردند، آنان در پیشگاه خدا دروغگویانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,366,'و اگر فضل و رحمت الهی در دنیا و آخرت شامل شما نمیشد، بخاطر این گناهی که کردید عذاب سختی به شما میرسید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,366,'به خاطر بیاورید زمانی را که این شایعه را از زبان یکدیگر میگرفتید، و با دهان خود سخنی میگفتید که به آن یقین نداشتید؛ و آن را کوچک میپنداشتید در حالی که نزد خدا بزرگ است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,366,'چرا هنگامی که آن را شنیدید نگفتید: «ما حق نداریم که به این سخن تکلّم کنیم؛ خداوندا منزّهی تو، این بهتان بزرگی است»؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,366,'خداوند شما را اندرز میدهد که هرگز چنین کاری را تکرار نکنید اگر ایمان دارید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,366,'و خداوند آیات را برای شما بیان میکند، و خدا دانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,366,'کسانی که دوست دارند زشتیها در میان مردم با ایمان شیوع یابد، عذاب دردناکی برای آنان در دنیا و آخرت است؛ و خداوند میداند و شما نمیدانید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,366,'و اگر فضل و رحمت الهی شامل حال شما نبود و اینکه خدا مهربان و رحیم است (مجازات سختی دامانتان را میگرفت)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,366,'ای کسانی که ایمان آوردهاید! از گامهای شیطان پیروی نکنید! هر کس پیرو شیطان شود (گمراهش میسازد، زیرا) او به فحشا و منکر فرمان میدهد! و اگر فضل و رحمت الهی بر شما نبود، هرگز احدی از شما پاک نمیشد؛ ولی خداوند هر که را بخواهد تزکیه میکند، و خدا شنوا و داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,366,'آنها که از میان شما دارای برتری (مالی) و وسعت زندگی هستند نباید سوگند یاد کنند که از انفاق نسبت به نزدیکان و مستمندان و مهاجران در راه خدا دریغ نمایند؛ آنها باید عفو کنند و چشم بپوشند؛ آیا دوست نمیدارید خداوند شما را ببخشد؟! و خداوند آمرزنده و مهربان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,366,'کسانی که زنان پاکدامن و بیخبر (از هرگونه آلودگی) و مؤمن را متهم میسازند، در دنیا و آخرت از رحمت الهی بدورند و عذاب بزرگی برای آنهاست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,366,'در آن روز زبانها و دستها و پاهایشان بر ضدّ آنها به اعمالی که مرتکب میشدند گواهی میدهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,366,'آن روز، خداوند جزای واقعی آنان را بیکم و کاست میدهد؛ و میدانند که خداوند حق آشکار است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,366,'زنان ناپاک از آن مردان ناپاکند، و مردان ناپاک نیز به زنان ناپاک تعلّق دارند؛ و زنان پاک از آن مردان پاک، و مردان پاک از آن زنان پاکند! اینان از نسبتهای ناروایی که (ناپاکان) به آنان میدهند مبرّا هستند؛ و برای آنان آمرزش (الهی) و روزی پرارزشی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,366,'ای کسانی که ایمان آوردهاید! در خانههایی غیر از خانه خود وارد نشوید تا اجازه بگیرید و بر اهل آن خانه سلام کنید؛ این برای شما بهتر است؛ شاید متذکّر شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,366,'و اگر کسی را در آن نیافتید، وارد نشوید تا به شما اجازه داده شود؛ و اگر گفته شد: «بازگردید!» بازگردید؛ این برای شما پاکیزهتر است؛ و خداوند به آنچه انجام میدهید آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,366,'(ولی) گناهی بر شما نیست که وارد خانههای غیر مسکونی بشوید که در آن متاعی متعلّق به شما وجود دارد؛ و خدا آنچه را آشکار میکنید و آنچه را پنهان میدارید، میداند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,366,'به مؤمنان بگو چشمهای خود را (از نگاه به نامحرمان) فروگیرند، و عفاف خود را حفظ کنند؛ این برای آنان پاکیزهتر است؛ خداوند از آنچه انجام میدهید آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,366,'و به زنان با ایمان بگو چشمهای خود را (از نگاه هوسآلود) فروگیرند، و دامان خویش را حفظ کنند و زینت خود را -جز آن مقدار که نمایان است- آشکار ننمایند و (اطراف) روسریهای خود را بر سینه خود افکنند (تا گردن و سینه با آن پوشانده شود)، و زینت خود را آشکار نسازند مگر برای شوهرانشان، یا پدرانشان، یا پدر شوهرانشان، یا پسرانشان، یا پسران همسرانشان، یا برادرانشان، یا پسران برادرانشان، یا پسران خواهرانشان، یا زنان همکیششان، یا بردگانشان [=کنیزانشان]، یا افراد سفیه که تمایلی به زن ندارند، یا کودکانی که از امور جنسی مربوط به زنان آگاه نیستند؛ و هنگام راه رفتن پاهای خود را به زمین نزنند تا زینت پنهانیشان دانسته شود (و صدای خلخال که برپا دارند به گوش رسد). و همگی بسوی خدا بازگردید ای مؤمنان، تا رستگار شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,366,'مردان و زنان بیهمسر خود را همسر دهید، همچنین غلامان و کنیزان صالح و درستکارتان را؛ اگر فقیر و تنگدست باشند، خداوند از فضل خود آنان را بینیاز میسازد؛ خداوند گشایشدهنده و آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,366,'و کسانی که امکانی برای ازدواج نمییابند، باید پاکدامنی پیشه کنند تا خداوند از فضل خود آنان را بینیاز گرداند! و آن بردگانتان که خواستار مکاتبه [=قرار داد مخصوص برای آزاد شدن] هستند، با آنان قرار داد ببندید اگر رشد و صلاح در آنان احساس میکنید (که بعد از آزادی، توانایی زندگی مستقل را دارند)؛ و چیزی از مال خدا را که به شما داده است به آنان بدهید! و کنیزان خود را برای دستیابی متاع ناپایدار زندگی دنیا مجبور به خود فروشی نکنید اگر خودشان میخواهند پاک بمانند! و هر کس آنها را (بر این کار) اجبار کند، (سپس پشیمان گردد،) خداوند بعد از این اجبار آنها غفور و رحیم است! (توبه کنید و بازگردید، تا خدا شما را ببخشد!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,366,'ما بر شما آیاتی فرستادیم که حقایق بسیاری را تبیین میکند، و اخباری از کسانی که پیش از شما بودند، و موعظه و اندرزی برای پرهیزگاران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,366,'خداوند نور آسمانها و زمین است؛ مثل نور خداوند همانند چراغدانی است که در آن چراغی (پر فروغ) باشد، آن چراغ در حبابی قرار گیرد، حبابی شفاف و درخشنده همچون یک ستاره فروزان، این چراغ با روغنی افروخته میشود که از درخت پربرکت زیتونی گرفته شده که نه شرقی است و نه غربی؛ (روغنش آنچنان صاف و خالص است که) نزدیک است بدون تماس با آتش شعلهور شود؛ نوری است بر فراز نوری؛ و خدا هر کس را بخواهد به نور خود هدایت میکند، و خداوند به هر چیزی داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,366,'(این چراغ پرفروغ) در خانههایی قرار دارد که خداوند اذن فرموده دیوارهای آن را بالا برند (تا از دستبرد شیاطین و هوسبازان در امان باشد)؛ خانههایی که نام خدا در آنها برده میشود، و صبح و شام در آنها تسبیح او میگویند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,366,'مردانی که نه تجارت و نه معاملهای آنان را از یاد خدا و برپاداشتن نماز و ادای زکات غافل نمیکند؛ آنها از روزی میترسند که در آن، دلها و چشمها زیر و رو میشود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,366,'(آنها به سراغ این کارها میروند) تا خداوند آنان را به بهترین اعمالی که انجام دادهاند پاداش دهد، و از فضل خود بر پاداششان بیفزاید؛ و خداوند به هر کس بخواهد بی حساب روزی میدهد (و از مواهب بیانتهای خویش بهرهمند میسازد).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,366,'کسانی که کافر شدند، اعمالشان همچون سرابی است در یک کویر که انسان تشنه از دور آن را آب میپندارد؛ امّا هنگامی که به سراغ آن میآید چیزی نمییابد، و خدا را نزد آن مییابد که حساب او را بطور کامل میدهد؛ و خداوند سریع الحساب است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,366,'یا همچون ظلماتی در یک دریای عمیق و پهناور که موج آن را پوشانده، و بر فراز آن موج دیگری، و بر فراز آن ابری تاریک است؛ ظلمتهایی است یکی بر فراز دیگری، آن گونه که هر گاه دست خود را خارج کند ممکن نیست آن را ببیند! و کسی که خدا نوری برای او قرار نداده، نوری برای او نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,366,'آیا ندیدی تمام آنان که در آسمانها و زمینند برای خدا تسبیح میکنند، و همچنین پرندگان به هنگامی که بر فراز آسمان بال گستردهاند؟! هر یک از آنها نماز و تسبیح خود را میداند؛ و خداوند به آنچه انجام میدهند داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,366,'و از برای خداست حکومت و مالکیّت آسمانها و زمین؛ و بازگشت (تمامی موجودات) بسوی اوست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,366,'آیا ندیدی که خداوند ابرهایی را به آرامی میراند، سپس میان آنها پیوند میدهد، و بعد آن را متراکم میسازد؟! در این حال، دانههای باران را میبینی که از لابهلای آن خارج میشود؛ و از آسمان -از کوههایی که در آن است [=ابرهایی که همچون کوهها انباشته شدهاند]- دانههای تگرگ نازل میکند، و هر کس را بخواهد بوسیله آن زیان میرساند، و از هر کس بخواهد این زیان را برطرف میکند؛ نزدیک است درخشندگی برق آن (ابرها) چشمها را ببرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,366,'خداوند شب و روز را دگرگون میسازد؛ در این عبرتی است برای صاحبان بصیرت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,366,'و خداوند هر جنبندهای را از آبی آفرید؛ گروهی از آنها بر شکم خود راه میروند، و گروهی بر دو پای خود، و گروهی بر چهار پا راه میروند؛ خداوند هر چه را بخواهد میآفریند، زیرا خدا بر همه چیز تواناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,366,'ما آیات روشنگری نازل کردیم؛ و خدا هر که را بخواهد به صراط مستقیم هدایت میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,366,'آنها میگویند: «به خدا و پیامبر ایمان داریم و اطاعت میکنیم!» ولی بعد از این ادّعا، گروهی از آنان رویگردان میشوند؛ آنها (در حقیقت) مؤمن نیستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,366,'و هنگامی که از آنان دعوت شود که بسوی خدا و پیامبرش بیایند تا در میانشان داوری کند، ناگهان گروهی از آنان رویگردان میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,366,'ولی اگر حق داشته باشند (و داوری به نفع آنان شود) با سرعت و تسلیم بسوی او میآیند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,366,'آیا در دلهای آنان بیماری است، یا شکّ و تردید دارند، یا میترسند خدا و رسولش بر آنان ستم کنند؟! نه، بلکه آنها خودشان ستمگرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,366,'سخن مؤمنان، هنگامی که بسوی خدا و رسولش دعوت شوند تا میان آنان داوری کند، تنها این است که میگویند: «شنیدیم و اطاعت کردیم!» و اینها همان رستگاران واقعی هستند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,366,'و هر کس خدا و پیامبرش را اطاعت کند، و از خدا بترسد و از مخالفت فرمانش بپرهیزد، چنین کسانی همان پیروزمندان واقعی هستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,366,'آنها با نهایت تأکید سوگند یاد کردند که اگر به آنان فرمان دهی، (از خانه و اموال خود) بیرون میروند (و جان را در طبق اخلاص گذارده تقدیم میکنند)؛ بگو: «سوگند یاد نکنید؛ شما طاعت خالصانه نشان دهید که خداوند به آنچه انجام میدهید آگاه است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,366,'بگو: «خدا را اطاعت کنید، و از پیامبرش فرمان برید! و اگر سرپیچی نمایید، پیامبر مسؤول اعمال خویش است و شما مسؤول اعمال خود! امّا اگر از او اطاعت کنید، هدایت خواهید شد؛ و بر پیامبر چیزی جز رساندن آشکار نیست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,366,'خداوند به کسانی از شما که ایمان آورده و کارهای شایسته انجام دادهاند وعده میدهد که قطعاً آنان را حکمران روی زمین خواهد کرد، همان گونه که به پیشینیان آنها خلافت روی زمین را بخشید؛ و دین و آیینی را که برای آنان پسندیده، پابرجا و ریشهدار خواهد ساخت؛ و ترسشان را به امنیّت و آرامش مبدّل میکند، آنچنان که تنها مرا می پرستند و چیزی را شریک من نخواهند ساخت. و کسانی که پس از آن کافر شوند، آنها فاسقانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,366,'و نماز را برپا دارید، و زکات را بدهید، و رسول (خدا) را اطاعت کنید تا مشمول رحمت (او) شوید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,366,'گمان مبر کافران میتوانند از چنگال مجازات الهی در زمین فرار کنند! جایگاه آنان آتش است، و چه بد جایگاهی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,366,'ای کسانی که ایمان آوردهاید! بردگان شما، و همچنین کودکانتان که به حدّ بلوغ نرسیدهاند، در سه وقت باید از شما اجازه بگیرند: پیش از نماز صبح، و نیمروز هنگامی که لباسهای (معمولی) خود را بیرون میآورید، و بعد از نماز عشا؛ این سه وقت خصوصی برای شماست؛ امّا بعد از این سه وقت، گناهی بر شما و بر آنان نیست (که بدون اذن وارد شوند) و بر گرد یکدیگر بگردید (و با صفا و صمیمیّت به یکدیگر خدمت نمایید). این گونه خداوند آیات را برای شما بیان میکند، و خداوند دانا و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,366,'و هنگامی که اطفال شما به سنّ بلوغ رسند باید اجازه بگیرند، همان گونه که اشخاصی که پیش از آنان بودند اجازه میگرفتند؛ اینچنین خداوند آیاتش را برای شما بیان میکند، و خدا دانا و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,366,'و زنان از کارافتادهای که امید به ازدواج ندارند، گناهی بر آنان نیست که لباسهای (رویین) خود را بر زمین بگذارند، بشرط اینکه در برابر مردم خودآرایی نکنند؛ و اگر خود را بپوشانند برای آنان بهتر است؛ و خداوند شنوا و داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,366,'بر نابینا و افراد لنگ و بیمار گناهی نیست (که با شما هم غذا شوند)، و بر شما نیز گناهی نیست که از خانههای خودتان [=خانههای فرزندان یا همسرانتان که خانه خود شما محسوب میشود بدون اجازه خاصّی] غذا بخورید؛ و همچنین خانههای پدرانتان، یا خانههای مادرانتان، یا خانههای برادرانتان، یا خانههای خواهرانتان، یا خانههای عموهایتان، یا خانههای عمّههایتان، یا خانههای داییهایتان، یا خانههای خالههایتان، یا خانهای که کلیدش در اختیار شماست، یا خانههای دوستانتان، بر شما گناهی نیست که بطور دستهجمعی یا جداگانه غذا بخورید؛ و هنگامی که داخل خانهای شدید، بر خویشتن سلام کنید، سلام و تحیّتی از سوی خداوند، سلامی پربرکت و پاکیزه! این گونه خداوند آیات را برای شما روشن میکند، باشد که بیندیشید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,366,'مؤمنان واقعی کسانی هستند که به خدا و رسولش ایمان آوردهاند و هنگامی که در کار مهمّی با او باشند، بیاجازه او جایی نمیروند؛ کسانی که از تو اجازه میگیرند، براستی به خدا و پیامبرش ایمان آوردهاند! در این صورت، هر گاه برای بعضی کارهای مهمّ خود از تو اجازه بخواهند، به هر یک از آنان که میخواهی (و صلاح میبینی) اجازه ده، و برایشان از خدا آمرزش بخواه که خداوند آمرزنده و مهربان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,366,'صدا کردن پیامبر را در میان خود، مانند صدا کردن یکدیگر قرار ندهی؛ خداوند کسانی از شما را که پشت سر دیگران پنهان میشوند، و یکی پس از دیگری فرار میکنند میداند! پس آنان که فرمان او را مخالفت میکنند، باید بترسند از اینکه فتنهای دامنشان را بگیرد، یا عذابی دردناک به آنها برسد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,366,'آگاه باشید که برای خداست آنچه در آسمانها و زمین است؛ او میداند آنچه را که شما بر آن هستید، و (میداند) روزی را که بسوی او بازمیگردند؛ و (در آن روز) آنها را از اعمالی که انجام دادند آگاه میسازد؛ و خداوند به هر چیزی داناست!');
+INSERT INTO chapters (id, number, quran_id) VALUES(367,25,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,367,'زوال ناپذیر و پر برکت است کسی که قرآن را بر بندهاش نازل کرد تا بیمدهنده جهانیان باشد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,367,'خداوندی که حکومت آسمانها و زمین از آن اوست، و فرزندی برای خود انتخاب نکرد، و همتایی در حکومت و مالکیّت ندارد، و همه چیز را آفرید، و به دقّت اندازهگیری نمود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,367,'آنان غیر از خداوند معبودانی برای خود برگزیدند؛ معبودانی که چیزی را نمیآفرینند، بلکه خودشان مخلوقند، و مالک زیان و سود خویش نیستند، و نه مالک مرگ و حیات و رستاخیز خویشند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,367,'و کافران گفتند: «این فقط دروغی است که او ساخته، و گروهی دیگر او را بر این کار یاری دادهاند.» آنها (با این سخن،) ظلم و دروغ بزرگی را مرتکب شدند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,367,'و گفتند: «این همان افسانههای پیشینیان است که وی آن را رونویس کرده، و هر صبح و شام بر او املا میشود.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,367,'بگو: «کسی آن را نازل کرده که اسرار آسمانها و زمین را میداند؛ او (همیشه) آمرزنده و مهربان بوده است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,367,'و گفتند: «چرا این پیامبر غذا میخورد و در بازارها راه میرود؟! (نه سنّت فرشتگان را دارد و نه روش شاهان را!) چرا فرشتهای بر او نازل نشده که همراه وی مردم را انذار کند (و گواه صدق دعوی او باشد)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,367,'یا گنجی (از آسمان) برای او فرستاده شود، یا باغی داشته باشد که از (میوه) آن بخورد (و امرار معاش کند)؟!» و ستمگران گفتند: «شما تنها از مردی مجنون پیروی میکنید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,367,'ببین چگونه برای تو مثلها زدند و گمراه شدند، آن گونه که قدرت پیدا کردن راه را ندارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,367,'زوال ناپذیر و بزرگ است خدایی که اگر بخواهد برای تو بهتر از این قرار میدهد: باغهایی که نهرها از زیر درختانش جاری است، و (اگر بخواهد) برای تو کاخهایی مجلّل قرارمیدهد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,367,'(اینها همه بهانه است) بلکه آنان قیامت را تکذیب کردهاند؛ و ما برای کسی که قیامت را تکذیب کند، آتشی شعلهور و سوزان فراهم کردهایم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,367,'هنگامی که این آتش آنان را از مکانی دور ببیند، صدای وحشتناک و خشم آلودش را که با نفسزدن شدید همراه است میشنوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,367,'و هنگامی که در جای تنگ و محدودی از آن افکنده شوند در حالی که در غل و زنجیرند، فریاد واویلای آنان بلند میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,367,'(به آنان گفته میشود:) امروز یک بار واویلا نگویید، بلکه بسیار واویلا بگویید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,367,'(ای پیامبر!) بگو: «آیا این بهتر است یا بهشت جاویدانی که به پرهیزگاران وعده داده شده؟! بهشتی که پاداش اعمال آنها، و قرارگاهشان است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,367,'هر چه بخواهند در آنجا برایشان فراهم است؛ جاودانه در آن خواهند ماند؛ این وعدهای است مسلّم که پروردگارت بر عهده گرفته است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,367,'(به خاطر بیاور) روزی را که همه آنان و معبودهایی را که غیر از خدا میپرستند جمع میکند، آنگاه به آنها میگوید: «آیا شما این بندگان مرا گمراه کردید یا خود آنان راه را گم کردند؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,367,'(در پاسخ) میگویند: «منزّهی تو! برای ما شایسته نبود که غیر از تو اولیایی برگزینیم، ولی آنان و پدرانشان را از نعمتها برخوردار نمودی تا اینکه (به جای شکر نعمت) یاد تو را فراموش کردند و تباه و هلاک شدند.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,367,'(خداوند به آنان میگوید: ببینید) این معبودان، شما را در آنچه میگویید تکذیب کردند! اکنون نمیتوانید عذاب الهی را برطرف بسازید، یا از کسی یاری بطلبید! و هر کس از شما ستم کند، عذاب شدیدی به او میچشانیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,367,'ما هیچ یک از رسولان را پیش از تو نفرستادیم مگر اینکه غذا میخوردند و در بازارها راه میرفتند؛ و بعضی از شما را وسیله امتحان بعضی دیگر قراردادیم، آیا صبر و شکیبایی میکنید (و از عهده امتحان برمیآیید)؟! و پروردگار تو همواره بصیر و بینا بوده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,367,'و کسانی که امیدی به دیدار ما ندارند (و رستاخیز را انکار میکنند) گفتند: «چرا فرشتگان بر ما نازل نشدند و یا پروردگارمان را با چشم خود نمیبینیم؟!» آنها درباره خود تکبّر ورزیدند و طغیان بزرگی کردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,367,'(آنها به آرزوی خود میرسند،) امّا روزی که فرشتگان را میبینند، روز بشارت برای مجرمان نخواهد بود (بلکه روز مجازات و کیفر آنان است)! و میگویند: «ما را امان دهید، ما را معاف دارید!» (امّا سودی ندارد!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,367,'و ما به سراغ اعمالی که انجام دادهاند میرویم، و همه را همچون ذرّات غبار پراکنده در هوا قرار میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,367,'بهشتیان در آن روز قرارگاهشان از همه بهتر، و استراحتگاهشان نیکوتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,367,'و (بخاطر آور) روزی را که آسمان با ابرها شکافته میشود، و فرشتگان نازل میگردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,367,'حکومت در آن روز از آن خداوند رحمان است؛ و آن روز، روز سختی برای کافران خواهد بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,367,'و (به خاطر آور) روزی را که ستمکار دست خود را (از شدّت حسرت) به دندان میگزد و میگوید: «ای کاش با رسول (خدا) راهی برگزیده بودم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,367,'ای وای بر من، کاش فلان (شخص گمراه) را دوست خود انتخاب نکرده بودم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,367,'او مرا از یادآوری (حق) گمراه ساخت بعد از آنکه (یاد حق) به سراغ من آمده بود!» و شیطان همیشه خوارکنند* انسان بوده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,367,'و پیامبر عرضه داشت: «پروردگارا! قوم من قرآن را رها کردند».');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,367,'(آری،) این گونه برای هر پیامبری دشمنی از مجرمان قرار دادیم؛ امّا (برای تو) همین بس که پروردگارت هادی و یاور (تو) باشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,367,'و کافران گفتند: «چرا قرآن یکجا بر او نازل نمیشود؟!» این بخاطر آن است که قلب تو را بوسیله آن محکم داریم، و (از این رو) آن را به تدریج بر تو خواندیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,367,'آنان هیچ مثلی برای تو نمیآورند مگر اینکه ما حق را برای تو میآوریم، و تفسیری بهتر (و پاسخی دندان شکن که در برابر آن ناتوان شوند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,367,'(تو گمراه نیستی،) آنان که بر صورتهایشان بسوی جهنم محشور میشوند، بدترین محل را دارند و گمراهترین افرادند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,367,'و ما به موسی کتاب (آسمانی) دادیم؛ و برادرش هارون را یاور او قرار دادیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,367,'و گفتیم: «به سوی این قوم که آیات ما را تکذیب کردند بروید!» (امّا آن مردم به مخالفت برخاستند) و ما به شدّت آنان را درهم کوبیدیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,367,'و قوم نوح را هنگامی که رسولان (ما) را تکذیب کردند غرق نمودیم، و آنان را درس عبرتی برای مردم قرار دادیم؛ و برای ستمگران عذاب دردناکی فراهم ساختهایم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,367,'(همچنین) قوم عاد و ثمود و اصحاب الرّس [= گروهی که درختان صنوبر را میپرستیدند] و اقوام بسیار دیگری را که در این میان بودند، هلاک کردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,367,'و برای هر یک از آنها مثلها زدیم؛ و (چون سودی نداد،) همگی را نابود کردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,367,'آنها [= مشرکان مکّه] از کنار شهری که باران شرّ [= بارانی از سنگهای آسمانی] بر آن باریده بود [= دیار قوم لوط] گذشتند؛ آیا آن را نمیدیدند؟! (آری، میدیدند) ولی به رستاخیز ایمان نداشتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,367,'و هنگامی که تو را میبینند، تنها به باد استهزایت میگیرند (و میگویند:) آیا این همان کسی است که خدا او را بعنوان پیامبر برانگیخته است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,367,'اگر ما بر پرستش خدایانمان استقامت نمیکردیم، بیم آن میرفت که ما را گمراه سازد! امّا هنگامی که عذاب الهی را ببینند، بزودی میفهمند چه کسی گمراهتر بوده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,367,'آیا دیدی کسی را که هوای نفسش را معبود خود برگزیده است؟! آیا تو میتوانی او را هدایت کنی (یا به دفاع از او برخیزی)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,367,'آیا گمان میبری بیشتر آنان میشنوند یا میفهمند؟! آنان فقط همچون چهارپایانند، بلکه گمراهترند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,367,'آیا ندیدی چگونه پروردگارت سایه را گسترده ساخت؟! و اگر میخواست آن را ساکن قرار میداد؛ سپس خورشید را بر وجود آن دلیل قرار دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,367,'سپس آن را آهسته جمع میکنیم (و نظام سایه و آفتاب را حاکم میسازیم)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,367,'او کسی است که شب را برای شما لباس قرار داد، و خواب را مایه استراحت، و روز را وسیله حرکت و حیات!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,367,'او کسی است که بادها را بشارتگرانی پیش از رحمتش فرستاد، و از آسمان آبی پاککننده نازل کردیم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,367,'تا بوسیله آن، سرزمین مردهای را زنده کنیم؛ و آن را به مخلوقاتی که آفریدهایم -چهارپایان و انسانهای بسیار- مینوشانیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,367,'ما این آیات را بصورتهای گوناگون برای آنان بیان کردیم تا متذکّر شوند، ولی بیشتر مردم از هر کاری جز انکار و کفر ابا دارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,367,'و اگر میخواستیم، در هر شهر و دیاری بیمدهندهای برمیانگیختیم (ولی این کار لزومی نداشت).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,367,'بنابر این از کافران اطاعت مکن، و بوسیله آن [= قرآن] با آنان جهاد بزرگی بنما!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,367,'او کسی است که دو دریا را در کنار هم قرار داد؛ یکی گوارا و شیرین، و دیگر شور و تلخ؛ و در میان آنها برزخی قرار داد تا با هم مخلوط نشوند (گویی هر یک به دیگری میگوید:) دور باش و نزدیک نیا!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,367,'او کسی است که از آب، انسانی را آفرید؛ سپس او را نسب و سبب قرار داد (و نسل او را از این دو طریق گسترش داد)؛ و پروردگار تو همواره توانا بوده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,367,'آنان جز خدا چیزهایی را میپرستند که نه به آنان سودی میرساند و نه زیانی؛ و کافران همیشه در برابر پروردگارشان (در طریق کفر) پشتیبان یکدیگرند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,367,'(ای پیامبر!) ما تو را جز بعنوان بشارت دهنده و انذار کننده نفرستادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,367,'بگو: «من در برابر آن (ابلاغ آیین خدا) هیچ گونه پاداشی از شما نمیطلبم؛ مگر کسی که بخواهد راهی بسوی پروردگارش برگزیند (این پاداش من است.)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,367,'و توکّل کن بر آن زندهای که هرگز نمیمیرد؛ و تسبیح و حمد او را بجا آور؛ و همین بس که او از گناهان بندگانش آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,367,'همان (خدایی) که آسمانها و زمین و آنچه را میان این دو وجود دارد، در شش روز [= شش دوران] آفرید؛ سپس بر عرش (قدرت) قرار گرفت (و به تدبیر جهان پرداخت، او خداوند) رحمان است؛ از او بخواه که از همه چیز آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,367,'و هنگامی که به آنان گفته شود: «برای خداوند رحمان سجده کنید!» میگویند: «رحمان چیست؟! (ما اصلاً رحمان را نمیشناسیم!) آیا برای چیزی سجده کنیم که تو به ما دستور میدهی؟!» (این سخن را میگویند) و بر نفرتشان افزوده میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,367,'جاودان و پربرکت است آن (خدایی) که در آسمان منزلگاههائی برای ستارگان قرار داد؛ و در میان آن، چراغ روشن و ماه تابانی آفرید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,367,'و او همان کسی است که شب و روز را جانشین یکدیگر قرار داد برای کسی که بخواهد متذکّر شود یا شکرگزاری کند (و آنچه را در روز کوتاهی کرده در شب انجام دهد و به عکس).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,367,'بندگان (خاص خداوند) رحمان، کسانی هستند که با آرامش و بیتکبّر بر زمین راه میروند؛ و هنگامی که جاهلان آنها را مخاطب سازند (و سخنان نابخردانه گویند)، به آنها سلام میگویند (و با بیاعتنایی و بزرگواری میگذرند)؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,367,'کسانی که شبانگاه برای پروردگارشان سجده و قیام میکنند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,367,'و کسانی که میگویند: «پروردگارا! عذاب جهنم را از ما برطرف گردان، که عذابش سخت و پر دوام است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,367,'مسلّماً آن (جهنم)، بد جایگاه و بد محلّ اقامتی است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,367,'و کسانی که هرگاه انفاق کنند، نه اسراف مینمایند و نه سختگیری؛ بلکه در میان این دو، حدّ اعتدالی دارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,367,'و کسانی که معبود دیگری را با خداوند نمیخوانند؛ و انسانی را که خداوند خونش را حرام شمرده، جز بحق نمیکشند؛ و زنا نمیکنند؛ و هر کس چنین کند، مجازات سختی خواهد دید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,367,'عذاب او در قیامت مضاعف میگردد، و همیشه با خواری در آن خواهد ماند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,367,'مگر کسانی که توبه کنند و ایمان آورند و عمل صالح انجام دهند، که خداوند گناهان آنان را به حسنات مبدّل میکند؛ و خداوند همواره آمرزنده و مهربان بوده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,367,'و کسی که توبه کند و عمل صالح انجام دهد، بسوی خدا بازگشت میکند (و پاداش خود را از او میگیرد.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,367,'و کسانی که شهادت به باطل نمیدهند (و در مجالس باطل شرکت نمیکنند)؛ و هنگامی که با لغو و بیهودگی برخورد کنند، بزرگوارانه از آن میگذرند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,367,'و کسانی که هرگاه آیات پروردگارشان به آنان گوشزد شود، کر و کور روی آن نمی افتند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,367,'و کسانی که میگویند: «پروردگارا! از همسران و فرزندانمان مایه روشنی چشم ما قرارده، و ما را برای پرهیزگاران پیشوا گردان!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,367,'(آری،) آنها هستند که درجات عالی بهشت در برابر شکیباییشان به آنان پاداش داده میشود؛ و در آن، با تحیّت و سلام روبهرو میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,367,'در حالی که جاودانه در آن خواهند ماند؛ چه قرارگاه و محلّ اقامت خوبی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,367,'بگو: «پروردگارم برای شما ارجی قائل نیست اگر دعای شما نباشد؛ شما (آیات خدا و پیامبران را) تکذیب کردید، و (این عمل) دامان شما را خواهد گرفت و از شما جدا نخواهد شد!» ظ');
+INSERT INTO chapters (id, number, quran_id) VALUES(368,26,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,368,'طسم');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,368,'این آیات کتاب روشنگر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,368,'گویی میخواهی جان خود را از شدّت اندوه از دست دهی بخاطر اینکه آنها ایمان نمیآورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,368,'اگر ما اراده کنیم، از آسمان بر آنان آیهای نازل میکنیم که گردنهایشان در برابر آن خاضع گردد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,368,'و هیچ ذکر تازهای از سوی خداوند مهربان برای آنها نمیآید مگر اینکه از آن رویگردان میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,368,'آنان تکذیب کردند؛ امّا بزودی اخبار (کیفر) آنچه را استهزا میکردند به آنان میرسد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,368,'آیا آنان به زمین نگاه نکردند که چقدر از انواع گیاهان پرارزش در آن رویاندیم؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,368,'در این، نشانه روشنی است (بر وجود خدا)؛ ولی بیشترشان هرگز مؤمن نبودهاند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,368,'و پروردگار تو عزیز و رحیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,368,'(به خاطر بیاور) هنگامی را که پروردگارت موسی را ندا داد که به سراغ قوم ستمگر برو...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,368,'قوم فرعون، آیا آنان (از مخالفت فرمان پروردگار) پرهیز نمیکنند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,368,'(موسی) عرض کرد: «پروردگارا! از آن بیم دارم که مرا تکذیب کنند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,368,'و سینهام تنگ شود، و زبانم بقدر کافی گویا نیست؛ (برادرم) هارون را نیز رسالت ده (تا مرا یاری کند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,368,'و آنان (به اعتقاد خودشان) بر گردن من گناهی دارند؛ میترسم مرا بکشند (و این رسالت به پایان نرسد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,368,'فرمود: «چنین نیست، (آنان کاری نمیتوانند انجام دهند)! شما هر دو با آیات ما (برای هدایتشان) بروید؛ ما با شما هستیم و (سخنانتان را) میشنویم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,368,'به سراغ فرعون بروید و بگویید: ما فرستاده پروردگار جهانیان هستیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,368,'بنی اسرائیل را با ما بفرست!» (آنها به سراغ فرعون آمدند)؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,368,'(فرعون) گفت: «آیا ما تو را در کودکی در میان خود پرورش ندادیم، و سالهایی از زندگیت را در میان ما نبودی؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,368,'و سرانجام، آن کارت را (که نمیبایست انجام دهی) انجام دادی (و یک نفر از ما را کشتی)، و تو از ناسپاسانی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,368,'(موسی) گفت: «من آن کار را انجام دادم در حالی که از بیخبران بودم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,368,'پس هنگامی که از شما ترسیدم فرار کردم؛ و پروردگارم به من حکمت و دانش بخشید، و مرا از پیامبران قرار داد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,368,'آیا این منتّی است که تو بر من میگذاری که بنی اسرائیل را برده خود ساختهای؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,368,'فرعون گفت: «پروردگار عالمیان چیست؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,368,'(موسی) گفت: «پروردگار آسمانها و زمین و آنچه میان آن دو است، اگر اهل یقین هستید!».');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,368,'(فرعون) به اطرافیانش گفت: «آیا نمیشنوید (این مرد چه میگوید)؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,368,'(موسی) گفت: «او پروردگار شما و پروردگار نیاکان شماست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,368,'(فرعون) گفت: «پیامبری که بسوی شما فرستاده شده مسلّماً دیوانه است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,368,'(موسی) گفت: «او پروردگار مشرق و مغرب و آنچه میان آن دو است میباشد، اگر شما عقل و اندیشه خود را به کار میگرفتید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,368,'(فرعون خشمگین شد و) گفت: «اگر معبودی غیر از من برگزینی، تو را از زندانیان قرار خواهم داد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,368,'(موسی) گفت: «حتّی اگر نشانه آشکاری برای تو بیاورم (باز ایمان نمیآوری)؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,368,'گفت: «اگر راست میگویی آن را بیاور!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,368,'در این هنگام موسی عصای خود را افکند، و ناگهان مار عظیم و آشکاری شد؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,368,'و دست خود را (در گریبان فرو برد و) بیرون آورد، و در برابر بینندگان سفید و روشن بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,368,'(فرعون) به گروهی که اطراف او بودند گفت: «این ساحر آگاه و ماهری است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,368,'او میخواهد با سحرش شما را از سرزمینتان بیرون کند! شما چه نظر میدهید؟»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,368,'گفتند: «او و برادرش را مهلت ده؛ و مأموران را برای بسیج به تمام شهرها اعزام کن،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,368,'تا هر ساحر ماهر و دانایی را نزد تو آورند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,368,'سرانجام ساحران برای وعدهگاه روز معیّنی جمعآوری شدند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,368,'و به مردم گفته شد: «آیا شما نیز (در این صحنه) اجتماع میکنید...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,368,'تا اگر ساحران پیروز شوند، از آنان پیروی کنیم؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,368,'هنگامی که ساحران آمدند، به فرعون گفتند: «آیا اگر ما پیروز شویم، پاداش مهمّی خواهیم داشت؟»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,368,'گفت: «(آری،) و در آن صورت شما از مقرّبان خواهید بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,368,'(روز موعود فرا رسید و همگی جمع شدند؛) موسی به ساحران گفت: «آنچه را میخواهید بیفکنید، بیفکنید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,368,'آنها طنابها و عصاهای خود را افکندند و گفتند: «به عزّت فرعون، ما قطعاً پیروزیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,368,'سپس موسی عصایش را افکند، ناگهان تمام وسایل دروغین آنها را بلعید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,368,'فوراً همه ساحران به سجده افتادند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,368,'گفتند: «ما به پروردگار عالمیان ایمان آوردیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,368,'پروردگار موسی و هارون!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,368,'(فرعون) گفت: «آیا پیش از اینکه به شما اجازه دهم به او ایمان آوردید؟! مسلّماً او بزرگ و استاد شماست که به شما سحر آموخته (و این یک توطئه است)! امّا بزودی خواهید دانست! دستها و پاهای شما را بعکس یکدیگر قطع میکنم، و همه شما را به دار میآویزم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,368,'گفتند: «مهّم نیست، (هر کاری از دستت ساخته است بکن)! ما بسوی پروردگارمان بازمیگردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,368,'ما امیدواریم که پروردگارمان خطاهای ما را ببخشد، چرا که ما نخستین ایمانآورندگان بودیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,368,'و به موسی وحی کردیم که شبانه بندگانم را (از مصر) کوچ ده، زیرا شما مورد تعقیب هستید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,368,'فرعون (از این ماجرا آگاه شد و) مأموران بسیج نیرو را به شهرها فرستاد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,368,'(و گفت:) اینها مسلّماً گروهی اندکند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,368,'و اینها ما را به خشم آوردهاند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,368,'و ما همگی آماده پیکاریم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,368,'(سرانجام فرعونیان مغلوب شدند،) و ما آنها را از باغها و چشمهها بیرون راندیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,368,'و از گنجها و قصرهای مجلّل!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,368,'(آری،) اینچنین کردیم! و بنی اسرائیل را وارث آنها ساختیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,368,'آنان به تعقیب بنی اسرائیل پرداختند، و به هنگام طلوع آفتاب به آنها رسیدند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,368,'هنگامی که دو گروه یکدیگر را دیدند، یاران موسی گفتند: «ما در چنگال فرعونیان گرفتار شدیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,368,'(موسی) گفت: «چنین نیست! یقیناً پروردگارم با من است، بزودی مرا هدایت خواهد کرد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,368,'و بدنبال آن به موسی وحی کردیم: «عصایت را به دریا بزن!» (عصایش را به دریا زد،) و دریا از هم شکافته شد، و هر بخشی همچون کوه عظیمی بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,368,'و در آنجا دیگران [= لشکر فرعون] را نیز (به دریا) نزدیک ساختیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,368,'و موسی و تمام کسانی را که با او بودند نجات دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,368,'سپس دیگران را غرق کردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,368,'در این جریان، نشانه روشنی است ولی بیشترشان ایمان نیاوردند! (چرا که طالب حق نبودند)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,368,'و پروردگارت شکستناپذیر و مهربان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,368,'و بر آنان خبر ابراهیم را بخوان،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,368,'هنگامی که به پدر و قومش گفت: «چه چیز را میپرستید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,368,'گفتند: «بتهایی را میپرستیم، و همه روز ملازم عبادت آنهاییم.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,368,'گفت: «آیا هنگامی که آنها را میخوانید صدای شما را میشنوند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,368,'یا سود و زیانی به شما میرسانند؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,368,'گفتند: «ما فقط نیاکان خود را یافتیم که چنین میکنند.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,368,'گفت: «آیا دیدید (این) چیزهایی را که پیوسته پرستش میکردید...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,368,'شما و پدران پیشین شما،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,368,'همه آنها دشمن من هستند (و من دشمن آنها)، مگر پروردگار عالمیان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,368,'همان کسی که مرا آفرید، و پیوسته راهنمائیم میکند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,368,'و کسی که مرا غذا میدهد و سیراب مینماید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,368,'و هنگامی که بیمار شوم مرا شفا میدهد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,368,'و کسی که مرا میمیراند و سپس زنده میکند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,368,'و کسی که امید دارم گناهم را در روز جزا ببخشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,368,'پروردگارا! به من علم و دانش ببخش، و مرا به صالحان ملحق کن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,368,'و برای من در میان امّتهای آینده، زبان صدق (و ذکر خیری) قرار ده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,368,'و مرا وارثان بهشت پرنعمت گردان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,368,'و پدرم [= عمویم] را بیامرز، که او از گمراهان بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,368,'و در آن روز که مردم برانگیخته میشوند، مرا شرمنده و رسوا مکن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,368,'در آن روز که مال و فرزندان سودی نمیبخشد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,368,'مگر کسی که با قلب سلیم به پیشگاه خدا آید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,368,'(در آن روز،) بهشت برای پرهیزکاران نزدیک میشود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,368,'و دوزخ برای گمراهان آشکار میگردد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,368,'و به آنان گفته میشود: «کجا هستند معبودانی که آنها را پرستش میکردید...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,368,'معبودهایی غیر از خدا؟! آیا آنها شما را یاری میکنند، یا کسی به یاری آنها میآید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,368,'در آن هنگام همه آن معبودان با عابدان گمراه به دوزخ افکنده میشوند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,368,'و همچنین همگی لشکریان ابلیس!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,368,'آنها در آنجا در حالی که به مخاصمه برخاستهاند میگویند:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,368,'«به خدا سوگند که ما در گمراهی آشکاری بودیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,368,'چون شما را با پروردگار عالمیان برابر میشمردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,368,'امّا کسی جز مجرمان ما را گمراه نکرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,4,368,'(افسوس که امروز) شفاعتکنندگانی برای ما وجود ندارد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,4,368,'و نه دوست گرم و پرمحبّتی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,4,368,'ای کاش بار دیگر (به دنیا) بازگردیم و از مؤمنان باشیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,4,368,'در این ماجرا، نشانه (و عبرتی) است؛ ولی بیشتر آنان مؤمن نبودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,4,368,'و پروردگار تو عزیز و رحیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,4,368,'قوم نوح رسولان را تکذیب کردند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,4,368,'هنگامی که برادرشان نوح به آنان گفت: «آیا تقوا پیشه نمیکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,4,368,'مسلّماً من برای شما پیامبری امین هستم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,4,368,'تقوای الهی پیشه کنید و مرا اطاعت نمایید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,4,368,'من برای این دعوت، هیچ مزدی از شما نمیطلبم؛ اجر من تنها بر پروردگار عالمیان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,4,368,'پس، تقوای الهی پیشه کنید و مرا اطاعت نمایید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,4,368,'گفتند: «آیا ما به تو ایمان بیاوریم در حالی که افراد پست و بیارزش از تو پیروی کردهاند؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,4,368,'(نوح) گفت: «من چه میدانم آنها چه کاری داشتهاند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,4,368,'حساب آنها تنها با پروردگار من است اگر شما میفهمیدید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,4,368,'و من هرگز مؤمنان را طرد نخواهم کرد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,4,368,'من تنها انذارکنندهای آشکارم.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,4,368,'گفتند: «ای نوح! اگر (از حرفهایت) دست برنداری، سنگباران خواهی شد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,4,368,'گفت: «پروردگارا! قوم من، مرا تکذیب کردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,4,368,'اکنون میان من و آنها جدایی بیفکن؛ و مرا و مؤمنانی را که با من هستند رهایی بخش!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,4,368,'ما، او و کسانی را که با او بودند، در آن کشتی که پر (از انسان و انواع حیوانات) بود، رهایی بخشیدیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,4,368,'سپس بقیه را غرق کردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,4,368,'در این ماجرا نشانه روشنی است؛ امّا بیشتر آنان مؤمن نبودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,4,368,'و پروردگار تو عزیز و رحیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,4,368,'قوم عاد (نیز) رسولان (خدا) را تکذیب کردند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,4,368,'هنگامی که برادرشان هود گفت: «آیا تقوا پیشه نمیکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,4,368,'مسلماً من برای شما پیامبری امین هستم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,4,368,'پس تقوای الهی پیشه کنید و مرا اطاعت نمایید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,4,368,'من در برابر این دعوت، هیچ اجر و پاداشی از شما نمیطلبم؛ اجر و پاداش من تنها بر پروردگار عالمیان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,4,368,'آیا شما بر هر مکان مرتفعی نشانهای از روی هوا و هوس میسازید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,4,368,'و قصرها و قلعههای زیبا و محکم بنا میکنید شاید در دنیا جاودانه بمانید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,4,368,'و هنگامی که کسی را مجازات میکنید همچون جبّاران کیفر میدهید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,4,368,'پس تقوای الهی پیشه کنید و مرا اطاعت نمایید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,4,368,'و از (نافرمانی) خدایی بپرهیزید که شما را به نعمتهایی که میدانید امداد کرده؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,4,368,'شما را به چهارپایان و نیز پسران (لایق و برومند) امداد فرموده؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,4,368,'همچنین به باغها و چشمهها!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,4,368,'(اگر کفران کنید،) من بر شما از عذاب روزی بزرگ میترسم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,4,368,'آنها [= قوم عاد] گفتند: «برای ما تفاوت نمیکند، چه ما را انذار کنی یا نکنی؛ (بیهوده خود را خسته مکن)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,4,368,'این همان روش (و افسانههای) پیشینیان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,4,368,'و ما هرگز مجازات نخواهیم شد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,4,368,'آنان هود را تکذیب کردند، ما هم نابودشان کردیم؛ و در این، آیت و نشانهای است (برای آگاهان)؛ ولی بیشتر آنان مؤمن نبودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,4,368,'و پروردگار تو عزیز و رحیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,4,368,'قوم ثمود رسولان (خدا) را تکذیب کردند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,4,368,'هنگامی که صالح به آنان گفت: «آیا تقوا پیشه نمیکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,4,368,'من برای شما پیامبری امین هستم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,4,368,'پس تقوای الهی پیشه کنید و مرا اطاعت نمایید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,4,368,'من در برابر این دعوت، اجر و پاداشی از شما نمیطلبم؛ اجر من تنها بر پروردگار عالمیان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,4,368,'آیا شما تصوّر میکنید همیشه در نهایت امنیّت در نعمتهایی که اینجاست میمانید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,4,368,'در این باغها و چشمهها،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,4,368,'در این زراعتها و نخلهایی که میوههایش شیرین و رسیده است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,4,368,'و از کوهها خانههایی میتراشید، و در آن به عیش و نوش میپردازید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,4,368,'پس از خدا بترسید و مرا اطاعت کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,4,368,'و فرمان مسرفان را اطاعت نکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,4,368,'همانها که در زمین فساد میکنند و اصلاح نمیکنند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,4,368,'گفتند: «(ای صالح!) تو از افسون شدگانی (و عقل خود را از دست دادهای!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,4,368,'تو فقط بشری همچون مائی؛ اگر راست میگویی آیت و نشانهای بیاور!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,4,368,'گفت: «این ناقهای است (که آیت الهی است) برای او سهمی (از آب قریه)، و برای شما سهم روز معینّی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,4,368,'کمترین آزاری به آن نرسانید، که عذاب روزی بزرگ شما را فرا خواهد گرفت!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,4,368,'سرانجام بر آن (ناقه) حمله نموده آن را «پی» کردند؛ (و هلاک نمودند) سپس از کرده خود پشیمان شدند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,4,368,'و عذاب الهی آنان را فرا گرفت؛ در این، آیت و نشانهای است؛ ولی بیشتر آنان مؤمن نبودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,4,368,'و پروردگار تو عزیز و رحیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,4,368,'قوم لوط فرستادگان (خدا) را تکذیب کردند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,4,368,'هنگامی که برادرشان لوط به آنان گفت: «آیا تقوا پیشه نمیکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,4,368,'من برای شما پیامبری امین هستم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,4,368,'پس تقوای الهی پیشه کنید و مرا اطاعت نمایید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,4,368,'من در برابر این دعوت، اجری از شما نمیطلبم، اجر من فقط بر پروردگار عالمیان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,4,368,'آیا در میان جهانیان، شما به سراغ جنس ذکور میروید (و همجنس بازی میکنید، آیا این زشت و ننگین نیست؟!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,4,368,'و همسرانی را که پروردگارتان برای شما آفریده است رها میکنید؟! (حقّاً) شما قوم تجاوزگری هستید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,4,368,'گفتند: «ای لوط! اگر (از این سخنان) دست برنداری، به یقین از اخراج شدگان خواهی بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,4,368,'گفت: «من دشمن سرسخت اعمال شما هستم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,4,368,'پروردگارا! من و خاندانم را از آنچه اینها انجام میدهند رهایی بخش!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,4,368,'ما او و تمامی خاندانش را نجات دادیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,4,368,'جز پیرزنی که در میان بازماندگان بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,4,368,'سپس دیگران را هلاک کردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,4,368,'و بارانی (از سنگ) بر آنها فرستادیم؛ چه باران بدی بود باران انذارشدگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,4,368,'در این (ماجرای قوم لوط و سرنوشت شوم آنها) آیتی است؛ امّا بیشترشان مؤمن نبودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,4,368,'و پروردگار تو عزیز و رحیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,4,368,'اصحاب ایکه [= شهری نزدیک مدین] رسولان (خدا) را تکذیب کردند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,4,368,'هنگامی که شعیب به آنها گفت: «آیا تقوا پیشه نمیکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,4,368,'مسلّماً من برای شما پیامبری امین هستم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,4,368,'پس تقوای الهی پیشه کنید و مرا اطاعت نمایید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,4,368,'من در برابر این دعوت، پاداشی از شما نمیطلبم؛ اجر من تنها بر پروردگار عالمیان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,4,368,'حق پیمانه را ادا کنید (و کم فروشی نکنید)، و دیگران را به خسارت نیفکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,4,368,'و با ترازوی صحیح وزن کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(183,4,368,'و حق مردم را کم نگذارید، و در زمین تلاش برای فساد نکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(184,4,368,'و از (نافرمانی) کسی که شما و اقوام پیشین را آفرید بپرهیزید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(185,4,368,'آنها گفتند: «تو فقط از افسونشدگانی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(186,4,368,'تو بشری همچون مائی، تنها گمانی که درباره تو داریم این است که از دروغگویانی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(187,4,368,'اگر راست میگویی، سنگهایی از آسمان بر سر ما بباران!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(188,4,368,'(شعیب) گفت: «پروردگار من به اعمالی که شما انجام میدهید داناتر است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(189,4,368,'سرانجام او را تکذیب کردند، و عذاب روز سایبان (سایبانی از ابر صاعقهخیز) آنها را فراگرفت؛ یقیناً آن عذاب روز بزرگی بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(190,4,368,'در این ماجرا، آیت و نشانهای است؛ ولی بیشتر آنها مؤمن نبودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(191,4,368,'و پروردگار تو عزیز و رحیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(192,4,368,'مسلّماً این (قرآن) از سوی پروردگار جهانیان نازل شده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(193,4,368,'روح الامین آن را نازل کرده است...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(194,4,368,'بر قلب (پاک) تو، تا از انذارکنندگان باشی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(195,4,368,'آن را به زبان عربی آشکار (نازل کرد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(196,4,368,'و توصیف آن در کتابهای پیشینیان نیز آمده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(197,4,368,'آیا همین نشانه برای آنها کافی نیست که علمای بنی اسرائیل بخوبی از آن آگاهند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(198,4,368,'هرگاه ما آن را بر بعضی از عجم [= غیر عرب] ها نازل میکردیم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(199,4,368,'و او آن را بر ایشان میخواند، به آن ایمان نمیآورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(200,4,368,'(آری،) این گونه (با بیانی رسا) قرآن را در دلهای مجرمان وارد میکنیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(201,4,368,'(امّا) به آن ایمان نمیآورند تا عذاب دردناک را با چشم خود ببینند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(202,4,368,'ناگهان به سراغشان میآید، در حالی که توجّه ندارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(203,4,368,'و (در آن هنگام) میگویند: «آیا به ما مهلتی داده خواهد شد؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(204,4,368,'آیا برای عذاب ما عجله میکنند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(205,4,368,'به ما خبر ده، اگر (باز هم) سالیانی آنها را از این زندگی بهرهمند سازیم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(206,4,368,'سپس عذابی که به آنها وعده داده شده به سراغشان بیاید...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(207,4,368,'این تمتع و بهرهگیری از دنیا برای آنها سودی نخواهد داشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(208,4,368,'ما هیچ شهر و دیاری را هلاک نکردیم مگر اینکه انذارکنندگانی (از پیامبران الهی) داشتند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(209,4,368,'تا متذکّر شوند؛ و ما هرگز ستمکار نبودیم! (که بدون اتمام حجّت مجازات کنیم)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(210,4,368,'شیاطین و جنیّان (هرگز) این آیات را نازل نکردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(211,4,368,'و برای آنها سزاوار نیست؛ و قدرت ندارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(212,4,368,'آنها از استراق سمع (و شنیدن اخبار آسمانها) برکنارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(213,4,368,'(ای پیامبر!) هیچ معبودی را با خداوند مخوان، که از معذّبین خواهی بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(214,4,368,'و خویشاوندان نزدیکت را انذار کن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(215,4,368,'و بال و پر خود را برای مؤمنانی که از تو پیروی میکنند بگستر!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(216,4,368,'اگر تو را نافرمانی کنند بگو: «من از آنچه شما انجام میدهید بیزارم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(217,4,368,'و بر خداوند عزیز و رحیم توکّل کن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(218,4,368,'همان کسی که تو را به هنگامی که (برای عبادت) برمیخیزی میبیند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(219,4,368,'و (نیز) حرکت تو را در میان سجدهکنندگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(220,4,368,'اوست خدای شنوا و دانا.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(221,4,368,'آیا به شما خبر دهم که شیاطین بر چه کسی نازل میشوند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(222,4,368,'آنها بر هر دروغگوی گنهکار نازل میگردند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(223,4,368,'آنچه را میشنوند (به دیگران) القا میکنند؛ و بیشترشان دروغگو هستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(224,4,368,'(پیامبر اسلام شاعر نیست؛) شاعران کسانی هستند که گمراهان از آنان پیروی میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(225,4,368,'آیا نمیبینی آنها در هر وادی سرگردانند؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(226,4,368,'و سخنانی میگویند که (به آنها) عمل نمیکنند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(227,4,368,'مگر کسانی که ایمان آورده و کارهای شایسته انجام میدهند و خدا را بسیار یاد می کنند، و به هنگامی که مورد ستم واقع میشوند به دفاع از خویشتن (و مؤمنان) برمیخیزند (و از شعر در این راه کمک میگیرند)؛ آنها که ستم کردند به زودی میدانند که بازگشتشان به کجاست!');
+INSERT INTO chapters (id, number, quran_id) VALUES(369,27,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,369,'طس - این آیات قرآن و کتاب مبین است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,369,'وسیله هدایت و بشارت برای مؤمنان است؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,369,'همان کسانی که نماز را برپا میدارند، و زکات را ادا میکنند، و آنان به آخرت یقین دارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,369,'کسانی که به آخرت ایمان ندارند، اعمال (بد) شان را برای آنان زینت میدهیم بطوری که سرگردان میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,369,'آنان کسانی هستند که عذاب بد (و دردناک) برای آنهاست؛ و آنها در آخرت، زیانکارترین مردمند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,369,'به یقین این قرآن از سوی حکیم و دانایی بر تو القا میشود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,369,'(به خاطر بیاور) هنگامی را که موسی به خانواده خود گفت: «من آتشی از دور دیدم؛ (همین جا توقف کنید؛) بزودی خبری از آن برای شما میآورم، یا شعله آتشی تا گرم شوید.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,369,'هنگامی که نزد آتش آمد، ندایی برخاست که: «مبارک باد آن کس که در آتش است و کسی که در اطراف آن است [= فرشتگان و موسی] و منزّه است خداوندی که پروردگار جهانیان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,369,'ای موسی! من خداوند عزیز و حکیمم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,369,'و عصایت را بیفکن! -هنگامی که (موسی) به آن نگاه کرد، دید (با سرعت) همچون ماری به هر سو میدود (ترسید و) به عقب برگشت، و حتی پشت سر خود را نگاه نکرد- ای موسی! نترس، که رسولان در نزد من نمیترسند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,369,'مگر کسی که ستم کند؛ سپس بدی را به نیکی تبدیل نماید، که (توبه او را میپذیرم، و) من غفور و رحیمم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,369,'و دستت را در گریبانت داخل کن؛ هنگامی که خارج میشود، سفید و درخشنده است بی آنکه عیبی در آن باشد؛ این در زمره معجزات نهگانهای است که تو با آنها بسوی فرعون و قومش فرستاده میشوی؛ آنان قومی فاسق و طغیانگرند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,369,'و هنگامی که آیات روشنیبخش ما به سراغ آنها آمد گفتند: «این سحری است آشکار!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,369,'و آن را از روی ظلم و سرکشی انکار کردند، در حالی که در دل به آن یقین داشتند! پس بنگر سرانجام تبهکاران (و مفسدان) چگونه بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,369,'و ما به داوود و سلیمان، دانشی عظیم دادیم؛ و آنان گفتند: «ستایش از آن خداوندی است که ما را بر بسیاری از بندگان مؤمنش برتری بخشید.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,369,'و سلیمان وارث داوود شد، و گفت: «ای مردم! زبان پرندگان به ما تعلیم داده شده، و از هر چیز به ما عطا گردیده؛ این فضیلت آشکاری است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,369,'لشکریان سلیمان، از جنّ و انس و پرندگان، نزد او جمع شدند؛ آنقدر زیاد بودند که باید توقّف میکردند تا به هم ملحق شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,369,'(آنها حرکت کردند) تا به سرزمین مورچگان رسیدند؛ مورچهای گفت: «به لانههای خود بروید تا سلیمان و لشکرش شما را پایمال نکنند در حالی که نمیفهمند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,369,'سلیمان از سخن او تبسّمی کرد و خندید و گفت: «پروردگارا! شکر نعمتهایی را که بر من و پدر و مادرم ارزانی داشتهای به من الهام کن، و توفیق ده تا عمل صالحی که موجب رضای توست انجام دهم، و مرا برحمت خود در زمره بندگان صالحت وارد کن!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,369,'(سلیمان) در جستجوی آن پرنده [= هدهد] برآمد و گفت: «چرا هدهد را نمیبینم، یا اینکه او از غایبان است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,369,'قطعاً او را کیفر شدیدی خواهم داد، یا او را ذبح میکنم، یا باید دلیل روشنی (برای غیبتش) برای من بیاورد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,369,'چندان درنگ نکرد (که هدهد آمد و) گفت: «من بر چیزی آگاهی یافتم که تو بر آن آگاهی نیافتی؛ من از سرزمین «سبا» یک خبر قطعی برای تو آوردهام!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,369,'من زنی را دیدم که بر آنان حکومت میکند، و همه چیز در اختیار دارد، و (به خصوص) تخت عظیمی دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,369,'او و قومش را دیدم که برای غیر خدا -خورشید- سجده میکنند؛ و شیطان اعمالشان را در نظرشان جلوه داده، و آنها را از راه بازداشته؛ و از این رو هدایت نمیشوند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,369,'چرا برای خداوندی سجده نمیکنند که آنچه را در آسمانها و زمین پنهان است خارج (و آشکار) میسازد، و آنچه را پنهان میدارید یا آشکار میکنید میداند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,369,'خداوندی که معبودی جز او نیست، و پروردگار عرش عظیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,369,'(سلیمان) گفت: «ما تحقیق میکنیم ببینیم راست گفتی یا از دروغگویان هستی؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,369,'این نامه مرا ببر و بر آنان بیفکن؛ سپس برگرد (و در گوشهای توقّف کن) ببین آنها چه عکس العملی نشان میدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,369,'(ملکه سبا) گفت: «ای اشراف! نامه پرارزشی به سوی من افکنده شده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,369,'این نامه از سلیمان است، و چنین میباشد: به نام خداوند بخشنده مهربان');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,369,'توصیه من این است که نسبت به من برتریجویی نکنید، و بسوی من آیید در حالی که تسلیم حقّ هستید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,369,'(سپس) گفت: «ای اشراف (و ای بزرگان)! نظر خود را در این امر مهمّ به من بازگو کنید، که من هیچ کار مهمّی را بدون حضور (و مشورت) شما انجام ندادهام!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,369,'گفتند: «ما دارای نیروی کافی و قدرت جنگی فراوان هستیم، ولی تصمیم نهایی با توست؛ ببین چه دستور میدهی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,369,'گفت: پادشاهان هنگامی که وارد منطقه آبادی شوند آن را به فساد و تباهی میکشند، و عزیزان آنجا را ذلیل میکنند؛ (آری) کار آنان همینگونه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,369,'و من (اکنون جنگ را صلاح نمیبینم،) هدیه گرانبهایی برای آنان میفرستم تا ببینم فرستادگان من چه خبر میآورند (و از این طریق آنها را بیازمایم)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,369,'هنگامی که (فرستاده ملکه سبا) نزد سلیمان آمد، گفت: «میخواهید مرا با مال کمک کنید (و فریب دهید)؟! آنچه خدا به من داده، بهتر است از آنچه به شما داده است؛ بلکه شما هستید که به هدیههایتان خوشحال میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,369,'بسوی آنان بازگرد (و اعلام کن) با لشکریانی به سراغ آنان میآییم که قدرت مقابله با آن را نداشته باشند؛ و آنان را از آن (سرزمین آباد) با ذلّت و خواری بیرون میرانیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,369,'(سلیمان) گفت: «ای بزرگان! کدام یک از شما تخت او را برای من میآورد پیش از آنکه به حال تسلیم نزد من آیند؟»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,369,'عفریتی از جنّ گفت: «من آن را نزد تو میآورم پیش از آنکه از مجلست برخیزی و من نسبت به این امر، توانا و امینم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,369,'(امّا) کسی که دانشی از کتاب (آسمانی) داشت گفت: «پیش از آنکه چشم بر هم زنی، آن را نزد تو خواهم آورد!» و هنگامی که (سلیمان) آن (تخت) را نزد خود ثابت و پابرجا دید گفت: «این از فضل پروردگار من است، تا مرا آزمایش کند که آیا شکر او را بجا میآورم یا کفران میکنم؟! و هر کس شکر کند، به نفع خود شکر میکند؛ و هر کس کفران نماید (بزیان خویش نموده است، که) پروردگار من، غنیّ و کریم است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,369,'(سلیمان) گفت: «تخت او را برایش ناشناس سازید؛ ببینم آیا متوجّه میشود یا از کسانی است که هدایت نخواهند شد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,369,'هنگامی که آمد، به او گفته شد: «آیا تخت تو این گونه است؟» گفت: گویا خود آن است! و ما پیش از این هم آگاه بودیم و اسلام آورده بودیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,369,'و او را از آنچه غیر از خدا میپرستید بازداشت، که او [= ملکه سبا] از قوم کافران بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,369,'به او گفته شد: «داخل حیاط (قصر) شو!» هنگامی که نظر به آن افکند، پنداشت نهر آبی است و ساق پاهای خود را برهنه کرد (تا از آب بگذرد؛ امّا سلیمان) گفت: «(این آب نیست،) بلکه قصری است از بلور صاف!» (ملکه سبا) گفت: «پروردگارا! من به خود ستم کردم؛ و (اینک) با سلیمان برای خداوندی که پروردگار عالمیان است اسلام آوردم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,369,'ما به سوی «ثمود»، برادرشان «صالح» را فرستادیم که: خدای یگانه را بپرستید! امّا آنان به دو گروه تقسیم شدند که به مخاصمه پرداختند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,369,'(صالح) گفت: «ای قوم من! چرا برای بدی قبل از نیکی عجله میکنید (و عذاب الهی را میطلبید نه رحمت او را)؟! چرا از خداوند تقاضای آمرزش نمیکنید تا شاید مشمول رحمت (او) شوید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,369,'آنها گفتند: «ما تو را و کسانی که با تو هستند به فال بد گرفتیم!» (صالح) گفت: «فال (نیک و) بد شما نزد خداست (و همه مقدّرات به قدرت او تعیین میگردد)؛ بلکه شما گروهی هستید فریبخورده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,369,'و در آن شهر، نه گروهک بودند که در زمین فساد میکردند و اصلاح نمیکردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,369,'آنها گفتند: «بیایید قسم یاد کنید به خدا که بر او [= صالح] و خانواده اش شبیخون می زنیم (و آنها را به قتل میرسانیم؛) سپس به ولیّ دم او میگوییم: ما هرگز از هلاکت خانواده او خبر نداشتیم و در این گفتار خود صادق هستیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,369,'آنها نقشه مهمّی کشیدند، و ما هم نقشه مهمّی؛ در حالی که آنها درک نمیکردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,369,'بنگر عاقبت توطئه آنها چه شد، که ما آنها و قومشان همگی را نابود کردیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,369,'این خانههای آنهاست که بخاطر ظلم و ستمشان خالی مانده؛ و در این نشانه روشنی است برای کسانی که آگاهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,369,'و کسانی را که ایمان آورده و تقوا پیشه کرده بودند نجات دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,369,'و لوط را (به یاد آور) هنگامی که به قومش گفت: «آیا شما به سراغ کار بسیار زشتی میروید در حالی که (نتایج شوم آن را) میبینید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,369,'آیا شما بجای زنان، از روی شهوت به سراغ مردان میروید؟! شما قومی نادانید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,369,'آنها پاسخی جز این نداشتند که (به یکدیگر) گفتند: «خاندان لوط را از شهر و دیار خود بیرون کنید، که اینها افرادی پاکدامن هستند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,369,'ما او و خانوادهاش را نجات دادیم، بجز همسرش که مقدّر کردیم جزء باقیماندگان (در آن شهر) باشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,369,'سپس بارانی (از سنگ) بر سر آنها باراندیم (و همگی زیر آن مدفون شدند)؛ و چه بد است باران انذارشدگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,369,'بگو: «حمد مخصوص خداست؛ و سلام بر بندگان برگزیدهاش!» آیا خداوند بهتر است یا بتهایی که همتای او قرارمیدهند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,369,'(آیا بتهایی که معبود شما هستند بهترند) یا کسی که آسمانها و زمین را آفریده؟! و برای شما از آسمان، آبی فرستاد که با آن، باغهایی زیبا و سرورانگیز رویاندیم؛ شما هرگز قدرت نداشتید درختان آن را برویانید! آیا معبود دیگری با خداست؟! نه، بلکه آنها گروهی هستند که (از روی نادانی، مخلوقات را) همطراز (پروردگارشان) قرار میدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,369,'یا کسی که زمین را مستقرّ و آرام قرار داد، و میان آن نهرهایی روان ساخت، و برای آن کوههای ثابت و پابرجا ایجاد کرد، و میان دو دریا مانعی قرار داد (تا با هم مخلوط نشوند؛ با این حال) آیا معبودی با خداست؟! نه، بلکه بیشتر آنان نمیدانند (و جاهلند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,369,'یا کسی که دعای مضطرّ را اجابت میکند و گرفتاری را برطرف میسازد، و شما را خلفای زمین قرارمیدهد؛ آیا معبودی با خداست؟! کمتر متذکّر میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,369,'یا کسی که شما را در تاریکیهای صحرا و دریا هدایت میکند، و کسی که بادها را بعنوان بشارت پیش از نزول رحمتش میفرستد؛ آیا معبودی با خداست؟! خداوند برتر است از آنچه برای او شریک قرارمیدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,369,'یا کسی که آفرینش را آغاز کرد، سپس آن را تجدید میکند، و کسی که شما را از آسمان و زمین روزی میدهد؛ آیا معبودی با خداست؟! بگو: «دلیلتان را بیاورید اگر راست میگویید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,369,'بگو: «کسانی که در آسمانها و زمین هستند غیب نمیدانند جز خدا، و نمیدانند کی برانگیخته میشوند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,369,'آنها [= مشرکان] اطلاع صحیحی درباره آخرت ندارند؛ بلکه در اصل آن شکّ دارند؛ بلکه نسبت به آن نابینایند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,369,'و کافران گفتند: «آیا هنگامی که ما و پدرانمان خاک شدیم، (زنده میشویم و) از دل خاک بیرون میآییم؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,369,'این وعدهای است که به ما و پدرانمان از پیش داده شده؛ اینها همان افسانههای خرافی پیشینیان است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,369,'بگو: «در روی زمین سیر کنید و ببینید عاقبت کار مجرمان به کجا رسید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,369,'از (تکذیب و انکار) آنان غمگین مباش، و سینهات از توطئه آنان تنگ نشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,369,'آنها میگویند: «این وعده (عذاب که به ما میدهید) کی خواهد آمد اگر راست میگویید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,369,'بگو: «شاید پارهای از آنچه درباره آن شتاب میکنید، نزدیک و در کنار شما باشد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,369,'مسلّماً پروردگار تو نسبت به مردم، فضل (و رحمت) دارد؛ ولی بیشترشان شکرگزار نیستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,369,'و پروردگارت آنچه را در سینههایشان پنهان میدارند و آنچه را آشکار میکنند بخوبی میداند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,369,'و هیچ موجود پنهانی در آسمان و زمین نیست مگر اینکه در کتاب مبین (در لوح محفوظ و علم بیپایان پروردگار) ثبت است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,369,'این قرآن اکثر چیزهایی را که بنی اسرائیل در آن اختلاف دارند برای آنان بیان میکند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,369,'و مایه هدایت و رحمت برای مؤمنان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,369,'پروردگار تو میان آنها در قیامت به حکم خود داوری میکند؛ و اوست قادر دانا.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,369,'پس بر خدا توکّل کن، که تو بر حقّ آشکار هستی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,369,'مسلّماً تو نمیتوانی سخنت را به گوش مردگان برسانی، و نمیتوانی کران را هنگامی که روی برمیگردانند و پشت میکنند فراخوانی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,369,'و نیز نمیتوانی کوران را از گمراهیشان برهانی؛ تو فقط میتوانی سخن خود را به گوش کسانی برسانی که آماده پذیرش ایمان به آیات ما هستند و در برابر حق تسلیمند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,369,'و هنگامی که فرمان عذاب آنها رسد (و در آستانه رستاخیز قرار گیرند)، جنبندهای را از زمین برای آنها خارج میکنیم که با آنان تکلّم میکند (و میگوید) که مردم به آیات ما ایمان نمیآوردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,369,'(به خاطر آور) روزی را که ما از هر امّتی، گروهی را از کسانی که آیات ما را تکذیب میکردند محشور میکنیم؛ و آنها را نگه میداریم تا به یکدیگر ملحق شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,369,'تا زمانی که (به پای حساب) میآیند، (به آنان) میگوید: «آیا آیات مرا تکذیب کردید و در صدد تحقیق برنیامدید؟! شما چه اعمالی انجام میدادید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,369,'در این هنگام، فرمان عذاب بخاطر ظلمشان بر آنها واقع میشود، و آنها سخنی ندارند که بگویند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,369,'آیا ندیدند که ما شب را برای آرامش آنها قرار دادیم و روز را روشنیبخش؟! در این امور نشانههای روشنی است برای کسانی که ایمان میآورند (و آماده قبول حقند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,369,'و (به خاطر آورید) روزی را که در «صور» دمیده میشود، و تمام کسانی که در آسمانها و زمین هستند در وحشت فرو میروند، جز کسانی که خدا خواسته؛ و همگی با خضوع در پیشگاه او حاضر میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,369,'کوهها را میبینی، و آنها را ساکن و جامد میپنداری، در حالی که مانند ابر در حرکتند؛ این صنع و آفرینش خداوندی است که همه چیز را متقن آفریده؛ او از کارهایی که شما انجام میدهید مسلّماً آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,369,'کسانی که کار نیکی انجام دهند پاداشی بهتر از آن خواهند داشت؛ و آنان از وحشت آن روز درامانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,369,'و آنها که اعمال بدی انجام دهند، به صورت در آتش افکنده میشوند؛ آیا جزایی جز آنچه عمل میکردید خواهید داشت؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,369,'(بگو:) من مأمورم پروردگار این شهر (مقدّس مکّه) را عبادت کنم، همان کسی که این شهر را حرمت بخشیده؛ در حالی که همه چیز از آن اوست! و من مأمورم که از مسلمین باشم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,369,'و اینکه قرآن را تلاوت کنم! هر کس هدایت شود بسود خود هدایت شده؛ و هر کس گمراه گردد (زیانش متوجّه خود اوست؛) بگو: «من فقط از انذارکنندگانم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,369,'بگو: «حمد و ستایش مخصوص ذات خداست؛ بزودی آیاتش را به شما نشان میدهد تا آن را بشناسید؛ و پروردگار تو از آنچه انجام میدهید غافل نیست!');
+INSERT INTO chapters (id, number, quran_id) VALUES(370,28,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,370,'طسم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,370,'اینها از آیات کتاب مبین است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,370,'ما از داستان موسی و فرعون بحقّ بر تو میخوانیم، برای گروهی که (طالب حقّند و) ایمان میآورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,370,'فرعون در زمین برتریجویی کرد، و اهل آن را به گروههای مختلفی تقسیم نمود؛ گروهی را به ضعف و ناتوانی میکشاند، پسرانشان را سر میبرید و زنانشان را (برای کنیزی و خدمت) زنده نگه میداشت؛ او به یقین از مفسدان بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,370,'ما میخواهیم بر مستضعفان زمین منّت نهیم و آنان را پیشوایان و وارثان روی زمین قرار دهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,370,'و حکومتشان را در زمین پابرجا سازیم؛ و به فرعون و هامان و لشکریانشان، آنچه را از آنها [= بنی اسرائیل] بیم داشتند نشان دهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,370,'ما به مادر موسی الهام کردیم که: «او را شیر ده؛ و هنگامی که بر او ترسیدی، وی را در دریا (ی نیل) بیفکن؛ و نترس و غمگین مباش، که ما او را به تو بازمیگردانیم، و او را از رسولان قرار میدهیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,370,'(هنگامی که مادر بفرمان خدا او را به دریا افکند) خاندان فرعون او را از آب گرفتند، تا سرانجام دشمن آنان و مایه اندوهشان گردد! مسلّماً فرعون و هامان و لشکریانشان خطاکار بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,370,'همسر فرعون (چون دید آنها قصد کشتن کودک را دارند) گفت: «نور چشم من و توست! او را نکشید شاید برای ما مفید باشد، یا او را بعنوان پسر خود برگزینیم!» و آنها نمیفهمیدند (که دشمن اصلی خود را در آغوش خویش میپرورانند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,370,'(سرانجام) قلب مادر موسی از همه چیز (جز یاد فرزندش) تهی گشت؛ و اگر دل او را (بوسیله ایمان و امید) محکم نکرده بودیم، نزدیک بود مطلب را افشا کند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,370,'و (مادر موسی) به خواهر او گفت: «وضع حال او را پیگیری کن!» او نیز از دور ماجرا را مشاهده کرد در حالی که آنان بیخبر بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,370,'ما همه زنان شیرده را از پیش بر او حرام کردیم (تا تنها به آغوش مادر بازگردد)؛ و خواهرش (که بیتابی مأموران را برای پیدا کردن دایه مشاهده کرد) گفت: «آیا شما را به خانوادهای راهنمایی کنم که میتوانند این نوزاد را برای شما کفالت کنند و خیرخواه او باشند؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,370,'ما او را به مادرش بازگرداندیم تا چشمش روشن شود و غمگین نباشد و بداند که وعده الهی حق است؛ ولی بیشتر آنان نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,370,'و هنگامی که (موسی) نیرومند و کامل شد، حکمت و دانش به او دادیم؛ و این گونه نیکوکاران را جزا میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,370,'او به هنگامی که اهل شهر در غفلت بودند وارد شهر شد؛ ناگهان دو مرد را دید که به جنگ و نزاع مشغولند؛ یکی از پیروان او بود (و از بنی اسرائیل)، و دیگری از دشمنانش، آن که از پیروان او بود در برابر دشمنش از وی تقاضای کمک نمود؛ موسی مشت محکمی بر سینه او زد و کار او را ساخت (و بر زمین افتاد و مرد)؛ موسی گفت: «این (نزاع شما) از عمل شیطان بود، که او دشمن و گمراهکننده آشکاری است»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,370,'(سپس) عرض کرد: «پروردگارا! من به خویشتن ستم کردم؛ مرا ببخش!» خداوند او را بخشید، که او غفور و رحیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,370,'عرض کرد: «پروردگارا! بشکرانه نعمتی که به من دادی، هرگز پشتیبان مجرمان نخواهم بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,370,'موسی در شهر ترسان بود و هر لحظه در انتظار حادثهای (و در جستجوی اخبار)؛ ناگهان دید همان کسی که دیروز از او یاری طلبیده بود فریاد میزند و از او کمک میخواهد، موسی به او گفت: «تو آشکارا انسان (ماجراجو و) گمراهی هستی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,370,'و هنگامی که خواست با کسی که دشمن هر دوی آنها بود درگیر شود و با قدرت مانع او گردد، (فریادش بلند شد،) گفت: «ای موسی میخواهی! مرا بکشی همان گونه که دیروز انسانی را کشتی؟! تو فقط میخواهی جبّاری در روی زمین باشی، و نمیخواهی از مصلحان باشی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,370,'(در این هنگام) مردی با سرعت از دورترین نقطه شهر [= مرکز فرعونیان] آمد و گفت: «ای موسی! این جمعیّت برای کشتن تو به مشورت نشستهاند؛ فوراً از شهر خارج شو، که من از خیرخواهان توام!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,370,'موسی از شهر خارج شد در حالی که ترسان بود و هر لحظه در انتظار حادثهای؛ عرض کرد: «پروردگارا! مرا از این قوم ظالم رهایی بخش!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,370,'و هنگامی که متوجّه جانب مدین شد گفت: «امیدوارم پروردگارم مرا به راه راست هدایت کند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,370,'و هنگامی که به (چاه) آب مدین رسید، گروهی از مردم را در آنجا دید که چهارپایان خود را سیراب میکنند؛ و در کنار آنان دو زن را دید که مراقب گوسفندان خویشند (و به چاه نزدیک نمیشوند؛ موسی) به آن دو گفت: «کار شما چیست؟ (چرا گوسفندان خود را آب نمیدهید؟!)» گفتند: «ما آنها را آب نمیدهیم تا چوپانها همگی خارج شوند؛ و پدر ما پیرمرد کهنسالی است (و قادر بر این کارها نیست.)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,370,'موسی برای (گوسفندان) آن دو آب کشید؛ سپس رو به سایه آورد و عرض کرد: «پروردگارا! هر خیر و نیکی بر من فرستی، به آن نیازمندم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,370,'ناگهان یکی از آن دو (زن) به سراغ او آمد در حالی که با نهایت حیا گام برمیداشت، گفت: «پدرم از تو دعوت میکند تا مزد آب دادن (به گوسفندان) را که برای ما انجام دادی به تو بپردازد.» هنگامی که موسی نزد او [= شعیب] آمد و سرگذشت خود را شرح داد، گفت: «نترس، از قوم ظالم نجات یافتی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,370,'یکی از آن دو (دختر) گفت: «پدرم! او را استخدام کن، زیرا بهترین کسی را که میتوانی استخدام کنی آن کسی است که قویّ و امین باشد (و او همین مرد است)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,370,'(شعیب) گفت: «من میخواهم یکی از این دو دخترم را به همسری تو درآورم به این شرط که هشت سال برای من کار کنی؛ و اگر آن را تا ده سال افزایش دهی، محبّتی از ناحیه توست؛ من نمیخواهم کار سنگینی بر دوش تو بگذارم؛ و ان شاء الله مرا از صالحان خواهی یافت»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,370,'(موسی) گفت: «(مانعی ندارد،) این قراردادی میان من و تو باشد؛ البته هر کدام از این دو مدّت را انجام دهم ستمی بر من نخواهد بود (و من در انتخاب آن آزادم)! و خدا بر آنچه ما میگوییم گواه است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,370,'هنگامی که موسی مدّت خود را به پایان رسانید و همراه خانوادهاش (از مدین به سوی مصر) حرکت کرد، از جانب طور آتشی دید! به خانوادهاش گفت: «درنگ کنید که من آتشی دیدم! (میروم) شاید خبری از آن برای شما بیاورم، یا شعلهای از آتش تا با آن گرم شوید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,370,'هنگامی که به سراغ آتش آمد، از کرانه راست درّه، در آن سرزمین پر برکت، از میان یک درخت ندا داده شد که: «ای موسی! منم خداوند، پروردگار جهانیان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,370,'عصایت را بیفکن!» هنگامی که (عصا را افکند و) دید همچون ماری با سرعت حرکت میکند، ترسید و به عقب برگشت، و حتّی پشت سر خود را نگاه نکرد! ندا آمد: «برگرد و نترس، تو در امان هستی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,370,'دستت را در گریبان خود فروبر، هنگامی که خارج میشود سفید و درخشنده است بدون عیب و نقص؛ و دستهایت را بر سینهات بگذار، تا ترس و وحشت از تو دور شود! این دو [= معجزه عصا و ید بیضا] برهان روشن از پروردگارت بسوی فرعون و اطرافیان اوست، که آنان قوم فاسقی هستند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,370,'عرض کرد: «پروردگارا! من یک تن از آنان را کشتهام؛ میترسم مرا به قتل برسانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,370,'و برادرم هارون زبانش از من فصیحتر است؛ او را همراه من بفرست تا یاور من باشد و مرا تصدیق کند؛ میترسم مرا تکذیب کنند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,370,'فرمود: «بزودی بازوان تو را بوسیله برادرت محکم (و نیرومند) میکنیم، و برای شما سلطه و برتری قرارمیدهیم؛ و به برکت آیات ما، بر شما دست نمییابند؛ شما و پیروانتان پیروزید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,370,'هنگامی که موسی معجزات روشن ما را برای آنان آورد، گفتند: «این چیزی جز سحر نیست که بدروغ به خدا بسته شده؛ ما هرگز چنین چیزی را در نیاکان خود نشنیدهایم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,370,'موسی گفت: «پروردگارم از حال کسانی که هدایت را از نزد او آوردهاند، و کسانی که عاقبت نیک سرا (ی دنیا و آخرت) از آن آنهاست آگاهتر است! مسلّماً ظالمان رستگار نخواهند شد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,370,'فرعون گفت: «ای جمعیت اشراف! من خدایی جز خودم برای شما سراغ ندارم. (امّا برای تحقیق بیشتر،) ای هامان، برایم آتشی بر گل بیفروز (و آجرهای محکم بساز)، و برای من برج بلندی ترتیب ده تا از خدای موسی خبر گیرم؛ هر چند من گمان میکنم او از دروغگویان است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,370,'(سرانجام) فرعون و لشکریانش بدون حقّ در زمین استکبار کردند، و پنداشتند بسوی ما بازگردانده نمیشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,370,'ما نیز او و لشکریانش را گرفتیم و به دریا افکندیم؛ اکنون بنگر پایان کار ظالمان چگونه بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,370,'و آنان [= فرعونیان] را پیشوایانی قرار دادیم که به آتش (دوزخ) دعوت میکنند؛ و روز رستاخیز یاری نخواهند شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,370,'و در این دنیا نیز لعنتی بدنبال آنان قرار دادیم؛ و روز قیامت از زشترویانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,370,'و ما به موسی کتاب آسمانی دادیم بعد از آنکه اقوام قرون نخستین را هلاک نمودیم؛ کتابی که برای مردم بصیرتآفرین بود، و مایه هدایت و رحمت؛ شاید متذکر شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,370,'تو در جانب غربی نبودی هنگامی که ما فرمان نبوّت را به موسی دادیم؛ و تو از شاهدان نبودی (در آن هنگام که معجزات را در اختیار موسی گذاردیم)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,370,'ولی ما اقوامی را در اعصار مختلف خلق کردیم، و زمانهای طولانی بر آنها گذشت (که آثار انبیا از دلهایشان محو شد؛ پس تو را با کتاب آسمانیت فرستادیم)! تو هرگز در میان مردم مدین اقامت نداشتی تا (از وضع آنان آگاه باشی و) آیات ما را برای آنها [= مشرکان مکّه] بخوانی، ولی ما بودیم که تو را فرستادیم (و این آیات را در اختیارت قرار دادیم)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,370,'تو در کنار طور نبودی زمانی که ما ندا دادیم؛ ولی این رحمتی از سوی پروردگارت بود (که این اخبار را در اختیار تو نهاد) تا بوسیله آن قومی را انذار کنی که پیش از تو هیچ انذارکنندهای برای آنان نیامده است؛ شاید متذکّر شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,370,'هرگاه (پیش از فرستادن پیامبری) مجازات و مصیبتی بر اثر اعمالشان به آنان میرسید، میگفتند: «پروردگارا! چرا رسولی برای ما نفرستادی تا از آیات تو پیروی کنیم و از مؤمنان باشیم؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,370,'ولی هنگامی که حقّ از نزد ما برای آنها آمد گفتند: «چرا مثل همان چیزی که به موسی داده شد به این پیامبر داده نشده است؟!» مگر بهانهجویانی همانند آنان، معجزاتی را که در گذشته به موسی داده شد، انکار نکردند و گفتند: «این دو نفر [= موسی و هارون] دو ساحرند که دست به دست هم دادهاند (تا ما را گمراه کنند) و ما به هر دو کافریم»؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,370,'بگو: «اگر راست میگویید (که تورات و قرآن از سوی خدا نیست)، کتابی هدایتبخشتر از این دو از نزد خدا بیاورید، تا من از آن پیروی کنم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,370,'اگر این پیشنهاد تو را نپذیرند، بدان که آنان تنها از هوسهای خود پیروی میکنند! و آیا گمراهتر از آن کس که پیروی هوای نفس خویش کرده و هیچ هدایت الهی را نپذیرفته، کسی پیدا میشود؟! مسلّماً خداوند قوم ستمگر را هدایت نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,370,'ما آیات قرآن را یکی پس از دیگری برای آنان آوردیم شاید متذکّر شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,370,'کسانی که قبلاً کتاب آسمانی به آنان دادهایم به آن [= قرآن] ایمان میآورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,370,'و هنگامی که بر آنان خوانده شود میگویند: «به آن ایمان آوردیم؛ اینها همه حق است و از سوی پروردگار ماست؛ ما پیش از این هم مسلمان بودیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,370,'آنها کسانی هستند که بخاطر شکیباییشان، اجر و پادششان را دو بار دریافت میدارند؛ و بوسیله نیکیها بدیها را دفع میکنند؛ و از آنچه به آنان روزی دادهایم انفاق مینمایند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,370,'و هرگاه سخن لغو و بیهوده بشنوند، از آن روی میگردانند و میگویند: «اعمال ما از آن ماست و اعمال شما از آن خودتان؛ سلام بر شما (سلام وداع)؛ ما خواهان جاهلان نیستیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,370,'تو نمیتوانی کسی را که دوست داری هدایت کنی؛ ولی خداوند هر کس را بخواهد هدایت میکند؛ و او به هدایت یافتگان آگاهتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,370,'آنها گفتند: «ما اگر هدایت را همراه تو پذیرا شویم، ما را از سرزمینمان میربایند!» آیا ما حرم امنی در اختیار آنها قرار ندادیم که ثمرات هر چیزی (از هر شهر و دیاری) بسوی آن آورده میشود؟! رزقی است از جانب ما؛ ولی بیشتر آنان نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,370,'و چه بسیار از شهرها و آبادیهایی را که بر اثر فراوانی نعمت، مست و مغرور شده بودند هلاک کردیم! این خانههای آنهاست (که ویران شده)، و بعد از آنان جز اندکی کسی در آنها سکونت نکرد؛ و ما وارث آنان بودیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,370,'و پروردگار تو هرگز شهرها و آبادیها را هلاک نمیکرد تا اینکه در کانون آنها پیامبری مبعوث کند که آیات ما را بر آنان بخواند؛ و ما هرگز آبادیها و شهرها را هلاک نکردیم مگر آنکه اهلش ظالم بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,370,'آنچه به شما داده شده، متاع زندگی دنیا و زینت آن است؛ و آنچه نزد خداست بهتر و پایدارتر است؛ آیا اندیشه نمیکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,370,'آیا کسی که به او وعده نیکو دادهایم و به آن خواهد رسید، همانند کسی است که متاع زندگی دنیا به او دادهایم سپس روز قیامت (برای حساب و جزا) از احضارشدگان خواهد بود؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,370,'روزی را (به خاطر بیاورید) که خداوند آنان را ندا میدهد و میگوید: «کجا هستند همتایانی که برای من میپنداشتید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,370,'گروهی (از معبودان) که فرمان عذاب درباره آنها مسلم شده است میگویند: «پروردگارا! ما اینها [= عابدان] را گمراه کردیم؛ (آری) ما آنها را گمراه کردیم همانگونه که خودمان گمراه شدیم؛ ما از آنان به سوی تو بیزاری میجوییم؛ آنان در حقیقت ما را نمیپرستیدند (بلکه هوای نفس خود را پرستش میکردند)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,370,'و به آنها [= عابدان] گفته میشود: «معبودهایتان را که همتای خدا میپنداشتید بخوانید (تا شما را یاری کنند)!» معبودهایشان را میخوانند، ولی جوابی به آنان نمیدهند! و (در این هنگام) عذاب الهی را (با چشم خود) میبینند، و آرزو میکنند ای کاش هدایت یافته بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,370,'(به خاطر آورید) روزی را که خداوند آنان را ندا میدهد و میگوید: «چه پاسخی به پیامبران (من) گفتید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,370,'در آن روز، همه اخبار به آنان پوشیده میماند، (حتی نمیتوانند) از یکدیگر سؤالی کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,370,'اما کسی که توبه کند، و ایمان آورد و عمل صالحی انجام دهد، امید است از رستگاران باشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,370,'پروردگار تو هر چه بخواهد میآفریند، و هر چه بخواهد برمیگزیند؛ آنان (در برابر او) اختیاری ندارند؛ منزه است خداوند، و برتر است از همتایانی که برای او قائل میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,370,'و پروردگار تو میداند آنچه را که سینههایشان پنهان میدارد و آنچه را آشکار میسازند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,370,'و او خدایی است که معبودی جز او نیست؛ ستایش برای اوست در این جهان و در جهان دیگر؛ حاکمیت (نیز) از آن اوست؛ و همه شما به سوی او بازگردانده میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,370,'بگو: «به من خبر دهید اگر خداوند شب را تا قیامت بر شما جاودان سازد، آیا معبودی جز خدا میتواند روشنایی برای شما بیاورد؟! آیا نمیشنوید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,370,'بگو: «به من خبر دهید اگر خداوند روز را تا قیامت بر شما جاودان کند، کدام معبود غیر از خداست که شبی برای شما بیاورد تا در آن آرامش یابید؟ آیا نمیبینید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,370,'و از رحمت اوست که برای شما شب و روز قرار داد تا هم در آن آرامش داشته باشید و هم برای بهرهگیری از فضل خدا تلاش کنید، و شاید شکر نعمت او را بجا آورید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,370,'(به خاطر آورید) روزی را که آنها را ندا میدهد و میگوید: «کجایند همتایانی که برای من میپنداشتید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,370,'(در آن روز) از هر امتی گواهی برمیگزینیم و (به مشرکان) میگوییم: «دلیل خود را بیاورید!» اما آنها میدانند که حق از آن خداست، و تمام آنچه را افترا میبستند از (نظر) آنها گم خواهد شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,370,'قارون از قوم موسی بود، اما بر آنان ستم کرد؛ ما آنقدر از گنجها به او داده بودیم که حمل کلیدهای آن برای یک گروه زورمند مشکل بود! (به خاطر آورید) هنگامی را که قومش به او گفتند: «این همه شادی مغرورانه مکن، که خداوند شادیکنندگان مغرور را دوست نمیدارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,370,'و در آنچه خدا به تو داده، سرای آخرت را بطلب؛ و بهرهات را از دنیا فراموش مکن؛ و همانگونه که خدا به تو نیکی کرده نیکی کن؛ و هرگز در زمین در جستجوی فساد مباش، که خدا مفسدان را دوست ندارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,370,'(قارون) گفت: «این ثروت را بوسیله دانشی که نزد من است به دست آوردهام!» آیا او نمیدانست که خداوند اقوامی را پیش از او هلاک کرد که نیرومندتر و ثروتمندتر از او بودند؟! (و هنگامی که عذاب الهی فرا رسد،) مجرمان از گناهانشان سؤال نمیشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,370,'(روزی قارون) با تمام زینت خود در برابر قومش ظاهر شد، آنها که خواهان زندگی دنیا بودند گفتند: «ای کاش همانند آنچه به قارون داده شده است ما نیز داشتیم! به راستی که او بهره عظیمی دارد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,370,'اما کسانی که علم و دانش به آنها داده شده بود گفتند: «وای بر شما ثواب الهی برای کسانی که ایمان آوردهاند و عمل صالح انجام میدهند بهتر است، اما جز صابران آن را دریافت نمیکنند.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,370,'سپس ما، او و خانهاش را در زمین فرو بردیم، و گروهی نداشت که او را در برابر عذاب الهی یاری کنند، و خود نیز نمیتوانست خویشتن را یاری دهد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,370,'و آنها که دیروز آرزو میکردند بجای او باشند (هنگامی که این صحنه را دیدند) گفتند: «وای بر ما! گویی خدا روزی را بر هر کس از بندگانش بخواهد گسترش میدهد یا تنگ میگیرد! اگر خدا بر ما منت ننهاده بود، ما را نیز به قعر زمین فرو می برد! ای وای گویی کافران هرگز رستگار نمیشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,370,'(آری،) این سرای آخرت را (تنها) برای کسانی قرارمیدهیم که اراده برتریجویی در زمین و فساد را ندارند؛ و عاقبت نیک برای پرهیزگاران است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,370,'کسی که کار نیکی انجام دهد، برای او پاداشی بهتر از آن است؛ و به کسانی که کارهای بد انجام دهند، مجازات بدکاران جز (به مقدار) اعمالشان نخواهد بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,370,'آن کس که قرآن را بر تو فرض کرد، تو را به جایگاهت [= زادگاهت] بازمیگرداند! بگو: «پروردگار من از همه بهتر میداند چه کسی (برنامه) هدایت آورده، و چه کسی در گمراهی آشکار است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,370,'و تو هرگز امید نداشتی که این کتاب آسمانی به تو القا گردد؛ ولی رحمت پروردگارت چنین ایجاب کرد! اکنون که چنین است، هرگز از کافران پشتیبانی مکن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,370,'و هرگز (آنها) تو را از آیات خداوند، بعد از آنکه بر تو نازل گشت، بازندارند! و بسوی پروردگارت دعوت کن، و هرگز از مشرکان مباش!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,370,'معبود دیگری را با خدا مخوان، که هیچ معبودی جز او نیست؛ همه چیز جز ذات (پاک) او فانی میشود؛ حاکمیت تنها از آن اوست؛ و همه بسوی او بازگردانده می شوید!');
+INSERT INTO chapters (id, number, quran_id) VALUES(371,29,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,371,'الم');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,371,'آیا مردم گمان کردند همین که بگویند: «ایمان آوردیم»، به حال خود رها میشوند و آزمایش نخواهند شد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,371,'ما کسانی را که پیش از آنان بودند آزمودیم (و اینها را نیز امتحان میکنیم)؛ باید علم خدا درباره کسانی که راست میگویند و کسانی که دروغ میگویند تحقق یابد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,371,'آیا کسانی که اعمال بد انجام میدهند گمان کردند بر قدرت ما چیره خواهند شد؟! چه بد داوری میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,371,'کسی که امید به لقاء الله (و رستاخیز) دارد (باید در اطاعت فرمان او بکوشد!) زیرا سرآمدی را که خدا تعیین کرده فرامیرسد؛ و او شنوا و داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,371,'کسی که جهاد و تلاش کند، برای خود جهاد میکند؛ چرا که خداوند از همه جهانیان بی نیاز است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,371,'و کسانی که ایمان آورده و کارهای شایسته انجام دادند، گناهان آنان را میپوشانیم (و میبخشیم) و آنان را به بهترین اعمالی که انجام میدادند پاداش میدهیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,371,'ما به انسان توصیه کردیم که به پدر و مادرش نیکی کند، و اگر آن دو (مشرک باشند و) تلاش کنند که برای من همتایی قائل شوی که به آن علم نداری، از آنها پیروی مکن! بازگشت شما به سوی من است، و شما را از آنچه انجام میدادید با خبر خواهم ساخت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,371,'و کسانی که ایمان آورده و کارهای شایسته انجام دادند، آنها را در زمره صالحان وارد خواهیم کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,371,'و از مردم کسانی هستند که میگویند: «به خدا ایمان آوردهایم!» اما هنگامی که در راه خدا شکنجه و آزار میبینند، آزار مردم را همچون عذاب الهی میشمارند (و از آن سخت وحشت میکنند)؛ ولی هنگامی که پیروزی از سوی پروردگارت (برای شما) بیاید، میگویند: «ما هم با شما بودیم (و در این پیروزی شریکیم)»!! آیا خداوند به آنچه در سینههای جهانیان است آگاهتر نیست؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,371,'مسلماً خداوند مؤمنان را میشناسد، و به یقین منافقان را (نیز) میشناسد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,371,'و کافران به مؤمنان گفتند: «شما از راه ما پیروی کنید، (و اگر گناهی دارد) ما گناهانتان را بر عهده خواهیم گرفت!» آنان هرگز چیزی از گناهان اینها را بر دوش نخواهند گرفت؛ آنان به یقین دروغگو هستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,371,'آنها بار سنگین (گناهان) خویش را بر دوش میکشند، و (همچنین) بارهای سنگین دیگری را اضافه بر بارهای سنگین خود؛ و روز قیامت به یقین از تهمتهائی که میبستند سؤال خواهند شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,371,'و ما نوح را بسوی قومش فرستادیم؛ و او را در میان آنان هزار سال مگر پنجاه سال، درنگ کرد؛ اما سرانجام طوفان و سیلاب آنان را فراگرفت در حالی که ظالم بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,371,'ما او و سرنشینان کشتی را رهایی بخشیدیم، و آن را آیتی برای جهانیان قرار دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,371,'ما ابراهیم را (نیز) فرستادیم، هنگامی که به قومش گفت: «خدا را پرستش کنید و از (عذاب) او بپرهیزید که این برای شما بهتر است اگر بدانید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,371,'شما غیر از خدا فقط بتهایی (از سنگ و چوب) را میپرستید و دروغی به هم میبافید؛ آنهایی را که غیر از خدا پرستش میکنید، مالک هیچ رزقی برای شما نیستند؛ روزی را تنها نزد خدا بطلبید و او را پرستش کنید و شکر او را بجا آورید که بسوی او بازگشت داده میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,371,'اگر شما (مرا) تکذیب کنید (جای تعجب نیست)، امتهایی پیش از شما نیز (پیامبرانشان را) تکذیب کردند؛ وظیفه فرستاده (خدا) جز ابلاغ آشکار نیست».');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,371,'آیا آنان ندیدند چگونه خداوند آفرینش را آغاز میکند، سپس بازمیگرداند؟! این کار برای خدا آسان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,371,'بگو: «در زمین بگردید و بنگرید خداوند چگونه آفرینش را آغاز کرده است؟ سپس خداوند (به همینگونه) جهان آخرت را ایجاد میکند؛ یقیناً خدا بر هر چیز توانا است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,371,'هر کس را بخواهد (و مستحق بداند) مجازات میکند، و هر کس را بخواهد مورد رحمت قرارمیدهد؛ و شما را به سوی او بازمیگردانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,371,'شما هرگز نمیتوانید بر اراده خدا چیره شوید و از حوزه قدرت او در زمین و آسمان بگریزید؛ و برای شما جز خدا، ولی و یاوری نیست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,371,'کسانی که به آیات خدا و دیدار او کافر شدند، از رحمت من مأیوسند؛ و برای آنها عذاب دردناکی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,371,'اما جواب قوم او [= ابراهیم] جز این نبود که گفتند: «او را بکشید یا بسوزانید!» ولی خداوند او را از آتش رهایی بخشید؛ در این ماجرا نشانههایی است برای کسانی که ایمان میآورند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,371,'(ابراهیم) گفت: «شما غیر از خدا بتهایی برای خود انتخاب کردهاید که مایه دوستی و محبت میان شما در زندگی دنیا باشد؛ سپس روز قیامت از یکدیگر بیزاری میجویید و یکدیگر را لعن میکنید؛ و جایگاه (همه) شما آتش است و هیچ یار و یاوری برای شما نخواهد بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,371,'و لوط به او [= ابراهیم] ایمان آورد، و (ابراهیم) گفت: «من بسوی پروردگارم هجرت میکنم که او صاحب قدرت و حکیم است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,371,'و (در اواخر عمر،) اسحاق و یعقوب را به او بخشیدیم و نبوت و کتاب آسمانی را در دودمانش قرار دادیم و پاداش او را در دنیا دادیم و او در آخرت از صالحان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,371,'و لوط را فرستادیم هنگامی که به قوم خود گفت: «شما عمل بسیار زشتی انجام میدهید که هیچ یک از مردم جهان پیش از شما آن را انجام نداده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,371,'آیا شما به سراغ مردان میروید و راه (تداوم نسل انسان) را قطع میکنید و در مجلستان اعمال ناپسند انجام میدهید؟! «اما پاسخ قومش جز این نبود که گفتند:» اگر راست میگویی عذاب الهی را برای ما بیاور!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,371,'(لوط) عرض کرد: «پروردگارا! مرا در برابر این قوم تبهکار یاری فرما!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,371,'و هنگامی که فرستادگان ما (از فرشتگان) بشارت (تولد فرزند) برای ابراهیم آوردند، گفتند: «ما اهل این شهر و آبادی را [و به شهرهای قوم لوط اشاره کردند] هلاک خواهیم کرد، چرا که اهل آن ستمگرند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,371,'(ابراهیم) گفت: «در این آبادی لوط است!» گفتند: «ما به کسانی که در آن هستند آگاهتریم! او و خانوادهاش را نجات میدهیم؛ جز همسرش که در میان قوم (گنهکار) باقی خواهد ماند.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,371,'هنگامی که فرستادگان ما نزد لوط آمدند، از دیدن آنها بدحال و دلتنگ شد؛ گفتند: «نترس و غمگین مباش، ما تو و خانوادهات را نجات خواهیم داد، جز همسرت که در میان قوم باقی میماند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,371,'ما بر اهل این شهر و آبادی به خاطر گناهانشان، عذابی از آسمان فرو خواهیم ریخت!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,371,'و از این آبادی نشانه روشنی (و درس عبرتی) برای کسانی که میاندیشند باقی گذاردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,371,'و ما بسوی «مدین»، برادرشان «شعیب» را فرستادیم؛ گفت: «ای قوم من! خدا را بپرستید، و به روز بازپسین امیدوار باشید، و در زمین فساد نکنید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,371,'(ولی) آنها او را تکذیب کردند، و به این سبب زلزله آنان را فراگرفت، و بامدادان در خانههای خود به رو در افتاده و مرده بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,371,'ما طایفه «عاد» و «ثمود» را نیز (هلاک کردیم)، و مساکن (ویران شده) آنان برای شما آشکار است؛ شیطان اعمالشان را برای آنان آراسته بود، از این رو آنان را از راه (خدا) بازداشت در حالی که بینا بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,371,'و «قارون» و «فرعون» و «هامان» را نیز هلاک کردیم؛ موسی با دلایل روشن به سراغشان آمد، امّا آنان در زمین برتری جویی کردند، ولی نتوانستند بر خدا پیشی گیرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,371,'ما هر یک از آنان را به گناهانشان گرفتیم، بر بعضی از آنها طوفانی از سنگریزه فرستادیم، و بعضی از آنان را صیحه آسمانی فروگرفت، و بعضی دیگر را در زمین فرو بردیم، و بعضی را غرق کردیم؛ خداوند هرگز به آنها ستم نکرد، ولی آنها خودشان بر خود ستم میکردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,371,'مثَل کسانی که غیر از خدا را اولیای خود برگزیدند، مثَل عنکبوت است که خانهای برای خود انتخاب کرده؛ در حالی که سستترین خانههای خانه عنکبوت است اگر میدانستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,371,'خداوند آنچه را غیر از او میخوانند میداند، و او شکستناپذیر و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,371,'اینها مثالهایی است که ما برای مردم میزنیم، و جز دانایان آن را درک نمیکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,371,'خداوند، آسمانها و زمین را بحق آفرید؛ و در این آیتی است برای مؤمنان.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,371,'آنچه را از کتاب (آسمانی) به تو وحی شده تلاوت کن، و نماز را برپا دار، که نماز (انسان را) از زشتیها و گناه بازمیدارد، و یاد خدا بزرگتر است؛ و خداوند میداند شما چه کارهایی انجام میدهید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,371,'با اهل کتاب جز به روشی که از همه نیکوتر است مجادله نکنید، مگر کسانی از آنان که ستم کردند؛ و (به آنها) بگویید: «ما به تمام آنچه از سوی خدا بر ما و شما نازل شده ایمان آوردهایم، و معبود ما و شما یکی است، و ما در برابر او تسلیم هستیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,371,'و این گونه، کتاب [= قرآن] را بر تو نازل کردیم، کسانی که کتاب (آسمانی) به آنها دادهایم به این کتاب ایمان میآورند؛ و بعضی از این گروه [= مشرکان] نیز به آن مؤمن میشوند؛ و آیات ما را جز کافران انکار نمیکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,371,'تو هرگز پیش از این کتابی نمیخواندی، و با دست خود چیزی نمینوشتی، مبادا کسانی که در صدد (تکذیب و) ابطال سخنان تو هستند، شک و تردید کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,371,'ولی این آیات روشنی است که در سینه دانشوران جای دارد؛ و آیات ما را جز ستمگران انکار نمیکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,371,'گفتند: «چرا معجزاتی از سوی پروردگارش بر او نازل نشده؟!» بگو: «معجزات همه نزد خداست (و به فرمان او نازل میشود، نه به میل من و شما)؛ من تنها بیم دهندهای آشکارم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,371,'آیا برای آنان کافی نیست که این کتاب را بر تو نازل کردیم که پیوسته بر آنها تلاوت میشود؟! در این، رحمت و تذکّری است برای کسانی که ایمان میآورند (و این معجزه بسیار واضحی است).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,371,'بگو: «همین بس که خدا میان من و شما گواه است؛ آنچه را در آسمانها و زمین است میداند؛ و کسانی که به باطل ایمان آوردند و به خدا کافر شدند زیانکاران واقعی هستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,371,'آنان با شتاب از تو عذاب را میطلبند؛ و اگر موعد مقرّری تعیین نشده بود، عذاب (الهی) به سراغ آنان میآمد؛ و سرانجام این عذاب بطور ناگهانی بر آنها نازل میشود در حالی که نمیدانند (و غافلند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,371,'آنان با عجله از تو عذاب میطلبند، در حالی که جهنم به کافران احاطه دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,371,'آن روز که عذاب (الهی) آنها را از بالای سر و پایین پایشان فرامیگیرد و به آنها میگوید: «بچشید آنچه را عمل میکردید» (روز سخت و دردناکی برای آنهاست!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,371,'ای بندگان من که ایمان آوردهاید! زمین من وسیع است، پس تنها مرا بپرستید (و در برابر فشارهای دشمنان تسلیم نشوید)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,371,'هر انسانی مرگ را میچشد، سپس شما را بسوی ما بازمیگردانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,371,'و کسانی که ایمان آورده و کارهای شایسته انجام دادند، آنان را در غرفههایی از بهشت جای میدهیم که نهرها در زیر آن جاری است؛ جاودانه در آن خواهند ماند؛ چه خوب است پاداش عملکنندگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,371,'همانها که (در برابر مشکلات) صبر (و استقامت) کردند و بر پروردگارشان توکّل میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,371,'چه بسا جنبندهای که قدرت حمل روزی خود را ندارد، خداوند او و شما را روزی میدهد؛ و او شنوا و داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,371,'و هر گاه از آنان بپرسی: «چه کسی آسمانها و زمین را آفریده، و خورشید و ماه را مسخّر کرده است؟» میگویند: «اللّه»! پس با این حال چگونه آنان را (از عبادت خدا) منحرف میسازند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,371,'خداوند روزی را برای هر کس از بندگانش بخواهد گسترده میکند، و برای هر کس بخواهد محدود میسازد؛ خداوند به همه چیز داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,371,'و اگر از آنان بپرسی: «چه کسی از آسمان آبی فرستاد و بوسیله آن زمین را پس از مردنش زنده کرد؟ میگویند: «اللّه»! بگو: «حمد و ستایش مخصوص خداست!» امّا بیشتر آنها نمیدانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,371,'این زندگی دنیا چیزی جز سرگرمی و بازی نیست؛ و زندگی واقعی سرای آخرت است، اگر میدانستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,371,'هنگامی که بر سوار بر کشتی شوند، خدا را با اخلاص میخوانند (و غیر او را فراموش میکنند)؛ امّا هنگامی که خدا آنان را به خشکی رساند و نجات داد، باز مشرک میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,371,'(بگذار) آنچه را (از آیات) به آنها دادهایم انکار کنند و از لذّات زودگذر زندگی بهره گیرند؛ امّا بزودی خواهند فهمید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,371,'آیا ندیدند که ما حرم امنی (برای آنها) قرار دادیم در حالی که مردم را در اطراف آنان (در بیرون این حرم) میربایند؟! آیا به باطل ایمان میآورند و نعمت خدا را کفران میکنند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,371,'چه کسی ستمکارتر از آن کس است که بر خدا دروغ بسته یا حق را پس از آنکه به سراغش آمده تکذیب نماید؟! آیا جایگاه کافران در دوزخ نیست؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,371,'و آنها که در راه ما (با خلوص نیّت) جهاد کنند، قطعاً به راههای خود، هدایتشان خواهیم کرد؛ و خداوند با نیکوکاران است.');
+INSERT INTO chapters (id, number, quran_id) VALUES(372,30,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,372,'الم');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,372,'رومیان مغلوب شدند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,372,'(و این شکست) در سرزمین نزدیکی رخ داد؛ امّا آنان پس از (این) مغلوبیّت بزودی غلبه خواهند کرد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,372,'در چند سال همه کارها از آن خداست؛ چه قبل و چه بعد (از این شکست و پیروزی)؛ و در آن روز، مؤمنان (بخاطر پیروزی دیگری) خوشحال خواهند شد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,372,'به سبب یاری خداوند؛ و او هر کس را بخواهد یاری میدهد؛ و او صاحب قدرت و رحیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,372,'این وعدهای است که خدا کرده؛ و خداوند هرگز از وعدهاش تخلّف نمیکند؛ ولی بیشتر مردم نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,372,'آنها فقط ظاهری از زندگی دنیا را میدانند، و از آخرت (و پایان کار) غافلند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,372,'آیا آنان با خود نیندیشیدند که خداوند، آسمانها و زمین و آنچه را میان آن دو است جز بحق و برای زمان معیّنی نیافریده است؟! ولی بسیاری از مردم (رستاخیز و) لقای پروردگارشان را منکرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,372,'آیا در زمین گردش نکردند تا ببینند عاقبت کسانی که قبل از آنان بودند چگونه بود؟! آنها نیرومندتر از اینان بودند، و زمین را (برای زراعت و آبادی) بیش از اینان دگرگون ساختند و آباد کردند، و پیامبرانشان با دلایل روشن به سراغشان آمدند (امّا آنها انکار کردند و کیفر خود را دیدند)؛ خداوند هرگز به آنان ستم نکرد، آنها به خودشان ستم میکردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,372,'سپس سرانجام کسانی که اعمال بد مرتکب شدند به جایی رسید که آیات خدا را تکذیب کردند و آن را به مسخره گرفتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,372,'خداوند آفرینش را آغاز میکند، سپس آن را بازمیگرداند، سپس شما را بسوی او باز میگردانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,372,'آن روز که قیامت برپا میشود، مجرمان در نومیدی و غم و اندوه فرو میروند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,372,'و برای آنان شفیعانی از معبودانشان نخواهد بود، و نسبت به معبودهایی که آنها را همتای خدا قرار داده بودند کافر میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,372,'آن روز که قیامت برپا میگردد، (مردم) از هم جدا میشوند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,372,'امّا آنان که ایمان آورده و اعمال صالح انجام دادند، در باغی از بهشت شاد و مسرور خواهند بود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,372,'و امّا آنان که به آیات ما و لقای آخرت کافر شدند، در عذاب الهی احضار میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,372,'منزّه است خداوند به هنگامی که شام میکنید و صبح میکنید؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,372,'و حمد و ستایش مخصوص اوست در آسمان و زمین، و به هنگام عصر و هنگامی که ظهر میکنید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,372,'او زنده را از مرده بیرون میآورد، و مرده را از زنده، و زمین را پس از مردنش حیات میبخشد، و به همین گونه روز قیامت (از گورها) بیرون آورده میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,372,'از نشانههای او این است که شما را از خاک آفرید، سپس بناگاه انسانهایی شدید و در روی زمین گسترش یافتید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,372,'و از نشانههای او اینکه همسرانی از جنس خودتان برای شما آفرید تا در کنار آنان آرامش یابید، و در میانتان مودّت و رحمت قرار داد؛ در این نشانههایی است برای گروهی که تفکّر میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,372,'و از آیات او آفرینش آسمانها و زمین، و تفاوت زبانها و رنگهای شماست؛ در این نشانههایی است برای عالمان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,372,'و از نشانههای او خواب شما در شب و روز است و تلاش و کوششتان برای بهرهگیری از فضل پروردگار (و تأمین معاش)؛ در این امور نشانههایی است برای آنان که گوش شنوا دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,372,'و از آیات او این است که برق و رعد را به شما نشان میدهد که هم مایه ترس و هم امید است (ترس از صاعقه، و امید به نزول باران)، و از آسمان آبی فرو میفرستد که زمین را بعد از مردنش بوسیله آن زنده میکند؛ در این نشانههایی است برای جمعیّتی که میاندیشند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,372,'و از آیات او این است که آسمان و زمین به فرمان او برپاست؛ سپس هنگامی که شما را (در قیامت) از زمین فراخواند، ناگهان همه خارج میشوید (و در صحنه محشر حضور مییابید)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,372,'و از آن اوست تمام کسانی که در آسمانها و زمیناند و همگی در برابر او خاضع و مطیعاند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,372,'او کسی است که آفرینش را آغاز میکند، سپس آن را بازمیگرداند، و این کار برای او آسانتر میباشد؛ و برای اوست توصیف برتر در آسمانها و زمین؛ و اوست توانمند و حکیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,372,'خداوند مثالی از خودتان، برای شما زده است: آیا (اگر مملوک و بردهای داشته باشید)، این بردههای شما هرگز در روزیهایی که به شما دادهایم شریک شما میباشند؛ آنچنان که هر دو مساوی بوده و از تصرّف مستقل و بدون اجازه آنان بیم داشته باشید، آن گونه که در مورد شرکای آزاد خود بیم دارید؟! اینچنین آیات خود را برای کسانی که تعقّل میکنند شرح میدهیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,372,'ولی ظالمان بدون علم و آگاهی، از هوی و هوسهای خود پیروی کردند! پس چه کسی میتواند آنان را که خدا گمراه کرده است هدایت کند؟! و برای آنها هیچ یاوری نخواهد بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,372,'پس روی خود را متوجّه آیین خالص پروردگار کن! این فطرتی است که خداوند، انسانها را بر آن آفریده؛ دگرگونی در آفرینش الهی نیست؛ این است آیین استوار؛ ولی اکثر مردم نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,372,'این باید در حالی باشد که شما بسوی او بازگشت میکنید و از (مخالفت فرمان) او بپرهیزید، نماز را برپا دارید و از مشرکان نباشید...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,372,'از کسانی که دین خود را پراکنده ساختند و به دستهها و گروهها تقسیم شدند! و (عجب اینکه) هر گروهی به آنچه نزد آنهاست (دلبسته و) خوشحالند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,372,'هنگامی که رنج و زیانی به مردم برسد، پروردگار خود را میخوانند و توبهکنان بسوی او بازمیگردند؛ امّا همین که رحمتی از خودش به آنان بچشاند، بناگاه گروهی از آنان نسبت به پروردگارشان مشرک میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,372,'(بگذار) نعمتهایی را که ما به آنها دادهایم کفران کنند! و (از نعمتهای زودگذر دنیا هر چه میتوانید) بهره گیرید؛ امّا بزودی خواهید دانست (که نتیجه کفران و کامجوییهای بی حساب شما چه بوده است)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,372,'آیا ما دلیل محکمی بر آنان فرستادیم که از شرکشان سخن میگوید (و آن را موجّه میشمارد)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,372,'و هنگامی که رحمتی به مردم بچشانیم، از آن خوشحال میشوند؛ و هرگاه رنج و مصیبتی بخاطر اعمالی که انجام دادهاند به آنان رسد، ناگهان مأیوس میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,372,'آیا ندیدند که خداوند روزی را برای هر کس بخواهد گسترده یا تنگ میسازد؟! در این نشانههایی است برای گروهی که ایمان میآورند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,372,'پس حقّ نزدیکان و مسکینان و در راهماندگان را ادا کن! این برای آنها که رضای خدا را میطلبند بهتر است، و چنین کسانی رستگارانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,372,'آنچه بعنوان ربا میپردازید تا در اموال مردم فزونی یابد، نزد خدا فزونی نخواهد یافت؛ و آنچه را بعنوان زکات میپردازید و تنها رضای خدا را میطلبید (مایه برکت است؛ و) کسانی که چنین میکنند دارای پاداش مضاعفند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,372,'خداوند همان کسی است که شما را آفرید، سپس روزی داد، بعد میمیراند، سپس زنده میکند؛ آیا هیچ یک از همتایانی که برای خدا قرار دادهاید چیزی از این کارها را میتوانند انجام دهند؟! او منزّه و برتر است از آنچه همتای او قرار میدهند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,372,'فساد، در خشکی و دریا بخاطر کارهایی که مردم انجام دادهاند آشکار شده است؛ خدا میخواهد نتیجه بعضی از اعمالشان را به آنان بچشاند، شاید (بسوی حق) بازگردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,372,'بگو: «در زمین سیر کنید و بنگرید عاقبت کسانی که قبل از شما بودند چگونه بود؟ بیشتر آنها مشرک بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,372,'روی خود را بسوی آیین مستقیم و پایدار بدار، پیش از آنکه روزی فرا رسد که هیچ کس نمیتواند آن را از خدا بازگرداند؛ در آن روز مردم به گروههایی تقسیم میشوند:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,372,'هر کس کافر شود، کفرش بر زیان خود اوست؛ و آنها که کار شایسته انجام دهند، به سود خودشان آماده میسازند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,372,'این برای آن است که خداوند کسانی را که ایمان آورده و اعمال صالح انجام دادهاند، از فضلش پاداش دهد؛ او کافران را دوست نمیدارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,372,'و از آیات (عظمت) خدا این است که بادها را بعنوان بشارتگرانی میفرستد تا شما را از رحمتش بچشاند (و سیراب کند) و کشتیها بفرمانش حرکت کنند و از فضل او بهره گیرید؛ شاید شکرگزاری کنید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,372,'و پیش از تو پیامبرانی را بسوی قومشان فرستادیم؛ آنها با دلایل روشن به سراغ قوم خود رفتند، ولی (هنگامی که اندرزها سودی نداد) از مجرمان انتقام گرفتیم (و مؤمنان را یاری کردیم)؛ و یاری مؤمنان، همواره حقّی است بر عهده ما!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,372,'خداوند همان کسی است که بادها را میفرستد تا ابرهایی را به حرکت در آورند، سپس آنها را در پهنه آسمان آن گونه که بخواهد میگستراند و متراکم میسازد؛ در این هنگام دانههای باران را میبینی که از لا به لای آن خارج میشود، هنگامی که این (باران حیاتبخش) را به هر کس از بندگانش که بخواهد میرساند، ناگهان خوشحال میشوند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,372,'و قطعاً پیش از آنکه بر آنان نازل شود مایوس بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,372,'به آثار رحمت الهی بنگر که چگونه زمین را بعد از مردنش زنده میکند؛ چنین کسی (که زمین مرده را زنده کرد) زندهکننده مردگان (در قیامت) است؛ و او بر همه چیز تواناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,372,'و اگر ما بادی بفرستیم (داغ و سوزان)، و بر اثر آن زراعت و باغ خود را زرد و پژمرده ببینند، (مأیوس شده و) پس از آن راه کفران پیش میگیرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,372,'تو نمیتوانی صدای خود را به گوش مردگان برسانی، و نه سخنت را به گوش کران هنگامی که روی برگردانند و دور شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,372,'و (نیز) نمیتوانی نابینایان را از گمراهیشان هدایت کنی؛ تو تنها سخنت را به گوش کسانی میرسانی که ایمان به آیات ما میآورند و در برابر حق تسلیمند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,372,'خدا همان کسی است که شما را آفرید در حالی که ضعیف بودید؛ سپس بعد از ناتوانی، قوّت بخشید و باز بعد از قوّت، ضعف و پیری قرار داد؛ او هر چه بخواهد میآفریند، و دانا و تواناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,372,'و روزی که قیامت برپا شود، مجرمان سوگند یاد میکنند که جز ساعتی (در عالم برزخ) درنگ نکردند! اینچنین از درک حقیقت بازگردانده میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,372,'ولی کسانی که علم و ایمان به آنان داده شده میگویند: «شما بفرمان خدا تا روز قیامت (در عالم برزخ) درنگ کردید، و اکنون روز رستاخیز است، امّا شما نمیدانستید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,372,'آن روز عذرخواهی ظالمان سودی به حالشان ندارد، و توبه آنان پذیرفته نمیشود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,372,'ما برای مردم در این قرآن از هر گونه مثال و مطلبی بیان کردیم؛ و اگر آیهای برای آنان بیاوری، کافران میگویند: «شما اهل باطلید (و اینها سحر و جادو است)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,372,'این گونه خداوند بر دلهای آنان که آگاهی ندارند مهر مینهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,372,'اکنون که چنین است صبر پیشه کن که وعده خدا حق است؛ و هرگز کسانی که ایمان ندارند تو را خشمگین نسازند (و از راه خود منحرف نکنند)!');
+INSERT INTO chapters (id, number, quran_id) VALUES(373,31,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,373,'الم');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,373,'این آیات کتاب حکیم است (کتابی پرمحتوا و استوار)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,373,'مایه هدایت و رحمت برای نیکوکاران است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,373,'همانان که نماز را برپا میدارند، و زکات را میپردازند و آنها به آخرت یقین دارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,373,'آنان بر طریق هدایت از پروردگارشانند، و آنانند رستگاران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,373,'و بعضی از مردم سخنان بیهوده را میخرند تا مردم را از روی نادانی، از راه خدا گمراه سازند و آیات الهی را به استهزا گیرند؛ برای آنان عذابی خوارکننده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,373,'و هنگامی که آیات ما بر او خوانده میشود، مستکبرانه روی برمیگرداند، گویی آن را نشنیده است؛ گویی اصلاً گوشهایش سنگین است! او را به عذابی دردناک بشارت ده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,373,'(ولی) کسانی که ایمان آورده و اعمال صالح انجام دادهاند، باغهای پرنعمت بهشت از آن آنهاست؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,373,'جاودانه در آن خواهند ماند؛ این وعده حتمی الهی است؛ و اوست عزیز و حکیم (شکستناپذیر و دانا).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,373,'(او) آسمانها را بدون ستونی که آن را ببینید آفرید، و در زمین کوههایی افکند تا شما را نلرزاند (و جایگاه شما آرام باشد) و از هر گونه جنبندهای روی آن منتشر ساخت؛ و از آسمان آبی نازل کردیم و بوسیله آن در روی زمین انواع گوناگونی از جفتهای گیاهان پر ارزش رویاندیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,373,'این آفرینش خداست؛ امّا به من نشان دهید معبودانی غیر او چه چیز را آفریدهاند؟! ولی ظالمان در گمراهی آشکارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,373,'ما به لقمان حکمت دادیم؛ (و به او گفتیم:) شکر خدا را بجای آور هر کس شکرگزاری کند، تنها به سود خویش شکر کرده؛ و آن کس که کفران کند، (زیانی به خدا نمیرساند)؛ چرا که خداوند بینیاز و ستوده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,373,'(به خاطر بیاور) هنگامی را که لقمان به فرزندش -در حالی که او را موعظه میکرد- گفت: «پسرم! چیزی را همتای خدا قرار مده که شرک، ظلم بزرگی است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,373,'و ما به انسان درباره پدر و مادرش سفارش کردیم؛ مادرش او را با ناتوانی روی ناتوانی حمل کرد (به هنگام بارداری هر روز رنج و ناراحتی تازهای را متحمّل میشد)، و دوران شیرخوارگی او در دو سال پایان مییابد؛ (آری به او توصیه کردم) که برای من و برای پدر و مادرت شکر بجا آور که بازگشت (همه شما) به سوی من است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,373,'و هرگاه آن دو، تلاش کنند که تو چیزی را همتای من قرار دهی، که از آن آگاهی نداری (بلکه میدانی باطل است)، از ایشان اطاعت مکن، ولی با آن دو، در دنیا به طرز شایستهای رفتار کن؛ و از راه کسانی پیروی کن که توبهکنان به سوی من آمدهاند؛ سپس بازگشت همه شما به سوی من است و من شما را از آنچه عمل میکردید آگاه میکنم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,373,'پسرم! اگر به اندازه سنگینی دانه خردلی (کار نیک یا بد) باشد، و در دل سنگی یا در (گوشهای از) آسمانها و زمین قرار گیرد، خداوند آن را (در قیامت برای حساب) میآورد؛ خداوند دقیق و آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,373,'پسرم! نماز را برپا دار، و امر به معروف و نهی از منکر کن، و در برابر مصایبی که به تو میرسد شکیبا باش که این از کارهای مهمّ است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,373,'(پسرم!) با بیاعتنایی از مردم روی مگردان، و مغرورانه بر زمین راه مرو که خداوند هیچ متکبّر مغروری را دوست ندارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,373,'(پسرم!) در راهرفتن، اعتدال را رعایت کن؛ از صدای خود بکاه (و هرگز فریاد مزن) که زشتترین صداها صدای خران است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,373,'آیا ندیدید خداوند آنچه را در آسمانها و زمین است مسخّر شما کرده، و نعمتهای آشکار و پنهان خود را به طور فراوان بر شما ارزانی داشته است؟! ولی بعضی از مردم بدون هیچ دانش و هدایت و کتاب روشنگری درباره خدا مجادله میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,373,'و هنگامی که به آنان گفته شود: «از آنچه خدا نازل کرده پیروی کنید!»، میگویند: «نه، بلکه ما از چیزی پیروی میکنیم که پدران خود را بر آن یافتیم!» آیا حتّی اگر شیطان آنان را دعوت به عذاب آتش فروزان کند (باز هم تبعیّت میکنند)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,373,'کسی که روی خود را تسلیم خدا کند در حالی که نیکوکار باشد، به دستگیره محکمی چنگ زده (و به تکیهگاه مطمئنی تکیه کرده است)؛ و عاقبت همه کارها به سوی خداست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,373,'و کسی که کافر شود، کفر او تو را غمگین نسازد؛ بازگشت همه آنان به سوی ماست و ما آنها را از اعمالی که انجام دادهاند (و نتایج شوم آن) آگاه خواهیم ساخت؛ خداوند به آنچه درون سینههاست آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,373,'ما اندکی آنها را از متاع دنیا بهرهمند میکنیم، سپس آنها را به تحمّل عذاب شدیدی وادار میسازیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,373,'و هرگاه از آنان سؤال کنی: «چه کسی آسمانها و زمین را آفریده است؟» مسلّماً میگویند: «اللّه»، بگو: «الحمد للّه (که خود شما معترفید)!» ولی بیشتر آنان نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,373,'آنچه در آسمانها و زمین است از آن خداست، چرا که خداوند بینیاز و شایسته ستایش است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,373,'و اگر همه درختان روی زمین قلم شود، و دریا برای آن مرکّب گردد، و هفت دریاچه به آن افزوده شود، اینها همه تمام میشود ولی کلمات خدا پایان نمیگیرد؛ خداوند عزیز و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,373,'آفرینش و برانگیختن (و زندگی دوباره) همه شما (در قیامت) همانند یک فرد بیش نیست؛ خداوند شنوا و بیناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,373,'آیا ندیدی که خداوند شب را در روز، و روز را در شب داخل میکند، و خورشید و ماه را مسخّر ساخته و هر کدام تا سرآمد معینی به حرکت خود ادامه میدهند؟! خداوند به آنچه انجام میدهید آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,373,'اینها همه دلیل بر آن است که خداوند حقّ است، و آنچه غیر از او میخوانند باطل است، و خداوند بلند مقام و بزرگ مرتبه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,373,'آیا ندیدی کشتیها بر (صفحه) دریاها به فرمان خدا، و به (برکت) نعمت او حرکت میکنند تا بخشی از آیاتش را به شما نشان دهد؟! در اینها نشانههایی است برای کسانی که شکیبا و شکرگزارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,373,'و هنگامی که (در سفر دریا) موجی همچون ابرها آنان را بپوشاند (و بالا رود و بالای سرشان قرار گیرد)، خدا را با اخلاص میخوانند؛ امّا وقتی آنها را به خشکی رساند و نجات داد، بعضی راه اعتدال را پیش میگیرند (و به ایمان خود وفادار میمانند، در حالی که بعضی دیگر فراموش کرده راه کفر پیش میگیرند)؛ ولی آیات ما را هیچ کس جز پیمانشکنان ناسپاس انکار نمیکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,373,'ای مردم! تقوای الهی پیشه کنید و بترسید از روزی که نه پدر کیفر اعمال فرزندش را تحمّل میکند، و نه فرزند چیزی از کیفر (اعمال) پدرش را؛ به یقین وعده الهی حقّ است؛ پس مبادا زندگانی دنیا شما را بفریبد، و مبادا (شیطان) فریبکار شما را (به کرم) خدا مغرور سازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,373,'آگاهی از زمان قیام قیامت مخصوص خداست، و اوست که باران را نازل میکند، و آنچه را که در رحمها (ی مادران) است میداند، و هیچ کس نمیداند فردا چه به دست میآورد، و هیچ کس نمیداند در چه سرزمینی میمیرد؟ خداوند عالم و آگاه است!');
+INSERT INTO chapters (id, number, quran_id) VALUES(374,32,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,374,'الم');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,374,'این کتابی است که از سوی پروردگار جهانیان نازل شده، و شک و تردیدی در آن نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,374,'ولی آنان میگویند: «(محمّد) آن را بدروغ به خدا بسته است»، امّا این سخن حقّی است از سوی پروردگارت تا گروهی را انذار کنی که پیش از تو هیچ انذارکنندهای برای آنان نیامده است، شاید (پند گیرند و) هدایت شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,374,'خداوند کسی است که آسمانها و زمین و آنچه را میان این دو است در شش روز [= شش دوران] آفرید، سپس بر عرش (قدرت) قرار گرفت؛ هیچ سرپرست و شفاعت کنندهای برای شما جز او نیست؛ آیا متذکّر نمیشوید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,374,'امور این جهان را از آسمان به سوی زمین تدبیر میکند؛ سپس در روزی که مقدار آن هزار سال از سالهایی است که شما میشمرید بسوی او بالا میرود (و دنیا پایان مییابد).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,374,'او خداوندی است که از پنهان و آشکار با خبر است، و شکستناپذیر و مهربان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,374,'او همان کسی است که هر چه را آفرید نیکو آفرید؛ و آفرینش انسان را از گِل آغاز کرد؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,374,'سپس نسل او را از عصارهای از آب ناچیز و بیقدر آفرید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,374,'سپس (اندام) او را موزون ساخت و از روح خویش در وی دمید؛ و برای شما گوش و چشمها و دلها قرار داد؛ امّا کمتر شکر نعمتهای او را بجا میآورید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,374,'آنها گفتند: «آیا هنگامی که ما (مردیم و) در زمین گم شدیم، آفرینش تازهای خواهیم یافت؟!» ولی آنان لقای پروردگارشان را انکار میکنند (و میخواهند با انکار معاد، آزادانه به هوسرانی خویش ادامه دهند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,374,'بگو: «فرشته مرگ که بر شما مأمور شده، (روح) شما را میگیرد؛ سپس شما را بسوی پروردگارتان بازمیگردانند.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,374,'و اگر ببینی مجرمان را هنگامی که در پیشگاه پروردگارشان سر به زیر افکنده، میگویند: «پروردگارا! آنچه وعده کرده بودی دیدیم و شنیدیم؛ ما را بازگردان تا کار شایستهای انجام دهیم؛ ما (به قیامت) یقین داریم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,374,'و اگر میخواستیم به هر انسانی هدایت لازمش را (از روی اجبار بدهیم) میدادیم؛ ولی (من آنها را آزاد گذاردهام و) سخن و وعدهام حق است که دوزخ را (از افراد بیایمان و گنهکار) از جنّ و انس همگی پر کنم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,374,'(و به آنها میگویم:) بچشید (عذاب جهنم را)! بخاطر اینکه دیدار امروزتان را فراموش کردید، ما نیز شما را فراموش کردیم؛ و بچشید عذاب جاودان را به خاطر اعمالی که انجام میدادید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,374,'تنها کسانی که به آیات ما ایمان میآورند که هر وقت این آیات به آنان یادآوری شود به سجده میافتند و تسبیح و حمد پروردگارشان را بجا میآورند، و تکبّر نمیکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,374,'پهلوهایشان از بسترها در دل شب دور میشود (و بپا میخیزند و رو به درگاه خدا می آورند) و پروردگار خود را با بیم و امید میخوانند، و از آنچه به آنان روزی دادهایم انفاق میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,374,'هیچ کس نمیداند چه پاداشهای مهمّی که مایه روشنی چشمهاست برای آنها نهفته شده، این پاداش کارهائی است که انجام میدادند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,374,'آیا کسی که باایمان باشد همچون کسی است که فاسق است؟! نه، هرگز این دو برابر نیستند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,374,'امّا کسانی که ایمان آوردند و کارهای شایسته انجام دادند، باغهای بهشت جاویدان از آن آنها خواهد بود، این وسیله پذیرایی (خداوند) از آنهاست به پاداش آنچه انجام میدادند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,374,'و امّا کسانی که فاسق شدند (و از اطاعت خدا سرباز زدند)، جایگاه همیشگی آنها آتش است؛ هر زمان بخواهند از آن خارج شوند، آنها را به آن بازمیگردانند و به آنان گفته میشود: «بچشید عذاب آتشی را که انکار میکردید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,374,'به آنان از عذاب نزدیک (عذاب این دنیا) پیش از عذاب بزرگ (آخرت) میچشانیم، شاید بازگردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,374,'چه کسی ستمکارتر است از آن کس که آیات پروردگارش به او یادآوری شده و او از آن اعراض کرده است؟! مسلّماً ما از مجرمان انتقام خواهیم گرفت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,374,'ما به موسی کتاب آسمانی دادیم؛ و شک نداشته باش که او آیات الهی را دریافت داشت؛ و ما آن را وسیله هدایت بنی اسرائیل قرار دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,374,'و از آنان امامان (و پیشوایانی) قرار دادیم که به فرمان ما (مردم را) هدایت میکردند؛ چون شکیبایی نمودند، و به آیات ما یقین داشتند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,374,'البتّه پروردگار تو میان آنان روز قیامت در آنچه اختلاف داشتند داوری میکند (و هر کس را به سزای اعمالش میرساند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,374,'آیا برای هدایت آنها همین کافی نیست که افراد زیادی را که در قرن پیش از آنان زندگی داشتند هلاک کردیم؟! اینها در مساکن (ویران شده) آنان راه میروند؛ در این آیاتی است (از قدرت خداوند و مجازات دردناک مجرمان)؛ آیا نمیشنوند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,374,'آیا ندیدند که ما آب را بسوی زمینهای خشک میرانیم و بوسیله آن زراعتهایی میرویانیم که هم چهارپایانشان از آن میخورند و هم خودشان تغذیه میکنند؛ آیا نمی بینند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,374,'آنان میگویند: «اگر راست میگویید، این پیروزی شما کی خواهد بود؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,374,'بگو: «روز پیروزی، ایمان آوردن، سودی به حال کافران نخواهد داشت؛ و به آنها هیچ مهلت داده نمیشود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,374,'حال که چنین است، از آنها روی بگردان و منتظر باش؛ آنها نیز منتظرند! (تو منتظر رحمت خدا و آنها هم منتظر عذاب او!)');
+INSERT INTO chapters (id, number, quran_id) VALUES(375,33,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,375,'ای پیامبر! تقوای الهی پیشه کن و از کافران و منافقان اطاعت مکن که خداوند عالم و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,375,'و از آنچه از سوی پروردگارت به تو وحی میشود پیروی کن که خداوند به آنچه انجام میدهید آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,375,'و بر خدا توکّل کن، و همین بس که خداوند حافظ و مدافع (انسان) باشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,375,'خداوند برای هیچ کس دو دل در درونش نیافریده؛ و هرگز همسرانتان را که مورد «ظهار» قرارمیدهید مادران شما قرار نداده؛ و (نیز) فرزندخواندههای شما را فرزند حقیقی شما قرارنداده است؛ این سخن شماست که به دهان خود میگویید (سخنی باطل و بیپایه)؛ امّا خداوند حقّ را میگوید و او به راه راست هدایت میکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,375,'آنها را به نام پدرانشان بخوانید که این کار نزد خدا عادلانهتر است؛ و اگر پدرانشان را نمیشناسید، آنها برادران دینی و موالی شما هستند؛ امّا گناهی بر شما نیست در خطاهایی که از شما سرمیزند (و بیتوجّه آنها را به نام دیگران صدا میزنید)، ولی آنچه را از روی عمد میگویید (مورد حساب قرار خواهد داد)؛ و خداوند آمرزنده و رحیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,375,'پیامبر نسبت به مؤمنان از خودشان سزاوارتر است؛ و همسران او مادران آنها [= مؤمنان] محسوب میشوند؛ و خویشاوندان نسبت به یکدیگر از مؤمنان و مهاجران در آنچه خدا مقرّر داشته اولی هستند، مگر اینکه بخواهید نسبت به دوستانتان نیکی کنید (و سهمی از اموال خود را به آنها بدهید)؛ این حکم در کتاب (الهی) نوشته شده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,375,'(به خاطر آور) هنگامی را که از پیامبران پیمان گرفتیم، و (همچنین) از تو و از نوح و ابراهیم و موسی و عیسی بن مریم، و ما از همه آنان پیمان محکمی گرفتیم (که در ادای مسؤولیت تبلیغ و رسالت کوتاهی نکنند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,375,'به این منظور که خدا راستگویان را از صدقشان (در ایمان و عمل صالح) سؤال کند؛ و برای کافران عذابی دردناک آماده ساخته است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,375,'ای کسانی که ایمان آوردهاید! نعمت خدا را بر خود به یاد آورید در آن هنگام که لشکرهایی (عظیم) به سراغ شما آمدند؛ ولی ما باد و طوفان سختی بر آنان فرستادیم و لشکریانی که آنها را نمیدیدید (و به این وسیله آنها را در هم شکستیم)؛ و خداوند همیشه به آنچه انجام میدهید بینا بوده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,375,'(به خاطر بیاورید) زمانی را که آنها از طرف بالا و پایین (شهر) بر شما وارد شدند (و مدینه را محاصره کردند) و زمانی را که چشمها از شدّت وحشت خیره شده و جانها به لب رسیده بود، و گمانهای گوناگون بدی به خدا میبردید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,375,'آنجا بود که مؤمنان آزمایش شدند و تکان سختی خوردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,375,'و (نیز) به خاطر آورید زمانی را که منافقان و بیماردلان میگفتند: «خدا و پیامبرش جز وعدههای دروغین به ما ندادهاند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,375,'و (نیز) به خاطر آورید زمانی را که گروهی از آنها گفتند: «ای اهل یثرب (ای مردم مدینه)! اینجا جای توقف شما نیست؛ به خانههای خود بازگردید!» و گروهی از آنان از پیامبر اجازه بازگشت میخواستند و میگفتند: «خانههای ما بیحفاظ است!»، در حالی که بیحفاظ نبود؛ آنها فقط میخواستند (از جنگ) فرار کنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,375,'آنها چنان بودند که اگر دشمنان از اطراف مدینه بر آنان وارد میشدند و پیشنهاد بازگشت به سوی شرک به آنان میکردند میپذیرفتند، و جز مدّت کمی (برای انتخاب این راه) درنگ نمیکردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,375,'(در حالی که) آنان قبل از این با خدا عهد کرده بودند که پشت به دشمن نکنند؛ و عهد الهی مورد سؤال قرار خواهد گرفت (و در برابر آن مسؤولند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,375,'بگو: «اگر از مرگ یا کشتهشدن فرار کنید، سودی به حال شما نخواهد داشت؛ و در آن هنگام جز بهره کمی از زندگانی نخواهید گرفت!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,375,'بگو: «چه کسی میتواند شما را در برابر اراده خدا حفظ کند اگر او بدی یا رحمتی را برای شما اراده کند؟!» و آنها جز خدا هیچ سرپرست و یاوری برای خود نخواهند یافت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,375,'خداوند کسانی که مردم را از جنگ بازمیداشتند و کسانی را که به برادران خود میگفتند: «بسوی ما بیایید (و خود را از معرکه بیرون کشید)» بخوبی میشناسد؛ و آنها (مردمی ضعیفند و) جز اندکی پیکار نمیکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,375,'آنها در همه چیز نسبت به شما بخیلند؛ و هنگامی که (لحظات) ترس (و بحرانی) پیش آید، میبینی آنچنان به تو نگاه میکنند، و چشمهایشان در حدقه میچرخد، که گویی میخواهند قالب تهی کنند! امّا وقتی حالت خوف و ترس فرو نشست، زبانهای تند و خشن خود را با انبوهی از خشم و عصبانیت بر شما میگشایند (و سهم خود را از غنایم مطالبه میکنند!) در حالی که در آن نیز حریص و بخیلند؛ آنها (هرگز) ایمان نیاوردهاند، از این رو خداوند اعمالشان را حبط و نابود کرد؛ و این کار بر خدا آسان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,375,'آنها گمان میکنند هنوز لشکر احزاب نرفتهاند؛ و اگر برگردند (از ترس آنان) دوست میدارند در میان اعراب بادیهنشین پراکنده (و پنهان) شوند و از اخبار شما جویا گردند؛ و اگر در میان شما باشند جز اندکی پیکار نمیکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,375,'مسلّماً برای شما در زندگی رسول خدا سرمشق نیکویی بود، برای آنها که امید به رحمت خدا و روز رستاخیز دارند و خدا را بسیار یاد میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,375,'(امّا) مؤمنان وقتی لشکر احزاب را دیدند گفتند: «این همان است که خدا و رسولش به ما وعده داده، و خدا و رسولش راست گفتهاند!» و این موضوع جز بر ایمان و تسلیم آنان نیفزود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,375,'در میان مؤمنان مردانی هستند که بر سر عهدی که با خدا بستند صادقانه ایستادهاند؛ بعضی پیمان خود را به آخر بردند (و در راه او شربت شهادت نوشیدند)، و بعضی دیگر در انتظارند؛ و هرگز تغییر و تبدیلی در عهد و پیمان خود ندادند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,375,'هدف این است که خداوند صادقان را بخاطر صدقشان پاداش دهد، و منافقان را هرگاه اراده کند عذاب نماید یا (اگر توبه کنند) توبه آنها را بپذیرد؛ چرا که خداوند آمرزنده و رحیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,375,'خدا کافران را با دلی پر از خشم بازگرداند بیآنکه نتیجهای از کار خود گرفته باشند؛ و خداوند (در این میدان)، مؤمنان را از جنگ بینیاز ساخت (و پیروزی را نصیبشان کرد)؛ و خدا قوّی و شکستناپذیر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,375,'و خداوند گروهی از اهل کتاب [= یهود] را که از آنان [= مشرکان عرب] حمایت کردند از قلعههای محکمشان پایین کشید و در دلهایشان رعب افکند؛ (و کارشان به جایی رسید که) گروهی را به قتل میرساندید و گروهی را اسیر میکردید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,375,'و زمینها و خانهها و اموالشان را در اختیار شما گذاشت، و (همچنین) زمینی را که هرگز در آن گام ننهاده بودید؛ و خداوند بر هر چیز تواناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,375,'ای پیامبر! به همسرانت بگو: «اگر شما زندگی دنیا و زرق و برق آن را میخواهید بیایید با هدیهای شما را بهرهمند سازم و شما را بطرز نیکویی رها سازم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,375,'و اگر شما خدا و پیامبرش و سرای آخرت را میخواهید، خداوند برای نیکوکاران شما پاداش عظیمی آماده ساخته است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,375,'ای همسران پیامبر! هر کدام از شما گناه آشکار و فاحشی مرتکب شود، عذاب او دوچندان خواهد بود؛ و این برای خدا آسان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,375,'و هر کس از شما برای خدا و پیامبرش خضوع کند و عمل صالح انجام دهد، پاداش او را دو چندان خواهیم ساخت، و روزی پرارزشی برای او آماده کردهایم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,375,'ای همسران پیامبر! شما همچون یکی از زنان معمولی نیستید اگر تقوا پیشه کنید؛ پس به گونهای هوسانگیز سخن نگویید که بیماردلان در شما طمع کنند، و سخن شایسته بگویید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,375,'و در خانههای خود بمانید، و همچون دوران جاهلیّت نخستین (در میان مردم) ظاهر نشوید، و نماز را برپا دارید، و زکات را بپردازید، و خدا و رسولش را اطاعت کنید؛ خداوند فقط میخواهد پلیدی و گناه را از شما اهل بیت دور کند و کاملاً شما را پاک سازد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,375,'آنچه را در خانههای شما از آیات خداوند و حکمت و دانش خوانده میشود یاد کنید؛ خداوند لطیف و خبیر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,375,'به یقین، مردان مسلمان و زنان مسلمان، مردان با ایمان و زنان با ایمان، مردان مطیع فرمان خدا و زنان مطیع فرمان خدا، مردان راستگو و زنان راستگو، مردان صابر و شکیبا و زنان صابر و شکیبا، مردان با خشوع و زنان با خشوع، مردان انفاق کننده و زنان انفاق کننده، مردان روزهدار و زنان روزهدار، مردان پاکدامن و زنان پاکدامن و مردانی که بسیار به یاد خدا هستند و زنانی که بسیار یاد خدا میکنند، خداوند برای همه آنان مغفرت و پاداش عظیمی فراهم ساخته است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,375,'هیچ مرد و زن با ایمانی حق ندارد هنگامی که خدا و پیامبرش امری را لازم بدانند، اختیاری (در برابر فرمان خدا) داشته باشد؛ و هر کس نافرمانی خدا و رسولش را کند، به گمراهی آشکاری گرفتار شده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,375,'(به خاطر بیاور) زمانی را که به آن کس که خداوند به او نعمت داده بود و تو نیز به او نعمت داده بودی [به فرزند خواندهات «زید»] میگفتی: «همسرت را نگاهدار و از خدا بپرهیز!» (و پیوسته این امر را تکرار میکردی)؛ و در دل چیزی را پنهان میداشتی که خداوند آن را آشکار میکند؛ و از مردم میترسیدی در حالی که خداوند سزاوارتر است که از او بترسی! هنگامی که زید نیازش را از آن زن به سرآورد (و از او جدا شد)، ما او را به همسری تو درآوردیم تا مشکلی برای مؤمنان در ازدواج با همسران پسر خواندههایشان -هنگامی که طلاق گیرند- نباشد؛ و فرمان خدا انجام شدنی است (و سنّت غلط تحریم این زنان باید شکسته شود).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,375,'هیچ گونه منعی بر پیامبر در آنچه خدا بر او واجب کرده نیست؛ این سنّت الهی در مورد کسانی که پیش از این بودهاند نیز جاری بوده؛ و فرمان خدا روی حساب و برنامه دقیقی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,375,'(پیامبران) پیشین کسانی بودند که تبلیغ رسالتهای الهی میکردند و (تنها) از او می ترسیدند، و از هیچ کس جز خدا بیم نداشتند؛ و همین بس که خداوند حسابگر (و پاداشدهنده اعمال آنها) است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,375,'محمّد (ص) پدر هیچ یک از مردان شما نبوده و نیست؛ ولی رسول خدا و ختمکننده و آخرین پیامبران است؛ و خداوند به همه چیز آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,375,'ای کسانی که ایمان آوردهاید! خدا را بسیار یاد کنید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,375,'و صبح و شام او را تسبیح گویید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,375,'او کسی است که بر شما درود و رحمت میفرستد، و فرشتگان او (نیز) برای شما تقاضای رحمت میکنند تا شما را از ظلمات (جهل و شرک گناه) به سوی نور (ایمان و علم و تقوا) رهنمون گردد؛ او نسبت به مؤمنان همواره مهربان بوده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,375,'تحیّت آنان در روزی که او را دیدار میکنند سلام است؛ و برای آنها پاداش پرارزشی فراهم ساخته است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,375,'ای پیامبر! ما تو را گواه فرستادیم و بشارتدهنده و انذارکننده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,375,'و تو را دعوتکننده بسوی خدا به فرمان او قرار دادیم، و چراغی روشنیبخش!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,375,'و مؤمنان را بشارت ده که برای آنان از سوی خدا فضل بزرگی است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,375,'و از کافران و منافقان اطاعت مکن، و به آزارهای آنها اعتنا منما، و بر خدا توکّل کن، و همین بس که خدا حامی و مدافع (تو) است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,375,'ای کسانی که ایمان آوردهاید! هنگامی که با زنان با ایمان ازدواج کردید و قبل از همبستر شدن طلاق دادید، عدّهای برای شما بر آنها نیست که بخواهید حساب آن را نگاه دارید؛ آنها را با هدیه مناسبی بهرهمند سازید و بطرز شایستهای رهایشان کنید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,375,'ای پیامبر! ما همسران تو را که مهرشان را پرداختهای برای تو حلال کردیم، و همچنین کنیزانی که از طریق غنایمی که خدا به تو بخشیده است مالک شدهای و دختران عموی تو، و دختران عمّهها، و دختران دایی تو، و دختران خالهها که با تو مهاجرت کردند (ازدواج با آنها برای تو حلال است) و هرگاه زن با ایمانی خود را به پیامبر ببخشد (و مهری برای خود نخواهد) چنانچه پیامبر بخواهد میتواند او را به همسری برگزیند؛ امّا چنین ازدواجی تنها برای تو مجاز است نه دیگر مؤمنان؛ ما میدانیم برای آنان در مورد همسرانشان و کنیزانشان چه حکمی مقرّر داشتهایم (و مصلحت آنان چه حکمی را ایجاب میکند)؛ این بخاطر آن است که مشکلی (در ادای رسالت) بر تو نباشد (و از این راه حامیان فزونتری فراهم سازی)؛ و خداوند آمرزنده و مهربان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,375,'(موعد) هر یک از همسرانت را بخواهی میتوانی به تأخیر اندازی، و هر کدام را بخواهی نزد خود جای دهی؛ و هرگاه بعضی از آنان را که برکنار ساختهای بخواهی نزد خود جای دهی، گناهی بر تو نیست؛ این حکم الهی برای روشنی چشم آنان، و اینکه غمگین نباشند و به آنچه به آنان میدهی همگی راضی شوند نزدیکتر است؛ و خدا آنچه را در قلوب شماست میداند، و خداوند دانا و بردبار است (از مصالح بندگان خود با خبر است، و در کیفر آنها عجله نمیکند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,375,'بعد از این دیگر زنی بر تو حلال نیست، و نمیتوانی همسرانت را به همسران دیگری مبدّل کنی [= بعضی را طلاق دهی و همسر دیگری به جای او برگزینی] هر چند جمال آنها مورد توجّه تو واقع شود، مگر آنچه که بصورت کنیز در ملک تو درآید! و خداوند ناظر و مراقب هر چیز است (و با این حکم فشار قبایل عرب را در اختیار همسر از آنان، از تو برداشتیم).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,375,'ای کسانی که ایمان آوردهاید! در خانههای پیامبر داخل نشوید مگر به شما برای صرف غذا اجازه داده شود، در حالی که (قبل از موعد نیایید و) در انتظار وقت غذا ننشینید؛ امّا هنگامی که دعوت شدید داخل شوید؛ و وقتی غذا خوردید پراکنده شوید، و (بعد از صرف غذا) به بحث و صحبت ننشینید؛ این عمل، پیامبر را ناراحت مینماید، ولی از شما شرم میکند (و چیزی نمیگوید)؛ امّا خداوند از (بیان) حق شرم ندارد! و هنگامی که چیزی از وسایل زندگی را (بعنوان عاریت) از آنان [= همسران پیامبر] میخواهید از پشت پرده بخواهید؛ این کار برای پاکی دلهای شما و آنها بهتر است! و شما حق ندارید رسول خدا را آزار دهید، و نه هرگز همسران او را بعد از او به همسری خود درآورید که این کار نزد خدا بزرگ است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,375,'اگر چیزی را آشکار کنید یا آن را پنهان دارید، خداوند از همه چیز آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,375,'بر آنان [= همسران پیامبر] گناهی نیست در مورد پدران و فرزندان و برادران و فرزندان برادران و فرزندان خواهران خود و زنان مسلمان و بردگان خویش (که بدون حجاب و پرده با آنها تماس بگیرند)؛ و تقوای الهی را پیشه کنید که خداوند نسبت به هر چیزی شاهد و آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,375,'خدا و فرشتگانش بر پیامبر درود میفرستند؛ ای کسانی که ایمان آوردهاید، بر او درود فرستید و سلام گویید و کاملاً تسلیم (فرمان او) باشید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,375,'آنها که خدا و پیامبرش را آزار میدهند، خداوند آنان را از رحمت خود در دنیا و آخرت دور ساخته، و برای آنها عذاب خوارکنندهای آماده کرده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,375,'و آنان که مردان و زنان باایمان را به خاطر کاری که انجام ندادهاند آزار میدهند؛ بار بهتان و گناه آشکاری را به دوش کشیدهاند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,375,'ای پیامبر! به همسران و دخترانت و زنان مؤمنان بگو: «جلبابها [= روسریهای بلند] خود را بر خویش فروافکنند، این کار برای اینکه شناخته شوند و مورد آزار قرار نگیرند بهتر است؛ (و اگر تاکنون خطا و کوتاهی از آنها سر زده توبه کنند) خداوند همواره آمرزنده رحیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,375,'اگر منافقان و بیماردلان و آنها که اخبار دروغ و شایعات بیاساس در مدینه پخش می کنند دست از کار خود بر ندارند، تو را بر ضدّ آنان میشورانیم، سپس جز مدّت کوتاهی نمیتوانند در کنار تو در این شهر بمانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,375,'و از همه جا طرد میشوند، و هر جا یافته شوند گرفته خواهند شد و به سختی به قتل خواهند رسید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,375,'این سنّت خداوند در اقوام پیشین است، و برای سنّت الهی هیچ گونه تغییر نخواهی یافت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,375,'مردم از تو درباره (زمان قیام) قیامت سؤال میکنند، بگو: «علم آن تنها نزد خداست!» و چه میدانی شاید قیامت نزدیک باشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,375,'خداوند کافران را لعن کرده (و از رحمت خود دور داشته) و برای آنان آتش سوزانندهای آماده نموده است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,375,'در حالی که همواره در آن تا ابد میمانند، و ولیّ و یاوری نخواهند یافت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,375,'در آن روز که صورتهای آنان در آتش (دوزخ) دگرگون خواهد شد (از کار خویش پشیمان میشوند و) میگویند: «ای کاش خدا و پیامبر را اطاعت کرده بودیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,375,'و میگویند: «پروردگارا! ما از سران و بزرگان خود اطاعت کردیم و ما را گمراه ساختند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,375,'پروردگارا! آنان را از عذاب، دو چندان ده و آنها را لعن بزرگی فرما!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,375,'ای کسانی که ایمان آوردهاید! همانند کسانی نباشید که موسی را آزار دادند؛ و خداوند او را از آنچه در حق او میگفتند مبرا ساخت؛ و او نزد خداوند، آبرومند (و گرانقدر) بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,375,'ای کسانی که ایمان آوردهاید! تقوای الهی پیشه کنید و سخن حق بگویید...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,375,'تا خدا کارهای شما را اصلاح کند و گناهانتان را بیامرزد؛ و هر کس اطاعت خدا و رسولش کند، به رستگاری (و پیروزی) عظیمی دست یافته است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,375,'ما امانت (تعهّد، تکلیف، و ولایت الهیّه) را بر آسمانها و زمین و کوهها عرضه داشتیم، آنها از حمل آن سر برتافتند، و از آن هراسیدند؛ امّا انسان آن را بر دوش کشید؛ او بسیار ظالم و جاهل بود، (چون قدر این مقام عظیم را نشناخت و به خود ستم کرد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,375,'هدف این بود که خداوند مردان و زنان منافق و مردان و زنان مشرک را (از مؤمنان جدا سازد و آنان را) عذاب کند، و خدا رحمت خود را بر مردان و زنان باایمان بفرستد؛ خداوند همواره آمرزنده و رحیم است!');
+INSERT INTO chapters (id, number, quran_id) VALUES(376,34,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,376,'حمد (و ستایش) مخصوص خداوندی است که تمام آنچه در آسمانها و زمین است از آن اوست؛ و (نیز) حمد (و سپاس) برای اوست در سرای آخرت؛ و او حکیم و آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,376,'آنچه در زمین فرومیرود و آنچه را از آن برمیآید میداند، و (همچنین) آنچه از آسمان نازل میشود و آنچه بر آن بالا میرود؛ و او مهربان و آمرزنده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,376,'کافران گفتند: «قیامت هرگز به سراغ ما نخواهد آمد!» بگو: «آری به پروردگارم سوگند که به سراغ شما خواهد آمد، خداوندی که از غیب آگاه است و به اندازه سنگینی ذرّهای در آسمانها و زمین از علم او دور نخواهد ماند، و نه کوچکتر از آن و نه بزرگتر، مگر اینکه در کتابی آشکار ثبت است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,376,'تا کسانی را که ایمان آورده و کارهای شایسته انجام دادهاند پاداش دهد؛ برای آنان مغفرت و روزی پرارزشی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,376,'و کسانی که سعی در (تکذیب) آیات ما داشتند و گمان کردند میتوانند از حوزه قدرت ما بگریزند، عذابی بد و دردناک خواهند داشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,376,'کسانی که به ایشان علم داده شده، آنچه را از سوی پروردگارت بر تو نازل شده حق می دانند و به راه خداوند عزیز و حمید هدایت میکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,376,'و کافران گفتند: «آیا مردی را به شما نشان دهیم که به شما خبر میدهد هنگامی که (مُردید و) سخت از هم متلاشی شدید، (بار دیگر) آفرینش تازهای خواهید یافت؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,376,'آیا او بر خدا دروغ بسته یا به نوعی جنون گرفتار است؟!» (چنین نیست)، بلکه کسانی که به آخرت ایمان نمیآورند، در عذاب و گمراهی دوری هستند (و نشانه گمراهی آنها همین انکار شدید است).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,376,'آیا به آنچه پیش رو و پشت سر آنان از آسمان و زمین قرار دارد نگاه نکردند (تا به قدرت خدا بر همه چیز واقف شوند)؟! اگر ما بخواهیم آنها را (با یک زمینلرزه) در زمین فرومیبریم، یا قطعههایی از سنگهای آسمانی را بر آنها فرومیریزیم؛ در این نشانهای است (بر قدرت خدا) برای هر بنده توبهکار!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,376,'و ما به داوود از سوی خود فضیلتی بزرگ بخشیدیم؛ (ما به کوهها و پرندگان گفتیم:) ای کوهها و ای پرندگان! با او همآواز شوید و همراه او تسبیح خدا گویید! و آهن را برای او نرم کردیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,376,'(و به او گفتیم:) زرههای کامل و فراخ بساز، و حلقهها را به اندازه و متناسب کن! و عمل صالح بجا آورید که من به آنچه انجام میدهید بینا هستم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,376,'و برای سلیمان باد را مسخّر ساختیم که صبحگاهان مسیر یک ماه را میپیمود و عصرگاهان مسیر یک ماه را؛ و چشمه مس (مذاب) را برای او روان ساختیم؛ و گروهی از جنّ پیش روی او به اذن پروردگارش کار میکردند؛ و هر کدام از آنها که از فرمان ما سرپیچی میکرد، او را عذاب آتش سوزان میچشاندیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,376,'آنها هر چه سلیمان میخواست برایش درست میکردند: معبدها، تمثالها، ظروف بزرگ غذا همانند حوضها، و دیگهای ثابت (که از بزرگی قابل حمل و نقل نبود؛ و به آنان گفتیم:) ای آل داوود! شکر (این همه نعمت را) بجا آورید؛ ولی عده کمی از بندگان من شکرگزارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,376,'(با این همه جلال و شکوه سلیمان) هنگامی که مرگ را بر او مقرّر داشتیم، کسی آنها را از مرگ وی آگاه نساخت مگر جنبنده زمین [= موریانه] که عصای او را میخورد (تا شکست و پیکر سلیمان فرو افتاد)؛ هنگامی که بر زمین افتاد جنّیان فهمیدند که اگر از غیب آگاه بودند در عذاب خوارکننده باقی نمیماندند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,376,'برای قوم «سبا» در محل سکونتشان نشانهای (از قدرت الهی) بود: دو باغ (بزرگ و گسترده) از راست و چپ (رودخانه عظیم با میوههای فراوان؛ و به آنها گفتیم:) از روزی پروردگارتان بخورید و شکر او را بجا آورید؛ شهری است پاک و پاکیزه، و پروردگاری آمرزنده (و مهربان)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,376,'امّا آنها (از خدا) رویگردان شدند، و ما سیل ویرانگر را بر آنان فرستادیم، و دو باغ (پربرکت) شان را به دو باغ (بیارزش) با میوههای تلخ و درختان شوره گز و اندکی درخت سدر مبدّل ساختیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,376,'این کیفر را بخاطر کفرانشان به آنها دادیم؛ و آیا جز کفران کننده را کیفر میدهیم؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,376,'و میان آنها و شهرهایی که برکت داده بودیم، آبادیهای آشکاری قرار دادیم؛ و سفر در میان آنها را بطور متناسب (با فاصله نزدیک) مقرّر داشتیم؛ (و به آنان گفتیم:) شبها و روزها در این آبادیها با ایمنی (کامل) سفر کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,376,'ولی (این ناسپاس مردم) گفتند: «پروردگارا! میان سفرهای ما دوری بیفکن» (تا بینوایان نتوانند دوش به دوش اغنیا سفر کنند! و به این طریق) آنها به خویشتن ستم کردند! و ما آنان را داستانهایی (برای عبرت دیگران) قرار دادیم و جمعیّتشان را متلاشی ساختیم؛ در این ماجرا، نشانههای عبرتی برای هر صابر شکرگزار است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,376,'(آری) بیقین، ابلیس گمان خود را درباره آنها محقّق یافت که همگی از او پیروی کردند جز گروه اندکی از مؤمنان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,376,'او سلطه بر آنان نداشت جز برای اینکه مؤمنان به آخرت را از آنها که در شکّ هستند باز شناسیم؛ و پروردگار تو، نگاهبان همه چیز است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,376,'بگو: «کسانی را که غیر از خدا (معبود خود) میپندارید بخوانید! (آنها هرگز گرهی از کار شما نمیگشایند، چرا که) آنها به اندازه ذرّهای در آسمانها و زمین مالک نیستند، و نه در (خلقت و مالکیّت) آنها شریکند، و نه یاور او (در آفرینش) بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,376,'هیچ شفاعتی نزد او، جز برای کسانی که اذن داده، سودی ندارد! (در آن روز همه در اضطرابند) تا زمانی که اضطراب از دلهای آنان زایل گردد (و فرمان از ناحیه او صادر شود؛ در این هنگام مجرمان به شفیعان) میگویند: «پروردگارتان چه دستوری داده؟» میگویند: «حقّ را (بیان کرد و اجازه شفاعت درباره مستحقّان داد)؛ و اوست بلندمقام و بزرگمرتبه!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,376,'بگو: «چه کسی شما را از آسمانها و زمین روزی میدهد؟» بگو: «اللّه! و ما یا شما بر (طریق) هدایت یا در ضلالت آشکاری هستیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,376,'بگو: «شما از گناهی که ما کردهایم سؤال نخواهید شد، (همان گونه که) ما در برابر اعمال شما مسؤول نیستیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,376,'بگو: «پروردگار ما همه ما را جمع میکند، سپس در میان ما بحق داوری مینماید (و صفوف مجرمان را از نیکوکاران جدا میسازد)، و اوست داور (و جداکننده) آگاه!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,376,'بگو: «کسانی را که بعنوان شریک به او ملحق ساختهاید به من نشان دهید! هرگز چنین نیست! (او شریک و شبیهی ندارد)، بلکه او خداوند عزیز و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,376,'و ما تو را جز برای همه مردم نفرستادیم تا (آنها را به پاداشهای الهی) بشارت دهی و (از عذاب او) بترسانی؛ ولی بیشتر مردم نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,376,'میگویند: «اگر راست میگویید، این وعده (رستاخیز) کی خواهد بود؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,376,'بگو: «وعده شما روزی خواهد بود که نه ساعتی از آن تأخیر میکنید و نه (بر آن) پیشی خواهید گرفت!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,376,'کافران گفتند: «ما هرگز به این قرآن و کتابهای دیگری که پیش از آن بوده ایمان نخواهیم آورد!» اگر ببینی هنگامی که این ستمگران در پیشگاه پروردگارشان (برای حساب و جزا) نگه داشته شدهاند در حالی که هر کدام گناه خود را به گردن دیگری میاندازد (از وضع آنها تعجّب میکنی)! مستضعفان به مستکبران میگویند: «اگر شما نبودید ما مؤمن بودیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,376,'(امّا) مستکبران به مستضعفان پاسخ میدهند: «آیا ما شما را از هدایت بازداشتیم بعد از آنکه به سراغ شما آمد (و آن را بخوبی دریافتید)؟! بلکه شما خود مجرم بودید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,376,'و مستضعفان به مستکبران میگویند: «وسوسههای فریبکارانه شما در شب و روز (مایه گمراهی ما شد)، هنگامی که به ما دستور میدادید که به خداوند کافر شویم و همتایانی برای او قرار دهیم!» و آنان هنگامی که عذاب (الهی) را میبینند پشیمانی خود را پنهان میکنند (تا بیشتر رسوا نشوند)! و ما غل و زنجیرها در گردن کافران می نهیم؛ آیا جز آنچه عمل میکردند به آنها جزا داده میشود؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,376,'و ما در هیچ شهر و دیاری پیامبری بیمدهنده نفرستادیم مگر اینکه مترفین آنها (که مست ناز و نعمت بودند) گفتند: «ما به آنچه فرستاده شدهاید کافریم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,376,'و گفتند: «اموال و اولاد ما (از همه) بیشتر است (و این نشانه علاقه خدا به ماست!)؛ و ما هرگز مجازات نخواهیم شد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,376,'بگو: «پروردگار من روزی را برای هر کس بخواهد وسیع یا تنگ میکند، (این ربطی به قرب در درگاه او ندارد)؛ ولی بیشتر مردم نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,376,'اموال و فرزندانتان هرگز شما را نزد ما مقرّب نمیسازد، جز کسانی که ایمان بیاورند و عمل صالحی انجام دهند که برای آنان پاداش مضاعف در برابر کارهایی است که انجام دادهاند؛ و آنها در غرفههای (بهشتی) در (نهایت) امنیّت خواهند بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,376,'و کسانی که برای انکار و ابطال آیات ما تلاش میکنند و میپندارند از چنگ قدرت ما فرار خواهند کرد، در عذاب (الهی) احضار میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,376,'بگو: «پروردگارم روزی را برای هر کس بخواهد وسعت میبخشد، و برای هر کس بخواهد تنگ (و محدود) میسازد؛ و هر چیزی را (در راه او) انفاق کنید، عوض آن را میدهد (و جای آن را پر میکند)؛ و او بهترین روزیدهندگان است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,376,'(به خاطر بیاور) روزی را که خداوند همه آنان را بر میانگیزد، سپس به فرشتگان میگوید: «آیا اینها شما را پرستش میکردند؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,376,'آنها میگویند: «منزّهی (از اینکه همتایی داشته باشی)! تنها تو ولیّ مائی، نه آنها؛ (آنها ما را پرستش نمیکردند) بلکه جنّ را پرستش مینمودند؛ و اکثرشان به آنها ایمان داشتند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,376,'(آری) امروز هیچ یک از شما نسبت به دیگری مالک سود و زیانی نیست! و به ظالمان میگوییم: «بچشید عذاب آتشی را که تکذیب میکردید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,376,'و هنگامی که آیات روشنگر ما بر آنان خوانده میشود، میگویند: «او فقط مردی است که میخواهد شما را از آنچه پدرانتان میپرستیدند بازدارد!» و میگویند: «این جز دروغ بزرگی که (به خدا) بسته شده چیز دیگری نیست!» و کافران هنگامی که حق به سراغشان آمد گفتند: «این، جز افسونی آشکار نیست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,376,'ما (قبلا) ً چیزی از کتابهای آسمانی را به آنان ندادهایم که آن را بخوانند (و به اتکّای آن سخنان تو را تکذیب کنند)، و پیش از تو هیچ بیمدهنده [= پیامبری] برای آنان نفرستادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,376,'کسانی که پیش از آنان بودند (نیز آیات الهی را) تکذیب کردند، در حالی که اینها به یک دهم آنچه به آنان دادیم نمیرسند! (آری) آنها رسولان مرا تکذیب کردند؛ پس ببین مجازات من (نسبت به آنها) چگونه بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,376,'بگو: «شما را تنها به یک چیز اندرز میدهم، و آن اینکه: دو نفر دو نفر یا یک نفر یک نفر برای خدا قیام کنید، سپس بیندیشید این دوست و همنشین شما [= محمّد] هیچ گونه جنونی ندارد؛ او فقط بیمدهنده شما در برابر عذاب شدید (الهی) است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,376,'بگو: «هر اجر و پاداشی از شما خواستهام برای خود شماست؛ اجر من تنها بر خداوند است، و او بر همه چیز گواه است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,376,'بگو: «پروردگار من حق را (بر دل پیامبران خود) میافکند، که او دانای غیبها (و اسرار نهان) است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,376,'بگو: «حق آمد! و باطل (کاری از آن ساخته نیست و) نمیتواند آغازگر چیزی باشد و نه تجدیدکننده آن!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,376,'بگو: «اگر من گمراه شوم، از ناحیه خود گمراه میشوم؛ و اگر هدایت یابم، به وسیله آنچه پروردگارم به من وحی میکند هدایت مییابم؛ او شنوای نزدیک است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,376,'اگر ببینی هنگامی که فریادشان بلند میشود امّا نمیتوانند (از عذاب الهی) بگریزند، و آنها را از جای نزدیکی (که حتّی انتظارش را ندارند) میگیرند (از درماندگی آنها تعجّب خواهی کرد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,376,'و (در آن حال) میگویند: «به حقّ ایمان آوردیم!»، ولی چگونه میتوانند از فاصله دور به آن دسترسی پیدا کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,376,'آنها پیش از این (که در نهایت آزادی بودند) به آن کافر شدند و دورا دور، و غائبانه (و بدون آگاهی). نسبتهای ناروا میدادند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,376,'(سرانجام) میان آنها و خواستههایشان جدایی افکنده شد، همان گونه که با پیروان (و هممسلکان) آنها از قبل عمل شد، چرا که آنها در شک و تردید بودند!');
+INSERT INTO chapters (id, number, quran_id) VALUES(377,35,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,377,'ستایش مخصوص خداوندی است آفریننده آسمانها و زمین، که فرشتگان را رسولانی قرار داد دارای بالهای دوگانه و سهگانه و چهارگانه، او هر چه بخواهد در آفرینش میافزاید، و او بر هر چیزی تواناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,377,'هر رحمتی را خدا به روی مردم بگشاید، کسی نمیتواند جلو آن را بگیرد؛ و هر چه را امساک کند، کسی غیر از او قادر به فرستادن آن نیست؛ و او عزیز و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,377,'ای مردم! به یاد آورید نعمت خدا را بر شما؛ آیا آفرینندهای جز خدا هست که شما را از آسمان و زمین روزی دهد؟! هیچ معبودی جز او نیست؛ با این حال چگونه به سوی باطل منحرف میشوید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,377,'اگر تو را تکذیب کنند (غم مخور، موضوع تازهای نیست) پیامبران پیش از تو نیز تکذیب شدند؛ و همه کارها بسوی خدا بازمیگردد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,377,'ای مردم! وعده خداوند حقّ است؛ مبادا زندگی دنیا شما را بفریبد، و مبادا شیطان شما را فریب دهد و به (کرم) خدا مغرور سازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,377,'البتّه شیطان دشمن شماست، پس او را دشمن بدانید؛ او فقط حزبش را به این دعوت میکند که اهل آتش سوزان (جهنّم) باشند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,377,'کسانی که راه کفر پیش گرفتند، برای آنان عذابی سخت است؛ و کسانی که ایمان آوردند و کارهای شایسته انجام دادند، آمرزش و پاداش بزرگ از آن آنهاست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,377,'آیا کسی که عمل بدش برای او آراسته شده و آن را خوب و زیبا میبیند (همانند کسی است که واقع را آنچنان که هست مییابد)؟! خداوند هر کس را بخواهد گمراه می سازد و هر کس را بخواهد هدایت میکند؛ پس جانت به خاطر شدّت تأسف بر آنان از دست نرود؛ خداوند به آنچه انجام میدهند داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,377,'خداوند کسی است که بادها را فرستاد تا ابرهایی را به حرکت درآورند؛ سپس ما این ابرها را به سوی زمین مردهای راندیم و به وسیله آن، زمین را پس از مردنش زنده میکنیم؛ رستاخیز نیز همین گونه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,377,'کسی که خواهان عزّت است (باید از خدا بخواهد چرا که) تمام عزّت برای خداست؛ سخنان پاکیزه به سوی او صعود میکند، و عمل صالح را بالا میبرد؛ و آنها که نقشههای بد میکشند، عذاب سختی برای آنهاست و مکر (و تلاش افسادگرانه) آنان نابود میشود (و به جایی نمیرسد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,377,'خداوند شما را از خاکی آفرید، سپس از نطفهای؛ سپس شما را بصورت زوجهایی قرار داد؛ هیچ جنس مادهای باردار نمیشود و وضع حمل نمیکند مگر به علم او، و هیچ کس عمر طولانی نمیکند، یا از عمرش کاسته نمیشود مگر اینکه در کتاب (علم خداوند) ثبت است؛ اینها همه برای خداوند آسان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,377,'دو دریا یکسان نیستند: این یکی دریایی است که آبش گوارا و شیرین و نوشیدنش خوشگوار است، و آن یکی شور و تلخ و گلوگیر؛ (امّا) از هر دو گوشتی تازه می خورید و وسایل زینتی استخراج کرده میپوشید؛ و کشتیها را در آن میبینی که آنها را میشکافند (و به سوی مقصد پیش میروند) تا از فضل خداوند بهرهگیرید، و شاید شکر (نعمتهای او را) بجا آورید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,377,'او شب را در روز داخل میکند و روز را در شب؛ و خورشید و ماه را مسخّر (شما) کرده، هر یک تا سرآمد معیّنی به حرکت خود ادامه میدهد؛ این است خداوند، پروردگار شما؛ حاکمیّت (در سراسر عالم) از آن اوست: و کسانی را که جز او میخوانید (و میپرستید) حتی به اندازه پوست نازک هسته خرما مالک نیستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,377,'اگر آنها را بخوانید صدای شما را نمیشنوند، و اگر بشنوند به شما پاسخ نمیگویند؛ و روز قیامت، شرک (و پرستش) شما را منکر میشوند، و هیچ کس مانند (خداوند آگاه و) خبیر تو را (از حقایق) با خبر نمیسازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,377,'ای مردم شما (همگی) نیازمند به خدائید؛ تنها خداوند است که بینیاز و شایسته هر گونه حمد و ستایش است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,377,'اگر بخواهد شما را میبرد و خلق جدیدی میآورد؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,377,'و این برای خداوند مشکل نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,377,'هیچ گنهکاری بار گناه دیگری را بر دوش نمیکشد؛ و اگر شخص سنگینباری دیگری را برای حمل گناه خود بخواند، چیزی از آن را بر دوش نخواهد گرفت، هر چند از نزدیکان او باشد! تو فقط کسانی را بیممیدهی که از پروردگار خود در پنهانی میترسند و نماز را برپا میدارند؛ و هر کس پاکی (و تقوا) پیشه کند، نتیجه آن به خودش بازمیگردد؛ و بازگشت (همگان) به سوی خداست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,377,'و نابینا و بینا هرگز برابر نیستند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,377,'و نه ظلمتها و روشنایی،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,377,'و نه سایه (آرامبخش) و باد داغ و سوزان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,377,'و هرگز مردگان و زندگان یکسان نیستند! خداوند پیام خود را به گوش هر کس بخواهد میرساند، و تو نمیتوانی سخن خود را به گوش آنان که در گور خفتهاند برسانی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,377,'تو فقط انذارکنندهای، (اگر ایمان نیاورند نگران نباش، وظیفهات را انجام ده.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,377,'ما تو را بحق برای بشارت و انذار فرستادیم؛ و هر امّتی در گذشته انذارکنندهای داشته است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,377,'اگر تو را تکذیب کنند (عجیب نیست)؛ کسانی که پیش از آنان بودند (نیز پیامبران خود را) تکذیب کردند؛ آنها با دلایل روشن و کتابهای پند و موعظه و کتب آسمانی روشنگر (مشتمل بر معارف و احکام) به سراغ آنان آمدند (امّا کوردلان ایمان نیاوردند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,377,'سپس من کافران را (بعد از اتمام حجّت) گرفتم (و سخت مجازات کردم)؛ مجازات من نسبت به آنان چگونه بود؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,377,'آیا ندیدی خداوند از آسمان آبی فرو فرستاد که بوسیله آن میوههایی رنگارنگ (از زمین) خارج ساختیم و از کوهها نیز (به لطف پروردگار) جادههایی آفریده شده سفید و سرخ و به رنگهای مختلف و گاه به رنگ کاملاً سیاه!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,377,'و از انسانها و جنبندگان و چهارپایان انواعی با رنگهای مختلف، (آری) حقیقت چنین است: از میان بندگان خدا، تنها دانشمندان از او میترسند؛ خداوند عزیز و غفور است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,377,'کسانی که کتاب الهی را تلاوت میکنند و نماز را برپا میدارند و از آنچه به آنان روزی دادهایم پنهان و آشکار انفاق میکنند، تجارتی (پرسود و) بیزیان و خالی از کساد را امید دارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,377,'(آنها این اعمال صالح را انجام میدهند) تا خداوند اجر و پاداش کامل به آنها دهد و از فضلش بر آنها بیفزاید که او آمرزنده و شکرگزار است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,377,'و آنچه از کتاب به تو وحی کردیم حق است و تصدیقکننده و هماهنگ با کتب پیش از آن؛ خداوند نسبت به بندگانش خبیر و بیناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,377,'سپس این کتاب (آسمانی) را به گروهی از بندگان برگزیده خود به میراث دادیم؛ (امّا) از میان آنها عدهای بر خود ستم کردند، و عدهای میانه رو بودند، و گروهی به اذن خدا در نیکیها (از همه) پیشی گرفتند، و این، همان فضیلت بزرگ است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,377,'(پاداش آنان) باغهای جاویدان بهشت است که در آن وارد میشوند در حالی که با دستبندهایی از طلا و مروارید آراستهاند، و لباسشان در آنجا حریر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,377,'آنها میگویند: «حمد (و ستایش) برای خداوندی است که اندوه را از ما برطرف ساخت؛ پروردگار ما آمرزنده و سپاسگزار است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,377,'همان کسی که با فضل خود ما را در این سرای اقامت (جاویدان) جای داد که نه در آن رنجی به ما میرسد و نه سستی و واماندگی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,377,'و کسانی که کافر شدند، آتش دوزخ برای آنهاست؛ هرگز فرمان مرگشان صادر نمیشود تا بمیرند، و نه چیزی از عذابش از آنان تخفیف داده میشود؛ این گونه هر کفرانکنندهای را کیفر میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,377,'آنها در دوزخ فریاد میزنند: «پروردگارا! ما را خارج کن تا عمل صالحی انجام دهیم غیر از آنچه انجام میدادیم!» (در پاسخ به آنان گفته میشود:) آیا شما را به اندازهای که هر کس اهل تذکّر است در آن متذکّر میشود عمر ندادیم، و انذارکننده (الهی) به سراغ شما نیامد؟! اکنون بچشید که برای ظالمان هیچ یاوری نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,377,'خداوند از غیب آسمانها و زمین آگاه است، و آنچه را در درون دلهاست میداند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,377,'اوست که شما را جانشینانی در زمین قرار داد؛ هر کس کافر شود، کفر او به زیان خودش خواهد بود، و کافران را کفرشان جز خشم و غضب در نزد پروردگار چیزی نمیافزاید، و (نیز) کفرشان جز زیان و خسران چیزی بر آنها اضافه نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,377,'بگو: «این معبودانی را که جز خدا میخوانید به من نشان دهید چه چیزی از زمین را آفریدهاند، یا اینکه شرکتی در (آفرینش و مالکیّت) آسمانها دارند؟! یا به آنان کتابی (آسمانی) دادهایم و دلیلی از آن برای (شرک) خود دارند؟!» نه هیچ یک از اینها نیست، ظالمان فقط وعدههای دروغین به یکدیگر میدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,377,'خداوند آسمانها و زمین را نگاه میدارد تا از نظام خود منحرف نشوند؛ و هرگاه منحرف گردند، کسی جز او نمیتواند آنها را نگاه دارد، او بردبار و غفور است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,377,'آنان با نهایت تأکید به خدا سوگند خوردند که اگر پیامبری انذارکننده به سراغشان آید، هدایت یافتهترین امّتها خواهند بود؛ امّا چون پیامبری برای آنان آمد، جز فرار و فاصلهگرفتن از (حق) چیزی بر آنها نیفزود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,377,'اینها همه بخاطر استکبار در زمین و نیرنگهای بدشان بود؛ امّا این نیرنگها تنها دامان صاحبانش را میگیرد؛ آیا آنها چیزی جز سنّت پیشینیان و (عذابهای دردناک آنان) را انتظار دارند؟! هرگز برای سنّت خدا تبدیل نخواهی یافت، و هرگز برای سنّت الهی تغییری نمییابی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,377,'آیا آنان در زمین نگشتند تا ببینند عاقبت کسانی که پیش از آنها بودند چگونه بود؟! همانها که از اینان قویتر (و نیرومندتر) بودند؛ نه چیزی در آسمانها و نه چیزی در زمین از حوزه قدرت او بیرون نخواهد رفت؛ او دانا و تواناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,377,'اگر خداوند مردم را به سبب کارهایی که انجام دادهاند مجازات کند، جنبندهای را بر پشت زمین باقی نخواهد گذاشت! ولی (به لطفش) آنها را تا سرآمد معیّنی تأخیر میاندازد (و مهلت اصلاح میدهد) امّا هنگامی که اجل آنان فرا رسد، (خداوند هر کس را به مقتضای عملش جزا میدهد) او نسبت به بندگانش بیناست (و از اعمال و نیّات همه آگاه است)!');
+INSERT INTO chapters (id, number, quran_id) VALUES(378,36,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,378,'یس.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,378,'سوگند به قرآن حکیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,378,'که تو قطعاً از رسولان (خداوند) هستی،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,378,'بر راهی راست (قرار داری)؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,378,'این قرآنی است که از سوی خداوند عزیز و رحیم نازل شده است');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,378,'تا قومی را بیم دهی که پدرانشان انذار نشدند، از این رو آنان غافلند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,378,'فرمان (الهی) درباره بیشتر آنها تحقق یافته، به همین جهت ایمان نمیآورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,378,'ما در گردنهای آنان غلهایی قرار دادیم که تا چانهها ادامه دارد و سرهای آنان را به بالا نگاه داشته است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,378,'و در پیش روی آنان سدّی قرار دادیم، و در پشت سرشان سدّی؛ و چشمانشان را پوشاندهایم، لذا نمیبینند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,378,'برای آنان یکسان است: چه انذارشان کنی یا نکنی، ایمان نمیآورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,378,'تو فقط کسی را انذار میکنی که از این یادآوری (الهی) پیروی کند و از خداوند رحمان در نهان بترسد؛ چنین کسی را به آمرزش و پاداشی پرارزش بشارت ده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,378,'به یقین ما مردگان را زنده میکنیم و آنچه را از پیش فرستادهاند و تمام آثار آنها را می نویسیم؛ و همه چیز را در کتاب آشکار کنندهای برشمردهایم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,378,'و برای آنها، اصحاب قریه (انطاکیه) را مثال بزن هنگامی که فرستادگان خدا به سوی آنان آمدند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,378,'هنگامی که دو نفر از رسولان را بسوی آنها فرستادیم، امّا آنان رسولان (ما) را تکذیب کردند؛ پس برای تقویت آن دو، شخص سوّمی فرستادیم، آنها همگی گفتند: «ما فرستادگان (خدا) به سوی شما هستیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,378,'امّا آنان (در جواب) گفتند: «شما جز بشری همانند ما نیستید، و خداوند رحمان چیزی نازل نکرده، شما فقط دروغ میگویید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,378,'(رسولان ما) گفتند: «پروردگار ما آگاه است که ما قطعاً فرستادگان (او) به سوی شما هستیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,378,'و بر عهده ما چیزی جز ابلاغ آشکار نیست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,378,'آنان گفتند: «ما شما را به فال بد گرفتهایم (و وجود شما را شوم میدانیم)، و اگر (از این سخنان) دست برندارید شما را سنگسار خواهیم کرد و شکنجه دردناکی از ما به شما خواهد رسید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,378,'(رسولان) گفتند: «شومی شما از خودتان است اگر درست بیندیشید، بلکه شما گروهی اسرافکارید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,378,'و مردی (با ایمان) از دورترین نقطه شهر با شتاب فرا رسید، گفت: «ای قوم من! از فرستادگان (خدا) پیروی کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,378,'از کسانی پیروی کنید که از شما مزدی نمیخواهند و خود هدایت یافتهاند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,378,'من چرا کسی را پرستش نکنم که مرا آفریده، و همگی به سوی او بازگشت داده میشوید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,378,'آیا غیر از او معبودانی را انتخاب کنم که اگر خداوند رحمان بخواهد زیانی به من برساند، شفاعت آنها کمترین فایدهای برای من ندارد و مرا (از مجازات او) نجات نخواهند داد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,378,'اگر چنین کنم، من در گمراهی آشکاری خواهم بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,378,'(به همین دلیل) من به پروردگارتان ایمان آوردم؛ پس به سخنان من گوش فرا دهید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,378,'(سرانجام او را شهید کردند و) به او گفته شد: «وارد بهشت شو!» گفت: «ای کاش قوم من میدانستند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,378,'که پروردگارم مرا آمرزیده و از گرامیداشتگان قرار داده است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,378,'و ما بعد از او بر قومش هیچ لشکری از آسمان نفرستادیم، و هرگز سنت ما بر این نبود؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,378,'(بلکه) فقط یک صیحه آسمانی بود، ناگهان همگی خاموش شدند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,378,'افسوس بر این بندگان که هیچ پیامبری برای هدایت آنان نیامد مگر اینکه او را استهزا میکردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,378,'آیا ندیدند چقدر از اقوام پیش از آنان را (بخاطر گناهانشان) هلاک کردیم، آنها هرگز به سوی ایشان بازنمیگردند (و زنده نمیشوند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,378,'و همه آنان (روز قیامت) نزد ما احضار میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,378,'زمین مرده برای آنها آیتی است، ما آن را زنده کردیم و دانههای (غذایی) از آن خارج ساختیم که از آن میخورند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,378,'و در آن باغهایی از نخلها و انگورها قرار دادیم و چشمههایی از آن جاری ساختیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,378,'تا از میوه آن بخورند در حالی که دست آنان هیچ دخالتی در ساختن آن نداشته است! آیا شکر خدا را بجا نمیآورند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,378,'منزه است کسی که تمام زوجها را آفرید، از آنچه زمین میرویاند، و از خودشان، و از آنچه نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,378,'شب (نیز) برای آنها نشانهای است (از عظمت خدا)؛ ما روز را از آن برمیگیریم، ناگهان تاریکی آنان را فرا میگیرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,378,'و خورشید (نیز برای آنها آیتی است) که پیوسته بسوی قرارگاهش در حرکت است؛ این تقدیر خداوند قادر و داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,378,'و برای ماه منزلگاههایی قرار دادیم، (و هنگامی که این منازل را طی کرد) سرانجام بصورت «شاخه کهنه قوسی شکل و زرد رنگ خرما» در میآید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,378,'نه خورشید را سزاست که به ماه رسد، و نه شب بر روز پیشی میگیرد؛ و هر کدام در مسیر خود شناورند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,378,'نشانهای (دیگر از عظمت پروردگار) برای آنان است که ما فرزندانشان را در کشتیهایی پر (از وسایل و بارها) حمل کردیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,378,'و برای آنها مرکبهای دیگری همانند آن آفریدیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,378,'و اگر بخواهیم آنها را غرق میکنیم بطوری که نه فریادرسی داشته باشند و نه نجات داده شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,378,'مگر اینکه رحمت ما شامل حال آنان شود، و تا زمان معیّنی از این زندگی بهره گیرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,378,'و هرگاه به آنها گفته شود: «از آنچه پیش رو و پشت سر شماست [= از عذابهای الهی] بترسید تا مشمول رحمت الهی شوید!» (اعتنا نمیکنند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,378,'و هیچ آیهای از آیات پروردگارشان برای آنها نمیآید مگر اینکه از آن رویگردان می شوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,378,'و هنگامی که به آنان گفته شود: «از آنچه خدا به شما روزی کرده انفاق کنید!»، کافران به مؤمنان میگویند: «آیا ما کسی را اطعام کنیم که اگر خدا میخواست او را اطعام میکرد؟! (پس خدا خواسته است او گرسنه باشد)، شما فقط در گمراهی آشکارید»!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,378,'آنها میگویند: «اگر راست میگویید، این وعده (قیامت) کی خواهد بود؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,378,'(امّا) جز این انتظار نمیکشند که یک صیحه عظیم (آسمانی) آنها را فراگیرد، در حالی که مشغول جدال (در امور دنیا) هستند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,378,'(چنان غافلگیر میشوند که حتّی) نمیتوانند وصیّتی کنند یا به سوی خانواده خود بازگردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,378,'(بار دیگر) در «صور» دمیده میشود، ناگهان آنها از قبرها، شتابان به سوی (دادگاه) پروردگارشان میروند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,378,'میگویند: «ای وای بر ما! چه کسی ما را از خوابگاهمان برانگیخت؟! (آری) این همان است که خداوند رحمان وعده داده، و فرستادگان (او) راست گفتند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,378,'صیحه واحدی بیش نیست، (فریادی عظیم برمیخیزد) ناگهان همگی نزد ما احضار میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,378,'(و به آنها گفته میشود:) امروز به هیچ کس ذرّهای ستم نمیشود، و جز آنچه را عمل میکردید جزا داده نمیشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,378,'بهشتیان، امروز به نعمتهای خدا مشغول و مسرورند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,378,'آنها و همسرانشان در سایههای (قصرها و درختان بهشتی) بر تختها تکیه زدهاند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,378,'برای آنها در بهشت میوه بسیار لذّتبخشی است، و هر چه بخواهند در اختیار آنان خواهد بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,378,'بر آنها سلام (و درود الهی) است؛ این سخنی است از سوی پروردگاری مهربان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,378,'(و به آنها میگویند:) جدا شوید امروز ای گنهکاران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,378,'آیا با شما عهد نکردم ای فرزندان آدم که شیطان را نپرستید، که او برای شما دشمن آشکاری است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,378,'و اینکه مرا بپرستید که راه مستقیم این است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,378,'او گروه زیادی از شما را گمراه کرد، آیا اندیشه نکردید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,378,'این همان دوزخی است که به شما وعده داده میشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,378,'امروز وارد آن شوید و به خاطر کفری که داشتید به آتش آن بسوزید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,378,'امروز بر دهانشان مُهر مینهیم، و دستهایشان با ما سخن میگویند و پاهایشان کارهایی را که انجام میدادند شهادت میدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,378,'و اگر بخواهیم چشمانشان را محو کنیم؛ سپس برای عبور از راه، میخواهند بر یکدیگر پیشی بگیرند، امّا چگونه میتوانند ببینند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,378,'و اگر بخواهیم آنها را در جای خود مسخ میکنیم (و به مجسمههایی بیروح مبدّل میسازیم) تا نتوانند راه خود را ادامه دهند یا به عقب برگردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,378,'هر کس را طول عمر دهیم، در آفرینش واژگونهاش میکنیم (و به ناتوانی کودکی باز میگردانیم)؛ آیا اندیشه نمیکنند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,378,'ما هرگز شعر به او [= پیامبر] نیاموختیم، و شایسته او نیست (شاعر باشد)؛ این (کتاب آسمانی) فقط ذکر و قرآن مبین است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,378,'تا افرادی را که زندهاند بیم دهد (و بر کافران اتمام حجّت شود) و فرمان عذاب بر آنان مسلّم گردد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,378,'آیا ندیدند که از آنچه با قدرت خود به عمل آوردهایم چهارپایانی برای آنان آفریدیم که آنان مالک آن هستند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,378,'و آنها را رام ایشان ساختیم، هم مرکب آنان از آن است و هم از آن تغذیه میکنند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,378,'و برای آنان بهرههای دیگری در آن (حیوانات) است و نوشیدنیهائی گوارا؛ آیا با این حال شکرگزاری نمیکنند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,378,'آنان غیر از خدا معبودانی برای خویش برگزیدند به این امید که یاری شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,378,'ولی آنها قادر به یاری ایشان نیستند، و این (عبادتکنندگان در قیامت) لشکری برای آنها خواهند بود که در آتش دوزخ احضار میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,378,'پس سخنانشان تو را غمگین نسازد، ما آنچه را پنهان میدارند و آنچه را آشکار میکنند میدانیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,378,'آیا انسان نمیداند که ما او را از نطفهای بیارزش آفریدیم؟! و او (چنان صاحب قدرت و شعور و نطق شد که) به مخاصمه آشکار (با ما) برخاست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,378,'و برای ما مثالی زد و آفرینش خود را فراموش کرد و گفت: «چه کسی این استخوانها را زنده میکند در حالی که پوسیده است؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,378,'بگو: «همان کسی آن را زنده میکند که نخستین بار آن را آفرید؛ و او به هر مخلوقی داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,378,'همان کسی که برای شما از درخت سبز، آتش آفرید و شما بوسیله آن، آتش میافروزید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,378,'آیا کسی که آسمانها و زمین را آفرید، نمیتواند همانند آنان [= انسانهای خاک شده] را بیافریند؟! آری (میتواند)، و او آفریدگار داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,378,'فرمان او چنین است که هرگاه چیزی را اراده کند، تنها به آن میگوید: «موجود باش!»، آن نیز بیدرنگ موجود میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,378,'پس منزّه است خداوندی که مالکیّت و حاکمیّت همه چیز در دست اوست؛ و شما را به سوی او بازمیگردانند!');
+INSERT INTO chapters (id, number, quran_id) VALUES(379,37,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,379,'سوگند به (فرشتگان) صفکشیده (و منظّم)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,379,'و به نهیکنندگان و (بازدارندگان)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,379,'و تلاوتکنندگان پیاپی آیات الهی...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,379,'که معبود شما یگانه است؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,379,'پروردگار آسمانها و زمین و آنچه میان آنهاست، و پروردگار مشرقها!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,379,'ما آسمان نزدیک [= پایین] را با ستارگان آراستیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,379,'تا آن را از هر شیطان خبیثی حفظ کنیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,379,'آنها نمیتوانند به (سخنان) فرشتگان عالم بالا گوش فرادهند، (و هرگاه چنین کنند) از هر سو هدف قرارمیگیرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,379,'آنها به شدّت به عقب رانده میشوند؛ و برای آنان مجازاتی دائم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,379,'مگر آنها که در لحظهای کوتاه برای استراق سمع به آسمان نزدیک شوند، که «شهاب ثاقب» آنها را تعقیب میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,379,'از آنان بپرس: «آیا آفرینش (و معاد) آنان سختتر است یا آفرینش فرشتگان (و آسمانها و زمین)؟! ما آنان را از گل چسبندهای آفریدیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,379,'تو از انکارشان تعجّب میکنی، ولی آنها مسخره میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,379,'و هنگامی که به آنان تذکّر داده شود، هرگز متذکّر نمیشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,379,'و هنگامی که معجزهای را ببینند، دیگران را نیز به استهزا دعوت میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,379,'و میگویند: «این فقط سحری آشکار است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,379,'آیا هنگامی که ما مُردیم و به خاک و استخوان مبدّل شدیم، بار دیگر برانگیخته خواهیم شد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,379,'یا پدران نخستین ما (بازمیگردند)؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,379,'بگو: «آری، همه شما زنده میشوید در حالی که خوار و کوچک خواهید بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,379,'تنها یک صیحه عظیم واقع میشود، ناگهان همه (از قبرها برمیخیزند و) نگاه میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,379,'و میگویند: «ای وای بر ما، این روز جزاست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,379,'(آری) این همان روز جدایی (حقّ از باطل) است که شما آن را تکذیب میکردید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,379,'(در این هنگام به فرشتگان دستور داده میشود:) ظالمان و همردیفانشان و آنچه را میپرستیدند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,379,'(آری آنچه را) جز خدا میپرستیدند جمع کنید و بسوی راه دوزخ هدایتشان کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,379,'آنها را نگهدارید که باید بازپرسی شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,379,'شما را چه شده که از هم یاری نمیطلبید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,379,'ولی آنان در آن روز تسلیم قدرت خداوندند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,379,'(و در این حال) رو به یکدیگر کرده و از هم میپرسند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,379,'گروهی (میگویند: «شما رهبران گمراهی بودید که به ظاهر) از طریق خیرخواهی و نیکی وارد شدید امّا جز فریب چیزی در کارتان نبود)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,379,'(آنها در جواب) میگویند: «شما خودتان اهل ایمان نبودید (تقصیر ما چیست)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,379,'ما هیچ گونه سلطهای بر شما نداشتیم، بلکه شما خود قومی طغیانگر بودید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,379,'اکنون فرمان پروردگارمان بر همه ما مسلّم شده، و همگی از عذاب او میچشیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,379,'ما شما را گمراه کردیم، همان گونه که خود گمراه بودیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,379,'(آری) همه آنها [= پیشوایان و پیروان گمراه] در آن روز در عذاب الهی مشترکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,379,'ما این گونه با مجرمان رفتار میکنیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,379,'چرا که وقتی به آنها گفته میشد: «معبودی جز خدا وجود ندارد»، تکبّر و سرکشی میکردند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,379,'و پیوسته میگفتند: «آیا ما معبودان خود را بخاطر شاعری دیوانه رها کنیم؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,379,'چنین نیست، او حقّ را آورده و پیامبران پیشین را تصدیق کرده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,379,'اما شما (مستکبران کوردل) بطور مسلّم عذاب دردناک (الهی) را خواهید چشید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,379,'و جز به آنچه انجام میدادید کیفر داده نمیشوید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,379,'جز بندگان مخلص خدا (که از این کیفرها برکنارند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,379,'برای آنان [= بندگان مخلص] روزی معیّن و ویژهای است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,379,'میوهها (ی گوناگون پر ارزش)، و آنها گرامی داشته میشوند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,379,'در باغهای پر نعمت بهشت؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,379,'در حالی که بر تختها رو به روی یکدیگر تکیه زدهاند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,379,'و گرداگردشان قدحهای لبریز از شراب طهور را میگردانند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,379,'شرابی سفید و درخشنده، و لذّتبخش برای نوشندگان؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,379,'شرابی که نه در آن مایه تباهی عقل است و نه از آن مست میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,379,'و نزد آنها همسرانی زیبا چشم است که جز به شوهران خود عشق نمیورزند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,379,'گویی از (لطافت و سفیدی) همچون تخممرغهایی هستند که (در زیر بال و پر مرغ) پنهان مانده (و دست انسانی هرگز آن را لمس نکرده است)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,379,'(در حالی که آنها غرق گفتگو هستند) بعضی رو به بعضی دیگر کرده میپرسند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,379,'کسی از آنها میگوید: «من همنشینی داشتم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,379,'که پیوسته میگفت: آیا (به راستی) تو این سخن را باور کردهای...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,379,'که وقتی ما مُردیم و به خاک و استخوان مبدّل شدیم، (بار دیگر) زنده میشویم و جزا داده خواهیم شد؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,379,'(سپس) میگوید: «آیا شما میتوانید از او خبری بگیرید؟»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,379,'اینجاست که نگاهی میکند، ناگهان او را در میان دوزخ میبیند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,379,'میگوید: «به خدا سوگند نزدیک بود مرا (نیز) به هلاکت بکشانی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,379,'و اگر نعمت پروردگارم نبود، من نیز از احضارشدگان (در دوزخ) بودم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,379,'(سپس به یاران خود میگوید: ای دوستان!) آیا ما هرگز نمیمیریم (و در بهشت جاودانه خواهیم بود)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,379,'و جز همان مرگ اول، مرگی به سراغ ما نخواهد آمد، و ما هرگز عذاب نخواهیم شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,379,'راستی این همان پیروزی بزرگ است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,379,'آری، برای مثل این، باید عملکنندگان عمل کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,379,'آیا این (نعمتهای جاویدان بهشتی) بهتر است یا درخت (نفرتانگیز) زقّوم؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,379,'ما آن را مایه درد و رنج ظالمان قرار دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,379,'آن درختی است که از قعر جهنّم میروید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,379,'شکوفه آن مانند سرهای شیاطین است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,379,'آنها [= مجرمان] از آن میخورند و شکمها را از آن پر میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,379,'سپس روی آن آب داغ متعفّنی مینوشند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,379,'سپس بازگشت آنها به سوی جهنّم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,379,'چرا که آنها پدران خود را گمراه یافتند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,379,'با این حال به سرعت بدنبال آنان کشانده میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,379,'و قبل از آنها بیشتر پیشینیان (نیز) گمراه شدند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,379,'ما در میان آنها انذارکنندگانی فرستادیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,379,'ولی بنگر عاقبت انذارشوندگان چگونه بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,379,'مگر بندگان مخلص خدا!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,379,'و نوح، ما را خواند (و ما دعای او را اجابت کردیم)؛ و چه خوب اجابت کنندهای هستیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,379,'و او و خاندانش را از اندوه بزرگ رهایی بخشیدیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,379,'و فرزندانش را همان بازماندگان (روی زمین) قرار دادیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,379,'و نام نیک او را در میان امّتهای بعد باقی نهادیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,379,'سلام بر نوح در میان جهانیان باد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,379,'ما این گونه نیکوکاران را پاداش میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,379,'چرا که او از بندگان باایمان ما بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,379,'سپس دیگران [= دشمنان او] را غرق کردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,379,'و از پیروان او ابراهیم بود؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,379,'(به خاطر بیاور) هنگامی را که با قلب سلیم به پیشگاه پروردگارش آمد؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,379,'هنگامی که به پدر و قومش گفت: «اینها چیست که میپرستید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,379,'آیا غیر از خدا به سراغ این معبودان دروغین میروید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,379,'شما درباره پروردگار عالمیان چه گمان میبرید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,379,'(سپس) نگاهی به ستارگان افکند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,379,'و گفت: «من بیمارم (و با شما به مراسم جشن نمیآیم)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,379,'آنها از او روی برتافته و به او پشت کردند (و بسرعت دور شدند.)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,379,'(او وارد بتخانه شد) مخفیانه نگاهی به معبودانشان کرد و از روی تمسخر گفت: «چرا (از این غذاها) نمیخورید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,379,'(اصلاً) چرا سخن نمیگویید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,379,'سپس بسوی آنها رفت و ضربهای محکم با دست راست بر پیکر آنها فرود آورد (و جز بت بزرگ، همه را درهم شکست).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,379,'آنها با سرعت به او روی آوردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,379,'گفت: «آیا چیزی را میپرستید که با دست خود میتراشید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,379,'با اینکه خداوند هم شما را آفریده و هم بتهایی که میسازید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(97,4,379,'(بتپرستان) گفتند: «بنای مرتفعی برای او بسازید و او را در جهنّمی از آتش بیفکنید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(98,4,379,'آنها طرحی برای نابودی ابراهیم ریخته بودند، ولی ما آنان را پست و مغلوب ساختیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(99,4,379,'(او از این مهلکه بسلامت بیرون آمد) و گفت: «من به سوی پروردگارم میروم، او مرا هدایت خواهد کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(100,4,379,'پروردگارا! به من از صالحان [= فرزندان صالح] ببخش!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(101,4,379,'ما او [= ابراهیم] را به نوجوانی بردبار و صبور بشارت دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(102,4,379,'هنگامی که با او به مقام سعی و کوشش رسید، گفت: «پسرم! من در خواب دیدم که تو را ذبح میکنم، نظر تو چیست؟» گفت «پدرم! هر چه دستور داری اجرا کن، به خواست خدا مرا از صابران خواهی یافت!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(103,4,379,'هنگامی که هر دو تسلیم شدند و ابراهیم جبین او را بر خاک نهاد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(104,4,379,'او را ندا دادیم که: «ای ابراهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(105,4,379,'آن رؤیا را تحقق بخشیدی (و به مأموریت خود عمل کردی)!» ما این گونه، نیکوکاران را جزا میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(106,4,379,'این مسلّماً همان امتحان آشکار است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(107,4,379,'ما ذبح عظیمی را فدای او کردیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(108,4,379,'و نام نیک او را در امّتهای بعد باقی نهادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(109,4,379,'سلام بر ابراهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(110,4,379,'این گونه نیکوکاران را پاداش میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(111,4,379,'او از بندگان باایمان ما است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(112,4,379,'ما او را به اسحاق -پیامبری از شایستگان- بشارت دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(113,4,379,'ما به او و اسحاق برکت دادیم؛ و از دودمان آن دو، افرادی بودند نیکوکار و افرادی آشکارا به خود ستم کردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(114,4,379,'ما به موسی و هارون نعمت بخشیدیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(115,4,379,'و آن دو و قومشان را از اندوه بزرگ نجات دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(116,4,379,'و آنها را یاری کردیم تا بر دشمنان خود پیروز شدند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(117,4,379,'ما به آن دو، کتاب روشنگر دادیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(118,4,379,'و آن دو را به راه راست هدایت نمودیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(119,4,379,'و نام نیکشان را در اقوام بعد باقی گذاردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(120,4,379,'سلام بر موسی و هارون!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(121,4,379,'ما این گونه نیکوکاران را پاداش میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(122,4,379,'آن دو از بندگان مؤمن ما بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(123,4,379,'و الیاس از رسولان (ما) بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(124,4,379,'به خاطر بیاور هنگامی را که به قومش گفت: «آیا تقوا پیشه نمیکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(125,4,379,'آیا بت «بعل» را میخوانید و بهترین آفریدگارها را رها میسازید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(126,4,379,'خدایی که پروردگار شما و پروردگار نیاکان شماست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(127,4,379,'امّا آنها او را تکذیب کردند؛ ولی به یقین همگی (در دادگاه عدل الهی) احضار میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(128,4,379,'مگر بندگان مخلص خدا!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(129,4,379,'ما نام نیک او را در میان امّتهای بعد باقی گذاردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(130,4,379,'سلام بر الیاسین!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(131,4,379,'ما این گونه نیکوکاران را پاداش میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(132,4,379,'او از بندگان مؤمن ما است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(133,4,379,'و لوط از رسولان (ما) است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(134,4,379,'و به خاطر بیاور زمانی را که او و خاندانش را همگی نجات دادیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(135,4,379,'مگر پیرزنی که از بازماندگان بود (و به سرنوشت آنان گرفتار شد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(136,4,379,'سپس بقیه را نابود کردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(137,4,379,'و شما پیوسته صبحگاهان از کنار (ویرانههای شهرهای) آنها میگذرید...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(138,4,379,'و (همچنین) شبانگاه؛ آیا نمیاندیشید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(139,4,379,'و یونس از رسولان (ما) است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(140,4,379,'به خاطر بیاور زمانی را که به سوی کشتی پر (از جمعیّت و بار) فرار کرد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(141,4,379,'و با آنها قرعه افکند، (و قرعه به نام او افتاد و) مغلوب شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(142,4,379,'(او را به دریا افکندند) و ماهی عظیمی او را بلعید، در حالی که مستحقّ سرزنش بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(143,4,379,'و اگر او از تسبیحکنندگان نبود...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(144,4,379,'تا روز قیامت در شکم ماهی میماند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(145,4,379,'(به هر حال ما او را رهایی بخشیدیم و) او را در یک سرزمین خشک خالی از گیاه افکندیم در حالی که بیمار بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(146,4,379,'و بوته کدوئی بر او رویاندیم (تا در سایه برگهای پهن و مرطوبش آرامش یابد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(147,4,379,'و او را به سوی جمعیّت یکصد هزار نفری -یا بیشتر- فرستادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(148,4,379,'آنها ایمان آوردند، از این رو تا مدّت معلومی آنان را از مواهب زندگی بهرهمند ساختیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(149,4,379,'از آنان بپرس: آیا پروردگارت دخترانی دارد و پسران از آن آنهاست؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(150,4,379,'آیا ما فرشتگان را مؤنث آفریدیم و آنها ناظر بودند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(151,4,379,'بدانید آنها با این تهمت بزرگشان میگویند:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(152,4,379,'«خداوند فرزند آورده!» ولی آنها به یقین دروغ میگویند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(153,4,379,'آیا دختران را بر پسران ترجیح داده است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(154,4,379,'شما را چه شده است؟! چگونه حکم میکنید؟! (هیچ میفهمید چه میگویید؟!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(155,4,379,'آیا متذکّر نمیشوید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(156,4,379,'یا شما دلیل روشنی در این باره دارید؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(157,4,379,'کتابتان را بیاورید اگر راست میگویید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(158,4,379,'آنها [= مشرکان] میان او [= خداوند] و جنّ، (خویشاوندی و) نسبتی قائل شدند؛ در حالی که جنّیان بخوبی میدانند که این بتپرستان در دادگاه الهی احضار میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(159,4,379,'منزّه است خداوند از آنچه توصیف میکنند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(160,4,379,'مگر بندگان مخلص خدا!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(161,4,379,'شما و آنچه را پرستش میکنید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(162,4,379,'هرگز نمیتوانید کسی را (با آن) فریب دهید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(163,4,379,'مگر آنها که در آتش دوزخ وارد میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(164,4,379,'و هیچ یک از ما نیست جز آنکه مقام معلومی دارد؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(165,4,379,'و ما همگی (برای اطاعت فرمان خداوند) به صف ایستادهایم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(166,4,379,'و ما همه تسبیحگوی او هستیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(167,4,379,'آنها پیوسته میگفتند:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(168,4,379,'«اگر یکی از کتابهای پیشینیان نزد ما بود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(169,4,379,'به یقین، ما بندگان مخلص خدا بودیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(170,4,379,'(امّا هنگامی که این کتاب بزرگ آسمانی بر آنها نازل شد،) به آن کافر شدند؛ ولی بزودی (نتیجه کار خود را) خواهند دانست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(171,4,379,'وعده قطعی ما برای بندگان فرستاده ما از پیش مسلّم شده...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(172,4,379,'که آنان یاری شدگانند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(173,4,379,'و لشکر ما پیروزند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(174,4,379,'از آنها [= کافران] روی بگردان تا زمان معیّنی (که فرمان جهاد فرارسد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(175,4,379,'و وضع آنها را بنگر (چه بیمحتواست) اما بزودی (نتیجه اعمال خود را) میبینند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(176,4,379,'آیا آنها برای عذاب ما شتاب میکنند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(177,4,379,'امّا هنگامی که عذاب ما در آستانه خانههایشان فرود آید، انذارشدگان صبحگاه بدی خواهند داشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(178,4,379,'از آنان روی بگردان تا زمان معیّنی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(179,4,379,'و وضع کارشان را ببین؛ آنها نیز به زودی (نتیجه اعمال خود را) میبینند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(180,4,379,'منزّه است پروردگار تو، پروردگار عزّت (و قدرت) از آنچه آنان توصیف میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(181,4,379,'و سلام بر رسولان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(182,4,379,'حمد و ستایش مخصوص خداوندی است که پروردگار جهانیان است!');
+INSERT INTO chapters (id, number, quran_id) VALUES(380,38,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,380,'ص، سوگند به قرآنی که دارای ذکر است (که این کتاب، معجزه الهی است).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,380,'ولی کافران گرفتار غرور اختلافند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,380,'چه بسیار اقوامی را که پیش از آنها هلاک کردیم؛ و به هنگام نزول عذاب فریاد میزدند (و کمک میخواستند) ولی وقت نجات گذشته بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,380,'آنها تعجّب کردند که پیامبر بیمدهندهای از میان آنان به سویشان آمده؛ و کافران گفتند: این ساحر بسیار دروغگویی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,380,'آیا او بجای اینهمه خدایان، خدای واحدی قرار داده؟! این براستی چیز عجیبی است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,380,'سرکردگان آنها بیرون آمدند و گفتند: «بروید و خدایانتان را محکم بچسبید، این چیزی است که خواستهاند (شما را گمراه کنند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,380,'ما هرگز چنین چیزی در آیین دیگری نشنیدهایم؛ این تنها یک آئین ساختگی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,380,'آیا از میان همه ما، قرآن تنها بر او [= محمّد] نازل شده؟!» آنها در حقیقت در اصل وحی من تردید دارند، بلکه آنان هنوز عذاب الهی را نچشیدهاند (که این چنین گستاخانه سخن میگویند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,380,'مگر خزاین رحمت پروردگار توانا و بخشندهات نزد آنهاست (تا به هر کس میل دارند بدهند)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,380,'یا اینکه مالکیّت و حاکمیّت آسمانها و زمین و آنچه میان این دو است از آن آنهاست؟! (اگر چنین است) با هر وسیله ممکن به آسمانها بروند (و جلو نزول وحی را بر قلب پاک محمّد بگیرند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,380,'(آری) اینها لشکر کوچک شکستخوردهای از احزابند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,380,'پیش از آنان قوم نوح و عاد و فرعون صاحب قدرت (پیامبران ما را) تکذیب کردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,380,'و (نیز) قوم ثمود و لوط و اصحاب الأیکه [= قوم شعیب]، اینها احزابی بودند (که به تکذیب پیامبران برخاستند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,380,'هر یک (از این گروهها) رسولان را تکذیب کردند، و عذاب الهی درباره آنان تحقق یافت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,380,'اینها (با این اعمالشان) جز یک صیحه آسمانی را انتظار نمیکشند که هیچ مهلت و بازگشتی برای آن وجود ندارد (و همگی را نابود میسازد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,380,'آنها (از روی خیرهسری) گفتند: «پروردگارا! بهره ما را از عذاب هر چه زودتر قبل از روز حساب به ما ده!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,380,'در برابر آنچه میگویند شکیبا باش، و به خاطر بیاور بنده ما داوود صاحب قدرت را، که او بسیار توبهکننده بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,380,'ما کوهها را مسخّر او ساختیم که هر شامگاه و صبحگاه با او تسبیح میگفتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,380,'پرندگان را نیز دسته جمعی مسخّر او کردیم (تا همراه او تسبیح خدا گویند)؛ و همه اینها بازگشتکننده به سوی او بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,380,'و حکومت او را استحکام بخشیدیم، (هم) دانش به او دادیم و (هم) داوری عادلانه!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,380,'آیا داستان شاکیان هنگامی که از محراب (داوود) بالا رفتند به تو رسیده است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,380,'در آن هنگام که (بیمقدمه) بر او وارد شدند و او از دیدن آنها وحشت کرد؛ گفتند: «نترس، دو نفر شاکی هستیم که یکی از ما بر دیگری ستم کرده؛ اکنون در میان ما بحق داوری کن و ستم روا مدار و ما را به راه راست هدایت کن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,380,'این برادر من است؛ و او نود و نه میش دارد و من یکی بیش ندارم امّا او اصرار میکند که: این یکی را هم به من واگذار؛ و در سخن بر من غلبه کرده است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,380,'(داوود) گفت: «مسلّماً او با درخواست یک میش تو برای افزودن آن به میشهایش، بر تو ستم نموده؛ و بسیاری از شریکان (و دوستان) به یکدیگر ستم میکنند، مگر کسانی که ایمان آورده و اعمال صالح انجام دادهاند؛ امّا عدّه آنان کم است!» داوود دانست که ما او را (با این ماجرا) آزمودهایم، از این رو از پروردگارش طلب آمرزش نمود و به سجده افتاد و توبه کرد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,380,'ما این عمل را بر او بخشیدیم؛ و او نزد ما دارای مقامی والا و سرانجامی نیکوست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,380,'ای داوود! ما تو را خلیفه و (نماینده خود) در زمین قرار دادیم؛ پس در میان مردم بحق داوری کن، و از هوای نفس پیروی مکن که تو را از راه خدا منحرف سازد؛ کسانی که از راه خدا گمراه شوند، عذاب شدیدی بخاطر فراموش کردن روز حساب دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,380,'ما آسمان و زمین و آنچه را میان آنهاست بیهوده نیافریدیم؛ این گمان کافران است؛ وای بر کافران از آتش (دوزخ)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,380,'آیا کسانی را که ایمان آورده و کارهای شایسته انجام دادهاند همچون مفسدان در زمین قرار میدهیم، یا پرهیزگاران را همچون فاجران؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,380,'این کتابی است پربرکت که بر تو نازل کردهایم تا در آیات آن تدبّر کنند و خردمندان متذکّر شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,380,'ما سلیمان را به داوود بخشیدیم؛ چه بنده خوبی! زیرا همواره به سوی خدا بازگشت میکرد (و به یاد او بود)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,380,'به خاطر بیاور هنگامی را که عصرگاهان اسبان چابک تندرو را بر او عرضه داشتند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,380,'گفت: «من این اسبان را بخاطر پروردگارم دوست دارم (و میخواهم از آنها در جهاد استفاده کنم»، او همچنان به آنها نگاه میکرد) تا از دیدگانش پنهان شدند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,380,'(آنها به قدری جالب بودند که گفت:) بار دیگر آنها را نزد من بازگردانید! و دست به ساقها و گردنهای آنها کشید (و آنها را نوازش داد).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,380,'ما سلیمان را آزمودیم و بر تخت او جسدی افکندیم؛ سپس او به درگاه خداوند توبه کرد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,380,'گفت: پروردگارا! مرا ببخش و حکومتی به من عطا کن که بعد از من سزاوار هیچ کس نباشد، که تو بسیار بخشندهای!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,380,'پس ما باد را مسخّر او ساختیم تا به فرمانش بنرمی حرکت کند و به هر جا او میخواهد برود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,380,'و شیاطین را مسخّر او کردیم، هر بنّا و غوّاصی از آنها را!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,380,'و گروه دیگری (از شیاطین) را در غل و زنجیر (تحت سلطه او) قرار دادیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,380,'(و به او گفتیم:) این عطای ما است، به هر کس میخواهی (و صلاح میبینی) ببخش، و از هر کس میخواهی امساک کن، و حسابی بر تو نیست (تو امین هستی)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,380,'و برای او [= سلیمان] نزد ما مقامی ارجمند و سرانجامی نیکوست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,380,'و به خاطر بیاور بنده ما ایّوب را، هنگامی که پروردگارش را خواند (و گفت: پروردگارا!) شیطان مرا به رنج و عذاب افکنده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,380,'(به او گفتیم:) پای خود را بر زمین بکوب! این چشمه آبی خنک برای شستشو و نوشیدن است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,380,'و خانوادهاش را به او بخشیدیم، و همانند آنها را بر آنان افزودیم، تا رحمتی از سوی ما باشد و تذکّری برای اندیشمندان.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,380,'(و به او گفتیم:) بستهای از ساقههای گندم (یا مانند آن) را برگیر و با آن (همسرت را) بزن و سوگند خود را مشکن! ما او را شکیبا یافتیم؛ چه بنده خوبی که بسیار بازگشتکننده (به سوی خدا) بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,380,'و به خاطر بیاور بندگان ما ابراهیم و اسحاق و یعقوب را، صاحبان دستها (ی نیرومند) و چشمها (ی بینا)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,380,'ما آنها را با خلوص ویژهای خالص کردیم، و آن یادآوری سرای آخرت بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,380,'و آنها نزد ما از برگزیدگان و نیکانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,380,'و به خاطر بیاور «اسماعیل» و «الیسع» و «ذا الکفل» را که همه از نیکان بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,380,'این یک یادآوری است، و برای پرهیزکاران فرجام نیکویی است:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,380,'باغهای جاویدان بهشتی که درهایش به روی آنان گشوده است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,380,'در حالی که در آن بر تختها تکیه کردهاند و میوههای بسیار و نوشیدنیها در اختیار آنان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,380,'و نزد آنان همسرانی است که تنها چشم به شوهرانشان دوختهاند، و همسن و سالند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,380,'این همان است که برای روز حساب به شما وعده داده میشود (وعدهای تخلّف ناپذیر)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,380,'این روزی ما است که هرگز آن را پایانی نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,380,'این (پاداش پرهیزگاران است)، و برای طغیانگران بدترین محل بازگشت است:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,380,'دوزخ، که در آن وارد میشوند؛ و چه بستر بدی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,380,'این نوشابه «حمیم» و «غسّاق» است [= دو مایع سوزان و تیره رنگ] که باید از آن بچشند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,380,'و جز اینها کیفرهای دیگری همانند آن دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,380,'(به آنان گفته میشود:) این گروهی است که همراه شما وارد دوزخ میشوند (اینها همان سران گمراهیند)؛ خوشامد بر آنها مباد، همگی در آتش خواهند سوخت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,380,'آنها (به رؤسای خود) میگویند: «بلکه خوشامد بر شما مباد که این عذاب را شما برای ما فراهم ساختید! چه بد قرارگاهی است اینجا!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,380,'(سپس) میگویند: «پروردگارا! هر کس این عذاب را برای ما فراهم ساخته، عذابی مضاعف در آتش بر او بیفزا!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,380,'آنها میگویند: «چرا مردانی را که ما از اشرار میشمردیم (در اینجا، در آتش دوزخ) نمیبینیم؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,380,'آیا ما آنان را به مسخره گرفتیم یا (به اندازهای حقیرند که) چشمها آنها را نمیبیند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,380,'این یک واقعیت است گفتگوهای خصمانه دوزخیان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,380,'بگو: «من تنها یک بیمدهندهام؛ و هیچ معبودی جز خداوند یگانه قهّار نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,380,'پروردگار آسمانها و زمین و آنچه میان آن دو است، پروردگار عزیز و غفّار!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,380,'بگو: «این خبری بزرگ است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,380,'که شما از آن رویگردانید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,380,'من از ملأ اعلی (و فرشتگان عالم بالا) به هنگامی که (درباره آفرینش آدم) مخاصمه میکردند خبر ندارم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,380,'تنها چیزی که به من وحی میشود این است که من انذارکننده آشکاری هستم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,380,'و به خاطر بیاور هنگامی را که پروردگارت به فرشتگان گفت: «من بشری را از گل میآفرینم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,380,'هنگامی که آن را نظام بخشیدم و از روح خود در آن دمیدم، برای او به سجده افتید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,380,'در آن هنگام همه فرشتگان سجده کردند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,380,'جز ابلیس که تکبّر ورزید و از کافران بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,380,'گفت: «ای ابلیس! چه چیز مانع تو شد که بر مخلوقی که با قدرت خود او را آفریدم سجده کنی؟! آیا تکبّر کردی یا از برترینها بودی؟! (برتر از اینکه فرمان سجود به تو داده شود!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,380,'گفت: «من از او بهترم؛ مرا از آتش آفریدهای و او را از گل!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,380,'فرمود: «از آسمانها (و صفوف ملائکه) خارج شو، که تو رانده درگاه منی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,380,'و مسلّماً لعنت من بر تو تا روز قیامت خواهد بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,380,'گفت: «پروردگارا! مرا تا روزی که انسانها برانگیخته میشوند مهلت ده!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,380,'فرمود: «تو از مهلت دادهشدگانی،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,380,'ولی تا روز و زمان معیّن!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,380,'گفت: «به عزّتت سوگند، همه آنان را گمراه خواهم کرد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,380,'مگر بندگان خالص تو، از میان آنها!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,380,'فرمود: «به حق سوگند، و حق میگویم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,380,'که جهنّم را از تو و هر کدام از آنان که از تو پیروی کند، پر خواهم کرد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,380,'(ای پیامبر!) بگو: «من برای دعوت نبوّت هیچ پاداشی از شما نمیطلبم، و من از متکلّفین نیستم! (سخنانم روشن و همراه با دلیل است!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,380,'این (قرآن) تذکّری برای همه جهانیان است؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,380,'و خبر آن را بعد از مدّتی میشنوید!');
+INSERT INTO chapters (id, number, quran_id) VALUES(381,39,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,381,'این کتابی است که از سوی خداوند عزیز و حکیم نازل شده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,381,'ما این کتاب را بحقّ بر تو نازل کردیم؛ پس خدا را پرستش کن و دین خود را برای او خالص گردان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,381,'آگاه باشید که دین خالص از آن خداست، و آنها که غیر خدا را اولیای خود قرار دادند و دلیلشان این بود که: «اینها را نمیپرستیم مگر بخاطر اینکه ما را به خداوند نزدیک کنند»، خداوند روز قیامت میان آنان در آنچه اختلاف داشتند داوری میکند؛ خداوند آن کس را که دروغگو و کفرانکننده است هرگز هدایت نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,381,'اگر (بفرض محال) خدا میخواست فرزندی انتخاب کند، از میان مخلوقاتش آنچه را میخواست برمیگزید؛ منزّه است (از اینکه فرزندی داشته باشد)! او خداوند یکتای پیروز است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,381,'آسمانها و زمین را بحقّ آفرید؛ شب را بر روز میپیچد و روز را بر شب؛ و خورشید و ماه را مسخّر فرمان خویش قرار داد؛ هر کدام تا سرآمد معیّنی به حرکت خود ادامه میدهند؛ آگاه باشید که او قادر و آمرزنده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,381,'او شما را از یک نفس آفرید، و همسرش را از (باقیمانده گِل) او خلق کرد؛ و برای شما هشت زوج از چهارپایان ایجاد کرد؛ او شما را در شکم مادرانتان آفرینشی بعد از آفرینش دیگر، در میان تاریکیهای سه گانه، میبخشد! این است خداوند، پروردگار شما که حکومت (عالم هستی) از آن اوست؛ هیچ معبودی جز او نیست؛ پس چگونه از راه حق منحرف میشوید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,381,'اگر کفران کنید، خداوند از شما بینیاز است و هرگز کفران را برای بندگانش نمی پسندد؛ و اگر شکر او را بجا آورید آن را برای شما میپسندد! و هیچ گنهکاری گناه دیگری را بر دوش نمیکشد! سپس بازگشت همه شما به سوی پروردگارتان است، و شما را از آنچه انجام میدادید آگاه میسازد؛ چرا که او به آنچه در سینههاست آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,381,'هنگامی که انسان را زیانی رسد، پروردگار خود را میخواند و بسوی او باز می گردد؛ امّا هنگامی که نعمتی از خود به او عطا کند، آنچه را به خاطر آن قبلاً خدا را می خواند از یاد میبرد و برای خداوند همتایانی قرارمیدهد تا مردم را از راه او منحرف سازد؛ بگو: «چند روزی از کفرت بهرهگیر که از دوزخیانی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,381,'(آیا چنین کسی با ارزش است) یا کسی که در ساعات شب به عبادت مشغول است و در حال سجده و قیام، از عذاب آخرت میترسد و به رحمت پروردگارش امیدوار است؟! بگو: «آیا کسانی که میدانند با کسانی که نمیدانند یکسانند؟! تنها خردمندان متذکّر میشوند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,381,'بگو: «ای بندگان من که ایمان آوردهاید! از (مخالفت) پروردگارتان بپرهیزید! برای کسانی که در این دنیا نیکی کردهاند پاداش نیکی است! و زمین خدا وسیع است، (اگر تحت فشار سران کفر بودید مهاجرت کنید) که صابران اجر و پاداش خود را بیحساب دریافت میدارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,381,'بگو: «من مأمورم که خدا را پرستش کنم در حالی که دینم را برای او خالص کرده باشم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,381,'و مأمورم که نخستین مسلمان باشم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,381,'بگو: «من اگر نافرمانی پروردگارم کنم، از عذاب روز بزرگ (قیامت) میترسم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,381,'بگو: «من تنها خدا را میپرستم در حالی که دینم را برای او خالص میکنم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,381,'شما هر چه را جز او میخواهید بپرستید!» بگو: «زیانکاران واقعی آنانند که سرمایه وجود خویش و بستگانشان را در روز قیامت از دست دادهاند! آگاه باشید زیان آشکار همین است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,381,'برای آنان از بالای سرشان سایبانهایی از آتش، و در زیر پایشان نیز سایبانهایی از آتش است؛ این چیزی است که خداوند با آن بندگانش را میترساند! ای بندگان من! از نافرمانی من بپرهیزید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,381,'و کسانی که از عبادت طاغوت پرهیز کردند و به سوی خداوند بازگشتند، بشارت از آن آنهاست؛ پس بندگان مرا بشارت ده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,381,'همان کسانی که سخنان را میشنوند و از نیکوترین آنها پیروی میکنند؛ آنان کسانی هستند که خدا هدایتشان کرده، و آنها خردمندانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,381,'آیا تو میتوانی کسی را که فرمان عذاب درباره او قطعی شده رهایی بخشی؟! آیا تو میتوانی کسی را که در درون آتش است برگیری و نجات دهی؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,381,'ولی آنها که تقوای الهی پیشه کردند، غرفههایی در بهشت دارند که بر فراز آنها غرفههای دیگری بنا شده و از زیر آنها نهرها جاری است این وعده الهی است، و خداوند در وعده خود تخلّف نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,381,'آیا ندیدی که خداوند از آسمان آبی فرستاد و آن را بصورت چشمههایی در زمین وارد نمود، سپس با آن زراعتی را خارج میسازد که رنگهای مختلف دارد؛ بعد آن گیاه خشک میشود، بگونهای که آن را زرد و بیروح میبینی؛ سپس آن را در هم میشکند و خرد میکند؛ در این مثال تذکّری است برای خردمندان (از ناپایداری دنیا)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,381,'آیا کسی که خدا سینهاش را برای اسلام گشاده است و بر فراز مرکبی از نور الهی قرار گرفته (همچون کوردلان گمراه است؟!) وای بر آنان که قلبهایی سخت در برابر ذکر خدا دارند! آنها در گمراهی آشکاری هستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,381,'خداوند بهترین سخن را نازل کرده، کتابی که آیاتش (در لطف و زیبایی و عمق و محتوا) همانند یکدیگر است؛ آیاتی مکرّر دارد (با تکراری شوقانگیز) که از شنیدن آیاتش لرزه بر اندام کسانی که از پروردگارشان میترسند میافتد؛ سپس برون و درونشان نرم و متوجّه ذکر خدا میشود؛ این هدایت الهی است که هر کس را بخواهد با آن راهنمایی میکند؛ و هر کس را خداوند گمراه سازد، راهنمایی برای او نخواهد بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,381,'آیا کسی که با صورت خود عذاب دردناک (الهی) را در روز قیامت دور میسازد (همانند کسی است که هرگز آتش دوزخ به او نمیرسد)؟! و به ظالمان گفته می شود: «بچشید آنچه را به دست میآوردید (و انجام میدادید)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,381,'کسانی که قبل از آنها بودند نیز (آیات ما را) تکذیب نمودند، و عذاب (الهی) از جایی که فکر نمیکردند به سراغشان آمد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,381,'پس خداوند خواری را در زندگی این دنیا به آنها چشانید، و عذاب آخرت شدیدتر است اگر میدانستند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,381,'ما برای مردم در این قرآن از هر نوع مثَلی زدیم، شاید متذکّر شوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,381,'قرآنی است فصیح و خالی از هر گونه کجی و نادرستی، شاید آنان پرهیزگاری پیشه کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,381,'خداوند مثالی زده است: مردی را که مملوک شریکانی است که درباره او پیوسته با هم به مشاجره مشغولند، و مردی که تنها تسلیم یک نفر است؛ آیا این دو یکسانند؟! حمد، مخصوص خداست، ولی بیشتر آنان نمیدانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,381,'تو میمیری و آنها نیز خواهند مرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,381,'سپس شما روز قیامت نزد پروردگارتان مخاصمه میکنید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,381,'پس چه کسی ستمکارتر است از آن کسی که بر خدا دروغ ببندد و سخن راست را هنگامی که به سراغ او آمده تکذیب کند؟! آیا در جهنّم جایگاهی برای کافران نیست؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,381,'امّا کسی که سخن راست بیاورد و کسی که آن را تصدیق کند، آنان پرهیزگارانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,381,'آنچه بخواهند نزد پروردگارشان برای آنان موجود است؛ و این است جزای نیکوکاران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,381,'تا خداوند بدترین اعمالی را که انجام دادهاند (در سایه ایمان و صداقت آنها) بیامرزد، و آنها را به بهترین اعمالی که انجام میدادند پاداش دهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,381,'آیا خداوند برای (نجات و دفاع از) بندهاش کافی نیست؟! امّا آنها تو را از غیر او میترسانند. و هر کس را خداوند گمراه کند، هیچ هدایتکنندهای ندارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,381,'و هر کس را خدا هدایت کند، هیچ گمراهکنندهای نخواهد داشت آیا خداوند توانا و دارای مجازات نیست؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,381,'و اگر از آنها بپرسی: «چه کسی آسمانها و زمین را آفریده؟» حتماً میگویند: «خدا!» بگو: «آیا هیچ درباره معبودانی که غیر از خدا میخوانید اندیشه میکنید که اگر خدا زیانی برای من بخواهد، آیا آنها میتوانند گزند او را برطرف سازند؟! و یا اگر رحمتی برای من بخواهد، آیا آنها میتوانند جلو رحمت او را بگیرند؟!» بگو: «خدا مرا کافی است؛ و همه متوکّلان تنها بر او توکّل میکنند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,381,'بگو: «ای قوم من! شما هر چه در توان دارید انجام دهید، من نیز به وظیفه خود عمل میکنم؛ امّا بزودی خواهید دانست...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,381,'چه کسی عذاب خوارکنندهای (در دنیا) به سراغش میآید، و (سپس) عذابی جاویدان (در آخرت) بر او وارد میگردد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,381,'ما این کتاب (آسمانی) را برای مردم بحق بر تو نازل کردیم؛ هر کس هدایت را پذیرد به نفع خود اوست؛ و هر کس گمراهی را برگزیند، تنها به زیان خود گمراه میگردد؛ و تو مأمور اجبار آنها به هدایت نیستی.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,381,'خداوند ارواح را به هنگام مرگ قبض میکند، و ارواحی را که نمردهاند نیز به هنگام خواب میگیرد؛ سپس ارواح کسانی که فرمان مرگشان را صادر کرده نگه میدارد و ارواح دیگری را (که باید زنده بمانند) بازمیگرداند تا سرآمدی معیّن؛ در این امر نشانههای روشنی است برای کسانی که اندیشه میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,381,'آیا آنان غیر از خدا شفیعانی گرفتهاند؟! به آنان بگو: «آیا (از آنها شفاعت میطلبید) هر چند مالک چیزی نباشند و درک و شعوری برای آنها نباشد؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,381,'بگو: «تمام شفاعت از آن خداست، (زیرا) حاکمیّت آسمانها و زمین از آن اوست و سپس همه شما را به سوی او بازمیگردانند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,381,'هنگامی که خداوند به یگانگی یاد میشود، دلهای کسانی که به آخرت ایمان ندارند مشمئزّ (و متنفّر) میگردد؛ امّا هنگامی که از معبودهای دیگر یاد میشود، آنان خوشحال میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,381,'بگو: «خداوندا! ای آفریننده آسمانها و زمین، و آگاه از اسرار نهان و آشکار، تو در میان بندگانت در آنچه اختلاف داشتند داوری خواهی کرد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,381,'اگر ستمکاران تمام آنچه را روی زمین است مالک باشند و همانند آن بر آن افزوده شود، حاضرند همه را فدا کنند تا از عذاب شدید روز قیامت رهایی یابند؛ و از سوی خدا برای آنها اموری ظاهر میشود که هرگز گمان نمیکردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,381,'در آن روز اعمال بدی را که انجام دادهاند برای آنها آشکار میشود، و آنچه را استهزا میکردند بر آنها واقع میگردد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,381,'هنگامی که انسان را زیانی رسد، ما را (برای حلّ مشکلش) میخواند؛ سپس هنگامی که از جانب خود به او نعمتی دهیم، میگوید: «این نعمت را بخاطر کاردانی خودم به من دادهاند»؛ ولی این وسیله آزمایش (آنها) است، امّا بیشترشان نمیدانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,381,'این سخن را کسانی که قبل از آنها بودند نیز گفتند، ولی آنچه را به دست میآوردند برای آنها سودی نداشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,381,'سپس بدیهای اعمالشان به آنها رسید؛ و ظالمان این گروه [= اهل مکّه] نیز بزودی گرفتار بدیهای اعمالی که انجام دادهاند خواهند شد، و هرگز نمیتوانند از چنگال عذاب الهی بگریزند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,381,'آیا آنها ندانستند که خداوند روزی را برای هر کس بخواهد گسترده یا تنگ میسازد؟! در این، آیات و نشانههایی است برای گروهی که ایمان میآورند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,381,'بگو: «ای بندگان من که بر خود اسراف و ستم کردهاید! از رحمت خداوند نومید نشوید که خدا همه گناهان را میآمرزد، زیرا او بسیار آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,381,'و به درگاه پروردگارتان بازگردید و در برابر او تسلیم شوید، پیش از آنکه عذاب به سراغ شما آید، سپس از سوی هیچ کس یاری نشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,381,'و از بهترین دستورهائی که از سوی پروردگارتان بر شما نازل شده پیروی کنید پیش از آنکه عذاب (الهی) ناگهان به سراغ شما آید در حالی که از آن خبر ندارید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,381,'(این دستورها برای آن است که) مبادا کسی روز قیامت بگوید: «افسوس بر من از کوتاهیهایی که در اطاعت فرمان خدا کردم و از مسخرهکنندگان (آیات او) بودم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,381,'یا بگوید: «اگر خداوند مرا هدایت میکرد، از پرهیزگاران بودم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,381,'یا هنگامی که عذاب را میبیند بگوید: «ای کاش بار دیگر (به دنیا) بازمیگشتم و از نیکوکاران بودم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,381,'آری، آیات من به سراغ تو آمد، امّا آن را تکذیب کردی و تکبّر نمودی و از کافران بودی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,381,'و روز قیامت کسانی را که بر خدا دروغ بستند میبینی که صورتهایشان سیاه است؛ آیا در جهنّم جایگاهی برای متکبّران نیست؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,381,'و خداوند کسانی را که تقوا پیشه کردند با رستگاری رهایی میبخشد؛ هیچ بدی به آنان نمیرسد و هرگز غمگین نخواهند شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,381,'خداوند آفریدگار همه چیز است و حافظ و ناظر بر همه اشیا است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,381,'کلیدهای آسمانها و زمین از آن اوست؛ و کسانی که به آیات خداوند کافر شدند زیانکارانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,381,'بگو: «آیا به من دستور میدهید که غیر خدا را بپرستم ای جاهلان؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,381,'به تو و همه پیامبران پیشین وحی شده که اگر مشرک شوی، تمام اعمالت تباه میشود و از زیانکاران خواهی بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,381,'بلکه تنها خداوند را عبادت کن و از شکرگزاران باش!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,381,'آنها خدا را آن گونه که شایسته است نشناختند، در حالی که تمام زمین در روز قیامت در قبضه اوست و آسمانها پیچیده در دست او؛ خداوند منزّه و بلندمقام است از شریکیهایی که برای او میپندارند');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,381,'و در «صور» دمیده میشود، پس همه کسانی که در آسمانها و زمینند میمیرند، مگر کسانی که خدا بخواهد؛ سپس بار دیگر در «صور» دمیده میشود، ناگهان همگی به پا میخیزند و در انتظار (حساب و جزا) هستند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,381,'و زمین (در آن روز) به نور پروردگارش روشن میشود، و نامههای اعمال را پیش مینهند و پیامبران و گواهان را حاضر میسازند، و میان آنها بحق داوری میشود و به آنان ستم نخواهد شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,381,'و به هر کس آنچه انجام داده است بیکم و کاست داده میشود؛ و او نسبت به آنچه انجام میدادند از همه آگاهتر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,381,'و کسانی که کافر شدند گروه گروه به سوی جهنّم رانده میشوند؛ وقتی به دوزخ میرسند، درهای آن گشوده میشود و نگهبانان دوزخ به آنها میگویند: «آیا رسولانی از میان شما به سویتان نیامدند که آیات پروردگارتان را برای شما بخوانند و از ملاقات این روز شما را بر حذر دارند؟!» میگویند: «آری، (پیامبران آمدند و آیات الهی را بر ما خواندند، و ما مخالفت کردیم!) ولی فرمان عذاب الهی بر کافران مسلّم شده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,381,'به آنان گفته میشود: «از درهای جهنّم وارد شوید، جاودانه در آن بمانید؛ چه بد جایگاهی است جایگاه متکبّران!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,381,'و کسانی که تقوای الهی پیشه کردند گروه گروه به سوی بهشت برده میشوند؛ هنگامی که به آن میرسند درهای بهشت گشوده میشود و نگهبانان به آنان میگویند: «سلام بر شما! گوارایتان باد این نعمتها! داخل بهشت شوید و جاودانه بمانید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,381,'آنها میگویند: «حمد و ستایش مخصوص خداوندی است که به وعده خویش درباره ما وفا کرد و زمین (بهشت) را میراث ما قرار داد که هر جا را بخواهیم منزلگاه خود قرار دهیم؛ چه نیکوست پاداش عمل کنندگان!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,381,'(در آن روز) فرشتگان را میبینی که بر گرد عرش خدا حلقه زدهاند و با ستایش پروردگارشان تسبیح میگویند؛ و در میان بندگان بحق داوری میشود؛ و (سرانجام) گفته خواهد شد: «حمد مخصوص خدا پروردگار جهانیان است!»');
+INSERT INTO chapters (id, number, quran_id) VALUES(382,40,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,382,'حم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,382,'این کتابی است که از سوی خداوند قادر و دانا نازل شده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,382,'خداوندی که آمرزنده گناه، پذیرنده توبه، دارای مجازات سخت، و صاحب نعمت فراوان است؛ هیچ معبودی جز او نیست؛ و بازگشت (همه شما) تنها بسوی اوست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,382,'تنها کسانی در آیات ما مجادله میکنند که (از روی عناد) کافر شدهاند؛ پس مبادا رفت و آمد آنان در شهرها (و قدرتنمایی آنان) تو را بفریبد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,382,'پیش از آنها قوم نوح و اقوامی که بعد از ایشان بودند (پیامبرانشان را) تکذیب کردند؛ و هر امّتی در پی آن بود که توطئه کند و پیامبرش را بگیرد (و آزار دهد)، و برای محو حق به مجادله باطل دست زدند؛ امّا من آنها را گرفتم (و سخت مجازات کردم)؛ ببین که مجازات من چگونه بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,382,'و این گونه فرمان پروردگارت درباره کسانی که کافر شدند مسلّم شده که آنها همه اهل آتشند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,382,'فرشتگانی که حاملان عرشند و آنها که گرداگرد آن (طواف میکنند) تسبیح و حمد پروردگارشان را میگویند و به او ایمان دارند و برای مؤمنان استغفار میکنند (و می گویند:) پروردگارا! رحمت و علم تو همه چیز را فراگرفته است؛ پس کسانی را که توبه کرده و راه تو را پیروی میکنند بیامرز، و آنان را از عذاب دوزخ نگاه دار!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,382,'پروردگارا! آنها را در باغهای جاویدان بهشت که به آنها وعده فرمودهای وارد کن، همچنین از پدران و همسران و فرزندانشان هر کدام که صالح بودند، که تو توانا و حکیمی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,382,'و آنان را از بدیها نگاه دار، و هر کس را که در آن روز از بدیها نگاه داری، مشمول رحمتت ساختهای؛ و این است همان رستگاری عظیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,382,'کسانی را که کافر شدند روز قیامت صدا میزنند که عداوت و خشم خداوند نسبت به شما از عداوت و خشم خودتان نسبت به خودتان بیشتر است، چرا که بسوی ایمان دعوت میشدید، ولی انکار میکردید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,382,'آنها میگویند: «پروردگارا! ما را دو بار میراندی و دو بار زنده کردی؛ اکنون به گناهان خود معترفیم؛ آیا راهی برای خارج شدن (از دوزخ) وجود دارد؟»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,382,'این بخاطر آن است که وقتی خداوند به یگانگی خوانده میشد انکار میکردید، و اگر برای او همتایی میپنداشتند ایمان میآوردید؛ اکنون داوری مخصوص خداوند بلندمرتبه و بزرگ است (و شما را مطابق عدل خود کیفر میدهد).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,382,'او کسی است که آیات خود را به شما نشان میدهد و از آسمان برای شما روزی (با ارزشی) میفرستد؛ تنها کسانی متذکّر این حقایق میشوند که بسوی خدا باز میگردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,382,'(تنها) خدا را بخوانید و دین خود را برای او خالص کنید، هرچند کافران ناخشنود باشند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,382,'او درجات (بندگان صالح) را بالا میبرد، او صاحب عرش است، روح (مقدّس) را به فرمانش بر هر کس از بندگانش که بخواهد القاء میکند تا (مردم را) از روز ملاقات [= روز رستاخیز] بیم دهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,382,'روزی که همه آنان آشکار میشوند و چیزی از آنها بر خدا پنهان نخواهد ماند؛ (و گفته میشود:) حکومت امروز برای کیست؟ برای خداوند یکتای قهّار است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,382,'امروز هر کس در برابر کاری که انجام داده است پاداش داده میشود؛ امروز هیچ ظلمی نیست؛ خداوند سریع الحساب است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,382,'و آنها را از روز نزدیک بترسان، هنگامی که از شدّت وحشت دلها به گلوگاه میرسد و تمامی وجود آنها مملوّ از اندوه میگردد؛ برای ستمکاران دوستی وجود ندارد، و نه شفاعت کنندهای که شفاعتش پذیرفته شود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,382,'او چشمهایی را که به خیانت میگردد و آنچه را سینهها پنهان میدارند، میداند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,382,'خداوند بحقّ داوری میکند، و معبودهایی را که غیر از او میخوانند هیچ گونه داوری ندارند؛ خداوند شنوا و بیناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,382,'آیا آنها روی زمین سیر نکردند تا ببینند عاقبت کسانی که پیش از آنان بودند چگونه بود؟! آنها در قدرت و ایجاد آثار مهمّ در زمین از اینها برتر بودند؛ ولی خداوند ایشان را به گناهانشان گرفت، و در برابر عذاب او مدافعی نداشتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,382,'این برای آن بود که پیامبرانشان پیوسته با دلایل روشن به سراغشان میآمدند، ولی آنها انکار میکردند؛ خداوند هم آنان را گرفت (و کیفر داد) که او قوّی و مجازاتش شدید است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,382,'ما موسی را با آیات خود و دلیل روشن فرستادیم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,382,'بسوی فرعون و هامان و قارون؛ ولی آنها گفتند: «او ساحری بسیار دروغگو است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,382,'و هنگامی که حقّ را از سوی ما برای آنها آورد، گفتند: «پسران کسانی را که با موسی ایمان آوردهاند بکشید و زنانشان را (برای اسارت و خدمت) زنده بگذارید!» امّا نقشه کافران جز در گمراهی نیست (و نقش بر آب میشود).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,382,'و فرعون گفت: «بگذارید موسی را بکشم، و او پروردگارش را بخواند (تا نجاتش دهد)! زیرا من میترسم که آیین شما را دگرگون سازد، و یا در این سرزمین فساد بر پا کند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,382,'موسی گفت: «من به پروردگارم و پروردگار شما پناه میبرم از هر متکبّری که به روز حساب ایمان نمیآورد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,382,'و مرد مؤمنی از آل فرعون که ایمان خود را پنهان میداشت گفت: «آیا میخواهید مردی را بکشید بخاطر اینکه میگوید: پروردگار من «اللّه» است، در حالی که دلایل روشنی از سوی پروردگارتان برای شما آورده است؟! اگر دروغگو باشد، دروغش دامن خودش را خواهد گرفت؛ و اگر راستگو باشد، (لااقل) بعضی از عذابهایی را که وعده میدهد به شما خواهد رسید؛ خداوند کسی را که اسرافکار و بسیار دروغگوست هدایت نمیکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,382,'ای قوم من! امروز حکومت از آن شماست و در این سرزمین پیروزید؛ اگر عذاب خدا به سراغ ما آید، چه کسی ما را یاری خواهد کرد؟!» فرعون گفت: «من جز آنچه را معتقدم به شما ارائه نمیدهم، و شما را جز به راه صحیح راهنمایی نمیکنم! (دستور، همان قتل موسی است!)»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,382,'آن مرد باایمان گفت: «ای قوم من! من بر شما از روزی همانند روز (عذاب) اقوام پیشین بیمناکم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,382,'و از عادتی همچون عادت قوم نوح و عاد و ثمود و کسانی که بعد از آنان بودند (از شرک و کفر و طغیان) میترسم؛ و خداوند ظلم و ستمی بر بندگانش نمیخواهد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,382,'ای قوم من! من بر شما از روزی که مردم یکدیگر را صدا میزنند (و از هم یاری میطلبند و صدایشان به جایی نمیرسد) بیمناکم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,382,'همان روزی که روی میگردانید و فرار میکنید؛ امّا هیچ پناهگاهی در برابر عذاب خداوند برای شما نیست؛ و هر کس را خداوند (بخاطر اعمالش) گمراه سازد، هدایتکنندهای برای او نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,382,'پیش از این یوسف دلایل روشن برای شما آورد، ولی شما همچنان در آنچه او برای شما آورده بود تردید داشتید؛ تا زمانی که از دنیا رفت، گفتید: هرگز خداوند بعد از او پیامبری مبعوث نخواهد کرد! این گونه خداوند هر اسرافکار تردیدکنندهای را گمراه میسازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,382,'همانها که در آیات خدا بیآنکه دلیلی برایشان آمده باشد به مجادله برمیخیزند؛ (این کارشان) خشم عظیمی نزد خداوند و نزد آنان که ایمان آوردهاند به بار میآورد؛ این گونه خداوند بر دل هر متکبّر جبّاری مُهر مینهد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,382,'فرعون گفت: «ای هامان! برای من بنای مرتفعی بساز، شاید به وسایلی دست یابم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,382,'وسایل (صعود به) آسمانها تا از خدای موسی آگاه شوم؛ هر چند گمان میکنم او دروغگو باشد!» اینچنین اعمال بد فرعون در نظرش آراسته جلوه کرد و از راه حق باز داشته شد؛ و توطئه فرعون (و همفکران او) جز به نابودی نمیانجامد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,382,'کسی که (از قوم فرعون) ایمان آورده بود گفت: «ای قوم من! از من پیروی کنید تا شما را به راه درست هدایت کنم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,382,'ای قوم من! این زندگی دنیا، تنها متاع زودگذری است؛ و آخرت سرای همیشگی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,382,'هر کس بدی کند، جز بمانند آن کیفر داده نمیشود؛ ولی هر کس کار شایستهای انجام دهد -خواه مرد یا زن- در حالی که مؤمن باشد آنها وارد بهشت میشوند و در آن روزی بیحسابی به آنها داده خواهد شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,382,'ای قوم من! چرا من شما را به سوی نجات دعوت میکنم، امّا شما مرا بسوی آتش فرا میخوانید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,382,'مرا دعوت میکنید که به خداوند یگانه کافر شوم و همتایی که به آن علم ندارم برای او قرار دهم، در حالی که من شما را بسوی خداوند عزیز غفّار دعوت میکنم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,382,'قطعاً آنچه مرا بسوی آن میخوانید، نه دعوت (و حاکمیّتی) در دنیا دارد و نه در آخرت؛ و تنها بازگشت ما در قیامت بسوی خداست؛ و مسرفان اهل آتشند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,382,'و بزودی آنچه را به شما میگویم به خاطر خواهید آورد! من کار خود را به خدا واگذارم که خداوند نسبت به بندگانش بیناست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,382,'خداوند او را از نقشههای سوء آنها نگه داشت، و عذاب شدید بر آل فرعون وارد شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,382,'عذاب آنها آتش است که هر صبح و شام بر آن عرضه میشوند؛ و روزی که قیامت برپا شود (میفرماید:) «آل فرعون را در سختترین عذابها وارد کنید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,382,'به خاطر بیاور هنگامی را که در آتش دوزخ با هم محاجّه میکنند؛ ضعیفان به مستکبران میگویند: «ما پیرو شما بودیم، آیا شما (امروز) سهمی از آتش را بجای ما پذیرا میشوید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,382,'مستکبران میگویند: «ما همگی در آن هستیم، زیرا خداوند در میان بندگانش (بعدالت) حکم کرده است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,382,'و آنها که در آتشند به مأموران دوزخ میگویند: «از پروردگارتان بخواهید یک روز عذاب را از ما بردارد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,382,'آنها میگویند: «آیا پیامبران شما دلایل روشن برایتان نیاوردند؟!» میگویند: «آری!» آنها میگویند: «پس هر چه میخواهید (خدا را) بخوانید؛ ولی دعای کافران (به جایی نمیرسد و) جز در ضلالت نیست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,382,'ما به یقین پیامبران خود و کسانی را که ایمان آوردهاند، در زندگی دنیا و (در آخرت) روزی که گواهان به پا میخیزند یاری میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,382,'روزی که عذرخواهی ظالمان سودی به حالشان نمیبخشد؛ و لعنت خدا برای آنها، و خانه (و جایگاه) بد نیز برای آنان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,382,'و ما به موسی هدایت بخشیدیم، و بنی اسرائیل را وارثان کتاب (تورات) قرار دادیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,382,'کتابی که مایه هدایت و تذکّر برای صاحبان عقل بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,382,'پس (ای پیامبر!) صبر و شکیبایی پیشه کن که وعده خدا حقّ است، و برای گناهت استغفار کن، و هر صبح و شام تسبیح و حمد پروردگارت را بجا آور!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,382,'کسانی که در آیات خداوند بدون دلیلی که برای آنها آمده باشد ستیزهجویی میکنند، در سینههایشان فقط تکبّر (و غرور) است، و هرگز به خواسته خود نخواهند رسید، پس به خدا پناه بر که او شنوا و بیناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,382,'آفرینش آسمانها و زمین از آفرینش انسانها مهمتر است، ولی بیشتر مردم نمیدانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,382,'هرگز نابینا و بینا یکسان نیستند؛ همچنین کسانی که ایمان آورده، و اعمال صالح انجام دادهاند با بدکاران یکسان نخواهند بود؛ امّا کمتر متذکّر میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,382,'روز قیامت به یقین آمدنی است، و شکّی در آن نیست؛ ولی اکثر مردم ایمان نمی آورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,382,'پروردگار شما گفته است: «مرا بخوانید تا (دعای) شما را بپذیرم! کسانی که از عبادت من تکبّر میورزند به زودی با ذلّت وارد دوزخ میشوند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,382,'خداوند کسی است که شب را برای شما آفرید تا در آن بیاسایید، و روز را روشنیبخش قرار داد؛ خداوند نسبت به مردم صاحب فضل و کرم است؛ ولی بیشتر مردم شکرگزاری نمیکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,382,'این است خداوند، پروردگار شما که آفریننده همه چیز است؛ هیچ معبودی جز او نیست؛ با این حال چگونه از راه حق منحرف میشوید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,382,'اینچنین کسانی که آیات خدا را انکار میکردند (از راه راست) منحرف میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,382,'خداوند کسی است که زمین را برای شما جایگاه امن و آرامش قرار داد و آسمان را همچون سقفی (بالای سرتان)؛ و شما را صورتگری کرد، و صورتتان را نیکو آفرید؛ و از چیزهایی پاکیزه به شما روزی داد؛ این است خداوند پروردگار شما! جاوید و پربرکت است خداوندی که پروردگار عالمیان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,382,'زنده (واقعی) اوست؛ معبودی جز او نیست؛ پس او را بخوانید در حالی که دین خود را برای او خالص کردهاید! ستایش مخصوص خداوندی است که پروردگار جهانیان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,382,'بگو: «من نهی شدهام از اینکه معبودهایی را که شما غیر از خدا میخوانید بپرستم، چون دلایل روشن از جانب پروردگارم برای من آمده است؛ و مأمورم که تنها در برابر پروردگار عالمیان تسلیم باشم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,382,'او کسی است که شما را از خاک آفرید، سپس از نطفه، سپس از علقه (خون بسته شده)، سپس شما را بصورت طفلی (از شکم مادر) بیرون میفرستد، بعد به مرحله کمال قوّت خود میرسید، و بعد از آن پیر میشوید و (در این میان) گروهی از شما پیش از رسیدن به این مرحله میمیرند و در نهایت به سرآمد عمر خود میرسید؛ و شاید تعقّل کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,382,'او کسی است که زنده میکند و میمیراند؛ و هنگامی که کاری را مقرّر کند، تنها به آن میگوید: «موجود باش!» بیدرنگ موجود میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,382,'آیا ندیدی کسانی را که در آیات خدا مجادله میکنند، چگونه از راه حقّ منحرف می شوند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,382,'همان کسانی که کتاب (آسمانی) و آنچه رسولان خود را بدان فرستادهایم تکذیب کردند؛ امّا بزودی (نتیجه کار خود را) میدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,382,'در آن هنگام که غل و زنجیرها بر گردن آنان قرار گرفته و آنها را میکشند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,382,'و در آب جوشان وارد میکنند؛ سپس در آتش دوزخ افروخته میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,382,'سپس به آنها گفته میشود: «کجایند آنچه را همتای خدا قرار میدادید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,382,'همان معبودهایی را که جز خدا پرستش میکردید؟!» آنها میگویند: «همه از نظر ما پنهان و گم شدند؛ بلکه ما اصلاً پیش از این چیزی را پرستش نمیکردیم»! این گونه خداوند کافران را گمراه میسازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,382,'این (عذاب) بخاطر آن است که بناحقّ در زمین شادی میکردید و از روی غرور و مستی به خوشحالی میپرداختید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,382,'از درهای جهنّم وارد شوید و جاودانه در آن بمانید؛ و چه بد است جایگاه متکبّران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,382,'پس (ای پیامبر) صبر کن که وعده خدا حقّ است؛ و هرگاه قسمتی از مجازاتهایی را که به آنها وعده دادهایم در حال حیاتت به تو ارائه دهیم، یا تو را (پیش از آن) از دنیا ببریم (مهمّ نیست)؛ چرا که همه آنان را تنها بسوی ما باز میگردانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,382,'ما پیش از تو رسولانی فرستادیم؛ سرگذشت گروهی از آنان را برای تو بازگفته، و گروهی را برای تو بازگو نکردهایم؛ و هیچ پیامبری حق نداشت معجزهای جز بفرمان خدا بیاورد و هنگامی که فرمان خداوند (برای مجازات آنها) صادر شود، بحق داوری خواهد شد؛ و آنجا اهل باطل زیان خواهند کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,382,'خداوند کسی است که چهارپایان را برای شما آفرید تا بعضی را سوار شوید و از بعضی تغذیه کنید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,382,'و برای شما در آنها منافع بسیاری (جز اینها) است، تا بوسیله آنها به مقصدی که در دل دارید برسید؛ و بر آنها و بر کشتیها سوار میشوید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,382,'او آیاتش را همواره به شما نشان میدهد؛ پس کدام یک از آیات او را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,382,'آیا روی زمین سیر نکردند تا ببینند عاقبت کسانی که پیش از آنها بودند چه شد؟! همانها که نفراتشان از اینها بیشتر، و نیرو و آثارشان در زمین فزونتر بود؛ امّا هرگز آنچه را به دست میآوردند نتوانست آنها را بینیاز سازد (و عذاب الهی را از آنان دور کند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,382,'هنگامی که رسولانشان دلایل روشنی برای آنان آوردند، به دانشی که خود داشتند خوشحال بودند (و غیر آن را هیچ میشمردند)؛ ولی آنچه را (از عذاب) به تمسخر میگرفتند آنان را فراگرفت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,382,'هنگامی که عذاب (شدید) ما را دیدند گفتند: «هم اکنون به خداوند یگانه ایمان آوردیم و به معبودهایی که همتای او میشمردیم کافر شدیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,382,'امّا هنگامی که عذاب ما را مشاهده کردند، ایمانشان برای آنها سودی نداشت! این سنّت خداوند است که همواره در میان بندگانش اجرا شده، و آنجا کافران زیانکار شدند!');
+INSERT INTO chapters (id, number, quran_id) VALUES(383,41,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,383,'حم');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,383,'این کتابی است که از سوی خداوند رحمان و رحیم نازل شده است؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,383,'کتابی که آیاتش هر مطلبی را در جای خود بازگو کرده، در حالی که فصیح و گویاست برای جمعیّتی که آگاهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,383,'قرآنی که بشارت دهنده و بیم دهنده است؛ ولی بیشتر آنان روی گردان شدند؛ از این رو چیزی نمیشنوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,383,'آنها گفتند: «قلبهای ما نسبت به آنچه ما را به آن دعوت میکنی در پوششهایی قرار گرفته و در گوشهای ما سنگینی است، و میان ما و تو حجابی وجود دارد؛ پس تو بدنبال عمل خود باش، ما هم برای خود عمل میکنیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,383,'بگو: من فقط انسانی مثل شما هستم؛ این حقیقت بر من وحی میشود که معبود شما معبودی یگانه است؛ پس تمام توجّه خویش را به او کنید و از وی آمرزش طلبید؛ وای بر مشرکان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,383,'همانها که زکات را نمیپردازند، و آخرت را منکرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,383,'امّا کسانی که ایمان آورده و کارهای شایسته انجام دادند، پاداشی دائمی دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,383,'بگو: آیا شما به آن کس که زمین را در دو روز آفرید کافر هستید و برای او همانندهایی قرارمیدهید؟! او پروردگار جهانیان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,383,'او در زمین کوههای استواری قرار داد و برکاتی در آن آفرید و موادّ غذایی آن را مقدّر فرمود، - ینها همه در چهار روز بود- درست به اندازه نیاز تقاضا کنندگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,383,'سپس به آفرینش آسمان پرداخت، در حالی که بصورت دود بود؛ به آن و به زمین دستور داد: «به وجود آیید (و شکل گیرید)، خواه از روی اطاعت و خواه اکراه!» آنها گفتند: «ما از روی طاعت میآییم (و شکل میگیریم)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,383,'در این هنگام آنها را بصورت هفت آسمان در دو روز آفرید، و در هر آسمانی کار آن (آسمان) را وحی (و مقرّر) فرمود، و آسمان پایین را با چراغهایی [= ستارگان] زینت بخشیدیم، و (با شهابها از رخنه شیاطین) حفظ کردیم، این است تقدیر خداوند توانا و دانا!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,383,'اگر آنها رویگردان شوند، بگو: من شما را از صاعقهای همانند صاعقه عاد و ثمود میترسانم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,383,'در آن هنگام که رسولان از پیش رو و پشت سر (و از هر سو) به سراغشان آمدند (و آنان را دعوت کردند) که جز خدا را نپرستید آنها گفتند: «اگر پروردگار ما میخواست فرشتگانی نازل میکرد؛ از این رو ما به آنچه شما مبعوث به آن هستید کافریم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,383,'امّا قوم عاد بناحق در زمین تکبّر ورزیدند و گفتند: «چه کسی از ما نیرومندتر است؟!» آیا نمیدانستند خداوندی که آنان را آفریده از آنها قویتر است؟ و (به خاطر این پندار) پیوسته آیات ما را انکار میکردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,383,'سرانجام تندبادی شدید و هولانگیز و سرد و سخت در روزهایی شوم و پرغبار بر آنها فرستادیم تا عذاب خوارکننده را در زندگی دنیا به آنها بچشانیم؛ و عذاب آخرت از آن هم خوارکنندهتر است، و (از هیچ طرف) یاری نمیشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,383,'امّا ثمود را هدایت کردیم، ولی آنها نابینایی را بر هدایت ترجیح دادند؛ به همین جهت صاعقه -آن عذاب خوارکننده- به خاطر اعمالی که انجام میدادند آنها را فروگرفت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,383,'و کسانی را که ایمان آوردند و پرهیزگار بودند نجات بخشیدیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,383,'به خاطر بیاورید روزی را که دشمنان خدا را جمع کرده به سوی دوزخ میبرند، و صفوف پیشین را نگه میدارند (تا صفهای بعد به آنها ملحق شوند!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,383,'وقتی به آن میرسند، گوشها و چشمها و پوستهای تنشان به آنچه میکردند گواهی میدهند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,383,'آنها به پوستهای تنشان میگویند: «چرا بر ضدّ ما گواهی دادید؟!» آنها جواب میدهند: «همان خدایی که هر موجودی را به نطق درآورده ما را گویا ساخته؛ و او شما را نخستین بار آفرید، و بازگشتتان بسوی اوست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,383,'شما اگر گناهانتان را مخفی میکردید نه بخاطر این بود که از شهادت گوش و چشمها و پوستهای تنتان بیم داشتید، بلکه شما گمان میکردید که خداوند بسیاری از اعمالی را که انجام میدهید نمیداند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,383,'آری این گمان بدی بود که درباره پروردگارتان داشتید و همان موجب هلاکت شما گردید، و سرانجام از زیانکاران شدید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,383,'اگر صبر کنند (یا نکنند، به هر حال) دوزخ جایگاه آنهاست؛ و اگر تقاضای عفو کنند، مورد عفو قرار نمیگیرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,383,'ما برای آنها همنشینانی (زشتسیرت) قرار دادیم که زشتیها را از پیش رو و پشت سر آنها در نظرشان جلوه دادند؛ و فرمان الهی در باره آنان تحقق یافت و به سرنوشت اقوام گمراهی از جنّ و انس که قبل از آنها بودند گرفتار شدند؛ آنها مسلّماً زیانکار بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,383,'کافران گفتند: «گوش به این قرآن فراندهید؛ و به هنگام تلاوت آن جنجال کنید، شاید پیروز شوید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,383,'به یقین به کافران عذاب شدیدی میچشمانیم، و آنها را به بدترین اعمالی که انجام می دادند کیفر میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,383,'این آتش کیفر دشمنان خدا است، سرای جاویدشان در آن خواهد بود، کیفری است بخاطر اینکه آیات ما را انکار میکردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,383,'کافران گفتند: «پروردگارا! آنهایی که از جنّ و انس ما را گمراه کردند به ما نشان ده تا زیر پای خود نهیم (و لگدمالشان کنیم) تا از پست ترین مردم باشند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,383,'به یقین کسانی که گفتند: «پروردگار ما خداوند یگانه است!» سپس استقامت کردند، فرشتگان بر آنان نازل میشوند که: «نترسید و غمگین مباشید، و بشارت باد بر شما به آن بهشتی که به شما وعده داده شده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,383,'ما یاران و مددکاران شما در زندگی دنیا و آخرت هستیم؛ و برای شما هر چه دلتان بخواهد در بهشت فراهم است، و هر چه طلب کنید به شما داده میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,383,'اینها وسیله پذیرایی از سوی خداوند غفور و رحیم است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,383,'چه کسی خوش گفتارتر است از آن کس که دعوت به سوی خدا میکند و عمل صالح انجام میدهد و میگوید: «من از مسلمانانم»؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,383,'هرگز نیکی و بدی یکسان نیست؛ بدی را با نیکی دفع کن، ناگاه (خواهی دید) همان کس که میان تو و او دشمنی است، گویی دوستی گرم و صمیمی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,383,'امّا جز کسانی که دارای صبر و استقامتند به این مقام نمیرسند، و جز کسانی که بهره عظیمی (از ایمان و تقوا) دارند به آن نایل نمیگردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,383,'و هرگاه وسوسههایی از شیطان متوجّه تو گردد، از خدا پناه بخواه که او شنوده و داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,383,'و از نشانههای او، شب و روز و خورشید و ماه است؛ برای خورشید و ماه سجده نکنید، برای خدایی که آفریننده آنهاست سجده کنید اگر میخواهید او را بپرستید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,383,'و اگر (از عبادت پروردگار) تکبّر کنند، کسانی که نزد پروردگار تو هستند شب و روز برای او تسبیح میگویند و خسته نمیشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,383,'و از آیات او این است که زمین را خشک (و بیجان) میبینی، امّا هنگامی که آب (باران) بر آن میفرستیم به جنبش درمیآید و نموّ میکند؛ همان کسی که آن را زنده کرد، مردگان را نیز زنده میکند؛ او بر هر چیز تواناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,383,'کسانی که آیات ما را تحریف میکنند بر ما پوشیده نخواهند بود! آیا کسی که در آتش افکنده میشود بهتر است یا کسی که در نهایت امن و امان در قیامت به عرصه محشر میآید؟! هر کاری میخواهید بکنید، او به آنچه انجام میدهید بیناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,383,'کسانی که به این ذکر [= قرآن] هنگامی که به سراغشان آمد کافر شدند (نیز بر ما مخفی نخواهد ماند)! و این کتابی است قطعاً شکست ناپذیر...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,383,'که هیچ گونه باطلی، نه از پیش رو و نه از پشت سر، به سراغ آن نمیآید؛ چرا که از سوی خداوند حکیم و شایسته ستایش نازل شده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,383,'آنچه به ناروا درباره تو میگویند همان است که درباره پیامبران قبل از تو نیز گفته شده؛ پروردگار تو دارای مغفرت و (هم) دارای مجازات دردناکی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,383,'هرگاه آن را قرآنی عجمی قرار میدادیم حتماً میگفتند: «چرا آیاتش روشن نیست؟! قرآن عجمی از پیغمبری عربی؟!» بگو: «این (کتاب) برای کسانی که ایمان آوردهاند هدایت و درمان است؛ ولی کسانی که ایمان نمیآورند، در گوشهایشان سنگینی است و گویی نابینا هستند و آن را نمیبینند؛ آنها (همچون کسانی هستند که گوئی) از راه دور صدا زده میشوند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,383,'ما به موسی کتاب آسمانی دادیم؛ سپس در آن اختلاف شد؛ و اگر فرمانی از ناحیه پروردگارت در این باره صادر نشده بود (که باید به آنان مهلت داد تا اتمام حجّت شود)، در میان آنها داوری میشد (و به کیفر میرسیدند)؛ ولی آنها هنوز درباره آن شکّی تهمتانگیز دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,383,'کسی که عمل صالحی انجام دهد، سودش برای خود اوست؛ و هر کس بدی کند، به خویشتن بدی کرده است؛ و پروردگارت هرگز به بندگان ستم نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,383,'علم به قیامت (و لحظه وقوع آن) تنها به خدا بازمیگردد؛ هیچ میوهای از غلاف خود خارج نمیشود، و هیچ زنی باردار نمیگردد و وضع حمل نمیکند مگر به علم او؛ و آن روز که آنها را ندا میدهد (و میگوید:) کجایند شریکانی که برای من میپنداشتید؟! میگویند: «(پروردگارا!) ما عرضه داشتیم که هیچ گواهی بر گفته خود نداریم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,383,'و همه معبودانی را که قبلاً میخواندند محو و گم میشوند؛ و میدانند هیچ گریزگاهی ندارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,383,'انسان هرگز از تقاضای نیکی (و نعمت) خسته نمیشود؛ و هرگاه شرّ و بدی به او رسد، بسیار مأیوس و نومید میگردد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,383,'و هرگاه او را رحمتی از سوی خود بعد از ناراحتی که به او رسیده بچشانیم میگوید: «این بخاطر شایستگی و استحقاق من بوده، و گمان نمیکنم قیامت برپا شود؛ و (بفرض که قیامتی باشد،) هرگاه بسوی پروردگارم بازگردانده شوم، برای من نزد او پاداشهای نیک است. ما کافران را از اعمالی که انجام دادهاند (بزودی) آگاه خواهیم کرد و از عذاب شدید به آنها میچشانیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,383,'و هرگاه به انسان (غافل و بیخبر) نعمت دهیم، روی میگرداند و به حال تکبّر از حق دور میشود؛ ولی هرگاه مختصر ناراحتی به او رسد، تقاضای فراوان و مستمرّ (برای بر طرف شدن آن) دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,383,'بگو: «به من خبر دهید اگر این قرآن از سوی خداوند باشد و شما به آن کافر شوید، چه کسی گمراهتر خواهد بود از کسی که در مخالفت شدیدی قرار دارد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,383,'به زودی نشانههای خود را در اطراف جهان و در درون جانشان به آنها نشان میدهیم تا برای آنان آشکار گردد که او حق است؛ آیا کافی نیست که پروردگارت بر همه چیز شاهد و گواه است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,383,'آگاه باشید که آنها از لقای پروردگارشان در شکّ و تردیدند؛ و آگاه باشید که خداوند به همه چیز احاطه دارد!');
+INSERT INTO chapters (id, number, quran_id) VALUES(384,42,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,384,'حم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,384,'عسق.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,384,'این گونه خداوند عزیز و حکیم به تو و پیامبرانی که پیش از تو بودند وحی میکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,384,'آنچه در آسمانها و آنچه در زمین است از آن اوست؛ و او بلندمرتبه و بزرگ است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,384,'نزدیک است آسمانها (بخاطر نسبتهای ناروای مشرکان) از بالا متلاشی شوند و فرشتگان پیوسته تسبیح و حمد پروردگارشان را بجا میآورند و برای کسانی که در زمین هستند استغفار میکنند؛ آگاه باشید خداوند آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,384,'کسانی که غیر خدا را ولیّ خود انتخاب کردند، خداوند حساب همه اعمال آنها را نگه میدارد؛ و تو مأمور نیستی که آنان را مجبور به قبول حقّ کنی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,384,'و این گونه قرآنی عربی [= فصیح و گویا] را بر تو وحی کردیم تا «امّالقری» [= مکّه] و مردم پیرامون آن را انذار کنی و آنها را از روزی که همه خلایق در آن روز جمع میشوند و شکّ و تردید در آن نیست بترسانی؛ گروهی در بهشتند و گروهی در آتش سوزان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,384,'و اگر خدا میخواست همه آنها را امّت واحدی قرار میداد (و به زور هدایت میکرد، ولی هدایت اجباری سودی ندارد)؛ امّا خداوند هر کس را بخواهد در رحمتش وارد میکند، و برای ظالمان ولیّ و یاوری نیست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,384,'آیا آنها غیر از خدا را ولیّ خود برگزیدند؟! در حالی که «ولیّ» فقط خداوند است و اوست که مردگان را زنده میکند، و اوست که بر هر چیزی تواناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,384,'در هر چیز اختلاف کنید، داوریش با خداست؛ این است خداوند، پروردگار من، بر او توکّل کردهام و به سوی او بازمیگردم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,384,'او آفریننده آسمانها و زمین است و از جنس شما همسرانی برای شما قرار داد و جفتهایی از چهارپایان آفرید؛ و شما را به این وسیله [= بوسیله همسران] زیاد می کند؛ هیچ چیز همانند او نیست و او شنوا و بیناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,384,'کلیدهای آسمانها و زمین از آن اوست؛ روزی را برای هر کس بخواهد گسترش می دهد یا محدود میسازد؛ او به همه چیز داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,384,'آیینی را برای شما تشریع کرد که به نوح توصیه کرده بود؛ و آنچه را بر تو وحی فرستادیم و به ابراهیم و موسی و عیسی سفارش کردیم این بود که: دین را برپا دارید و در آن تفرقه ایجاد نکنید! و بر مشرکان گران است آنچه شما آنان را به سویش دعوت می کنید! خداوند هر کس را بخواهد برمیگزیند، و کسی را که به سوی او بازگردد هدایت میکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,384,'آنان پراکنده نشدند مگر بعد از آنکه علم و آگاهی به سراغشان آمد؛ و این تفرقه جویی بخاطر انحراف از حق (و عداوت و حسد) بود؛ و اگر فرمانی از سوی پروردگارت صادر نشده بود که تا سرآمد معیّنی (زنده و آزاد) باشند، در میان آنها داوری میشد؛ و کسانی که بعد از آنها وارثان کتاب شدند نسبت به آن در شک و تردیدند، شکی همراه با بدبینی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,384,'پس به همین خاطر تو نیز آنان را به سوی این آیین واحد الهی دعوت کن و آنچنان که مأمور شدهای استقامت نما، و از هوی و هوسهای آنان پیروی مکن، و بگو: «به هر کتابی که خدا نازل کرده ایمان آوردهام و مأمورم در میان شما عدالت کنم؛ خداوند پروردگار ما و شماست؛ نتیجه اعمال ما از آن ما است و نتیجه اعمال شما از آن شما، خصومت شخصی در میان ما نیست؛ و خداوند ما و شما را در یکجا جمع میکند، و بازگشت (همه) به سوی اوست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,384,'کسانی که (از روی لجاجت) درباره خدا بعد از پذیرفتن (و ایمان به) او، محاجّه می کنند، دلیلشان نزد پروردگارشان باطل و بیپایه است؛ و غضب بر آنهاست و عذابی شدید دارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,384,'خداوند کسی است که کتاب را بحق نازل کرد و میزان (سنجش حق و باطل و خبر قیامت) را نیز؛ تو چه میدانی شاید ساعت (قیام قیامت) نزدیک باشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,384,'کسانی که به قیامت ایمان ندارند درباره آن شتاب میکنند؛ ولی آنها که ایمان آوردهاند پیوسته از آن هراسانند، و میدانند آن حق است؛ آگاه باشید کسانی که در قیامت تردید میکنند، در گمراهی عمیقی هستند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,384,'خداوند نسبت به بندگانش لطف (و آگاهی) دارد؛ هر کس را بخواهد روزی میدهد و او قوّی و شکستناپذیر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,384,'کسی که زراعت آخرت را بخواهد، به کشت او برکت و افزایش میدهیم و بر محصولش میافزاییم؛ و کسی که فقط کشت دنیا را بطلبد، کمی از آن به او میدهیم امّا در آخرت هیچ بهرهای ندارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,384,'آیا معبودانی دارند که بیاذن خداوند آیینی برای آنها ساختهاند؟! اگر مهلت معیّنی برای آنها نبود، در میانشان داوری میشد (و دستور عذاب صادر میگشت) و برای ظالمان عذاب دردناکی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,384,'(در آن روز) ستمگران را میبینی که از اعمالی که انجام دادهاند سخت بیمناکند، ولی آنها را فرامیگیرد! امّا کسانی که ایمان آورده و کارهای شایسته انجام دادهاند در باغهای بهشتند و هر چه بخواهند نزد پروردگارشان برای آنها فراهم است؛ این است فضل (و بخشش) بزرگ!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,384,'این همان چیزی است که خداوند بندگانش را که ایمان آورده و اعمال صالح انجام دادهاند به آن نوید میدهد! بگو: «من هیچ پاداشی از شما بر رسالتم درخواست نمیکنم جز دوستداشتن نزدیکانم [= اهل بیتم]؛ و هر کس کار نیکی انجام دهد، بر نیکیاش میافزاییم؛ چرا که خداوند آمرزنده و سپاسگزار است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,384,'آیا میگویند: «او بر خدا دروغ بسته است»؟! در حالی که اگر خدا بخواهد بر قلب تو مُهر مینهد (و اگر خلاف بگوئی قدرت اظهار این آیات را از تو میگیرد) و باطل را محو میکند و حقّ را بفرمانش پابرجا میسازد؛ چرا که او از آنچه درون سینههاست آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,384,'او کسی است که توبه را از بندگانش میپذیرد و بدیها را میبخشد، و آنچه را انجام میدهید میداند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,384,'و درخواست کسانی را که ایمان آورده و کارهای نیک انجام دادهاند میپذیرد و از فضل خود بر آنها میافزاید؛ امّا برای کافران عذاب شدیدی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,384,'هرگاه خداوند روزی را برای بندگانش وسعت بخشد، در زمین طغیان و ستم میکنند؛ از اینرو بمقداری که میخواهد (و مصلحت میداند) نازل میکند، که نسبه به بندگانش آگاه و بیناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,384,'او کسی است که باران سودمند را پس از آنکه مأیوس شدند نازل میکند و رحمت خویش را میگستراند؛ و او ولیّ و (سرپرست) و ستوده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,384,'و از آیات اوست آفرینش آسمانها و زمین و آنچه از جنبندگان در آنها منتشر نموده؛ و او هرگاه بخواهد بر جمع آنها تواناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,384,'هر مصیبتی به شما رسد بخاطر اعمالی است که انجام دادهاید، و بسیاری را نیز عفو میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,384,'و شما هرگز نمیتوانید در زمین از قدرت خداوند فرار کنید؛ و غیر از خدا هیچ ولیّ و یاوری برای شما نیست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,384,'از نشانههای او کشتیهایی است که در دریا همچون کوهها به نظر میرسند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,384,'اگر او اراده کند، باد را ساکن میسازد تا آنها بر پشت دریا بیحرکت بمانند؛ در این نشانههایی است برای هر صبرکننده شکرگزار!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,384,'یا اگر بخواهد آنها را بخاطر اعمالی که سرنشینانش مرتکب شدهاند نابود میسازد؛ و در عین حال بسیاری را میبخشد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,384,'کسانی که در آیات ما مجادله میکنند بدانند هیچ گریزگاهی ندارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,384,'آنچه به شما عطا شده متاع زودگذر زندگی دنیاست، و آنچه نزد خداست برای کسانی که ایمان آورده و بر پروردگارشان توکّل میکنند بهتر و پایدارتر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,384,'همان کسانی که از گناهان بزرگ و اعمال زشت اجتناب میورزند، و هنگامی که خشمگین شوند عفو میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,384,'و کسانی که دعوت پروردگارشان را اجابت کرده و نماز را برپا میدارند و کارهایشان به صورت مشورت در میان آنهاست و از آنچه به آنها روزی دادهایم انفاق میکنند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,384,'و کسانی که هرگاه ستمی به آنها رسد، (تسلیم ظلم نمیشوند و) یاری میطلبند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,384,'کیفر بدی، مجازاتی است همانند آن؛ و هر کس عفو و اصلاح کند، پاداش او با خداست؛ خداوند ظالمان را دوست ندارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,384,'و کسی که بعد از مظلومشدن یاری طلبد، ایرادی بر او نیست؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,384,'ایراد و مجازات بر کسانی است که به مردم ستم میکنند و در زمین بناحق ظلم روا میدارند؛ برای آنان عذاب دردناکی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,384,'امّا کسانی که شکیبایی و عفو کنند، این از کارهای پرارزش است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,384,'کسی را که خدا گمراه کند، ولیّ و یاوری جز او نخواهد داشت؛ و ظالمان را (روز قیامت) میبینی هنگامی که عذاب الهی را مشاهده میکنند میگویند: «آیا راهی به سوی بازگشت (و جبران) وجود دارد؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,384,'و آنها را میبینی که بر آتش عرضه میشوند در حالی که از شدّت مذلّت خاشعند و زیر چشمی (به آن) نگاه میکنند؛ و کسانی که ایمان آوردهاند میگویند: «زیانکاران واقعی آنانند که خود و خانواده خویش را روز قیامت از دست دادهاند؛ آگاه باشید که ظالمان (آن روز) در عذاب دائمند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,384,'آنها جز خدا اولیا و یاورانی ندارند که یاریشان کنند؛ و هر کس را خدا گمراه سازد، هیچ راه نجاتی برای او نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,384,'اجابت کنید دعوت پروردگار خود را پیش از آنکه روزی فرا رسد که بازگشتی برای آن در برابر اراده خدا نیست؛ و در آن روز، نه پناهگاهی دارید و نه مدافعی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,384,'و اگر رویگردان شوند (غمگین مباش)، ما تو را حافظ آنان (و مأمور اجبارشان) قرار ندادهایم؛ وظیفه تو تنها ابلاغ رسالت است! و هنگامی که ما رحمتی از سوی خود به انسان بچشانیم به آن دلخوش میشود، و اگر بلایی بخاطر اعمالی که انجام دادهاند به آنها رسد (به کفران میپردازند)، چرا که انسان بسیار کفرانکننده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,384,'مالکیّت و حاکمیّت آسمانها و زمین از آن خداست؛ هر چه را بخواهد میآفریند؛ به هر کس اراده کند دختر میبخشد و به هر کس بخواهد پسر،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,384,'یا (اگر بخواهد) پسر و دختر -هر دو- را برای آنان جمع میکند و هر کس را بخواهد عقیم میگذارد؛ زیرا که او دانا و قادر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,384,'و شایسته هیچ انسانی نیست که خدا با او سخن گوید، مگر از راه وحی یا از پشت حجاب، یا رسولی میفرستد و بفرمان او آنچه را بخواهد وحی میکند؛ چرا که او بلندمقام و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,384,'همان گونه (که بر پیامبران پیشین وحی فرستادیم) بر تو نیز روحی را بفرمان خود وحی کردیم؛ تو پیش از این نمیدانستی کتاب و ایمان چیست (و از محتوای قرآن آگاه نبودی)؛ ولی ما آن را نوری قرار دادیم که بوسیله آن هر کس از بندگان خویش را بخواهیم هدایت میکنیم؛ و تو مسلّماً به سوی راه راست هدایت میکنی.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,384,'راه خداوندی که تمامی آنچه در آسمانها و آنچه در زمین است از آن اوست؛ آگاه باشید که همه کارها تنها بسوی خدا بازمیگردد!');
+INSERT INTO chapters (id, number, quran_id) VALUES(385,43,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,385,'حم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,385,'سوگند به کتاب مبین (و روشنگر)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,385,'که ما آن را قرآنی فصیح و عربی قرار دادیم، شاید شما (آن را) درک کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,385,'و آن در «امّالکتاب» [= لوح محفوظ] نزد ما بلندپایه و استوار است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,385,'آیا این ذکر [= قرآن] را از شما بازگیریم بخاطر اینکه قومی اسرافکارید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,385,'چه بسیار پیامبرانی که (برای هدایت) در میان اقوام پیشین فرستادیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,385,'ولی هیچ پیامبری به سوی آنها نمیآمد مگر اینکه او را استهزا میکردند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,385,'ولی ما کسانی را که نیرومندتر از آنها بودند هلاک کردیم، و داستان پیشینیان گذشت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,385,'هر گاه از آنان بپرسی: «چه کسی آسمانها و زمین را آفریده است؟» مسلّماً میگویند: «خداوند قادر و دانا آنها را آفریده است»!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,385,'همان کسی که زمین را محل آرامش شما قرار داد، و برای شما در آن راههایی آفرید باشد، که هدایت شوید (و به مقصد برسید)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,385,'همان کسی که از آسمان آبی فرستاد بمقدار معیّن، و بوسیله آن سرزمین مرده را حیات بخشیدیم؛ همین گونه (در قیامت از قبرها) شما را خارج میسازند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,385,'و همان کسی که همه زوجها را آفرید، و برای شما از کشتیها و چهارپایان مرکبهایی قرارداد که بر آن سوار میشوید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,385,'تا بر پشت آنها بخوبی قرار گیرید؛ سپس هنگامی که بر آنها سوار شدید، نعمت پروردگارتان را متذکّر شوید و بگویید: «پاک و منزّه است کسی که این را مسخّر ما ساخت، وگرنه ما توانایی تسخیر آن را نداشتیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,385,'و ما به سوی پروردگارمان بازمیگردیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,385,'آنها برای خداوند از میان بندگانش جزئی قرار دادند (و ملائکه را دختران خدا خواندند)؛ انسان کفرانکننده آشکاری است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,385,'آیا از میان مخلوقاتش دختران را برای خود انتخاب کرده و پسران را برای شما برگزیده است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,385,'در حالی که هرگاه یکی از آنها را به همان چیزی که برای خداوند رحمان شبیه قرار داده [= به تولّد دختر] بشارت دهند، صورتش (از فرط ناراحتی) سیاه میشود و خشمگین میگردد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,385,'آیا کسی را که در لابلای زینتها پرورش مییابد و به هنگام جدال قادر به تبیین مقصود خود نیست (فرزند خدا میخوانید)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,385,'آنها فرشتگان را که بندگان خداوند رحمانند مؤنّث پنداشتند؛ آیا شاهد آفرینش آنها بوده اند؟! گواهی آنان نوشته میشود و (از آن) بازخواست خواهند شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,385,'آنان گفتند: «اگر خداوند رحمان میخواست ما آنها را پرستش نمیکردیم!» ولی به این امر هیچ گونه علم و یقین ندارند و جز دروغ چیزی نمیگویند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,385,'یا اینکه ما کتابی پیش از این به آنان دادهایم و آنها به آن تمسّک میجویند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,385,'بلکه آنها میگویند: «ما نیاکان خود را بر آئینی یافتیم، و ما نیز به پیروی آنان هدایت یافتهایم.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,385,'و اینگونه در هیچ شهر و دیاری پیش از تو پیامبر انذارکنندهای نفرستادیم مگر اینکه ثروتمندان مست و مغرور آن گفتند: «ما پدران خود را بر آئینی یافتیم و به آثار آنان اقتدا میکنیم.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,385,'(پیامبرشان) گفت: «آیا اگر من آیینی هدایتبخشتر از آنچه پدرانتان را بر آن یافتید آورده باشم (باز هم انکار میکنید)؟!» گفتند: «(آری،) ما به آنچه شما به آن فرستاده شدهاید کافریم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,385,'به همین جهت از آنها انتقام گرفتیم؛ بنگر پایان کار تکذیبکنندگان چگونه بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,385,'و به خاطر بیاور هنگامی را که ابراهیم به پدرش [= عمویش آزر] و قومش گفت: «من از آنچه شما میپرستید بیزارم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,385,'مگر آن کسی که مرا آفریده، که او هدایتم خواهد کرد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,385,'او کلمه توحید را کلمه پایندهای در نسلهای بعد از خود قرار داد، شاید به سوی خدا باز گردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,385,'ولی من این گروه و پدرانشان را از مواهب دنیا بهرهمند ساختم تا حق و فرستاده آشکار (الهی) به سراغشان آمد؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,385,'هنگامی که حق به سراغشان آمد؛ گفتند: «این سحر است، و ما نسبت به آن کافریم»!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,385,'و گفتند: «چرا این قرآن بر مرد بزرگ (و ثروتمندی) از این دو شهر (مکه و طائف) ناز ل نشده است؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,385,'آیا آنان رحمت پروردگارت را تقسیم میکنند؟! ما معیشت آنها را در حیات دنیا در میانشان تقسیم کردیم و بعضی را بر بعضی برتری دادیم تا یکدیگر را مسخر کرده (و با هم تعاون نمایند)؛ و رحمت پروردگارت از تمام آنچه جمعآوری میکنند بهتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,385,'اگر (تمکّن کفّار از مواهب مادی) سبب نمیشد که همه مردم امت واحد (گمراهی) شوند، ما برای کسانی که به (خداوند) رحمان کافر میشدند خانههایی قرار میدادیم با سقفهایی از نقره و نردبانهایی که از آن بالا روند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,385,'و برای خانههایشان درها و تختهایی (زیبا و نقرهای) قرار میدادیم که بر آن تکیه کنند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,385,'و انواع زیورها؛ ولی تمام اینها بهره زندگی دنیاست، و آخرت نزد پروردگارت از آن پرهیزگاران است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,385,'و هر کس از یاد خدا رویگردان شود شیطان را به سراغ او میفرستیم پس همواره قرین اوست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,385,'و آنها [= شیاطین] این گروه را از راه خدا بازمیدارند، در حالی که گمان میکنند هدایتیافتگان حقیقی آنها هستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,385,'تا زمانی که (در قیامت) نزد ما حاضر شود میگوید: ای کاش میان من و تو فاصله مشرق و مغرب بود؛ چه بد همنشینی بودی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,385,'(ولی به آنها میگوییم:) هرگز این گفتگوها امروز به حال شما سودی ندارد، چرا که ظلم کردید؛ و همه در عذاب مشترکید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,385,'(ای پیامبر!) آیا تو میتوانی سخن خود را به گوش کران برسانی، یا کوران و کسانی را که در گمراهی آشکاری هستند هدایت کنی؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,385,'و هرگاه تو را از میان آنها ببریم، حتماً از آنان انتقام خواهیم گرفت؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,385,'یا اگر (زنده بمانی و) و آنچه را (از عذاب) به آنان وعده دادهایم به تو نشان دهیم، باز ما بر آنها مسلّطیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,385,'آنچه را بر تو وحی شده محکم بگیر که تو بر صراط مستقیمی.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,385,'و این مایه یادآوری (و عظمت) تو و قوم تو است و بزودی سؤال خواهید شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,385,'از رسولانی که پیش از تو فرستادیم بپرس: آیا غیر از خداوند رحمان معبودانی برای پرستش قرار دادیم؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,385,'ما موسی را با آیات خود به سوی فرعون و درباریان او فرستادیم؛ (موسی به آنها) گفت: «من فرستاده پروردگار جهانیانم»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,385,'ولی هنگامی که او آیات ما را برای آنها آورد، به آن میخندیدند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,385,'ما هیچ آیه (و معجزهای) به آنان نشان نمیدادیم مگر اینکه از دیگری بزرگتر (و مهمتر) بود؛ و آنها را به (انواع) عذاب گرفتار کردیم شاید بازگردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,385,'(وقتی گرفتار بلا میشدند می) گفتند: «ای ساحر! پروردگارت را به عهدی که با تو کرده بخوان (تا ما را از این بلا برهاند) که ما هدایت خواهیم یافت (و ایمان میآوریم)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,385,'امّا هنگامی که عذاب را از آنها برطرف میساختیم پیمان خود را میشکستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,385,'فرعون در میان قوم خود ندا داد و گفت: «ای قوم من! آیا حکومت مصر از آن من نیست، و این نهرها تحت فرمان من جریان ندارد؟ آیا نمیبینید؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,385,'مگر نه این است که من از این مردی که از خانواده و طبقه پستی است و هرگز نمیتواند فصیح سخن بگوید برترم؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,385,'(اگر راست میگوید) چرا دستبندهای طلا به او داده نشده، یا اینکه چرا فرشتگان دوشادوش او نیامدهاند (تا گفتارش را تأیید کنند)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,385,'(فرعون) قوم خود را سبک شمرد، در نتیجه از او اطاعت کردند؛ آنان قومی فاسق بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,385,'امّا هنگامی که ما را به خشم آوردند، از آنها انتقام گرفتیم و همه را غرق کردیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,385,'و آنها را پیشگامان (در عذاب) و عبرتی برای دیگران قرار دادیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,385,'و هنگامی که درباره فرزند مریم مثلی زده شد، ناگهان قوم تو بخاطر آن داد و فریاد راه انداختند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,385,'و گفتند: «آیا خدایان ما بهترند یا او [= مسیح]؟! (اگر معبودان ما در دوزخند، مسیح نیز در دوزخ است، چرا که معبود واقع شده)!» ولی آنها این مثل را جز از طریق جدال (و لجاج) برای تو نزدند؛ آنان گروهی کینهتوز و پرخاشگرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,385,'مسیح فقط بندهای بود که ما نعمت به او بخشیدیم و او را نمونه و الگوئی برای بنی اسرائیل قرار دادیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,385,'و هرگاه بخواهیم به جای شما در زمین فرشتگانی قرار میدهیم که جانشین (شما) گردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,385,'و او [= مسیح] سبب آگاهی بر روز قیامت است. (زیرا نزول عیسی گواه نزدیکی رستاخیز است)؛ هرگز در آن تردید نکنید؛ و از من پیروی کنید که این راه مستقیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,385,'و شیطان شما را (از راه خدا) باز ندارد، که او دشمن آشکار شماست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,385,'و هنگامی که عیسی دلایل روشن (برای آنها) آورد گفت: «من برای شما حکمت آوردهام، و آمدهام تا برخی از آنچه را که در آن اختلاف دارید روشن کنم؛ پس تقوای الهی پیشه کنید و از من اطاعت نمایید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,385,'خداوند پروردگار من و پروردگار شماست؛ (تنها) او را پرستش کنید که راه راست همین است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,385,'ولی گروههایی از میان آنها (درباره مسیح) اختلاف کردند (و بعضی او را خدا پنداشتند)؛ وای بر کسانی که ستم کردند از عذاب روزی دردناک!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,385,'آیا جز این انتظار دارند که قیامت ناگهان به سراغشان آید در حالی که نمیفهمند؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,385,'دوستان در آن روز دشمن یکدیگرند، مگر پرهیزگاران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,385,'ای بندگان من! امروز نه ترسی بر شماست و نه اندوهگین میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,385,'همان کسانی که به آیات ما ایمان آوردند و تسلیم بودند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,385,'(به آنها خطاب میشود:) شما و همسرانتان در نهایت شادمانی وارد بهشت شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,385,'(این در حالی است که) ظرفها (ی غذا) و جامهای طلائی (شراب طهور) را گرداگرد آنها میگردانند؛ و در آن (بهشت) آنچه دلها میخواهد و چشمها از آن لذت میبرد موجود است؛ و شما همیشه در آن خواهید ماند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,385,'این بهشتی است که شما وارث آن میشوید بخاطر اعمالی که انجام میدادید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,385,'و در آن برای شما میوههای فراوان است که از آن میخورید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,385,'(ولی) مجرمان در عذاب دوزخ جاودانه میمانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,385,'هرگز عذاب آنان تخفیف نمییابد، و در آنجا از همه چیز مأیوسند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,385,'ما به آنها ستم نکردیم، آنان خود ستمکار بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,385,'آنها فریاد میکشند: «ای مالک دوزخ! (ای کاش) پروردگارت ما را بمیراند (تا آسوده شویم)!» میگوید: «شما در این جا ماندنی هستید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,385,'ما حق را برای شما آوردیم؛ ولی بیشتر شما از حق کراهت داشتید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,385,'بلکه آنها تصمیم محکم بر توطئه گرفتند؛ ما نیز اراده محکمی (درباره آنها) داریم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,385,'آیا آنان میپندارند که ما اسرار نهانی و سخنان درگوشی آنان را نمیشنویم؟ آری، رسولان (و فرشتگان) ما نزد آنها هستند و مینویسند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,385,'بگو: «اگر برای خداوند فرزندی بود، من نخستین پرستنده او بودم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,385,'منزه است پروردگار آسمانها و زمین، پروردگار عرش، از توصیفی که آنها میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,385,'آنان را به حال خود واگذار تا در باطل غوطهور باشند و سرگرم بازی شوند تا روزی را که به آنها وعده داده شده است ملاقات کنند (و نتیجه کار خود را ببینند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,385,'او کسی است که در آسمان معبود است و در زمین معبود؛ و او حکیم و علیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,385,'پر برکت و پایدار است کسی که حکومت آسمانها و زمین و آنچه در میان آن دو است از آن اوست؛ و آگاهی از قیام قیامت نزد اوست و به سوی او بازگردانده میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,385,'کسانی را که غیر از او میخوانند قادر بر شفاعت نیستند؛ مگر آنها که شهادت به حق دادهاند و بخوبی آگاهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,385,'و اگر از آنها بپرسی چه کسی آنان را آفریده، قطعاً میگویند: خدا؛ پس چگونه از عبادت او منحرف میشوند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,385,'آنها چگونه از شکایت پیامبر که میگوید: «پروردگارا! اینها قومی هستند که ایمان نمی آورند» (غافل میشوند؟!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,385,'پس (اکنون که چنین است) از آنان روی برگردان و بگو: «سلام بر شما»، امّا بزودی خواهند دانست!');
+INSERT INTO chapters (id, number, quran_id) VALUES(386,44,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,386,'حم');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,386,'سوگند به این کتاب روشنگر،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,386,'که ما آن را در شبی پر برکت نازل کردیم؛ ما همواره انذارکننده بودهایم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,386,'در آن شب هر امری بر اساس حکمت (الهی) تدبیر و جدا میگردد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,386,'(آری، نزول قرآن) فرمانی بود از سوی ما؛ ما (محمد (ص) را) فرستادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,386,'اینها همه بخاطر رحمتی است از سوی پروردگارت، که شنونده و داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,386,'(همان) پروردگار آسمانها و زمین و آنچه در میان آنهاست، اگر اهل یقین هستید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,386,'هیچ معبودی جز او نیست؛ زنده میکند و میمیراند؛ او پروردگار شما و پروردگار پدران نخستین شماست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,386,'ولی آنها در شکند و (با حقایق) بازی میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,386,'پس منتظر روزی باش که آسمان دود آشکاری پدید آورد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,386,'که همه مردم را فرامیگیرد؛ این عذاب دردناکی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,386,'(میگویند:) پروردگارا! عذاب را از ما برطرف کن که ایمان میآوریم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,386,'چگونه: و از کجا متذکر میشوند با اینکه رسول روشنگر (با معجزات و منطق روشن) به سراغشان آمد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,386,'سپس از او روی گردان شدند و گفتند: «او تعلیم یافتهای دیوانه است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,386,'ما عذاب را کمی برطرف میسازیم، ولی باز به کارهای خود بازمیگردید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,386,'(ما از آنها انتقام میگیریم) در آن روز که آنها را با قدرت خواهیم گرفت؛ آری ما انتقام گیرندهایم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,386,'ما پیش از اینها قوم فرعون را آزمودیم و رسول بزرگواری به سراغشان آمد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,386,'(و به آنان گفت: امور) بندگان خدا را به من واگذارید که من فرستاده امینی برای شما هستم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,386,'و در برابر خداوند تکبر نورزید که من برای شما دلیل روشنی آوردهام!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,386,'و من به پروردگار خود و پروردگار شما پناه میبرم از اینکه مرا متهم کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,386,'و اگر به من ایمان نمیآورید، از من کنارهگیری کنید (و مانع ایمان آوردن مردم نشوید)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,386,'(آنها هیچ یک از این پندها را نپذیرفتند، و موسی) به پیشگاه پروردگارش عرضه داشت: اینها قومی مجرمند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,386,'(به او دستور داده شد:) بندگان مرا شبانه حرکت ده که شما تعقیب میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,386,'(هنگامی که از دریا گذشتید) دریا را آرام و گشاده بگذار (و بگذر) که آنها لشکری غرقشده خواهند بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,386,'(سرانجام همگی نابود شدند و) چه بسیار باغها و چشمهها که از خود به جای گذاشتند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,386,'و زراعتها و قصرهای زیبا و گرانقیمت،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,386,'و نعمتهای فراوان دیگر که در آن (غرق) بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,386,'اینچنین بود ماجرای آنان! و ما (اموال و حکومت) اینها را میراث برای اقوام دیگری قرار دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,386,'نه آسمان بر آنان گریست و نه زمین، و نه به آنها مهلتی داده شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,386,'ما بنی اسرائیل را از عذاب ذلّتبار رهایی بخشیدیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,386,'از فرعون که مردی متکبر و از اسرافکاران بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,386,'ما آنها را با علم (خویش) بر جهانیان برگزیدیم و برتری دادیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,386,'و آیاتی (از قدرت خویش) را به آنها دادیم که آزمایش آشکاری در آن بود (ولی آنان کفران کردند و مجازات شدند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,386,'اینها [= مشرکان] میگویند:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,386,'«مرگ ما جز همان مرگ اول نیست و هرگز برانگیخته نخواهیم شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,386,'اگر راست میگویید پدران ما را (زنده کنید و) بیاورید (تا گواهی دهند)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,386,'آیا آنان بهترند یا قوم «تبّع» و کسانی که پیش از آنها بودند؟! ما آنان را هلاک کردیم، چرا که مجرم بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,386,'ما آسمانها و زمین و آنچه را که در میان این دو است به بازی (و بیهدف) نیافریدیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,386,'ما آن دو را جز بحق نیافریدیم؛ ولی بیشتر آنان نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,386,'روز جدایی (حق از باطل) وعدهگاه همه آنهاست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,386,'روزی که هیچ دوستی کمترین کمکی به دوستش نمیکند، و از هیچسو یاری نمیشوند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,386,'مگر کسی که خدا او را مورد رحمت قرار داده، چرا که او عزیز و رحیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,386,'مسلّماً درخت زقّوم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,386,'غذای گنهکاران است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,386,'همانند فلز گداخته در شکمها میجوشد؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,386,'جوششی همچون آب سوزان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,386,'(آنگاه به مأموران دوزخ خطاب میشود:) این کافر مجرم را بگیرید و به میان دوزخ پرتابش کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,386,'سپس بر سر او از عذاب جوشان بریزید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,386,'(به او گفته میشود:) بچش که (به پندار خود) بسیار قدرتمند و محترم بودی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,386,'این همان چیزی است که پیوسته در آن تردید میکردید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,386,'(ولی) پرهیزگاران در جایگاه امنی قرار دارند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,386,'در میان باغها و چشمهها؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,386,'آنها لباسهایی از حریر نازک و ضخیم میپوشند و در مقابل یکدیگر مینشینند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,386,'اینچنیناند بهشتیان؛ و آنها را با «حور العین» تزویج میکنیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,386,'آنها در آنجا هر نوع میوهای را بخواهند در اختیارشان قرارمیگیرد، و در نهایت امنیّت به سر میبرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,386,'هرگز مرگی جز همان مرگ اوّل (که در دنیا چشیدهاند) نخواهند چشید، و خداوند آنها را از عذاب دوزخ حفظ میکند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,386,'این فضل و بخششی است از سوی پروردگارت، این همان رستگاری بزرگ است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,386,'ما آن [= قرآن] را بر زبان تو آسان ساختیم، شاید آنان متذکّر شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,386,'(امّا اگر نپذیرفتند) منتظر باش، آنها نیز منتظرند (تو منتظر پیروزی الهی و آنها منتظر عذاب و شکست)!');
+INSERT INTO chapters (id, number, quran_id) VALUES(387,45,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,387,'حم');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,387,'این کتاب از سوی خداوند عزیز و حکیم نازل شده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,387,'بیشکّ در آسمانها و زمین نشانههای (فراوانی) برای مؤمنان وجود دارد؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,387,'و نیز در آفرینش شما و جنبندگانی که (در سراسر زمین) پراکنده ساخته، نشانههایی است برای جمعیّتی که اهل یقینند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,387,'و نیز در آمد و شد شب و روز، و رزق (و بارانی) که خداوند از آسمان نازل کرده و بوسیله آن زمین را بعد از مردنش حیات بخشیده و همچنین در وزش بادها، نشانههای روشنی است برای گروهی که اهل تفکّرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,387,'اینها آیات خداوند است که ما آن را بحقّ بر تو تلاوت میکنیم؛ اگر آنها به این آیات ایمان نیاورند، به کدام سخن بعد از سخن خدا و آیاتش ایمان میآورند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,387,'وای بر هر دروغگوی گنهکار...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,387,'که پیوسته آیات خدا را میشنود که بر او تلاوت میشود، امّا از روی تکبّر اصرار بر مخالفت دارد؛ گویی اصلاً آن را هیچ نشنیده است؛ چنین کسی را به عذابی دردناک بشارت ده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,387,'و هرگاه از بعضی آیات ما آگاه شود، آن را به باد استهزا میگیرد؛ برای آنان عذاب خوارکنندهای است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,387,'و پشت سرشان دوزخ است؛ و هرگز آنچه را به دست آوردهاند آنها را (از عذاب الهی) رهایی نمیبخشد، و نه اولیایی که غیر از خدا برای خود برگزیدند (مایه نجاتشان خواهند بود)؛ و عذاب بزرگی برای آنهاست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,387,'این (قرآن) مایه هدایت است، و کسانی که به آیات پروردگارشان کافر شدند، عذابی سخت و دردناک دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,387,'خداوند همان کسی است که دریا را مسخّر شما کرد تا کشتیها بفرمانش در آن حرکت کنند و بتوانند از فضل او بهره گیرید، و شاید شکر نعمتهایش را بجا آورید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,387,'او آنچه در آسمانها و آنچه در زمین است همه را از سوی خودش مسخّر شما ساخته؛ در این نشانههای (مهمّی) است برای کسانی که اندیشه میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,387,'به مؤمنان بگو: «کسانی را که امید به ایّام اللّه [= روز رستاخیز] ندارند مورد عفو قرار دهند تا خداوند هر قومی را به اعمالی که انجام میدادند جزا دهد»!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,387,'هر کس کار شایستهای بجا آورد، برای خود بجا آورده است؛ و کسی که کار بد میکند، به زیان خود اوست؛ سپس همه شما به سوی پروردگارتان بازگردانده میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,387,'ما بنی اسرائیل را کتاب (آسمانی) و حکومت و نبّوت بخشیدیم و از روزیهای پاکیزه به آنها عطا کردیم و آنان را بر جهانیان (و مردم عصر خویش) برتری بخشیدیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,387,'و دلایل روشنی از امر نبّوت و شریعت در اختیارشان قرار دادیم؛ آنها اختلاف نکردند مگر بعد از علم و آگاهی؛ و این اختلاف بخاطر ستم و برتریجویی آنان بود؛ امّا پروردگارت روز قیامت در میان آنها در آنچه اختلاف داشتند داوری میکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,387,'سپس تو را بر شریعت و آیین حقّی قرار دادیم؛ از آن پیروی کن و از هوسهای کسانی که آگاهی ندارند پیروی مکن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,387,'آنها هرگز نمیتوانند تو را در برابر خداوند بینیاز کنند (و از عذابش برهانند)؛ و ظالمان یار و یاور یکدیگرند، امّا خداوند یار و یاور پرهیزگاران است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,387,'این (قرآن و شریعت آسمانی) وسایل بینایی و مایه هدایت و رحمت است برای مردمی که (به آن) یقین دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,387,'آیا کسانی که مرتکب بدیها و گناهان شدند گمان کردند که ما آنها را همچون کسانی قرارمیدهیم که ایمان آورده و اعمال صالح انجام دادهاند که حیات و مرگشان یکسان باشد؟! چه بد داوری میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,387,'و خداوند آسمانها و زمین را بحقّ آفریده است تا هر کس در برابر اعمالی که انجام داده است جزا داده شود؛ و به آنها ستمی نخواهد شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,387,'آیا دیدی کسی را که معبود خود را هوای نفس خویش قرار داده و خداوند او را با آگاهی (بر اینکه شایسته هدایت نیست) گمراه ساخته و بر گوش و قلبش مُهر زده و بر چشمش پردهای افکنده است؟! با این حال چه کسی میتواند غیر از خدا او را هدایت کند؟! آیا متذکّر نمیشوید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,387,'آنها گفتند: «چیزی جز همین زندگی دنیای ما در کار نیست؛ گروهی از ما میمیرند و گروهی جای آنها را میگیرند؛ و جز طبیعت و روزگار ما را هلاک نمیکند!» آنان به این سخن که میگویند علمی ندارند، بلکه تنها حدس میزنند (و گمانی بیپایه دارند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,387,'و هنگامی که آیات روشن ما بر آنها خوانده میشود، دلیلی در برابر آن ندارند جز اینکه میگویند: «اگر راست میگویید پدران ما را (زنده کنید) و بیاورید (تا گواهی دهند)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,387,'بگو: «خداوند شما را زنده میکند، سپس میمیراند، بار دیگر در روز قیامت که در آن تردیدی نیست گردآوری میکند؛ ولی بیشتر مردم نمیدانند.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,387,'مالکیّت و حاکمیّت آسمانها و زمین برای خداست؛ و آن روز که قیامت برپا شود اهل باطل زیان میبینند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,387,'در آن روز هر امّتی را میبینی (که از شدّت ترس و وحشت) بر زانو نشسته؛ هر امّتی بسوی کتابش خوانده میشود، و (به آنها میگویند:) امروز جزای آنچه را انجام میدادید به شما میدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,387,'این کتاب ما است که بحق با شما سخن میگوید (و اعمال شما را بازگو میکند)؛ ما آنچه را انجام میدادید مینوشتیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,387,'امّا کسانی که ایمان آوردند و اعمال صالح انجام دادند، پروردگارشان آنها را در رحمت خود وارد میکند؛ این همان پیروزی بزرگ است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,387,'امّا کسانی که کافر شدند (به آنها گفته میشود:) مگر آیات من بر شما خوانده نمیشد و شما استکبار کردید و قوم مجرمی بودید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,387,'و هنگامی که گفته میشد: «وعده خداوند حقّ است، و در قیامت هیچ شکّی نیست»، شما میگفتید: «ما نمیدانیم قیامت چیست؟ ما تنها گمانی در این باره داریم، و به هیچوجه یقین نداریم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,387,'و بدیهای اعمالشان برای آنان آشکار میشود، و سرانجام آنچه را استهزا میکردند آنها را فرامیگیرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,387,'و به آنها گفته میشود: «امروز شما را فراموش میکنیم همانگونه که شما دیدار امروزتان را فراموش کردید؛ و جایگاه شما دوزخ است و هیچ یاوری ندارید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,387,'این بخاطر آن است که شما آیات خدا را به مسخره گرفتید و زندگی دنیا شما را فریب داد! «امروز نه آنان را از دوزخ بیرون میآورند، و نه هیچگونه عذری از آنها پذیرفته میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,387,'پس حمد و ستایش مخصوص خداست، پروردگار آسمانها و پروردگار زمین و پروردگار همه جهانیان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,387,'و برای اوست کبریا و عظمت در آسمانها و زمین، و اوست عزیز و حکیم!');
+INSERT INTO chapters (id, number, quran_id) VALUES(388,46,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,388,'حم');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,388,'این کتاب از سوی خداوند عزیز و حکیم نازل شده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,388,'ما آسمانها و زمین و آنچه را در میان این دو است جز بحق و برای سرآمد معیّنی نیافریدیم؛ امّا کافران از آنچه انذار میشوند روی گردانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,388,'به آنان بگو: «این معبودهایی را که غیر از خدا پرستش میکنید به من نشان دهید چه چیزی از زمین را آفریدهاند، یا شرکتی در آفرینش آسمانها دارند؟ کتابی آسمانی پیش از این، یا اثر علمی از گذشتگان برای من بیاورید (که دلیل صدق گفتار شما باشد) اگر راست میگویید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,388,'چه کسی گمراهتر است از آن کس که معبودی غیر خدا را میخواند که تا قیامت هم به او پاسخ نمیگوید و از خواندن آنها (کاملا) ً بیخبر است؟! (و صدای آنها را هیچ نمیشنود!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,388,'و هنگامی که مردم محشور میشوند، معبودهای آنها دشمنانشان خواهند بود؛ حتّی عبادت آنها را انکار میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,388,'هنگامی که آیات روشن ما بر آنان خوانده میشود، کافران در برابر حقّی که برای آنها آمده میگویند: «این سحری آشکار است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,388,'بلکه میگویند: «این آیات را بر خدا افترا بسته است!» بگو: «اگر من آن را بدروغ به خدا نسبت داده باشم (لازم است مرا رسوا کند و) شما نمیتوانید در برابر خداوند از من دفاع کنید! او کارهایی را که شما در آن وارد میشوید بهتر میداند؛ همین بس که خداوند گواه میان من و شما باشد؛ و او آمرزنده و مهربان است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,388,'بگو: «من پیامبر نوظهوری نیستم؛ و نمیدانم با من و شما چه خواهد شد؛ من تنها از آنچه بر من وحی میشود پیروی میکنم، و جز بیمدهنده آشکاری نیستم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,388,'بگو: «به من خبر دهید اگر این قرآن از سوی خدا باشد و شما به آن کافر شوید، در حالی که شاهدی از بنی اسرائیل بر آن شهادت دهد، و او ایمان آورد و شما استکبار کنید (چه کسی گمراهتر از شما خواهد بود)؟! خداوند گروه ستمگر را هدایت نمیکند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,388,'کافران درباره مؤمنان چنین گفتند: «اگر (اسلام) چیز خوبی بود، هرگز آنها (در پذیرش آن) بر ما پیشی نمیگرفتند!» و چون خودشان بوسیله آن هدایت نشدند میگویند: «این یک دروغ قدیمی است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,388,'و پیش از آن، کتاب موسی که پیشوا و رحمت بود (نشانههای آن را بیان کرده)، و این کتاب هماهنگ با نشانههای تورات است در حالی که به زبان عربی و فصیح و گویاست، تا ظالمان را بیم دهد و برای نیکوکاران بشارتی باشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,388,'کسانی که گفتند: «پروردگار ما اللّه است»، سپس استقامت کردند، نه ترسی برای آنان است و نه اندوهگین میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,388,'آنها اهل بهشتند و جاودانه در آن میمانند؛ این پاداش اعمالی است که انجام میدادند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,388,'ما به انسان توصیه کردیم که به پدر و مادرش نیکی کند، مادرش او را با ناراحتی حمل میکند و با ناراحتی بر زمین میگذارد؛ و دوران حمل و از شیر بازگرفتنش سی ماه است؛ تا زمانی که به کمال قدرت و رشد برسد و به چهل سالگی بالغ گردد میگوید: «پروردگارا! مرا توفیق ده تا شکر نعمتی را که به من و پدر و مادرم دادی بجا آورم و کار شایستهای انجام دهم که از آن خشنود باشی، و فرزندان مرا صالح گردان؛ من به سوی تو بازمیگردم و توبه میکنم، و من از مسلمانانم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,388,'آنها کسانی هستند که ما بهترین اعمالشان را قبول میکنیم و از گناهانشان میگذریم و در میان بهشتیان جای دارند؛ این وعده راستی است که وعده داده میشدند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,388,'و کسی که به پدر و مادرش میگوید: «اف بر شما! آیا به من وعده میدهید که من روز قیامت مبعوث میشوم؟! در حالی که پیش از من اقوام زیادی بودند (و هرگز مبعوث نشدند)! و آن دو پیوسته فریاد میکشند و خدا را به یاری میطلبند که: وای بر تو، ایمان بیاور که وعده خدا حق است امّا او پیوسته میگوید:» اینها چیزی جز افسانههای پیشینیان نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,388,'آنها کسانی هستند که فرمان عذاب درباره آنان همراه اقوام (کافری) که پیش از آنان از جنّ و انس بودند مسلّم شده، چرا که همگی زیانکار بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,388,'و برای هر کدام از آنها درجاتی است بر طبق اعمالی که انجام دادهاند، تا خداوند کارهایشان را بیکم و کاست به آنان تحویل دهد؛ و به آنها هیچ ستمی نخواهد شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,388,'آن روز که کافران را بر آتش عرضه میکنند (به آنها گفته میشود:) از طیّبات و لذائذ در زندگی دنیا خود استفاده کردید و از آن بهره گرفتید؛ اما امروز عذاب ذلّتبار بخاطر استکباری که در زمین بناحق کردید و بخاطر گناهانی که انجام میدادید؛ جزای شما خواهد بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,388,'(سرگذشت هود) برادر قوم عاد را یاد کن، آن زمان که قومش را در سرزمین «احقاف» بیم داد در حالی که پیامبران زیادی قبل از او در گذشتههای دور و نزدیک آمده بودند که: جز خدای یگانه را نپرستید! (و گفت:) من بر شما از عذاب روزی بزرگ میترسم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,388,'آنها گفتند: «آیا آمدهای که ما را (با دروغهایت) از معبودانمان بازگردانی؟! اگر راست میگویی عذابی را که به ما وعده میدهی بیاور!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,388,'گفت: «علم (آن) تنها نزد خداست (و او میداند چه زمانی شما را مجازات کند)؛ من آنچه را به آن فرستاده شدهام به شما میرسانم، (وظیفه من همین است!) ولی شما را قومی میبینیم که پیوسته در نادانی هستید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,388,'هنگامی که آن (عذاب الهی) را بصورت ابر گستردهای دیدند که بسوی درّهها و آبگیرهای آنان در حرکت است (خوشحال شدند) گفتند: «این ابری است که بر ما میبارد!» (ولی به آنها گفته شد:) این همان چیزی است که برای آمدنش شتاب میکردید، تندبادی است (وحشتناک) که عذاب دردناکی در آن است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,388,'همه چیز را بفرمان پروردگارش در هم میکوبد و نابود میکند (آری) آنها صبح کردند در حالی که چیزی جز خانههایشان به چشم نمیخورد؛ ما اینگونه گروه مجرمان را کیفر میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,388,'ما به آنها [= قوم عاد] قدرتی دادیم که به شما ندادیم، و برای آنان گوش و چشم و دل قرار دادیم؛ (امّا به هنگام نزول عذاب) نه گوشها و چشمها و نه عقلهایشان برای آنان هیچ سودی نداشت، چرا که آیات خدا را انکار میکردند؛ و سرانجام آنچه را استهزا میکردند بر آنها وارد شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,388,'ما آبادیهایی را که پیرامون شما بودند نابود ساختیم، و آیات خود را بصورتهای گوناگون (برای مردم آنها) بیان کردیم شاید بازگردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,388,'پس چرا معبودانی را که غیر از خدا برگزیدند -به گمان اینکه به خدا نزدیکشان سازد- آنها را یاری نکردند؟! بلکه از میانشان گم شدند! این بود نتیجه دروغ آنها و آنچه افترا میبستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,388,'(به یاد آور) هنگامی که گروهی از جنّ را به سوی تو متوجّه ساختیم که قرآن را بشنوند؛ وقتی حضور یافتند به یکدیگر گفتند: «خاموش باشید و بشنوید!» و هنگامی که پایان گرفت، به سوی قوم خود بازگشتند و آنها را بیم دادند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,388,'گفتند: «ای قوم ما! ما کتابی را شنیدیم که بعد از موسی نازل شده، هماهنگ با نشانههای کتابهای پیش از آن، که به سوی حقّ و راه راست هدایت میکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,388,'ای قوم ما! دعوت کننده الهی را اجابت کنید و به او ایمان آورید تا گناهانتان را ببخشد و شما را از عذابی دردناک پناه دهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,388,'و هر کس به دعوت کننده الهی پاسخ نگوید، هرگز نمیتواند از چنگال عذاب الهی در زمین فرار کند، و غیر از خدا یار و یاوری برای او نیست؛ چنین کسانی در گمراهی آشکارند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,388,'آیا آنها نمیدانند خداوندی که آسمانها و زمین را آفریده و از آفرینش آنها ناتوان نشده است، میتواند مُردگان را زنده کند؟! آری او بر هر چیز تواناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,388,'روزی را به یاد آور که کافران را بر آتش عرضه میدارند (و به آنها گفته میشود:) آیا این حقّ نیست؟! میگویند: «آری، به پروردگارمان سوگند (که حقّ است)!» (در این هنگام خداوند) میگوید: «پس عذاب را بخاطر کفرتان بچشید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,388,'پس صبر کن آنگونه که پیامبران «اُولو العزم» صبر کردند، و برای (عذاب) آنان شتاب مکن! هنگامی که وعدههایی را که به آنها داده میشود ببینند، احساس میکنند که گویی فقط ساعتی از یک روز (در دنیا) توقّف داشتند؛ این ابلاغی است برای همگان؛ آیا جز قوم فاسق هلاک میشوند؟!');
+INSERT INTO chapters (id, number, quran_id) VALUES(389,47,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,389,'کسانی که کافر شدند و (مردم را) از راه خدا بازداشتند، (خداوند) اعمالشان را نابود میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,389,'و کسانی که ایمان آوردند و کارهای شایسته انجام دادند و به آنچه بر محمد (ص) نازل شده -و همه حقّ است و از سوی پروردگارشان- نیز ایمان آوردند، خداوند گناهانشان را میبخشد و کارشان را اصلاح میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,389,'این بخاطر آن است که کافران از باطل پیروی کردند، و مؤمنان از حقّی که از سوی پروردگارشان بود تبعیّت نمودند؛ اینگونه خداوند برای مردم مثَلهای (زندگی) آنان را بیان میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,389,'و هنگامی که با کافران (جنایتپیشه) در میدان جنگ روبهرو شدید گردنهایشان را بزنید، (و این کار را همچنان ادامه دهید) تا به اندازه کافی دشمن را در هم بکوبید؛ در این هنگام اسیران را محکم ببندید؛ سپس یا بر آنان منّت گذارید (و آزادشان کنید) یا در برابر آزادی از آنان فدیه [= غرامت] بگیرید؛ (و این وضع باید همچنان ادامه یابد) تا جنگ بار سنگین خود را بر زمین نهد، (آری) برنامه این است! و اگر خدا میخواست خودش آنها را مجازات میکرد، اما میخواهد بعضی از شما را با بعضی دیگر بیازماید؛ و کسانی که در راه خدا کشته شدند، خداوند هرگز اعمالشان را از بین نمیبرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,389,'بزودی آنان را هدایت نموده و کارشان را اصلاح میکند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,389,'و آنها را در بهشت (جاویدانش) که اوصاف آن را برای آنان بازگو کرده وارد میکند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,389,'ای کسانی که ایمان آوردهاید! اگر (آیین) خدا را یاری کنید، شما را یاری میکند و گامهایتان را استوار میدارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,389,'و کسانی که کافر شدند، مرگ بر آنان! و اعمالشان نابود باد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,389,'این بخاطر آن است که از آنچه خداوند نازل کرده کراهت داشتند؛ از این رو خدا اعمالشان را حبط و نابود کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,389,'آیا در زمین سیر نکردند تا ببینند عاقبت کسانی که قبل از آنان بودند چگونه بود؟! خداوند آنها را هلاک کرد؛ و برای کافران امثال این مجازاتها خواهد بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,389,'این برای آن است که خداوند مولا و سرپرست کسانی است که ایمان آوردند؛ امّا کافران مولایی ندارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,389,'خداوند کسانی را که ایمان آوردند و اعمال صالح انجام دادند وارد باغهایی از بهشت میکند که نهرها از زیر (درختانش) جاری است؛ در حالی که کافران از متاع زودگذر دنیا بهره میگیرند و همچون چهارپایان میخورند، و سرانجام آتش دوزخ جایگاه آنهاست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,389,'و چه بسیار شهرهایی که از شهری که تو را بیرون کرد نیرومندتر بودند؛ ما همه آنها را نابود کردیم و هیچ یاوری نداشتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,389,'آیا کسی که دلیل روشنی از سوی پروردگارش دارد، همانند کسی است که زشتی اعمالش در نظرش آراسته شده و از هوای نفسشان پیروی میکنند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,389,'توصیف بهشتی که به پرهیزگاران وعده داده شده، چنین است: در آن نهرهایی از آب صاف و خالص که بدبو نشده، و نهرهایی از شیر که طعم آن دگرگون نگشته، و نهرهایی از شراب (طهور) که مایه لذّت نوشندگان است، و نهرهایی از عسل مصفّاست، و برای آنها در آن از همه انواع میوهها وجود دارد؛ و (از همه بالاتر) آمرزشی است از سوی پروردگارشان! آیا اینها همانند کسانی هستند که همیشه در آتش دوزخند و از آب جوشان نوشانده میشوند که اندرونشان را از هم متلاشی میکند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,389,'گروهی از آنان به سخنانت گوش فرامیدهند، امّا هنگامی که از نزد تو خارج میشوند به کسانی که علم و دانش به آنان بخشیده شده (از روی استهزا) میگویند: «(این مرد) الان چه گفت؟!» آنها کسانی هستند که خداوند بر دلهایشان مُهر نهاده و از هوای نفسشان پیروی کردهاند (از این رو چیزی نمیفهمند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,389,'کسانی که هدایت یافتهاند، خداوند بر هدایتشان میافزاید و روح تقوا به آنان میبخشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,389,'آیا آنها [= کافران] جز این انتظاری دارند که قیامت ناگهان فرا رسد (آنگاه ایمان آورند)، در حالی که هماکنون نشانههای آن آمده است؛ اما هنگامی که بیاید، تذکّر (و ایمان) آنها سودی نخواهد داشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,389,'پس بدان که معبودی جز «اللّه» نیست؛ و برای گناه خود و مردان و زنان باایمان استغفار کن! و خداوند محل حرکت و قرارگاه شما را میداند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,389,'کسانی که ایمان آوردهاند میگویند: «چرا سورهای نازل نمیشود (که در آن فرمان جهاد باشد)؟!» امّا هنگامی که سوره واضح و روشنی نازل میگردد که در آن سخنی از جنگ است، منافقان بیماردل را میبینی که همچون کسی که در آستانه مرگ قرار گرفته به تو نگاه میکنند؛ پس مرگ و نابودی برای آنان سزاوارتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,389,'(ولی) اطاعت و سخن سنجیده برای آنان بهتر است؛ و اگر هنگامی که فرمان جهاد قطعی میشود به خدا راست گویند (و از در صدق و صفا درآیند) برای آنها بهتر میباشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,389,'اگر (از این دستورها) روی گردان شوید، جز این انتظار میرود که در زمین فساد و قطع پیوند خویشاوندی کنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,389,'آنها کسانی هستند که خداوند از رحمت خویش دورشان ساخته، گوشهایشان را کر و چشمهایشان را کور کرده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,389,'آیا آنها در قرآن تدبّر نمیکنند، یا بر دلهایشان قفل نهاده شده است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,389,'کسانی که بعد از روشن شدن هدایت برای آنها، پشت به حق کردند، شیطان اعمال زشتشان را در نظرشان زینت داده و آنان را با آرزوهای طولانی فریفته است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,389,'این بخاطر آن است که آنان به کسانی که نزول وحی الهی را کراهت داشتند گفتند: «ما در بعضی از امور از شما پیروی میکنیم؟» در حالی که خداوند پنهانکاری آنان را میداند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,389,'حال آنها چگونه خواهد بود هنگامی که فرشتگان (مرگ) بر صورت و پشت آنان میزنند و جانشان را میگیرند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,389,'این بخاطر آن است که آنها از آنچه خداوند را به خشم میآورد پیروی کردند، و آنچه را موجب خشنودی اوست کراهت داشتند؛ از این رو (خداوند) اعمالشان را نابود کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,389,'آیا کسانی که در دلهایشان بیماری است گمان کردند خدا کینههایشان را آشکار نمیکند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,389,'و اگر ما بخواهیم آنها را به تو نشان میدهیم تا آنان را با قیافههایشان بشناسی، هر چند میتوانی آنها را از طرز سخنانشان بشناسی؛ و خداوند اعمال شما را میداند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,389,'ما همه شما را قطعاً میآزمائیم تا معلوم شود مجاهدان واقعی و صابران از میان شما کیانند، و اخبار شما را بیازماییم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,389,'آنان که کافر شدند و (مردم را) از راه خدا بازداشتند و بعد از روشنشدن هدایت برای آنان (باز) به مخالفت با رسول (خدا) برخاستند، هرگز زیانی به خدا نمیرسانند و (خداوند) بزودی اعمالشان را نابود میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,389,'ای کسانی که ایمان آوردهاید! اطاعت کنید خدا را، و اطاعت کنید رسول (خدا) را، و اعمال خود را باطل نسازید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,389,'کسانی که کافر شدند و (مردم را) از راه خدا بازداشتند سپس در حال کفر از دنیا رفتند، خدا هرگز آنها را نخواهد بخشید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,389,'پس هرگز سست نشوید و (دشمنان را) به صلح (ذلّتبار) دعوت نکنید در حالی که شما برترید، و خداوند با شماست و چیزی از (ثواب) اعمالتان را کم نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,389,'زندگی دنیا تنها بازی و سرگرمی است؛ و اگر ایمان آورید و تقوا پیشه کنید، پاداشهای شما را میدهد و اموال شما را نمیطلبد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,389,'چرا که هر گاه اموال شما را مطالبه کند و حتّی اصرار نماید، بخل میورزید؛ و کینه و خشم شما را آشکار میسازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,389,'آری، شما همان گروهی هستید که برای انفاق در راه خدا دعوت میشوید، بعضی از شما بخل میورزند؛ و هر کس بخل ورزد، نسبت به خود بخل کرده است؛ و خداوند بینیاز است و شما همه نیازمندید؛ و هرگاه سرپیچی کنید، خداوند گروه دیگری را جای شما میآورد پس آنها مانند شما نخواهند بود (و سخاوتمندانه در راه خدا انفاق میکنند).');
+INSERT INTO chapters (id, number, quran_id) VALUES(390,48,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,390,'ما برای تو پیروزی آشکاری فراهم ساختیم!...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,390,'تا خداوند گناهان گذشته و آیندهای را که به تو نسبت میدادند ببخشد (و حقّانیت تو را ثابت نموده) و نعمتش را بر تو تمام کند و به راه راست هدایتت فرماید؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,390,'و پیروزی شکستناپذیری نصیب تو کند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,390,'او کسی است که آرامش را در دلهای مؤمنان نازل کرد تا ایمانی بر ایمانشان بیفزایند؛ لشکریان آسمانها و زمین از آن خداست، و خداوند دانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,390,'هدف (دیگر از آن فتح مبین) این بود که مردان و زنان با ایمان را در باغهایی (از بهشت) وارد کند که نهرها از زیر (درختانش) جاری است، در حالی که جاودانه در آن میمانند، و گناهانشان را میبخشد، و این نزد خدا رستگاری بزرگی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,390,'و (نیز) مردان و زنان منافق و مردان و زنان مشرک را که به خدا گمان بد میبرند مجازات کند؛ (آری) حوادث ناگواری (که برای مؤمنان انتظار میکشند) تنها بر خودشان نازل میشود! خداوند بر آنان غضب کرده و از رحمت خود دورشان ساخته و جهنم را برای آنان آماده کرده؛ و چه بد سرانجامی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,390,'لشکریان آسمانها و زمین تنها از آن خداست؛ و خداوند شکستناپذیر و حکیم است.!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,390,'به یقین ما تو را گواه (بر اعمال آنها) و بشارتدهنده و بیمدهنده فرستادیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,390,'تا (شما مردم) به خدا و رسولش ایمان بیاورید و از او دفاع کنید و او را بزرگ دارید، و خدا را صبح و شام تسبیح گویید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,390,'کسانی که با تو بیعت میکنند (در حقیّقت) تنها با خدا بیعت مینمایند، و دست خدا بالای دست آنهاست؛ پس هر کس پیمانشکنی کند، تنها به زیان خود پیمان شکسته است؛ و آن کس که نسبت به عهدی که با خدا بسته وفا کند، بزودی پاداش عظیمی به او خواهد داد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,390,'بزودی متخلّفان از اعراب بادیهنشین (عذرتراشی کرده) میگویند: «(حفظ) اموال و خانوادههای ما، ما را به خود مشغول داشت (و نتوانستیم در سفر حدیبیّه تو را همراهی کنیم)، برای ما طلب آمرزش کن!» آنها به زبان خود چیزی میگویند که در دل ندارند! بگو: «چه کسی میتواند در برابر خداوند از شما دفاع کند هرگاه زیانی برای شما بخواهد، و یا اگر نفعی اراده کند (مانع گردد)؟! و خداوند به همه کارهایی که انجام میدهید آگاه است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,390,'ولی شما گمان کردید پیامبر و مؤمنان هرگز به خانوادههای خود بازنخواهند گشت؛ و این (پندار غلط) در دلهای شما زینت یافته بود و گمان بد کردید؛ و سرانجام (در دام شیطان افتادید و) هلاک شدید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,390,'آن کس که به خدا و پیامبرش ایمان نیاورده (سرنوشتش دوزخ است)، چرا که ما برای کافران آتش فروزان آماده کردهایم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,390,'مالکیت و حاکمیت آسمانها و زمین از آن خداست؛ هر کس را بخواهد (و شایسته بداند) میبخشد، و هر کس را بخواهد مجازات میکند؛ و خداوند آمرزنده و رحیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,390,'هنگامی که شما برای به دست آوردن غنایمی حرکت کنید، متخلّفان (حدیبیّه) میگویند: «بگذارید ما هم در پی شما بیائیم، آنها میخواهند کلام خدا را تغییر دهند؛ بگو: «هرگز نباید بدنبال ما بیایید؛ این گونه خداوند از قبل گفته است!» آنها به زودی میگویند: «شما نسبت به ما حسد میورزید!» ولی آنها جز اندکی نمیفهمند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,390,'به متخلّفان از اعراب بگو: «بزودی از شما دعوت میشود که بسوی قومی نیرومند و جنگجو بروید و با آنها پیکار کنید تا اسلام بیاورند؛ اگر اطاعت کنید، خداوند پاداش نیکی به شما میدهد؛ و اگر سرپیچی نمایید -همان گونه که در گذشته نیز سرپیچی کردید- شما را با عذاب دردناکی کیفر میدهد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,390,'بر نابینا و لنگ و بیمار گناهی نیست (اگر در میدان جهاد شرکت نکنند)؛ و هر کس خدا و رسولش را اطاعت نماید، او را در باغهای (از بهشت) وارد میکند که نهرها از زیر (درختانش) جاری است؛ و آن کس که سرپیچی کند، او را به عذاب دردناکی گرفتار میسازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,390,'خداوند از مؤمنان -هنگامی که در زیر آن درخت با تو بیعت کردند- راضی و خشنود شد؛ خدا آنچه را در درون دلهایشان (از ایمان و صداقت) نهفته بود میدانست؛ از این رو آرامش را بر دلهایشان نازل کرد و پیروزی نزدیکی بعنوان پاداش نصیب آنها فرمود؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,390,'و (همچنین) غنایم بسیاری که آن را به دست میآورید؛ و خداوند شکست ناپذیر و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,390,'خداوند غنایم فراوانی به شما وعده داده بود که آنها را به دست میآورید، ولی این یکی را زودتر برای شما فراهم ساخت؛ و دست تعدّی مردم [= دشمنان] را از شما بازداشت تا نشانهای برای مؤمنان باشد و شما را به راه راست هدایت کند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,390,'و نیز غنایم و فتوحات دیگری (نصیبتان میکند) که شما توانایی آن را ندارید، ولی قدرت خدا به آن احاطه دارد؛ و خداوند بر همه چیز تواناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,390,'و اگر کافران (در سرزمین حدیبیّه) با شما پیکار میکردند بزودی فرار میکردند، سپس ولیّ و یاوری نمییافتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,390,'این سنّت الهی است که در گذشته نیز بوده است؛ و هرگز برای سنّت الهی تغییر و تبدیلی نخواهی یافت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,390,'او کسی است که دست آنها را از شما، و دست شما را از آنان در دل مکّه کوتاه کرد، بعد از آنکه شما را بر آنها پیروز ساخت؛ و خداوند به آنچه انجام میدهید بیناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,390,'آنها کسانی هستند که کافر شدند و شما را از (زیارت) مسجد الحرام و رسیدن قربانیهایتان به محل قربانگاه بازداشتند؛ و هرگاه مردان و زنان با ایمانی در این میان بدون آگاهی شما، زیر دست و پا، از بین نمیرفتند که از این راه عیب و عاری ناآگاهانه به شما میرسید، (خداوند هرگز مانع این جنگ نمیشد)! هدف این بود که خدا هر کس را میخواهد در رحمت خود وارد کند؛ و اگر مؤمنان و کفّار (در مکه) از هم جدا میشدند، کافران را عذاب دردناکی میکردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,390,'(به خاطر بیاورید) هنگامی را که کافران در دلهای خود خشم و نخوت جاهلیّت داشتند؛ و (در مقابل،) خداوند آرامش و سکینه خود را بر فرستاده خویش و مؤمنان نازل فرمود و آنها را به حقیقت تقوا ملزم ساخت، و آنان از هر کس شایستهتر و اهل آن بودند؛ و خداوند به همه چیز دانا است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,390,'خداوند آنچه را به پیامبرش در عالم خواب نشان داد راست گفت؛ بطور قطع همه شما بخواست خدا وارد مسجد الحرام میشوید در نهایت امنیّت و در حالی که سرهای خود را تراشیده یا کوتاه کردهاید و از هیچ کس ترس و وحشتی ندارید؛ ولی خداوند چیزهایی را میدانست که شما نمیدانستید (و در این تأخیر حکمتی بود)؛ و قبل از آن، فتح نزدیکی (برای شما) قرار داده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,390,'او کسی است که رسولش را با هدایت و دین حق فرستاده تا آن را بر همه ادایان پیروز کند؛ و کافی است که خدا گواه این موضوع باشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,390,'محمّد (ص) فرستاده خداست؛ و کسانی که با او هستند در برابر کفّار سرسخت و شدید، و در میان خود مهربانند؛ پیوسته آنها را در حال رکوع و سجود میبینی در حالی که همواره فضل خدا و رضای او را میطلبند؛ نشانه آنها در صورتشان از اثر سجده نمایان است؛ این توصیف آنان در تورات و توصیف آنان در انجیل است، همانند زراعتی که جوانههای خود را خارج ساخته، سپس به تقویت آن پرداخته تا محکم شده و بر پای خود ایستاده است و بقدری نموّ و رشد کرده که زارعان را به شگفتی وامیدارد؛ این برای آن است که کافران را به خشم آورد (ولی) کسانی از آنها را که ایمان آورده و کارهای شایسته انجام دادهاند، خداوند وعده آمرزش و اجر عظیمی داده است.');
+INSERT INTO chapters (id, number, quran_id) VALUES(391,49,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,391,'ای کسانی که ایمان آوردهاید! چیزی را بر خدا و رسولش مقدّم نشمرید (و پیشی مگیرید)، و تقوای الهی پیشه کنید که خداوند شنوا و داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,391,'ای کسانی که ایمان آوردهاید! صدای خود را فراتر از صدای پیامبر نکنید، و در برابر او بلند سخن مگویید (و داد و فریاد نزنید) آن گونه که بعضی از شما در برابر بعضی بلند صدا میکنند، مبادا اعمال شما نابود گردد در حالی که نمیدانید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,391,'آنها که صدای خود را نزد رسول خدا کوتاه میکنند همان کسانی هستند که خداوند دلهایشان را برای تقوا خالص نموده، و برای آنان آمرزش و پاداش عظیمی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,391,'(ولی) کسانی که تو را از پشت حجرهها بلند صدا میزنند، بیشترشان نمیفهمند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,391,'اگر آنها صبر میکردند تا خود به سراغشان آیی، برای آنان بهتر بود؛ و خداوند آمرزنده و رحیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,391,'ای کسانی که ایمان آوردهاید! اگر شخص فاسقی خبری برای شما بیاورد، درباره آن تحقیق کنید، مبادا به گروهی از روی نادانی آسیب برسانید و از کرده خود پشیمان شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,391,'و بدانید رسول خدا در میان شماست؛ هرگاه در بسیاری از کارها از شما اطاعت کند، به مشقّت خواهید افتاد؛ ولی خداوند ایمان را محبوب شما قرار داده و آن را در دلهایتان زینت بخشیده، و (به عکس) کفر و فسق و گناه را منفورتان قرار داده است؛ کسانی که دارای این صفاتند هدایت یافتگانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,391,'(و این برای شما بعنوان) فضل و نعمتی از سوی خداست؛ و خداوند دانا و حکیم است.!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,391,'و هرگاه دو گروه از مؤمنان با هم به نزاع و جنگ پردازند، آنها را آشتی دهید؛ و اگر یکی از آن دو بر دیگری تجاوز کند، با گروه متجاوز پیکار کنید تا به فرمان خدا بازگردد؛ و هرگاه بازگشت (و زمینه صلح فراهم شد)، در میان آن دو به عدالت صلح برقرار سازید؛ و عدالت پیشه کنید که خداوند عدالت پیشگان را دوست میدارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,391,'مؤمنان برادر یکدیگرند؛ پس دو برادر خود را صلح و آشتی دهید و تقوای الهی پیشه کنید، باشد که مشمول رحمت او شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,391,'ای کسانی که ایمان آوردهاید! نباید گروهی از مردان شما گروه دیگر را مسخره کنند، شاید آنها از اینها بهتر باشند؛ و نه زنانی زنان دیگر را، شاید آنان بهتر از اینان باشند؛ و یکدیگر را مورد طعن و عیبجویی قرار ندهید و با القاب زشت و ناپسند یکدیگر را یاد نکنید، بسیار بد است که بر کسی پس از ایمان نام کفرآمیز بگذارید؛ و آنها که توبه نکنند، ظالم و ستمگرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,391,'ای کسانی که ایمان آوردهاید! از بسیاری از گمانها بپرهیزید، چرا که بعضی از گمانها گناه است؛ و هرگز (در کار دیگران) تجسّس نکنید؛ و هیچ یک از شما دیگری را غیبت نکند، آیا کسی از شما دوست دارد که گوشت برادر مرده خود را بخورد؟! (به یقین) همه شما از این امر کراهت دارید؛ تقوای الهی پیشه کنید که خداوند توبهپذیر و مهربان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,391,'ای مردم! ما شما را از یک مرد و زن آفریدیم و شما را تیرهها و قبیلهها قرار دادیم تا یکدیگر را بشناسید؛ (اینها ملاک امتیاز نیست،) گرامیترین شما نزد خداوند با تقواترین شماست؛ خداوند دانا و آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,391,'عربهای بادیهنشین گفتند: «ایمان آوردهایم» بگو: «شما ایمان نیاوردهاید، ولی بگویید اسلام آوردهایم، امّا هنوز ایمان وارد قلب شما نشده است! و اگر از خدا و رسولش اطاعت کنید، چیزی از پاداش کارهای شما را فروگذار نمیکند، خداوند، آمرزنده مهربان است.»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,391,'مؤمنان واقعی تنها کسانی هستند که به خدا و رسولش ایمان آوردهاند، سپس هرگز شکّ و تردیدی به خود راه نداده و با اموال و جانهای خود در راه خدا جهاد کردهاند؛ آنها راستگویانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,391,'بگو: «آیا خدا را از ایمان خود با خبر میسازید؟! او تمام آنچه را در آسمانها و زمین است میداند؛ و خداوند از همه چیز آگاه است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,391,'آنها بر تو منّت مینهند که اسلام آوردهاند؛ بگو: «اسلام آوردن خود را بر من منّت نگذارید، بلکه خداوند بر شما منّت مینهد که شما را به سوی ایمان هدایت کرده است، اگر (در ادّعای ایمان) راستگو هستید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,391,'خداوند غیبت آسمانها و زمین را میداند و نسبت به آنچه انجام میدهید بیناست!»');
+INSERT INTO chapters (id, number, quran_id) VALUES(392,50,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,392,'ق، سوگند به قرآن مجید (که قیامت و رستاخیز حقّ است)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,392,'آنها تعجّب کردند که پیامبری انذارگر از میان خودشان آمده؛ و کافران گفتند: «این چیز عجیبی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,392,'آیا هنگامی که مُردیم و خاک شدیم (دوباره به زندگی بازمیگردیم)؟! این بازگشتی بعید است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,392,'ولی ما میدانیم آنچه را زمین از بدن آنها میکاهد؛ و نزد ما کتابی است که همه چیز در آن محفوظ است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,392,'آنها حقّ را هنگامی که به سراغشان آمد تکذیب کردند؛ از این رو پیوسته در کار پراکنده خود متحیّرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,392,'آیا آنان به آسمان بالای سرشان نگاه نکردند که چگونه ما آن را بنا کردهایم، و چگونه آن را (بوسیله ستارگان) زینت بخشیدهایم و هیچ شکاف و شکستی در آن نیست؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,392,'و زمین را گسترش دادیم و در آن کوههائی عظیم و استوار افکندیم و از هر نوع گیاه بهجتانگیز در آن رویاندیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,392,'تا وسیله بینایی و یادآوری برای هر بنده توبه کاری باشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,392,'و از آسمان، آبی پربرکت نازل کردیم، و بوسیله آن باغها و دانههایی را که درو میکند رویاندیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,392,'و نخلهای بلندقامت که میوههای متراکم دارند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,392,'همه اینها برای روزیبخشیدن به بندگان است و بوسیله باران سرزمین مرده را زنده کردیم؛ (آری) زندهشدن مُردگان نیز همین گونه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,392,'پیش از آنان قوم نوح و «اصحاب الرسّ» [= قومی که در یمامه زندگی میکردند و پیامبری به نام حنظله داشتند] و قوم ثمود (پیامبرانشان را) تکذیب کردند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,392,'و همچنین قوم عاد و فرعون و قوم لوط،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,392,'و «اصحاب الایکه» [= قوم شعیب] و قوم تبّع (که در سرزمین یمن زندگی میکردند)، هر یک از آنها فرستادگان الهی را تکذیب کردند و وعده عذاب درباره آنان تحقّق یافت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,392,'آیا ما از آفرینش نخستین عاجز ماندیم (که قادر بر آفرینش رستاخیز نباشیم)؟! ولی آنها (با این همه دلایل روشن) باز در آفرینش جدید تردید دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,392,'ما انسان را آفریدیم و وسوسههای نفس او را میدانیم، و ما به او از رگ قلبش نزدیکتریم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,392,'(به خاطر بیاورید) هنگامی را که دو فرشته راست و چپ که ملازم انسانند اعمال او را دریافت میدارند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,392,'انسان هیچ سخنی را بر زبان نمیآورد مگر اینکه همان دم، فرشتهای مراقب و آماده برای انجام مأموریت (و ضبط آن) است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,392,'و سرانجام، سکرات (و بیخودی در آستانه) مرگ بحق فرامیرسد (و به انسان گفته میشود:) این همان چیزی است که تو از آن میگریختی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,392,'و در «صور» دمیده میشود؛ آن روز، روز تحقّق وعده وحشتناک است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,392,'هر انسانی وارد محشر میگردد در حالی که همراه او حرکت دهنده و گواهی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,392,'(به او خطاب میشود:) تو از این صحنه (و دادگاه بزرگ) غافل بودی و ما پرده را از چشم تو کنار زدیم، و امروز چشمت کاملاً تیزبین است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,392,'فرشته همنشین او میگوید: «این نامه اعمال اوست که نزد من حاضر و آماده است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,392,'(خداوند فرمان میدهد:) هر کافر متکبّر لجوج را در جهنّم افکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,392,'آن کسی که به شدّت مانع خیر و متجاوز و در شکّ و تردید است (حتی دیگران را به تردید می افکند)؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,392,'همان کسی که معبود دیگری با خدا قرار داده، (آری) او را در عذاب شدید بیفکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,392,'و همنشینش (از شیاطین) میگوید: «پروردگارا! من او را به طغیان وانداشتم، لکن او خود در گمراهی دور و درازی بود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,392,'(خداوند) میگوید: «نزد من جدال و مخاصمه نکنید؛ من پیشتر به شما هشدار دادهام (و اتمام حجّت کردهام)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,392,'سخن من تغییر ناپذیر است، و من هرگز به بندگان ستم نخواهم کرد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,392,'(به خاطر بیاورید) روزی را که به جهنّم میگوییم: «آیا پر شدهای؟» و او میگوید: «آیا افزون بر این هم هست؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,392,'(در آن روز) بهشت را به پرهیزگاران نزدیک میکنند، و فاصلهای از آنان ندارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,392,'این چیزی است که به شما وعده داده میشود، و برای کسانی است که بسوی خدا بازمیگردند و پیمانها و احکام او را حفظ میکنند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,392,'آن کس که از خداوند رحمان در نهان بترسد و با قلبی پرانابه در محضر او حاضر شود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,392,'(به آنان گفته میشود:) بسلامت وارد بهشت شوید، امروز روز جاودانگی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,392,'هر چه بخواهند در آنجا برای آنها هست، و نزد ما نعمتهای بیشتری است (که به فکر هیچ کس نمیرسد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,392,'چه بسیار اقوامی را که پیش از آنها هلاک کردیم، اقوامی که از آنان قویتر بودند و شهرها (و کشورها) را گشودند؛ آیا راه فراری (از عذاب الهی) وجود دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,392,'در این تذکّری است برای آن کس که عقل دارد، یا گوش دل فرادهد در حالی که حاضر باشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,392,'ما آسمانها و زمین و آنچه را در میان آنهاست در شش روز [= شش دوران] آفریدیم، و هیچ گونه رنج و سختی به ما نرسید! (با این حال چگونه زندهکردن مُردگان برای ما مشکل است؟!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,392,'در برابر آنچه آنها میگویند شکیبا باش، و پیش از طلوع آفتاب و پیش از غروب تسبیح و حمد پروردگارت را بجا آور،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,392,'و در بخشی از شب او را تسبیح کن، و بعد از سجدهها!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,392,'و گوش فرا ده و منتظر روزی باش که منادی از مکانی نزدیک ندا میدهد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,392,'روزی که همگان صیحه رستاخیز را بحق میشنوند؛ آن روز، روز خروج (از قبرها) است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,392,'ماییم که زنده میکنیم و میمیرانیم، و بازگشت تنها بسوی ماست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,392,'روزی که زمین به سرعت از روی آنها شکافته میشود و (از قبرها) خارج میگردند؛ و این جمع کردن برای ما آسان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,392,'ما به آنچه آنها میگویند آگاهتریم، و تو مأمور به اجبار آنها (به ایمان) نیستی؛ پس بوسیله قرآن، کسانی را که از عذاب من میترسند متذکّر ساز (وظیفه تو همین است)!');
+INSERT INTO chapters (id, number, quran_id) VALUES(393,51,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,393,'سوگند به بادهایی که (ابرها را) به حرکت درمیآورند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,393,'سوگند به آن ابرها که بار سنگینی (از باران را) با خود حمل میکنند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,393,'و سوگند به کشتیهایی که به آسانی به حرکت درمیآیند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,393,'و سوگند به فرشتگانی که کارها را تقسیم میکنند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,393,'(آری سوگند به همه اینها) که آنچه به شما وعده شده قطعاً راست است؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,393,'و بیشکّ (رستاخیز) و جزای اعمال واقعشدنی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,393,'قسم به آسمان که دارای چین و شکنهای زیباست،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,393,'که شما (درباره قیامت) در گفتاری مختلف و گوناگونید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,393,'(تنها) کسی از ایمان به آن منحرف میشود که از قبول حقّ سرباز میزند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,393,'کشته باد دروغگویان (و مرگ بر آنها)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,393,'همانها که در جهل و غفلت فرو رفتهاند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,393,'و پیوسته سؤال میکنند: «روز جزا چه موقع است؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,393,'(آری) همان روزی است که آنها را بر آتش میسوزانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,393,'(و گفته میشود:) بچشید عذاب خود را، این همان چیزی است که برای آن شتاب داشتید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,393,'به یقین، پرهیزگاران در باغهای بهشت و در میان چشمهها قرار دارند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,393,'و آنچه پروردگارشان به آنها بخشیده دریافت میدارند، زیرا پیش از آن (در سرای دنیا) از نیکوکاران بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,393,'آنها کمی از شب را میخوابیدند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,393,'و در سحرگاهان استغفار میکردند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,393,'و در اموال آنها حقّی برای سائل و محروم بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,393,'و در زمین آیاتی برای جویندگان یقین است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,393,'و در وجود خود شما (نیز آیاتی است)؛ آیا نمیبینید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,393,'و روزی شما در آسمان است و آنچه به شما وعده داده میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,393,'سوگند به پروردگار آسمان و زمین که این مطلب حقّ است همان گونه که شما سخن میگویید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,393,'آیا خبر مهمانهای بزرگوار ابراهیم به تو رسیده است؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,393,'در آن زمان که بر او وارد شدند و گفتند: «سلام بر تو!» او گفت: «سلام بر شما که جمعیّتی ناشناختهاید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,393,'سپس پنهانی به سوی خانواده خود رفت و گوساله فربه (و بریان شدهای را برای آنها) آورد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,393,'و نزدیک آنها گذارد، (ولی با تعجّب دید دست بسوی غذا نمیبرند) گفت: «آیا شما غذا نمیخورید؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,393,'و از آنها احساس وحشت کرد، گفتند: «نترس (ما رسولان و فرشتگان پروردگار توایم)!» و او را بشارت به تولّد پسری دانا دادند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,393,'در این هنگام همسرش جلو آمد در حالی که (از خوشحالی و تعجّب) فریاد میکشید به صورت خود زد و گفت: «(آیا پسری خواهم آورد در حالی که) پیرزنی نازا هستم؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,393,'گفتند: «پروردگارت چنین گفته است، و او حکیم و داناست!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,393,'(ابراهیم) گفت: «مأموریت شما چیست ای فرستادگان (خدا)؟»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,393,'گفتند: «ما به سوی قوم مجرمی فرستاده شدهایم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,393,'تا بارانی از «سنگ - گِل» بر آنها بفرستیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,393,'سنگهایی که از ناحیه پروردگارت برای اسرافکاران نشان گذاشته شده است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,393,'ما مؤمنانی را که در آن شهرها (ی قوم لوط) زندگی میکردند (قبل از نزول عذاب) خارج کردیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,393,'ولی جز یک خانواده باایمان در تمام آنها نیافتیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,393,'و در آن (شهرهای بلا دیده) نشانهای روشن برای کسانی که از عذاب دردناک میترسند به جای گذاردیم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,393,'و در (زندگی) موسی نیز (نشانه و درس عبرتی بود) هنگامی که او را با دلیلی آشکار به سوی فرعون فرستادیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,393,'امّا او با تمام وجودش از وی روی برتافت و گفت: «این مرد یا ساحر است یا دیوانه!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,393,'از این رو ما او و لشکریانش را گرفتیم و به دریا افکندیم در حالی که در خور سرزنش بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,393,'و (همچنین) در سرگذشت «عاد» (آیتی است) در آن هنگام که تندبادی بیباران بر آنها فرستادیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,393,'که بر هیچ چیز نمیگذشت مگر اینکه آن را همچون استخوانهای پوسیده میساخت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,393,'و نیز در سرگذشت قوم «ثمود» عبرتی است در آن هنگام که به آنان گفته شد: «مدّتی کوتاه بهرهمند باشید (و سپس منتظر عذاب)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,393,'آنها از فرمان پروردگارشان سرباز زدند، و صاعقه آنان را فراگرفت در حالی که (خیره خیره) نگاه میکردند (بیآنکه قدرت دفاع داشته باشند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,393,'چنان بر زمین افتادند که توان برخاستن نداشتند و نتوانستند از کسی یاری طلبند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,393,'همچنین قوم نوح را پیش از آنها هلاک کردیم، چرا که قوم فاسقی بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,393,'و ما آسمان را با قدرت بنا کردیم، و همواره آن را وسعت میبخشیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,393,'و زمین را گستردیم، و چه خوب گسترانندهای هستیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,393,'و از هر چیز دو جفت آفریدیم، شاید متذکّر شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,393,'پس به سوی خدا بگریزید، که من از سوی او برای شما بیمدهندهای آشکارم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,393,'و با خدا معبود دیگری قرار ندهید، که من برای شما از سوی او بیمدهندهای آشکارم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,393,'این گونه است که هیچ پیامبری قبل از اینها بسوی قومی فرستاده نشد مگر اینکه گفتند: «او ساحر است یا دیوانه!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,393,'آیا یکدیگر را به آن سفارش میکردند (که همه چنین تهمتی بزنند)؟! نه، بلکه آنها قومی طغیانگرند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,393,'حال که چنین است از آنها روی بگردان که هرگز در خور ملامت نخواهی بود؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,393,'و پیوسته تذکّر ده، زیرا تذکّر مؤمنان را سود میبخشد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,393,'من جنّ و انس را نیافریدم جز برای اینکه عبادتم کنند (و از این راه تکامل یابند و به من نزدیک شوند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,393,'هرگز از آنها روزی نمیخواهم، و نمیخواهم مرا اطعام کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,393,'خداوند روزیدهنده و صاحب قوّت و قدرت است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,393,'و برای کسانی که ستم کردند، سهم بزرگی از عذاب است همانند سهم یارانشان (از اقوام ستمگر پیشین)؛ بنابر این عجله نکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,393,'پس وای بر کسانی که کافر شدند از روزی که به آنها وعده داده میشود!');
+INSERT INTO chapters (id, number, quran_id) VALUES(394,52,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,394,'سوگند به کوه طور،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,394,'و کتابی که نوشته شده،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,394,'در صفحهای گسترده،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,394,'و سوگند به «بیت المعمور»،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,394,'و سقف برافراشته،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,394,'و دریای مملوّ و برافروخته،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,394,'که عذاب پروردگارت واقع میشود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,394,'و چیزی از آن مانع نخواهد بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,394,'(این عذاب الهی) در آن روزی است که آسمان به شدّت به حرکت درمیآید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,394,'و کوهها از جا کنده و متحرّک میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,394,'وای در آن روز بر تکذیبکنندگان،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,394,'همانها که در سخنان باطل به بازی مشغولند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,394,'در آن روز که آنها را بزور به سوی آتش دوزخ میرانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,394,'(به آنها میگویند:) این همان آتشی است که آن را انکار میکردید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,394,'آیا این سحر است یا شما نمیبینید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,394,'در آن وارد شوید و بسوزید؛ میخواهید صبر کنید یا نکنید، برای شما یکسان است؛ چرا که تنها به اعمالتان جزا داده میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,394,'ولی پرهیزگاران در میان باغهای بهشت و نعمتهای فراوان جای دارند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,394,'و از آنچه پروردگارشان به آنها داده و آنان را از عذاب دوزخ نگاه داشته است شاد و مسرورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,394,'(به آنها گفته میشود:) بخورید و بیاشامید گوارا؛ اینها در برابر اعمالی است که انجام میدادید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,394,'این در حالی که بر تختهای صفکشیده در کنار هم تکیه میزنند، و «حور العین» را به همسری آنها درمیآوریم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,394,'کسانی که ایمان آوردند و فرزندانشان به پیروی از آنان ایمان اختیار کردند، فرزندانشان را (در بهشت) به آنان ملحق میکنیم؛ و از (پاداش) عملشان چیزی نمیکاهیم؛ و هر کس در گرو اعمال خویش است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,394,'و همواره از انواع میوهها و گوشتها -از هر نوع که بخواهند- در اختیارشان میگذاریم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,394,'آنها در بهشت جامهای پر از شراب طهور را که نه بیهودهگویی در آن است و نه گناه، از یکدیگر میگیرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,394,'و پیوسته بر گردشان نوجوانانی برای (خدمت) آنان گردش میکنند که همچون مرواریدهای درون صدفند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,394,'در این هنگام رو به یکدیگر کرده (از گذشته) سؤال مینمایند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,394,'میگویند: «ما در میان خانواده خود ترسان بودیم (مبادا گناهان آنها دامن ما را بگیرد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,394,'امّا خداوند بر ما منّت نهاد و از عذابکشنده ما را حفظ کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,394,'ما از پیش او را میخواندیم (و میپرستیدیم)، که اوست نیکوکار و مهربان!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,394,'پس تذکّر ده، که به لطف پروردگارت تو کاهن و مجنون نیستی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,394,'بلکه آنها میگویند: «او شاعری است که ما انتظار مرگش را میکشیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,394,'بگو: «انتظار بکشید که من هم با (شما انتظار میکشم شما انتظار مرگ مرا، و من انتظار نابودی شما را با عذاب الهی)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,394,'آیا عقلهایشان آنها را به این اعمال دستور میدهد، یا قومی طغیانگرند؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,394,'یا میگویند: «قرآن را به خدا افترا بسته»، ولی آنان ایمان ندارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,394,'اگر راست میگویند سخنی همانند آن بیاورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,394,'یا آنها بی هیچ آفریده شدهاند، یا خود خالق خویشند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,394,'آیا آنها آسمانها و زمین را آفریدهاند؟! بلکه آنها جویای یقین نیستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,394,'آیا خزاین پروردگارت نزد آنهاست؟! یا بر همه چیز عالم سیطره دارند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,394,'آیا نردبانی دارند (که به آسمان بالا میروند) و بوسیله آن اسرار وحی را میشنوند؟! کسی که از آنها این ادّعا را دارد دلیل روشنی بیاورد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,394,'آیا سهم خدا دختران است و سهم شما پسران (که فرشتگان را دختران خدا مینامید)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,394,'آیا تو از آنها پاداشی میطلبی که در زیر بار گران آن قرار دارند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,394,'آیا اسرار غیب نزد آنهاست و از روی آن مینویسند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,394,'آیا میخواهند نقشه شیطانی برای تو بکشند؟! ولی بدانند خود کافران در دام این نقشهها گرفتار میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,394,'یا معبودی غیر خداوند دارند (که قول یاری به آنها داده)؟! منزّه است خدا از آنچه همتای او قرارمیدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,394,'آنها (چنان لجوجند که) اگر ببینند قطعه سنگی از آسمان (برای عذابشان) سقوط میکند میگویند: «این ابر متراکمی است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,394,'حال که چنین است آنها را رها کن تا روز مرگ خود را ملاقات کنند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,394,'روزی که نقشههای آنان سودی به حالشان نخواهد داشت و (از هیچ سو) یاری نمیشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,394,'و برای ستمگران عذابی قبل از آن است (در همین جهان)؛ ولی بیشترشان نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,394,'در راه ابلاغ حکم پروردگارت صبر و استقامت کن، چرا که تو در حفاظت کامل ما قرار داری! و هنگامی که برمیخیزی پروردگارت را تسبیح و حمد گوی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,394,'(همچنین) به هنگام شب او را تسبیح کن و به هنگام پشت کردن ستارگان (و طلوع صبح)!');
+INSERT INTO chapters (id, number, quran_id) VALUES(395,53,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,395,'سوگند به ستاره هنگامی که افول میکند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,395,'که هرگز دوست شما [= محمّد «ص»] منحرف نشده و مقصد را گم نکرده است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,395,'و هرگز از روی هوای نفس سخن نمیگوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,395,'آنچه میگوید چیزی جز وحی که بر او نازل شده نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,395,'آن کس که قدرت عظیمی دارد [= جبرئیل امین] او را تعلیم داده است؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,395,'همان کس که توانایی فوق العاده دارد؛ او سلطه یافت...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,395,'در حالی که در اُفق اعلی قرار داشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,395,'سپس نزدیکتر و نزدیکتر شد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,395,'تا آنکه فاصله او (با پیامبر) به اندازه فاصله دو کمان یا کمتر بود؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,395,'در اینجا خداوند آنچه را وحی کردنی بود به بندهاش وحی نمود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,395,'قلب (پاک او) در آنچه دید هرگز دروغ نگفت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,395,'آیا با او درباره آنچه (با چشم خود) دیده مجادله میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,395,'و بار دیگر نیز او را مشاهده کرد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,395,'نزد «سدرة المنتهی»،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,395,'که «جنت المأوی» در آنجاست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,395,'در آن هنگام که چیزی [= نور خیرهکنندهای] سدرة المنتهی را پوشانده بود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,395,'چشم او هرگز منحرف نشد و طغیان نکرد (آنچه دید واقعیّت بود)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,395,'او پارهای از آیات و نشانههای بزرگ پروردگارش را دید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,395,'به من خبر دهید آیا بتهای «لات» و «عزّی»...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,395,'و «منات» که سوّمین آنهاست (دختران خدا هستند)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,395,'آیا سهم شما پسر است و سهم او دختر؟! (در حالی که بزعم شما دختران کم ارزشترند!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,395,'در این صورت این تقسیمی ناعادلانه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,395,'اینها فقط نامهایی است که شما و پدرانتان بر آنها گذاشتهاید (نامهایی بیمحتوا و اسمهایی بی مسمّا)، و هرگز خداوند دلیل و حجتی بر آن نازل نکرده؛ آنان فقط از گمانهای بیاساس و هوای نفس پیروی میکنند در حالی که هدایت از سوی پروردگارشان برای آنها آمده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,395,'یا آنچه انسان تمنّا دارد به آن میرسد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,395,'در حالی که آخرت و دنیا از آن خداست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,395,'و چه بسیار فرشتگان آسمانها که شفاعت آنها سودی نمیبخشد مگر پس از آنکه خدا برای هر کس بخواهد و راضی باشد اجازه (شفاعت) دهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,395,'کسانی که به آخرت ایمان ندارند، فرشتگان را دختر (خدا) نامگذاری میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,395,'آنها هرگز به این سخن دانشی ندارند، تنها از گمان بیپایه پیروی میکنند با اینکه «گمان» هرگز انسان را از حقّ بینیاز نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,395,'حال که چنین است از کسی که از یاد ما روی میگرداند و جز زندگی مادی دنیا را نمیطلبد، اعراض کن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,395,'این آخرین حدّ آگاهی آنهاست؛ پروردگار تو کسانی را که از راه او گمراه شدهاند بهتر میشناسد، و (همچنین) هدایتیافتگان را از همه بهتر میشناسد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,395,'و برای خداست آنچه در آسمانها و آنچه در زمین است تا بدکاران را به کیفر کارهای بدشان برساند و نیکوکاران را در برابر اعمال نیکشان پاداش دهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,395,'همانها که از گناهان بزرگ و اعمال زشت دوری میکنند، جز گناهان صغیره (که گاه آلوده آن میشوند)؛ آمرزش پروردگار تو گسترده است؛ او نسبت به شما از همه آگاهتر است از آن هنگام که شما را از زمین آفرید و در آن موقع که بصورت جنینهایی در شکم مادرانتان بودید؛ پس خودستایی نکنید، او پرهیزگاران را بهتر میشناسد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,395,'آیا دیدی آن کس را که (از اسلام -یا انفاق-) روی گردان شد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,395,'و کمی عطا کرد، و از بیشتر امساک نمود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,395,'آیا نزد او علم غیب است و میبیند (که دیگران میتوانند گناهان او را بر دوش گیرند)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,395,'یا از آنچه در کتب موسی نازل گردیده با خبر نشده است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,395,'و در کتب ابراهیم، همان کسی که وظیفه خود را بطور کامل ادا کرد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,395,'که هیچ کس بار گناه دیگری را بر دوش نمیگیرد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,395,'و اینکه برای انسان بهرهای جز سعی و کوشش او نیست،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,395,'و اینکه تلاش او بزودی دیده میشود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,395,'سپس به او جزای کافی داده خواهد شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,395,'(و آیا از کتب پیشین انبیا به او نرسیده است) که همه امور به پروردگارت منتهی میگردد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,395,'و اینکه اوست که خنداند و گریاند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,395,'و اوست که میراند و زنده کرد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,395,'و اوست که دو زوج نر و مادّه را آفرید...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,395,'از نطفهای هنگامی که خارج میشود (و در رحم میریزد)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,395,'و اینکه بر خداست ایجاد عالم دیگر (تا عدالت اجرا گردد)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,395,'و اینکه اوست که بینیاز کرد و سرمایه باقی بخشید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,395,'و اینکه اوست پروردگار ستاره «شعرا»!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,395,'(و آیا به انسان نرسیده است که در کتب انبیای پیشین آمده) که خداوند قوم «عاد نخستین» را هلاک کرد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,395,'و همچنین قوم «ثمود» را، و کسی از آنان را باقی نگذارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,395,'و نیز قوم نوح را پیش از آنها، چرا که آنان از همه ظالمتر و طغیانگرتر بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,395,'و نیز شهرهای زیر و رو شده (قوم لوط) را فرو کوبید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,395,'سپس آنها را با عذاب سنگین پوشانید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,395,'(بگو:) در کدام یک از نعمتهای پروردگارت تردید داری؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,395,'این (پیامبر) بیمدهندهای از بیمدهندگان پیشین است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,395,'آنچه باید نزدیک شود، نزدیک شده است (و قیامت فرامیرسد)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,395,'و هیچ کس جز خدا نمیتواند سختیهای آن را برطرف سازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,395,'آیا از این سخن تعجّب میکنید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,395,'و میخندید و نمیگریید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,395,'و پیوسته در غفلت و هوسرانی به سر میبرید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,395,'حال که چنین است همه برای خدا سجده کنید و او را بپرستید!');
+INSERT INTO chapters (id, number, quran_id) VALUES(396,54,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,396,'قیامت نزدیک شد و ماه از هم شکافت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,396,'و هرگاه نشانه و معجزهای را ببینند روی گردانده، میگویند: «این سحری مستمر است»!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,396,'آنها (آیات خدا را) تکذیب کردند و از هوای نفسشان پیروی نمودند؛ و هر امری قرارگاهی دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,396,'به اندازه کافی برای بازداشتن از بدیها اخبار (انبیا و امّتهای پیشین) به آنان رسیده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,396,'این آیات، حکمت بالغه الهی است؛ امّا انذارها (برای افراد لجوج) فایده نمیدهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,396,'بنابر این از آنها روی بگردان، و روزی را به یاد آور که دعوت کننده الهی مردم را به امر وحشتناکی دعوت میکند (دعوت به حساب اعمال)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,396,'آنان در حالی که چشمهایشان از شدّت وحشت به زیر افتاده، همچون ملخهای پراکنده از قبرها خارج میشوند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,396,'در حالی که (بر اثر وحشت و اضطراب) بسوی این دعوت کننده گردن میکشند؛ کافران میگویند: «امروز روز سخت و دردناکی است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,396,'پیش از آنها قوم نوح تکذیب کردند، (آری) بنده ما (نوح) را تکذیب کرده و گفتند: «او دیوانه است!» و (با انواع آزارها از ادامه رسالتش) بازداشته شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,396,'او به درگاه پروردگار عرضه داشت: «من مغلوب (این قوم طغیانگر) شدهام، انتقام مرا از آنها بگیر!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,396,'در این هنگام درهای آسمان را با آبی فراوان و پیدرپی گشودیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,396,'و زمین را شکافتیم و چشمههای زیادی بیرون فرستادیم؛ و این دو آب به اندازه مقدّر با هم درآمیختند (و دریای وحشتناکی شد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,396,'و او را بر مرکبی از الواح و میخهایی ساخته شده سوار کردیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,396,'مرکبی که زیر نظر ما حرکت میکرد! این کیفری بود برای کسانی که (به او) کافر شده بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,396,'ما این ماجرا را بعنوان نشانهای در میان امّتها باقی گذاردیم؛ آیا کسی هست که پند گیرد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,396,'(اکنون بنگرید) عذاب و انذارهای من چگونه بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,396,'ما قرآن را برای تذکّر آسان ساختیم؛ آیا کسی هست که متذکّر شود؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,396,'قوم عاد (نیز پیامبر خود را) تکذیب کردند؛ پس (ببینید) عذاب و انذارهای من چگونه بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,396,'ما تندباد وحشتناک و سردی را در یک روز شوم مستمر بر آنان فرستادیم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,396,'که مردم را همچون تنههای نخل ریشهکن شده از جا برمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,396,'پس (ببینید) عذاب و انذارهای من چگونه بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,396,'ما قرآن را برای تذکّر آسان ساختیم؛ آیا کسی هست که متذکّر شود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,396,'طایفه ثمود (نیز) انذارهای الهی را تکذیب کردند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,396,'و گفتند: «آیا ما از بشری از جنس خود پیروی کنیم؟! اگر چنین کنیم در گمراهی و جنون خواهیم بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,396,'آیا از میان ما تنها بر او وحی نازل شده؟! نه، او آدم بسیار دروغگوی هوسبازی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,396,'ولی فردا میفهمند چه کسی دروغگوی هوسباز است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,396,'ما «ناقه» را برای آزمایش آنها میفرستیم؛ در انتظار پایان کار آنان باش و صبر کن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,396,'و به آنها خبر ده که آب (قریه) باید در میانشان تقسیم شود، (یک روز سهم ناقه، و یک روز برای آنها) و هر یک در نوبت خود باید حاضر شوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,396,'آنها یکی از یاران خود را صدا زدند، او به سراغ این کار آمد و (ناقه را) پی کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,396,'پس (بنگرید) عذاب و انذارهای من چگونه بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,396,'ما فقط یک صیحه [= صاعقه عظیم] بر آنها فرستادیم و بدنبال آن همگی بصورت گیاه خشکی درآمدند که صاحب چهارپایان (در آغل) جمعآوری میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,396,'ما قرآن را برای یادآوری آسان ساختیم؛ آیا کسی هست که متذکّر شود؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,396,'قوم لوط انذارها (ی پیدرپی پیامبرشان) را تکذیب کردند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,396,'ما بر آنها تندبادی که ریگها را به حرکت درمیآورد فرستادیم (و همه را هلاک کردیم)، جز خاندان لوط را که سحرگاهان نجاتشان دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,396,'این نعمتی بود از ناحیه ما؛ این گونه هر کسی را که شکر کند پاداش میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,396,'او آنها را از مجازات ما بیم داد، ولی بر آنها اصرار بر مجادله و القای شکّ داشتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,396,'آنها از لوط خواستند میهمانانش را در اختیارشان بگذارد؛ ولی ما چشمانشان را نابینا و محو کردیم (و گفتیم:) بچشید عذاب و انذارهای مرا!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,396,'سرانجام صبحگاهان و در اول روز عذابی پایدار و ثابت به سراغشان آمد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,396,'(و گفتیم:) پس بچشید عذاب و انذارهای مرا!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,396,'ما قرآن را برای یادآوری آسان ساختیم؛ آیا کسی هست که متذکّر شود؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,396,'و (همچنین) انذارها و هشدارها (یکی پس از دیگری) به سراغ آل فرعون آمد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,396,'امّا آنها همه آیات ما را تکذیب کردند، و ما آنها را گرفتیم و مجازات کردیم، گرفتن شخصی قدرتمند و توانا!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,396,'آیا کفّار شما بهتر از آنانند یا برای شما اماننامهای در کتب آسمانی نازل شده است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,396,'یا میگویند: «ما جماعتی متحّد و نیرومند و پیروزیم»؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,396,'(ولی بدانند) که بزودی جمعشان شکست میخورد و پا به فرارمیگذارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,396,'(علاوه بر این) رستاخیز موعد آنهاست، و مجازات قیامت هولناکتر و تلختر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,396,'مجرمان در گمراهی و شعلههای آتشند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,396,'در آن روز که در آتش دوزخ به صورتشان کشیده میشوند (و به آنها گفته میشود:) بچشید آتش دوزخ را!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,396,'البته ما هر چیز را به اندازه آفریدیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,396,'و فرمان ما یک امر بیش نیست، همچون یک چشم بر هم زدن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,396,'ما کسانی را که در گذشته شبیه شما بودند هلاک کردیم؛ آیا کسی هست که پند گیرد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,396,'و هر کاری را انجام دادند در نامههای اعمالشان ثبت است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,396,'و هر کار کوچک و بزرگی نوشته شده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,396,'یقیناً پرهیزگاران در باغها و نهرهای بهشتی جای دارند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,396,'در جایگاه صدق نزد خداوند مالک مقتدر!');
+INSERT INTO chapters (id, number, quran_id) VALUES(397,55,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,397,'خداوند رحمان،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,397,'قرآن را تعلیم فرمود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,397,'انسان را آفرید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,397,'و به او «بیان» را آموخت.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,397,'خورشید و ماه با حساب منظّمی میگردند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,397,'و گیاه و درخت برای او سجده میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,397,'و آسمان را برافراشت، و میزان و قانون (در آن) گذاشت،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,397,'تا در میزان طغیان نکنید (و از مسیر عدالت منحرف نشوید)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,397,'و وزن را بر اساس عدل برپا دارید و میزان را کم نگذارید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,397,'زمین را برای خلایق آفرید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,397,'که در آن میوهها و نخلهای پرشکوفه است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,397,'و دانههایی که همراه با ساقه و برگی است که بصورت کاه درمیآید، و گیاهان خوشبو!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,397,'پس کدامین نعمتهای پروردگارتان را تکذیب میکنید (شما ای گروه جنّ و انس)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,397,'انسان را از گِل خشکیدهای همچون سفال آفرید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,397,'و جنّ را از شعلههای مختلط و متحرّک آتش خلق کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,397,'او پروردگار دو مشرق و پروردگار دو مغرب است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,397,'دو دریای مختلف (شور و شیرین، گرم و سرد) را در کنار هم قرار داد، در حالی که با هم تماس دارند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,397,'در میان آن دو برزخی است که یکی بر دیگری غلبه نمیکند (و به هم نمیآمیزند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,397,'از آن دو، لؤلؤ و مرجان خارج میشود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,397,'و برای اوست کشتیهای ساخته شده که در دریا به حرکت درمیآیند و همچون کوهی هستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,397,'همه کسانی که روی آن [= زمین] هستند فانی میشوند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,397,'و تنها ذات ذوالجلال و گرامی پروردگارت باقی میماند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,397,'تمام کسانی که در آسمانها و زمین هستند از او تقاضا میکنند، و او هر روز در شأن و کاری است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,397,'بزودی به حساب شما میپردازیم ای دو گروه انس و جنّ!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,397,'ای گروه جنّ و انس! اگر میتوانید از مرزهای آسمانها و زمین بگذرید، پس بگذرید، ولی هرگز نمیتوانید، مگر با نیرویی (فوق العاده)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,397,'شعلههایی از آتش بیدود، و دودهایی متراکم بر شما فرستاده میشود؛ و نمیتوانید از کسی یاری بطلبید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,397,'در آن هنگام که آسمان شکافته شود و همچون روغن مذاب گلگون گردد (حوادث هولناکی رخ میدهد که تاب تحمل آن را نخواهید داشت)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,397,'در آن روز هیچ کس از انس و جنّ از گناهش سؤال نمیشود (و همه چیز روشن است)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,397,'مجرمان از چهرههایشان شناخته میشوند؛ و آنگاه آنها را از موهای پیش سر، و پاهایشان میگیرند (و به دوزخ میافکنند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,397,'این همان دوزخی است که مجرمان آن را انکار میکردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,397,'امروز در میان آن و آب سوزان در رفت و آمدند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,397,'و برای کسی که از مقام پروردگارش بترسد، دو باغ بهشتی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,397,'(آن دو باغ بهشتی) دارای انواع نعمتها و درختان پرطراوت است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,397,'در آنها دو چشمه همیشه جاری است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,397,'در آن دو، از هر میوهای دو نوع وجود دارد (هر یک از دیگری بهتر)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,397,'این در حالی است که آنها بر فرشهایی تکیه کردهاند با آسترهائی از دیبا و ابریشم، و میوههای رسیده آن دو باغ بهشتی در دسترس است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,397,'در آن باغهای بهشتی زنانی هستند که جز به همسران خود عشق نمیورزند؛ و هیچ انس و جنّ پیش از اینها با آنان تماس نگرفته است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,397,'آنها همچون یاقوت و مرجانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,397,'آیا جزای نیکی جز نیکی است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,397,'و پایین تر از آنها، دو باغ بهشتی دیگر است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,397,'هر دو خرّم و سرسبزند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,397,'در آنها دو چشمه جوشنده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,397,'در آنها میوههای فراوان و درخت خرما و انار است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,397,'و در آن باغهای بهشتی زنانی نیکو خلق و زیبایند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,397,'حوریانی که در خیمههای بهشتی مستورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,397,'هیچ انس و جنّ پیش از ایشان با آنها تماس نگرفته (و دوشیزهاند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,397,'این در حالی است که بهشتیان بر تختهایی تکیه زدهاند که با بهترین و زیباترین پارچههای سبزرنگ پوشانده شده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,397,'پس کدامین نعمتهای پروردگارتان را انکار میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,397,'پربرکت و زوالناپذیر است نام پروردگار صاحب جلال و بزرگوار تو!');
+INSERT INTO chapters (id, number, quran_id) VALUES(398,56,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,398,'هنگامی که واقعه عظیم (قیامت) واقع شود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,398,'هیچ کس نمیتواند آن را انکار کند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,398,'(این واقعه) گروهی را پایین میآورد و گروهی را بالا میبرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,398,'در آن هنگام که زمین بشدّت به لرزه درمیآید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,398,'و کوهها در هم کوبیده میشود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,398,'و بصورت غبار پراکنده درمیآید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,398,'و شما سه گروه خواهید بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,398,'(نخست) سعادتمندان و خجستگان (هستند)؛ چه سعادتمندان و خجستگانی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,398,'گروه دیگر شقاوتمندان و شومانند، چه شقاوتمندان و شومانی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,398,'و (سومین گروه) پیشگامان پیشگامند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,398,'آنها مقرّبانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,398,'در باغهای پرنعمت بهشت (جای دارند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,398,'گروه زیادی (از آنها) از امّتهای نخستینند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,398,'و اندکی از امّت آخرین!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,398,'آنها [= مقرّبان] بر تختهایی که صفکشیده و به هم پیوسته است قراردارند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,398,'در حالی که بر آن تکیه زده و رو به روی یکدیگرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,398,'نوجوانانی جاودان (در شکوه و طراوت) پیوسته گرداگرد آنان میگردند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,398,'با قدحها و کوزهها و جامهایی از نهرهای جاری بهشتی (و شراب طهور)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,398,'امّا شرابی که از آن درد سر نمیگیرند و نه مست میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,398,'و میوههایی از هر نوع که انتخاب کنند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,398,'و گوشت پرنده از هر نوع که مایل باشند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,398,'و همسرانی از حور العین دارند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,398,'همچون مروارید در صدف پنهان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,398,'اینها پاداشی است در برابر اعمالی که انجام میدادند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,398,'در آن (باغهای بهشتی) نه لغو و بیهودهای میشنوند نه سخنان گناه آلود؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,398,'تنها چیزی که میشنوند «سلام» است «سلام»!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,398,'و اصحاب یمین و خجستگان، چه اصحاب یمین و خجستگانی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,398,'آنها در سایه درختان «سِدر» بیخار قرار دارند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,398,'و در سایه درخت «طلح» پربرگ [= درختی خوشرنگ و خوشبو]،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,398,'و سایه کشیده و گسترده،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,398,'و در کنار آبشارها،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,398,'و میوههای فراوان،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,398,'که هرگز قطع و ممنوع نمیشود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,398,'و همسرانی بلندمرتبه!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,398,'ما آنها را آفرینش نوینی بخشیدیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,398,'و همه را دوشیزه قرار دادیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,398,'زنانی که تنها به همسرشان عشق میورزند و خوش زبان و فصیح و هم سن و سالند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,398,'اینها همه برای اصحاب یمین است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,398,'که گروهی از امّتهای نخستینند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,398,'و گروهی از امّتهای آخرین!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,398,'و اصحاب شمال، چه اصحاب شمالی (که نامه اعمالشان به نشانه جرمشان به دست چپ آنها داده میشود)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,398,'آنها در میان بادهای کشنده و آب سوزان قرار دارند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,398,'و در سایه دودهای متراکم و آتشزا!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,398,'سایهای که نه خنک است و نه آرامبخش!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,398,'آنها پیش از این (در عالم دنیا) مست و مغرور نعمت بودند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,398,'و بر گناهان بزرگ اصرار میورزیدند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,398,'و میگفتند: «هنگامی که ما مُردیم و خاک و استخوان شدیم، آیا برانگیخته خواهیم شد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,398,'یا نیاکان نخستین ما (برانگیخته میشوند)؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,398,'بگو: «اوّلین و آخرین،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,398,'همگی در موعد روز معیّنی گردآوری میشوند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,398,'سپس شما ای گمراهان تکذیبکننده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,398,'قطعاً از درخت زقّوم میخورید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,398,'و شکمها را از آن پر میکنید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,398,'و روی آن از آب سوزان مینوشید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,398,'و همچون شتران مبتلا به بیماری عطش، از آن میآشامید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,398,'این است وسیله پذیرایی از آنها در قیامت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(57,4,398,'» ما شما را آفریدیم؛ پس چرا (آفرینش مجدّد را) تصدیق نمیکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(58,4,398,'آیا از نطفهای که در رحم میریزید آگاهید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(59,4,398,'آیا شما آن را (در دوران جنینی) آفرینش (پی در پی) میدهید یا ما آفریدگاریم؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(60,4,398,'ما در میان شما مرگ را مقدّر ساختیم؛ و هرگز کسی بر ما پیشی نمیگیرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(61,4,398,'تا گروهی را به جای گروه دیگری بیاوریم و شما را در جهانی که نمیدانید آفرینش تازهای بخشیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(62,4,398,'شما عالم نخستین را دانستید؛ چگونه متذکّر نمیشوید (که جهانی بعد از آن است)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(63,4,398,'آیا هیچ درباره آنچه کشت میکنید اندیشیدهاید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(64,4,398,'آیا شما آن را میرویانید یا ما میرویانیم؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(65,4,398,'هرگاه بخواهیم آن را مبدّل به کاه در هم کوبیده میکنیم که تعجّب کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(66,4,398,'(بگونهای که بگویید:) براستی ما زیان کردهایم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(67,4,398,'بلکه ما بکلّی محرومیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(68,4,398,'آیا به آبی که مینوشید اندیشیدهاید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(69,4,398,'آیا شما آن را از ابر نازل کردهاید یا ما نازل میکنیم؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(70,4,398,'هرگاه بخواهیم، این آب گوارا را تلخ و شور قرار میدهیم؛ پس چرا شکر نمیکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(71,4,398,'آیا درباره آتشی که میافروزید فکر کردهاید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(72,4,398,'آیا شما درخت آن را آفریدهاید یا ما آفریدهایم؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(73,4,398,'ما آن را وسیله یادآوری (برای همگان) و وسیله زندگی برای مسافران قرار دادهایم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(74,4,398,'حال که چنین است به نام پروردگار بزرگت تسبیح کن (و او را پاک و منزّه بشمار)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(75,4,398,'سوگند به جایگاه ستارگان (و محل طلوع و غروب آنها)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(76,4,398,'و این سوگندی است بسیار بزرگ، اگر بدانید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(77,4,398,'که آن، قرآن کریمی است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(78,4,398,'که در کتاب محفوظی جای دارد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(79,4,398,'و جز پاکان نمیتوانند به آن دست زنند [= دست یابند].');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(80,4,398,'آن از سوی پروردگار عالمیان نازل شده؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(81,4,398,'آیا این سخن را [= این قرآن را با اوصافی که گفته شد] سست و کوچک میشمرید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(82,4,398,'و به جای شکر روزیهایی که به شما داده شده آن را تکذیب میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(83,4,398,'پس چرا هنگامی که جان به گلوگاه میرسد (توانایی بازگرداندن آن را ندارید)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(84,4,398,'و شما در این حال نظاره میکنید (و کاری از دستتان ساخته نیست)؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(85,4,398,'و ما از شما به او نزدیکتریم ولی نمیبینید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(86,4,398,'اگر هرگز در برابر اعمالتان جزا داده نمیشوید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(87,4,398,'پس آن (روح) را بازگردانید اگر راست میگویید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(88,4,398,'پس اگر او از مقرّبان باشد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(89,4,398,'در رَوح و ریحان و بهشت پرنعمت است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(90,4,398,'امّا اگر از اصحاب یمین باشد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(91,4,398,'(به او گفته میشود:) سلام بر تو از سوی دوستانت که از اصحاب یمینند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(92,4,398,'امّا اگر او از تکذیبکنندگان گمراه باشد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(93,4,398,'با آب جوشان دوزخ از او پذیرایی میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(94,4,398,'و سرنوشت او ورود در آتش جهنّم است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(95,4,398,'این مطلب حقّ و یقین است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(96,4,398,'پس به نام پروردگار بزرگت تسبیح کن (و او را منزّه بشمار)!');
+INSERT INTO chapters (id, number, quran_id) VALUES(399,57,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,399,'آنچه در آسمانها و زمین است برای خدا تسبیح میگویند؛ و او عزیز و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,399,'مالکیّت (و حاکمیّت) آسمانها و زمین از آن اوست؛ زنده میکند و میمیراند؛ و او بر هر چیز توانا است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,399,'اوّل و آخر و پیدا و پنهان اوست؛ و او به هر چیز داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,399,'او کسی است که آسمانها و زمین را در شش روز [= شش دوران] آفرید؛ سپس بر تخت قدرت قرار گرفت (و به تدبیر جهان پرداخت)؛ آنچه را در زمین فرو میرود میداند، و آنچه را از آن خارج میشود و آنچه از آسمان نازل میگردد و آنچه به آسمان بالا میرود؛ و هر جا باشید او با شما است، و خداوند نسبت به آنچه انجام میدهید بیناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,399,'مالکیّت آسمانها و زمین از آن اوست؛ و همه کارها به سوی او بازمیگردد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,399,'شب را در روز میکند و روز را در شب؛ و او به آنچه در دل سینهها وجود دارد داناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,399,'به خدا و رسولش ایمان بیاورید و از آنچه شما را جانشین و نماینده (خود) در آن قرار داده انفاق کنید؛ (زیرا) کسانی که از شما ایمان بیاورند و انفاق کنند، اجر بزرگی دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,399,'چرا به خدا ایمان نیاورید در حالی که رسول (او) شما را میخواند که به پروردگارتان ایمان بیاورید، و از شما پیمان گرفته است (پیمانی از طریق فطرت و خِرد)، اگر آماده ایمانآوردنید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,399,'او کسی است که آیات روشنی بر بندهاش [= محمد] نازل میکند تا شما را از تاریکیها به سوی نور برد؛ و خداوند نسبت به شما مهربان و رحیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,399,'چرا در راه خدا انفاق نکنید در حالی که میراث آسمانها و زمین همه از آن خداست (و کسی چیزی را با خود نمیبرد)! کسانی که قبل از پیروزی انفاق کردند و جنگیدند (با کسانی که پس از پیروزی انفاق کردند) یکسان نیستند؛ آنها بلندمقامتر از کسانی هستند که بعد از فتح انفاق نمودند و جهاد کردند؛ و خداوند به هر دو وعده نیک داده؛ و خدا به آنچه انجام میدهید آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,399,'کیست که به خدا وام نیکو دهد (و از اموالی که به او ارزانی داشته انفاق کند) تا خداوند آن را برای او چندین برابر کند؟ و برای او پاداش پرارزشی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,399,'(این پاداش بزرگ) در روزی است که مردان و زنان باایمان را مینگری که نورشان پیشرو و در سمت راستشان بسرعت حرکت میکند (و به آنها میگویند:) بشارت باد بر شما امروز به باغهایی از بهشت که نهرها زیر (درختان) آن جاری است؛ جاودانه در آن خواهید ماند! و این همان رستگاری بزرگ است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,399,'روزی که مردان و زنان منافق به مؤمنان میگویند: «نظری به ما بیفکنید تا از نور شما پرتوی برگیریم!» به آنها گفته میشود: «به پشت سر خود بازگردید و کسب نور کنید!» در این هنگام دیواری میان آنها زده میشود که دری دارد، درونش رحمت است و برونش عذاب!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,399,'آنها را صدا میزنند: «مگر ما با شما نبودیم؟!» میگویند: «آری، ولی شما خود را به هلاکت افکندید و انتظار (مرگ پیامبر را) کشیدید، و (در همه چیز) شکّ و تردید داشتید، و آرزوهای دور و دراز شما را فریب داد تا فرمان خدا فرا رسید، و شیطان فریبکار شما را در برابر (فرمان) خداوند فریب داد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,399,'پس امروز نه از شما فدیهای پذیرفته میشود، و نه از کافران؛ و جایگاهتان آتش است و همان سرپرستتان میباشد؛ و چه بد جایگاهی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,399,'آیا وقت آن نرسیده است که دلهای مؤمنان در برابر ذکر خدا و آنچه از حقّ نازل کرده است خاشع گردد؟! و مانند کسانی نباشند که در گذشته به آنها کتاب آسمانی داده شد، سپس زمانی طولانی بر آنها گذشت و قلبهایشان قساوت پیدا کرد؛ و بسیاری از آنها گنهکارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,399,'بدانید خداوند زمین را بعد از مرگ آن زنده میکند! ما آیات (خود) را برای شما بیان کردیم، شاید اندیشه کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,399,'مردان و زنان انفاقکننده، و آنها که (از این راه) به خدا «قرض الحسنه» دهند، (این قرض الحسنه) برای آنان مضاعف میشود و پاداش پرارزشی دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,399,'کسانی که به خدا و رسولانش ایمان آوردند، آنها صدّیقین و شهدا نزد پروردگارشانند؛ برای آنان است پاداش (اعمال) شان و نور (ایمان) شان؛ و کسانی که کافر شدند و آیات ما را تکذیب کردند، آنها دوزخیانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,399,'بدانید زندگی دنیا تنها بازی و سرگرمی و تجمّل پرستی و فخرفروشی در میان شما و افزون طلبی در اموال و فرزندان است، همانند بارانی که محصولش کشاورزان را در شگفتی فرو میبرد، سپس خشک میشود بگونهای که آن را زردرنگ میبینی؛ سپس تبدیل به کاه میشود! و در آخرت، عذاب شدید است یا مغفرت و رضای الهی؛ و (به هر حال) زندگی دنیا چیزی جز متاع فریب نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,399,'به پیش تازید برای رسیدن به مغفرت پروردگارتان و بهشتی که پهنه آن مانند پهنه آسمان و زمین است و برای کسانی که به خدا و رسولانش ایمان آوردهاند؛ آماده شده است، این فضل خداوند است که به هر کس بخواهد میدهد؛ و خداوند صاحب فضل عظیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,399,'هیچ مصیبتی (ناخواسته) در زمین و نه در وجود شما روی نمیدهد مگر اینکه همه آنها قبل از آنکه زمین را بیافرینیم در لوح محفوظ ثبت است؛ و این امر برای خدا آسان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,399,'این بخاطر آن است که برای آنچه از دست دادهاید تأسف نخورید، و به آنچه به شما داده است دلبسته و شادمان نباشید؛ و خداوند هیچ متکبّر فخرفروشی را دوست ندارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,399,'همانها که بخل میورزند و مردم را به بخل دعوت میکنند؛ و هر کس (از این فرمان) رویگردان شود، (به خود زیان میرساند نه به خدا)، چرا که خداوند بینیاز و شایسته ستایش است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,399,'ما رسولان خود را با دلایل روشن فرستادیم، و با آنها کتاب (آسمانی) و میزان (شناسایی حقّ از باطل و قوانین عادلانه) نازل کردیم تا مردم قیام به عدالت کنند؛ و آهن را نازل کردیم که در آن نیروی شدید و منافعی برای مردم است، تا خداوند بداند چه کسی او و رسولانش را یاری میکند بیآنکه او را ببینند؛ خداوند قوّی و شکستناپذیر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,399,'ما نوح و ابراهیم را فرستادیم، و در دودمان آن دو نبوّت و کتاب قرار دادیم؛ بعضی از آنها هدایت یافتهاند و بسیاری از آنها گنهکارند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,399,'سپس در پی آنان رسولان دیگر خود را فرستادیم، و بعد از آنان عیسی بن مریم را مبعوث کردیم و به او انجیل عطا کردیم، و در دل کسانی که از او پیروی کردند رأفت و رحمت قرار دادیم؛ و رهبانیّتی را که ابداع کرده بودند، ما بر آنان مقرّر نداشته بودیم؛ گرچه هدفشان جلب خشنودی خدا بود، ولی حقّ آن را رعایت نکردند؛ از اینرو ما به کسانی از آنها که ایمان آوردند پاداششان را دادیم؛ و بسیاری از آنها فاسقند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,399,'ای کسانی که ایمان آوردهاید! تقوای الهی پیشه کنید و به رسولش ایمان بیاورید تا دو سهم از رحمتش به شما ببخشد و برای شما نوری قرار دهد که با آن (در میان مردم و در مسیر زندگی خود) راه بروید و گناهان شما را ببخشد؛ و خداوند غفور و رحیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,399,'تا اهل کتاب بدانند که قادر بر چیزی از فضل خدا نیستند، و تمام فضل (و رحمت) به دست اوست، به هر کس بخواهد آن را میبخشد؛ و خداوند دارای فضل عظیم است!');
+INSERT INTO chapters (id, number, quran_id) VALUES(400,58,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,400,'خداوند سخن زنی را که درباره شوهرش به تو مراجعه کرده بود و به خداوند شکایت میکرد شنید (و تقاضای او را اجابت کرد)؛ خداوند گفتگوی شما را با هم (و اصرار آن زن را درباره حل مشکلش) میشنید؛ و خداوند شنوا و بیناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,400,'کسانی که از شما نسبت به همسرانشان «ظهار» میکنند (و میگویند: «أَنتِ عَلیَّ کَظهَرِ أُمّی = تو نسبت به من بمنزله مادرم هستی»)، آنان هرگز مادرانشان نیستند؛ مادرانشان تنها کسانیاند که آنها را به دنیا آوردهاند! آنها سخنی زشت و باطل میگویند؛ و خداوند بخشنده و آمرزنده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,400,'کسانی که همسران خود را «ظِهار» میکنند، سپس از گفته خود بازمیگردند، باید پیش از آمیزش جنسی با هم، بردهای را آزاد کنند؛ این دستوری است که به آن اندرز داده میشوید؛ و خداوند به آنچه انجام میدهید آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,400,'و کسی که توانایی (آزاد کردن بردهای) نداشته باشد، دو ماه پیاپی قبل از آمیزش روزه بگیرد؛ و کسی که این را هم نتواند، شصت مسکین را اطعام کند؛ این برای آن است که به خدا و رسولش ایمان بیاورید؛ اینها مرزهای الهی است؛ و کسانی که با آن مخالفت کنند، عذاب دردناکی دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,400,'کسانی که با خدا و رسولش دشمنی میکنند خوار و ذلیل شدند آنگونه که پیشینیان خوار و ذلیل شدند؛ ما آیات روشنی نازل کردیم، و برای کافران عذاب خوارکنندهای است...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,400,'در آن روز که خداوند همه آنها را برمیانگیزد و از اعمالی که انجام دادند با خبر میسازد، اعمالی که خداوند حساب آن را نگه داشته و آنها فراموشش کردند؛ و خداوند بر هر چیز شاهد و ناظر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,400,'آیا نمیدانی که خداوند آنچه را در آسمانها و آنچه را در زمین است میداند؛ هیچ گاه سه نفر با هم نجوا نمیکنند مگر اینکه خداوند چهارمین آنهاست، و هیچ گاه پنج نفر با هم نجوا نمیکنند مگر اینکه خداوند ششمین آنهاست، و نه تعدادی کمتر و نه بیشتر از آن مگر اینکه او همراه آنهاست هر جا که باشند، سپس روز قیامت آنها را از اعمالشان آگاه میسازد، چرا که خداوند به هر چیزی داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,400,'آیا ندیدی کسانی را که از نجوا [= سخنان درگوشی] نهی شدند، سپس به کاری که از آن نهی شده بودند بازمیگردند و برای انجام گناه و تعدّی و نافرمانی رسول خدا به نجوا میپردازند و هنگامی که نزد تو میآیند تو را تحیّتی (و خوشامدی) میگویند که خدا به تو نگفته است، و در دل میگویند: «چرا خداوند ما را بخاطر گفتههایمان عذاب نمیکند؟!» جهنم برای آنان کافی است، وارد آن میشوند، و چه بد فرجامی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,400,'ای کسانی که ایمان آوردهاید! هنگامی که نجوا میکنید، و به گناه و تعدّی و نافرمانی رسول (خدا) نجوا نکنید، و به کار نیک و تقوا نجوا کنید، و از خدایی که همگی نزد او جمع میشوید بپرهیزید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,400,'نجوا تنها از سوی شیطان است؛ میخواهد با آن مؤمنان غمگین شوند؛ ولی نمی تواند هیچ گونه ضرری به آنها برساند جز بفرمان خدا؛ پس مؤمنان تنها بر خدا توکّل کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,400,'ای کسانی که ایمان آوردهاید! هنگامی که به شما گفته شود: «مجلس را وسعت بخشید (و به تازهواردها جا دهید)»، وسعت بخشید، خداوند (بهشت را) برای شما وسعت میبخشد؛ و هنگامی که گفته شود: «برخیزید»، برخیزید؛ اگر چنین کنید، خداوند کسانی را که ایمان آوردهاند و کسانی را که علم به آنان داده شده درجات عظیمی میبخشد؛ و خداوند به آنچه انجام میدهید آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,400,'ای کسانی که ایمان آوردهاید! هنگامی که میخواهید با رسول خدا نجوا کنید (و سخنان درگوشی بگویید)، قبل از آن صدقهای (در راه خدا) بدهید؛ این برای شما بهتر و پاکیزهتر است و اگر توانایی نداشته باشید، خداوند غفور و رحیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,400,'آیا ترسیدید فقیر شوید که از دادن صدقات قبل از نجوا خودداری کردید؟! اکنون که این کار را نکردید و خداوند توبه شما را پذیرفت، نماز را برپا دارید و زکات را ادا کنید و خدا و پیامبرش را اطاعت نمایید و (بدانید) خداوند از آنچه انجام میدهید با خبر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,400,'آیا ندیدی کسانی را که طرح دوستی با گروهی که مورد غضب خدا بودند ریختند؟! آنها نه از شما هستند و نه از آنان! سوگند دروغ یاد میکنند (که از شما هستند) در حالی که خودشان میدانند (دروغ نمیگویند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,400,'خداوند عذاب شدیدی برای آنان فراهم ساخته، چرا که اعمال بدی انجام میدادند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,400,'آنها سوگندهای خود را سپری قرار دادند و مردم را از راه خدا بازداشتند؛ از اینرو برای آنان عذاب خوارکنندهای است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,400,'هرگز اموال و اولادشان آنها را از عذاب الهی حفظ نمیکند؛ آنها اهل آتشند و جاودانه در آن میمانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,400,'(به خاطر بیاورید) روزی را که خداوند همه آنها را برمیانگیزد، آنها برای خدا نیز سوگند (دروغ) یاد میکنند همانگونه که (امروز) برای شما یاد میکنند؛ و گمان میکنند کاری میتوانند انجام دهند؛ بدانید آنها دروغگویانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,400,'شیطان بر آنان مسلّط شده و یاد خدا را از خاطر آنها برده؛ آنان حزب شیطانند! بدانید حزب شیطان زیانکارانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,400,'کسانی که با خدا و رسولش دشمنی میکنند، آنها در زُمره ذلیلترین افرادند.!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,400,'خداوند چنین مقرر داشته که من و رسولانم پیروز میشویم؛ چرا که خداوند قوّی و شکستناپذیر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,400,'هیچ قومی را که ایمان به خدا و روز رستاخیز دارند نمییابی که با دشمنان خدا و رسولش دوستی کنند، هر چند پدران یا فرزندان یا برادران یا خویشاوندانشان باشند؛ آنان کسانی هستند که خدا ایمان را بر صفحه دلهایشان نوشته و با روحی از ناحیه خودش آنها را تقویت فرموده، و آنها را در باغهایی از بهشت وارد میکند که نهرها از زیر (درختانش) جاری است، جاودانه در آن میمانند؛ خدا از آنها خشنود است، و آنان نیز از خدا خشنودند؛ آنها «حزب اللّه» اند؛ بدانید «حزب اللّه» پیروزان و رستگارانند.');
+INSERT INTO chapters (id, number, quran_id) VALUES(401,59,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,401,'آنچه در آسمانها و آنچه در زمین است، برای خدا تسبیح میگوید؛ و او عزیز و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,401,'او کسی است که کافران اهل کتاب را در نخستین برخورد (با مسلمانان) از خانههایشان بیرون راند! گمان نمیکردید آنان خارج شوند، و خودشان نیز گمان میکردند که دِژهای محکمشان آنها را از عذاب الهی مانع میشود؛ امّا خداوند از آنجا که گمان نمیکردند به سراغشان آمد و در دلهایشان ترس و وحشت افکند، بگونهای که خانههای خود را با دست خویش و با دست مؤمنان ویران میکردند؛ پس عبرت بگیرید ای صاحبان چشم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,401,'و اگر نه این بود که خداوند ترک وطن را بر آنان مقرّر داشته بود، آنها را در همین دنیا مجازات میکرد؛ و برای آنان در آخرت نیز عذاب آتش است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,401,'این به خاطر آن است که آنها با خدا و رسولش دشمنی کردند؛ و هر کس با خدا دشمنی کند (باید بداند) که خدا مجازات شدیدی دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,401,'هر درخت باارزش نخل را قطع کردید یا آن را به حال خود واگذاشتید، همه به فرمان خدا بود؛ و برای این بود که فاسقان را خوار و رسوا کند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,401,'و آنچه را خدا از آنان [= یهود] به رسولش بازگردانده (و بخشیده) چیزی است که شما برای به دست آوردن آن (زحمتی نکشیدید،) نه اسبی تاختید و نه شتری؛ ولی خداوند رسولان خود را بر هر کس بخواهد مسلّط میسازد؛ و خدا بر هر چیز توانا است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,401,'آنچه را خداوند از اهل این آبادیها به رسولش بازگرداند، از آن خدا و رسول و خویشاوندان او، و یتیمان و مستمندان و در راه ماندگان است، تا (این اموال عظیم) در میان ثروتمندان شما دست به دست نگردد! آنچه را رسول خدا برای شما آورده بگیرید (و اجرا کنید)، و از آنچه نهی کرده خودداری نمایید؛ و از (مخالفت) خدا بپرهیزید که خداوند کیفرش شدید است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,401,'این اموال برای فقیران مهاجرانی است که از خانه و کاشانه و اموال خود بیرون رانده شدند در حالی که فضل الهی و رضای او را میطلبند و خدا و رسولش را یاری میکنند؛ و آنها راستگویانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,401,'و برای کسانی است که در این سرا [= سرزمین مدینه] و در سرای ایمان پیش از مهاجران مسکن گزیدند و کسانی را که به سویشان هجرت کنند دوست میدارند، و در دل خود نیازی به آنچه به مهاجران داده شده احساس نمیکنند و آنها را بر خود مقدّم میدارند هر چند خودشان بسیار نیازمند باشند؛ کسانی که از بخل و حرص نفس خویش باز داشته شدهاند رستگارانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,401,'(همچنین) کسانی که بعد از آنها [= بعد از مهاجران و انصار] آمدند و میگویند: «پروردگارا! ما و برادرانمان را که در ایمان بر ما پیشی گرفتند بیامرز، و در دلهایمان حسد و کینهای نسبت به مؤمنان قرار مده! پروردگارا، تو مهربان و رحیمی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,401,'آیا منافقان را ندیدی که پیوسته به برادران کفارشان از اهل کتاب میگفتند: «هرگاه شما را (از وطن) بیرون کنند، ما هم با شما بیرون خواهیم رفت و هرگز سخن هیچ کس را درباره شما اطاعت نخواهیم کرد؛ و اگر با شما پیکار شود، یاریتان خواهیم نمود!» خداوند شهادت میدهد که آنها دروغگویانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,401,'اگر آنها را بیرون کنند با آنان بیرون نمیروند، و اگر با آنها پیکار شود یاریشان نخواهند کرد، و اگر یاریشان کنند پشت به میدان کرده فرار میکنند؛ سپس کسی آنان را یاری نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,401,'وحشت از شما در دلهای آنها بیش از ترس از خداست؛ این به خاطر آن است که آنها گروهی نادانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,401,'آنها هرگز با شما بصورت گروهی نمیجنگند جز در دژهای محکم یا از پشت دیوارها! پیکارشان در میان خودشان شدید است، (امّا در برابر شما ضعیف!) آنها را متّحد میپنداری، در حالی که دلهایشان پراکنده است؛ این به خاطر آن است که آنها قومی هستند که تعقّل نمیکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,401,'کار این گروه از یهود همانند کسانی است که کمی قبل از آنان بودند، طعم تلخ کار خود را چشیدند و برای آنها عذابی دردناک است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,401,'کار آنها همچون شیطان است که به انسان گفت: «کافر شو (تا مشکلات تو را حل کنم)!» امّا هنگامی که کافر شد گفت: «من از تو بیزارم، من از خداوندی که پروردگار عالمیان است بیم دارم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,401,'سرانجام کارشان این شد که هر دو در آتش دوزخ خواهند بود، جاودانه در آن میمانند؛ و این است کیفر ستمکاران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,401,'ای کسانی که ایمان آوردهاید از (مخالفت) خدا بپرهیزید؛ و هر کس باید بنگرد تا برای فردایش چه چیز از پیش فرستاده؛ و از خدا بپرهیزید که خداوند از آنچه انجام میدهید آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,401,'و همچون کسانی نباشید که خدا را فراموش کردند و خدا نیز آنها را به «خود فراموشی» گرفتار کرد، آنها فاسقانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,401,'هرگز دوزخیان و بهشتیان یکسان نیستند؛ اصحاب بهشت رستگار و پیروزند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,401,'اگر این قرآن را بر کوهی نازل میکردیم، میدیدی که در برابر آن خاشع میشود و از خوف خدا میشکافد! اینها مثالهایی است که برای مردم میزنیم، شاید در آن بیندیشید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,401,'او خدایی است که معبودی جز او نیست، دانای آشکار و نهان است، و او رحمان و رحیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,401,'و خدایی است که معبودی جز او نیست، حاکم و مالک اصلی اوست، از هر عیب منزّه است، به کسی یتم نمیکند، امنیّت بخش است، مراقب همه چیز است، قدرتمندی شکستناپذیر که با اراده نافذ خود هر امری را اصلاح میکند، و شایسته عظمت است؛ خداوند منزّه است از آنچه شریک برای او قرارمیدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,401,'او خداوندی است خالق، آفرینندهای بیسابقه، و صورتگری (بینظیر)؛ برای او نامهای نیک است؛ آنچه در آسمانها و زمین است تسبیح او میگویند؛ و او عزیز و حکیم است!');
+INSERT INTO chapters (id, number, quran_id) VALUES(402,60,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,402,'ای کسانی که ایمان آوردهاید! دشمن من و دشمن خودتان را دوست نگیرید! شما نسبت به آنان اظهار محبّت میکنید، در حالی که آنها به آنچه از حقّ برای شما آمده کافر شدهاند و رسول اللّه و شما را به خاطر ایمان به خداوندی که پروردگار همه شماست از شهر و دیارتان بیرون میرانند؛ اگر شما برای جهاد در راه من و جلب خشنودیم هجرت کردهاید؛ (پیوند دوستی با آنان برقرار نسازید!) شما مخفیانه با آنها رابطه دوستی برقرار میکنید در حالی که من به آنچه پنهان یا آشکار میسازید از همه داناترم! و هر کس از شما چنین کاری کند، از راه راست گمراه شده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,402,'اگر آنها بر شما مسلّط شوند، دشمنانتان خواهند بود و دست و زبان خود را به بدی کردن نسبت به شما میگشایند، و دوست دارند شما به کفر بازگردید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,402,'هرگز بستگان و فرزندانتان روز قیامت سودی به حالتان نخواهند داشت؛ میان شما جدایی میافکند؛ و خداوند به آنچه انجام میدهید بیناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,402,'برای شما سرمشق خوبی در زندگی ابراهیم و کسانی که با او بودند وجود داشت، در آن هنگامی که به قوم (مشرک) خود گفتند: «ما از شما و آنچه غیر از خدا میپرستید بیزاریم؛ ما نسبت به شما کافریم؛ و میان ما و شما عداوت و دشمنی همیشگی آشکار شده است؛ تا آن زمان که به خدای یگانه ایمان بیاورید! -جز آن سخن ابراهیم که به پدرش [= عمویش آزر] گفت (و وعده داد) که برای تو آمرزش طلب میکنم، و در عین حال در برابر خداوند برای تو مالک چیزی نیستم (و اختیاری ندارم)!- پروردگارا! ما بر تو توکّل کردیم و به سوی تو بازگشتیم، و همه فرجامها بسوی تو است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,402,'پروردگارا! ما را مایه گمراهی کافران قرار مده، و ما را ببخش، ای پروردگار ما که تو عزیز و حکیمی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,402,'(آری) برای شما در زندگی آنها اسوه حسنه (و سرمشق نیکویی) بود، برای کسانی که امید به خدا و روز قیامت دارند؛ و هر کس سرپیچی کند به خویشتن ضرر زده است، زیرا خداوند بینیاز و شایسته ستایش است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,402,'امید است خدا میان شما و کسانی از مشرکین که با شما دشمنی کردند (از راه اسلام) پیوند محبّت برقرار کند؛ خداوند تواناست و خداوند آمرزنده و مهربان است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,402,'خدا شما را از نیکی کردن و رعایت عدالت نسبت به کسانی که در راه دین با شما پیکار نکردند و از خانه و دیارتان بیرون نراندند نهی نمیکند؛ چرا که خداوند عدالتپیشگان را دوست دارد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,402,'تنها شما را از دوستی و رابطه با کسانی نهی میکند که در امر دین با شما پیکار کردند و شما را از خانه هایتان بیرون راندند یا به بیرونراندن شما کمک کردند و هر کس با آنان رابطه دوستی داشته باشد ظالم و ستمگر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,402,'ای کسانی که ایمان آوردهاید! هنگامی که زنان باایمان بعنوان هجرت نزد شما آیند، آنها را آزمایش کنید -خداوند به ایمانشان آگاهتر است- هرگاه آنان را مؤمن یافتید، آنها را بسوی کفّار بازنگردانید؛ نه آنها برای کفّار حلالند و نه کفّار برای آنها حلال؛ و آنچه را همسران آنها (برای ازدواج با این زنان) پرداختهاند به آنان بپردازید؛ و گناهی بر شما نیست که با آنها ازدواج کنید هرگاه مَهرشان را به آنان بدهید و هرگز زنان کافر را در همسری خود نگه ندارید (و اگر کسی از زنان شما کافر شد و به بلاد کفر فرار کرد،) حق دارید مَهری را که پرداختهاید مطالبه کنید همانگونه که آنها حق دارند مهر زنانشان را که از آنان جدا شدهاند) از شما مطالبه کنند؛ این حکم خداوند است که در میان شما حکم میکند، و خداوند دانا و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,402,'و اگر بعضی از همسران شما از دستتان بروند (و به سوی کفار بازگردند) و شما در جنگی بر آنان پیروز شدید و غنایمی گرفتید، به کسانی که همسرانشان رفتهاند، همانند مهری را که پرداختهاند بدهید؛ و از (مخالفت) خداوندی که همه به او ایمان دارید بپرهیزید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,402,'ای پیامبر! هنگامی که زنان مؤمن نزد تو آیند و با تو بیعت کنند که چیزی را شریک خدا قرار ندهند، دزدی و زنا نکنند، فرزندان خود را نکشند، تهمت و افترایی پیش دست و پای خود نیاورند و در هیچ کار شایستهای مخالفت فرمان تو نکنند، با آنها بیعت کن و برای آنان از درگاه خداوند آمرزش بطلب که خداوند آمرزنده و مهربان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,402,'ای کسانی که ایمان آوردهاید! با قومی که خداوند آنان را مورد غضب قرار داده دوستی نکنید؛ آنان از آخرت مأیوسند همانگونه که کفار مدفون در قبرها مأیوس میباشند!');
+INSERT INTO chapters (id, number, quran_id) VALUES(403,61,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,403,'آنچه در آسمانها و آنچه در زمین است همه تسبیح خدا میگویند؛ و او شکستناپذیر و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,403,'ای کسانی که ایمان آوردهاید! چرا سخنی میگویید که عمل نمیکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,403,'نزد خدا بسیار موجب خشم است که سخنی بگویید که عمل نمیکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,403,'خداوند کسانی را دوست میدارد که در راه او پیکار میکنند گوئی بنایی آهنیناند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,403,'(به یاد آورید) هنگامی را که موسی به قومش گفت: «ای قوم من! چرا مرا آزار میدهید با اینکه میدانید من فرستاده خدا به سوی شما هستم؟!» هنگامی که آنها از حق منحرف شدند، خداوند قلوبشان را منحرف ساخت؛ و خدا فاسقان را هدایت نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,403,'و (به یاد آورید) هنگامی را که عیسی بن مریم گفت: «ای بنی اسرائیل! من فرستاده خدا به سوی شما هستم در حالی که تصدیقکننده کتابی که قبل از من فرستاده شده [= تورات] میباشم، و بشارتدهنده به رسولی که بعد از من میآید و نام او احمد است!» هنگامی که او [= احمد] با معجزات و دلایل روشن به سراغ آنان آمد، گفتند: «این سحری است آشکار»!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,403,'چه کسی ظالمتر است از آن کس که بر خدا دروغ بسته در حالی که دعوت به اسلام میشود؟! خداوند گروه ستمکاران را هدایت نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,403,'آنان میخواهند نور خدا را با دهان خود خاموش سازند؛ ولی خدا نور خود را کامل میکند هر چند کافران خوش نداشته باشند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,403,'او کسی است که رسول خود را با هدایت و دین حق فرستاد تا او را بر همه ادیان غالب سازد، هر چند مشرکان کراهت داشته باشند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,403,'ای کسانی که ایمان آوردهاید! آیا شما را به تجارتی راهنمائی کنم که شما را از عذاب دردناک رهایی میبخشد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,403,'به خدا و رسولش ایمان بیاورید و با اموال و جانهایتان در راه خدا جهاد کنید؛ این برای شما (از هر چیز) بهتر است اگر بدانید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,403,'(اگر چنین کنید) گناهانتان را میبخشد و شما را در باغهایی از بهشت داخل میکند که نهرها از زیر درختانش جاری است و در مسکنهای پاکیزه در بهشت جاویدان جای میدهد؛ و این پیروزی عظیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,403,'و (نعمت) دیگری که آن را دوست دارید به شما میبخشد، و آن یاری خداوند و پیروزی نزدیک است؛ و مؤمنان را بشارت ده (به این پیروزی بزرگ)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,403,'ای کسانی که ایمان آوردهاید! یاوران خدا باشید همانگونه که عیسی بن مریم به حواریون گفت: «چه کسانی در راه خدا یاوران من هستند؟!» حواریون گفتند: «ما یاوران خدائیم» در این هنگام گروهی از بنی اسرائیل ایمان آوردند و گروهی کافر شدند؛ ما کسانی را که ایمان آورده بودند در برابر دشمنانشان تأیید کردیم و سرانجام بر آنان پیروز شدند!');
+INSERT INTO chapters (id, number, quran_id) VALUES(404,62,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,404,'آنچه در آسمانها و آنچه در زمین است همواره تسبیح خدا میگویند، خداوندی که مالک و حاکم است و از هر عیب و نقصی مبرا، و عزیز و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,404,'و کسی است که در میان جمعیت درس نخوانده رسولی از خودشان برانگیخت که آیاتش را بر آنها میخواند و آنها را تزکیه میکند و به آنان کتاب (قرآن) و حکمت میآموزد هر چند پیش از آن در گمراهی آشکاری بودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,404,'و (همچنین) رسول است بر گروه دیگری که هنوز به آنها ملحق نشدهاند؛ و او عزیز و حکیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,404,'این فضل خداست که به هر کس بخواهد (و شایسته بداند) میبخشد؛ و خداوند صاحب فضل عظیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,404,'کسانی که مکلف به تورات شدند ولی حق آن را ادا نکردند، مانند درازگوشی هستند که کتابهایی حمل میکند، (آن را بر دوش میکشد اما چیزی از آن نمیفهمد)! گروهی که آیات خدا را انکار کردند مثال بدی دارند، و خداوند قوم ستمگر را هدایت نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,404,'بگو: «ای یهودیان! اگر گمان میکنید که (فقط) شما دوستان خدائید نه سایر مردم، پس آرزوی مرگ کنید اگر راست میگویید (تا به لقای محبوبتان برسید)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,404,'ولی آنان هرگز تمنای مرگ نمیکنند بخاطر اعمالی که از پیش فرستادهاند؛ و خداوند ظالمان را بخوبی میشناسد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,404,'بگو: «این مرگی که از آن فرار میکنید سرانجام با شما ملاقات خواهد کرد؛ سپس به سوی کسی که دانای پنهان و آشکار است بازگردانده میشوید؛ آنگاه شما را از آنچه انجام میدادید خبر میدهد!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,404,'ای کسانی که ایمان آوردهاید! هنگامی که برای نماز روز جمعه اذان گفته شود، به سوی ذکر خدا بشتابید و خرید و فروش را رها کنید که این برای شما بهتر است اگر میدانستید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,404,'و هنگامی که نماز پایان گرفت (شما آزادید) در زمین پراکنده شوید و از فضل خدا بطلبید، و خدا را بسیار یاد کنید شاید رستگار شوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,404,'هنگامی که آنها تجارت یا سرگرمی و لهوی را ببینند پراکنده میشوند و به سوی آن می روند و تو را ایستاده به حال خود رها میکنند؛ بگو: آنچه نزد خداست بهتر از لهو و تجارت است، و خداوند بهترین روزیدهندگان است.');
+INSERT INTO chapters (id, number, quran_id) VALUES(405,63,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,405,'هنگامی که منافقان نزد تو آیند میگویند: «ما شهادت میدهیم که یقیناً تو رسول خدایی!» خداوند میداند که تو رسول او هستی، ولی خداوند شهادت میدهد که منافقان دروغگو هستند (و به گفته خود ایمان ندارند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,405,'آنها سوگندهایشان را سپر ساختهاند تا مردم را از راه خدا باز دارند، و کارهای بسیار بدی انجام میدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,405,'این بخاطر آن است که نخست ایمان آوردند سپس کافر شدند؛ از این رو بر دلهای آنان مهر نهاده شده، و حقیقت را درک نمیکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,405,'هنگامی که آنها را میبینی، جسم و قیافه آنان تو را در شگفتی فرو میبرد؛ و اگر سخن بگویند، به سخنانشان گوش فرا میدهی؛ اما گویی چوبهای خشکی هستند که به دیوار تکیه داده شدهاند! هر فریادی از هر جا بلند شود بر ضد خود میپندارند؛ آنها دشمنان واقعی تو هستند، پس از آنان بر حذر باش! خداوند آنها را بکشد، چگونه از حق منحرف میشوند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,405,'هنگامی که به آنان گفته شود: «بیایید تا رسول خدا برای شما استغفار کند!»، سرهای خود را (از روی استهزا و کبر و غرور) تکان میدهند؛ و آنها را میبینی که از سخنان تو اعراض کرده و تکبر میورزند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,405,'برای آنها تفاوت نمیکند، خواه استغفار برایشان کنی یا نکنی، هرگز خداوند آنان را نمیبخشد؛ زیرا خداوند قوم فاسق را هدایت نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,405,'آنها کسانی هستند که میگویند: «به افرادی که نزد رسول خدا هستند انفاق نکنید تا پراکنده شوند!» (غافل از اینکه) خزاین آسمانها و زمین از آن خداست، ولی منافقان نمیفهمند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,405,'آنها میگویند: «اگر به مدینه بازگردیم، عزیزان ذلیلان را بیرون میکنند!» در حالی که عزت مخصوص خدا و رسول او و مؤمنان است؛ ولی منافقان نمیدانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,405,'ای کسانی که ایمان آوردهاید! اموال و فرزندانتان شما را از یاد خدا غافل نکند! و کسانی که چنین کنند، زیانکارانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,405,'از آنچه به شما روزی دادهایم انفاق کنید، پیش از آنکه مرگ یکی از شما فرا رسد و بگوید: «پروردگارا! چرا (مرگ) مرا مدت کمی به تأخیر نینداختی تا (در راه خدا) صدقه دهم و از صالحان باشم؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,405,'خداوند هرگز مرگ کسی را هنگامی که اجلش فرا رسد به تأخیر نمیاندازد، و خداوند به آنچه انجام میدهید آگاه است.');
+INSERT INTO chapters (id, number, quran_id) VALUES(406,64,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,406,'آنچه در آسمانها و آنچه در زمین است برای خدا تسبیح میگویند؛ مالکیت و حکومت از آن اوست و ستایش از آن او؛ و او بر همه چیز تواناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,406,'او کسی است که شما را آفرید (و به شما آزادی و اختیار داد)؛ گروهی از شما کافرید و گروهی مؤمن؛ و خداوند به آنچه انجام میدهید بیناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,406,'آسمانها و زمین را بحق آفرید؛ و شما را (در عالم جنین) تصویر کرد، تصویری زیبا و دلپذیر؛ و سرانجام (همه) بسوی اوست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,406,'آنچه را در آسمانها و زمین است میداند، و از آنچه پنهان یا آشکار میکنید با خبر است؛ و خداوند از آنچه در درون سینههاست آگاه است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,406,'آیا خبر کسانی که پیش از این کافر شدند به شما نرسیده است؟! (آری) آنها طعم کیفر گناهان بزرگ خود را چشیدند؛ و عذاب دردناک برای آنهاست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,406,'این بخاطر آن است که رسولان آنها (پیوسته) با دلایل روشن به سراغشان میآمدند، ولی آنها (از روی کبر و غرور) گفتند: «آیا بشرهایی (مثل ما) میخواهند ما را هدایت کنند؟!» از این رو کافر شدند و روی برگرداندند؛ و خداوند (از ایمان و طاعتشان) بی نیاز بود، و خدا غنی و شایسته ستایش است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,406,'کافران پنداشتند که هرگز برانگیخته نخواهند شد، بگو: «آری به پروردگارم سوگند که همه شما (در قیامت) برانگیخته خواهید شد، سپس آنچه را عمل میکردید به شما خبر داده میشود، و این برای خداوند آسان است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,406,'حال که چنین است، به خدا و رسول او و نوری که نازل کردهایم ایمان بیاورید؛ و بدانید خدا به آنچه انجام میدهید آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,406,'این در زمانی خواهد بود که همه شما را در روز اجتماع [= روز رستاخیز] گردآوری میکند؛ آن روز روز تغابن است (روز احساس خسارت و پشیمانی)! و هر کس به خدا ایمان بیاورد و عمل صالح انجام دهد، گناهان او را میبخشد و او را در باغهایی از بهشت که نهرها از زیر درختانش جاری است وارد میکند، جاودانه در آن می مانند؛ و این پیروزی بزرگ است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,406,'اما کسانی که کافر شدند و آیات ما را تکذیب کردند اصحاب دوزخند، جاودانه در آن میمانند، و (سرانجام آنها) سرانجام بدی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,406,'هیچ مصیبتی رخ نمیدهد مگر به اذن خدا! و هر کس به خدا ایمان آورد، خداوند قلبش را هدایت میکند؛ و خدا به هر چیز داناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,406,'اطاعت کنید خدا را، و اطاعت کنید پیامبر را؛ و اگر رویگردان شوید، رسول ما جز ابلاغ آشکار وظیفهای ندارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,406,'خداوند کسی است که هیچ معبودی جز او نیست، و مؤمنان باید فقط بر او توکل کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,406,'ای کسانی که ایمان آوردهاید! بعضی از همسران و فرزندانتان دشمنان شما هستند، از آنها برحذر باشید؛ و اگر عفو کنید و چشم بپوشید و ببخشید، (خدا شما را میبخشد)؛ چرا که خداوند بخشنده و مهربان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,406,'اموال و فرزندانتان فقط وسیله آزمایش شما هستند؛ و خداست که پاداش عظیم نزد اوست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,406,'پس تا میتوانید تقوای الهی پیشه کنید و گوش دهید و اطاعت نمایید و انفاق کنید که برای شما بهتر است؛ و کسانی که از بخل و حرص خویشتن مصون بمانند رستگارانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,406,'اگر به خدا قرضالحسنه دهید، آن را برای شما مضاعف میسازد و شما را میبخشد؛ و خداوند شکرکننده و بردبار است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,406,'او دانای پنهان و آشکار است؛ و او عزیز و حکیم است!');
+INSERT INTO chapters (id, number, quran_id) VALUES(407,65,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,407,'ای پیامبر! هر زمان خواستید زنان را طلاق دهید، در زمان عدّه، آنها را طلاق گویید [= زمانی که از عادت ماهانه پاک شده و با همسرشان نزدیکی نکرده باشند]، و حساب عدّه را نگه دارید؛ و از خدایی که پروردگار شماست بپرهیزید؛ نه شما آنها را از خانههایشان بیرون کنید و نه آنها (در دوران عدّه) بیرون روند، مگر آنکه کار زشت آشکاری انجام دهند؛ این حدود خداست، و هر کس از حدود الهی تجاوز کند به خویشتن ستم کرده؛ تو نمیدانی شاید خداوند بعد از این، وضع تازه (و وسیله اصلاحی) فراهم کند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,407,'و چون عده آنها سرآمد، آنها را بطرز شایستهای نگه دارید یا بطرز شایستهای از آنان جدا شوید؛ و دو مرد عادل از خودتان را گواه گیرید؛ و شهادت را برای خدا برپا دارید؛ این چیزی است که مؤمنان به خدا و روز قیامت به آن اندرز داده میشوند! و هر کس تقوای الهی پیشه کند، خداوند راه نجاتی برای او فراهم میکند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,407,'و او را از جایی که گمان ندارد روزی میدهد؛ و هر کس بر خدا توکّل کند، کفایت امرش را میکند؛ خداوند فرمان خود را به انجام میرساند؛ و خدا برای هر چیزی اندازهای قرار داده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,407,'و از زنانتان، آنان که از عادت ماهانه مأیوسند، اگر در وضع آنها (از نظر بارداری) شک کنید، عده آنان سه ماه است، و همچنین آنها که عادت ماهانه ندیدهاند؛ و عده زنان باردار این است که بار خود را بر زمین بگذارند؛ و هر کس تقوای الهی پیشه کند، خداوند کار را بر او آسان میسازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,407,'این فرمان خداست که بر شما نازل کرده؛ و هر کس تقوای الهی پیشه کند، خداوند گناهانش را میبخشد و پاداش او را بزرگ میدارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,407,'آنها [= زنان مطلّقه] را هر جا خودتان سکونت دارید و در توانایی شماست سکونت دهید؛ و به آنها زیان نرسانید تا کار را بر آنان تنگ کنید (و مجبور به ترک منزل شوند)؛ و اگر باردار باشند، نفقه آنها را بپردازید تا وضع حمل کنند؛ و اگر برای شما (فرزند را) شیر میدهند، پاداش آنها را بپردازید؛ و (درباره فرزندان، کار را) با مشاوره شایسته انجام دهید؛ و اگر به توافق نرسیدید، آن دیگری شیردادن آن بچه را بر عهده میگیرد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,407,'آنان که امکانات وسیعی دارند، باید از امکانات وسیع خود انفاق کنند و آنها که تنگدستند، از آنچه که خدا به آنها داده انفاق نمایند؛ خداوند هیچ کس را جز به مقدار توانایی که به او داده تکلیف نمیکند؛ خداوند بزودی بعد از سختیها آسانی قرار میدهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,407,'چه بسیار شهرها و آبادیها که اهل آن از فرمان خدا و رسولانش سرپیچی کردند و ما بشدّت به حسابشان رسیدیم و به مجازات کمنظیری گرفتار ساختیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,407,'آنها آثار سوء کار خود را چشیدند؛ و عاقبت کارشان خسران بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,407,'خداوند عذاب سختی برای آنها فراهم ساخته؛ پس از (مخالفت فرمان) خدا بپرهیزید ای خردمندانی که ایمان آوردهاید! (زیرا) خداوند چیزی که مایه تذکّر است بر شما نازل کرده؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,407,'رسولی به سوی شما فرستاده که آیات روشن خدا را بر شما تلاوت میکند تا کسانی را که ایمان آورده و کارهای شایسته انجام دادهاند، از تاریکیها بسوی نور خارج سازد! و هر کس به خدا ایمان آورده و اعمال صالح انجام دهد، او را در باغهایی از بهشت وارد سازد که از زیر (درختانش) نهرها جاری است، جاودانه در آن میمانند، و خداوند روزی نیکویی برای او قرار داده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,407,'خداوند همان کسی است که هفت آسمان را آفرید، و از زمین نیز همانند آنها را؛ فرمان او در میان آنها پیوسته فرود میآید تا بدانید خداوند بر هر چیز تواناست و اینکه علم او به همه چیز احاطه دارد!');
+INSERT INTO chapters (id, number, quran_id) VALUES(408,66,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,408,'ای پیامبر! چرا چیزی را که خدا بر تو حلال کرده بخاطر جلب رضایت همسرانت بر خود حرام میکنی؟! و خداوند آمرزنده و رحیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,408,'خداوند راه گشودن سوگندهایتان را (در این گونه موارد) روشن ساخته؛ و خداوند مولای شماست و او دانا و حکیم است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,408,'(به خاطر بیاورید) هنگامی را که پیامبر یکی از رازهای خود را به بعضی از همسرانش گفت، ولی هنگامی که وی آن را افشا کرد و خداوند پیامبرش را از آن آگاه ساخت، قسمتی از آن را برای او بازگو کرد و از قسمت دیگر خودداری نمود؛ هنگامی که پیامبر همسرش را از آن خبر داد، گفت: «چه کسی تو را از این راز آگاه ساخت؟» فرمود: «خداوند عالم و آگاه مرا باخبر ساخت!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,408,'اگر شما (همسران پیامبر) از کار خود توبه کنید (به نفع شماست، زیرا) دلهایتان از حق منحرف گشته؛ و اگر بر ضدّ او دست به دست هم دهید، (کاری از پیش نخواهید برد) زیرا خداوند یاور اوست و همچنین جبرئیل و مؤمنان صالح، و فرشتگان بعد از آنان پشتیبان اویند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,408,'امید است که اگر او شما را طلاق دهد، پروردگارش به جای شما همسرانی بهتر برای او قرار دهد، همسرانی مسلمان، مؤمن، متواضع، توبه کار، عابد، هجرتکننده، زنانی غیرباکره و باکره!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,408,'ای کسانی که ایمان آوردهاید خود و خانواده خویش را از آتشی که هیزم آن انسانها و سنگهاست نگه دارید؛ آتشی که فرشتگانی بر آن گمارده شده که خشن و سختگیرند و هرگز فرمان خدا را مخالفت نمیکنند و آنچه را فرمان داده شدهاند (به طور کامل) اجرا مینمایند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,408,'ای کسانی که کافر شدهاید امروز عذرخواهی نکنید، چرا که تنها به اعمالتان جزا داده میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,408,'ای کسانی که ایمان آوردهاید بسوی خدا توبه کنید، توبهای خالص؛ امید است (با این کار) پروردگارتان گناهانتان را ببخشد و شما را در باغهایی از بهشت که نهرها از زیر درختانش جاری است وارد کند، در آن روزی که خداوند پیامبر و کسانی را که با او ایمان آوردند خوار نمیکند؛ این در حالی است که نورشان پیشاپیش آنان و از سوی راستشان در حرکت است، و میگویند: «پروردگارا! نور ما را کامل کن و ما را ببخش که تو بر هر چیز توانائی!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,408,'ای پیامبر! با کفّار و منافقین پیکار کن و بر آنان سخت بگیر! جایگاهشان جهنم است، و بد فرجامی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,408,'خداوند برای کسانی که کافر شدهاند به همسر نوح و همسر لوط مثَل زده است، آن دو تحت سرپرستی دو بنده از بندگان صالح ما بودند، ولی به آن دو خیانت کردند و ارتباط با این دو (پیامبر) سودی به حالشان (در برابر عذاب الهی) نداشت، و به آنها گفته شد: «وارد آتش شوید همراه کسانی که وارد میشوند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,408,'و خداوند برای مؤمنان، به همسر فرعون مثَل زده است، در آن هنگام که گفت: «پروردگارا! خانهای برای من نزد خودت در بهشت بساز، و مرا از فرعون و کار او نجات ده و مرا از گروه ستمگران رهایی بخش!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,408,'و همچنین به مریم دختر عمران که دامان خود را پاک نگه داشت، و ما را از روح خود در آن دمیدیم؛ او کلمات پروردگار و کتابهایش را تصدیق کرد و از مطیعان فرمان خدا بود!');
+INSERT INTO chapters (id, number, quran_id) VALUES(409,67,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,409,'پربرکت و زوالناپذیر است کسی که حکومت جهان هستی به دست اوست، و او بر هر چیز تواناست.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,409,'آن کس که مرگ و حیات را آفرید تا شما را بیازماید که کدام یک از شما بهتر عمل میکنید، و او شکستناپذیر و بخشنده است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,409,'همان کسی که هفت آسمان را بر فراز یکدیگر آفرید؛ در آفرینش خداوند رحمان هیچ تضادّ و عیبی نمیبینی! بار دیگر نگاه کن، آیا هیچ شکاف و خللی مشاهده میکنی؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,409,'بار دیگر (به عالم هستی) نگاه کن، سرانجام چشمانت (در جستجوی خلل و نقصان ناکام مانده) به سوی تو باز میگردد در حالی که خسته و ناتوان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,409,'ما آسمان پایین (نزدیک) را با چراغهای فروزانی زینت بخشیدیم، و آنها [= شهابها] را تیرهایی برای شیاطین قرار دادیم، و برای آنان عذاب آتش فروزان فراهم ساختیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,409,'و برای کسانی که به پروردگارشان کافر شدند عذاب جهنّم است، و بد فرجامی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,409,'هنگامی که در آن افکنده شوند صدای وحشتناکی از آن میشنوند، و این در حالی است که پیوسته میجوشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,409,'نزدیک است (دوزخ) از شدّت غضب پاره پاره شود؛ هر زمان که گروهی در آن افکنده میشوند، نگهبانان دوزخ از آنها میپرسند: «مگر بیمدهنده الهی به سراغ شما نیامد؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,409,'میگویند: «آری، بیمدهنده به سراغ ما آمد، ولی ما او را تکذیب کردیم و گفتیم: خداوند هرگز چیزی نازل نکرده، و شما در گمراهی بزرگی هستید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,409,'و میگویند: «اگر ما گوش شنوا داشتیم یا تعقّل میکردیم، در میان دوزخیان نبودیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,409,'اینجاست که به گناه خود اعتراف میکنند؛ دور باشند دوزخیان از رحمت خدا!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,409,'(امّا) کسانی که از پروردگارشان در نهان میترسند، مسلّماً آمرزش و پاداش بزرگی دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,409,'گفتار خود را پنهان کنید یا آشکار (تفاوتی نمیکند)، او به آنچه در سینههاست آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,409,'آیا آن کسی که موجودات را آفریده از حال آنها آگاه نیست؟! در حالی که او (از اسرار دقیق) باخبر و آگاه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,409,'او کسی است که زمین را برای شما رام کرد، بر شانههای آن راه بروید و از روزیهای خداوند بخورید؛ و بازگشت و اجتماع همه به سوی اوست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,409,'آیا خود را از عذاب کسی که حاکم بر آسمان است در امان میدانید که دستور دهد زمین بشکافد و شما را فرو برد و به لرزش خود ادامه دهد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,409,'یا خود را از عذاب خداوند آسمان در امان میدانید که تندبادی پر از سنگریزه بر شما فرستد؟! و بزودی خواهید دانست تهدیدهای من چگونه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,409,'کسانی که پیش از آنان بودند (آیات الهی را) تکذیب کردند، امّا (ببین) مجازات من چگونه بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,409,'آیا به پرندگانی که بالای سرشان است، و گاه بالهای خود را گسترده و گاه جمع میکنند، نگاه نکردند؟! جز خداوند رحمان کسی آنها را بر فراز آسمان نگه نمیدارد، چرا که او به هر چیز بیناست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,409,'آیا این کسی که لشکر شماست میتواند شما را در برابر خداوند یاری دهد؟ ولی کافران تنها گرفتار فریبند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,409,'یا آن کسی که شما را روزی میدهد، اگر روزیش را بازدارد (چه کسی میتواند نیاز شما را تأمین کند)؟! ولی آنها در سرکشی و فرار از حقیقت لجاجت میورزند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,409,'آیا کسی که به رو افتاده حرکت میکند به هدایت نزدیکتر است یا کسی که راستقامت در صراط مستقیم گام برمیدارد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,409,'بگو: «او کسی است که شما را آفرید و برای شما گوش و چشم و قلب قرار داد؛ امّا کمتر سپاسگزاری میکنید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,409,'بگو: «او کسی است که شما را در زمین آفرید و به سوی او محشور میشوید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,409,'آنها میگویند: «اگر راست میگویید این وعده قیامت چه زمانی است؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,409,'بگو: «علم آن تنها نزد خداست؛ و من فقط بیمدهنده آشکاری هستم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,409,'هنگامی که آن (وعده الهی) را از نزدیک میبینند، صورت کافران زشت و سیاه میگردد، و به آنها گفته میشود: «این همان چیزی است که تقاضای آن را داشتید»!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,409,'بگو: «به من خبر دهید اگر خداوند مرا و تمام کسانی را که با من هستند هلاک کند، یا مورد ترحّم قرار دهد، چه کسی کافران را از عذاب دردناک پناه میدهد؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,409,'بگو: «او خداوند رحمان است، ما به او ایمان آورده و بر او توکّل کردهایم؛ و بزودی میدانید چه کسی در گمراهی آشکار است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,409,'بگو: «به من خبر دهید اگر آبهای (سرزمین) شما در زمین فرو رود، چه کسی میتواند آب جاری و گوارا در دسترس شما قرار دهد؟!»');
+INSERT INTO chapters (id, number, quran_id) VALUES(410,68,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,410,'ن، سوگند به قلم و آنچه مینویسند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,410,'که به نعمت پروردگارت تو مجنون نیستی،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,410,'و برای تو پاداشی عظیم و همیشگی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,410,'و تو اخلاق عظیم و برجستهای داری!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,410,'و بزودی تو میبینی و آنان نیز میبینند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,410,'که کدام یک از شما مجنونند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,410,'پروردگارت بهتر از هر کس میداند چه کسی از راه او گمراه شده، و هدایتیافتگان را نیز بهتر میشناسد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,410,'حال که چنین است از تکذیبکنندگان اطاعت مکن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,410,'آنها دوست دارند نرمش نشان دهی تا آنها (هم) نرمش نشان دهند (نرمشی توأم با انحراف از مسیر حق)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,410,'و از کسی که بسیار سوگند یاد میکند و پست است اطاعت مکن،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,410,'کسی که بسیار عیبجوست و به سخن چینی آمد و شد میکند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,410,'و بسیار مانع کار خیر، و متجاوز و گناهکار است؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,410,'علاوه بر اینها کینه توز و پرخور و خشن و بدنام است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,410,'مبادا بخاطر اینکه صاحب مال و فرزندان فراوان است (از او پیروی کنی)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,410,'هنگامی که آیات ما بر او خوانده میشود میگوید: «اینها افسانههای خرافی پیشینیان است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,410,'(ولی) ما بزودی بر بینی او علامت و داغ ننگ مینهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,410,'ما آنها را آزمودیم، همان گونه که «صاحبان باغ» را آزمایش کردیم، هنگامی که سوگند یاد کردند که میوههای باغ را صبحگاهان (دور از چشم مستمندان) بچینند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,410,'و هیچ از آن استثنا نکنند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,410,'امّا عذابی فراگیر (شب هنگام) بر (تمام) باغ آنها فرود آمد در حالی که همه در خواب بودند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,410,'و آن باغ سرسبز همچون شب سیاه و ظلمانی شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,410,'صبحگاهان یکدیگر را صدا زدند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,410,'که بسوی کشتزار و باغ خود حرکت کنید اگر قصد چیدن میوهها را دارید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,410,'آنها حرکت کردند در حالی که آهسته با هم میگفتند:»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,410,'«مواظب باشید امروز حتی یک فقیر وارد بر شما نشود!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,410,'(آری) آنها صبحگاهان تصمیم داشتند که با قدرت از مستمندان جلوگیری کنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,410,'هنگامی که (وارد باغ شدند و) آن را دیدند گفتند: «حقّاً» ما گمراهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,410,'(آری، همه چیز از دست ما رفته) بلکه ما محرومیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,410,'یکی از آنها که از همه عاقلتر بود گفت: «آیا به شما نگفتم چرا تسبیح خدا نمیگویید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,410,'گفتند: «منزّه است پروردگار ما، مسلّماً ما ظالم بودیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,410,'سپس رو به یکدیگر کرده به ملامت هم پرداختند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,410,'(و فریادشان بلند شد) گفتند: «وای بر ما که طغیانگر بودیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,410,'امیدواریم پروردگارمان (ما را ببخشد و) بهتر از آن به جای آن به ما بدهد، چرا که ما به او علاقهمندیم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,410,'این گونه است عذاب (خداوند در دنیا)، و عذاب آخرت از آن هم بزرگتر است اگر میدانستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,410,'مسلّماً برای پرهیزگاران نزد پروردگارشان باغهای پر نعمت بهشت است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,410,'آیا مؤمنان را همچون مجرمان قرار میدهیم؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,410,'شما را چه میشود؟! چگونه داوری میکنید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,410,'آیا کتابی دارید که از آن درس میخوانید...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,410,'که آنچه را شما انتخاب میکنید از آن شماست؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,410,'یا اینکه عهد و پیمان مؤکّد و مستمرّی تا روز قیامت بر ما دارید که هر چه را حکم کنید برای شما باشد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,410,'از آنها بپرس کدام یک از آنان چنین چیزی را تضمین میکند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,410,'یا اینکه معبودانی دارند که آنها را شریک خدا قرار دادهاند (و برای آنان شفاعت میکنند)؟! اگر راست میگویند معبودان خود را بیاورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,410,'(به خاطر بیاورید) روزی را که ساق پاها (از وحشت) برهنه میگردد و دعوت به سجود میشوند، امّا نمیتوانند (سجود کنند).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,410,'این در حالی است که چشمهایشان (از شدّت شرمساری) به زیر افتاده، و ذلّت و خواری وجودشان را فراگرفته؛ آنها پیش از این دعوت به سجود میشدند در حالی که سالم بودند (ولی امروز دیگر توانایی آن را ندارند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,410,'اکنون مرا با آنها که این سخن را تکذیب میکنند واگذار! ما آنان را از آنجا که نمیدانند به تدریج به سوی عذاب پیش میبریم.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,410,'و به آنها مهلت (بازگشت) میدهم؛ چرا که نقشههای من محکم و دقیق است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,410,'یا اینکه تو از آنها مُزدی میطلبی که پرداختش برای آنها سنگین است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,410,'یا اسرار غیب نزد آنهاست و آن را مینویسند (و به یکدیگر میدهند)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,410,'اکنون که چنین است صبر کن و منتظر فرمان پروردگارت باش، و مانند صاحب ماهی [= یونس] مباش (که در تقاضای مجازات قومش عجله کرد و گرفتار مجازات ترک اولی شد) در آن زمان که با نهایت اندوه خدا را خواند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,410,'و اگر رحمت خدا به یاریش نیامده بود، (از شکم ماهی) بیرون افکنده میشد در حالی که نکوهیده بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,410,'ولی پروردگارش او را برگزید و از صالحان قرار داد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,410,'نزدیک است کافران هنگامی که آیات قرآن را میشنوند با چشمزخم خود تو را از بین ببرند، و میگویند: «او دیوانه است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,410,'در حالی که این (قرآن) جز مایه بیداری برای جهانیان نیست!');
+INSERT INTO chapters (id, number, quran_id) VALUES(411,69,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,411,'(روز رستاخیز) روزی است که مسلّماً واقع میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,411,'چه روز واقع شدنی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,411,'و تو چه میدانی آن روز واقع شدنی چیست؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,411,'قوم «ثمود» و «عاد» عذاب کوبنده الهی را انکار کردند (و نتیجه شومش را دیدند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,411,'امّا قوم «ثمود» با عذابی سرکش هلاک شدند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,411,'و امّا قوم «عاد» با تندبادی طغیانگر و سرد و پرصدا به هلاکت رسیدند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,411,'(خداوند) این تندباد بنیانکن را هفت شب و هشت روز پی در پی بر آنها مسلّط ساخت، (و اگر آنجا بودی) میدیدی که آن قوم همچون تنههای پوسیده و تو خالی درختان نخل در میان این تند باد روی زمین افتاده و هلاک شدهاند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,411,'آیا کسی از آنها را باقی میبینی؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,411,'و فرعون و کسانی که پیش از او بودند و همچنین اهل شهرهای زیر و رو شده [=قوم لوط] مرتکب گناهان بزرگ شدند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,411,'و با فرستاده پروردگارشان مخالفت کردند؛ و خداوند (نیز) آنها را به عذاب شدیدی گرفتار ساخت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,411,'و هنگامی که آب طغیان کرد، ما شما را سوار بر کشتی کردیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,411,'تا آن را وسیله تذکّری برای شما قرار دهیم و گوشهای شنوا آن را دریابد و بفهمد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,411,'به محض اینکه یک بار در «صور» دمیده شود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,411,'و زمین و کوهها از جا برداشته شوند و یکباره در هم کوبیده و متلاشی گردند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,411,'در آن روز «واقعه عظیم» روی میدهد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,411,'و آسمان از هم میشکافد و سست میگردد و فرومیریزد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,411,'فرشتگان در اطراف آسمان قرارمیگیرند (و برای انجام مأموریتها آماده میشوند)؛ و آن روز عرش پروردگارت را هشت فرشته بر فراز همه آنها حمل میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,411,'در آن روز همگی به پیشگاه خدا عرضه میشوید و چیزی از کارهای شما پنهان نمیماند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,411,'پس کسی که نامه اعمالش را به دست راستش دهند (از شدّت شادی و مباهات) فریاد میزند که: «(ای اهل محشر!) نامه اعمال مرا بگیرید و بخوانید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,411,'من یقین داشتم که (قیامتی در کار است و) به حساب اعمالم میرسم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,411,'او در یک زندگی (کاملاً) رضایتبخش قرار خواهد داشت،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,411,'در بهشتی عالی،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,411,'که میوه هایش در دسترس است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,411,'(و به آنان گفته میشود:) بخورید و بیاشامید گوارا در برابر اعمالی که در ایّام گذشته انجام دادید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,411,'امّا کسی که نامه اعمالش را به دست چپش بدهند میگوید: «ای کاش هرگز نامه اعمالم را به من نمیدادند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,411,'و نمیدانستم حساب من چیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,411,'ای کاش مرگم فرا میرسید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,411,'مال و ثروتم هرگز مرا بینیاز نکرد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,411,'قدرت من نیز از دست رفت!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,411,'او را بگیرید و دربند و زنجیرش کنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,411,'سپس او را در دوزخ بیفکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,411,'بعد او را به زنجیری که هفتاد ذراع است ببندید؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,411,'چرا که او هرگز به خداوند بزرگ ایمان نمیآورد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,411,'و هرگز مردم را بر اطعام مستمندان تشویق نمینمود؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,411,'از این رو امروز هم در اینجا یار مهربانی ندارد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,411,'و نه طعامی، جز از چرک و خون!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,411,'غذایی که جز خطاکاران آن را نمیخورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,411,'سوگند به آنچه میبینید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,411,'و آنچه نمیبینید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,411,'که این قرآن گفتار رسول بزرگواری است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,411,'و گفته شاعری نیست، امّا کمتر ایمان میآورید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,411,'و نه گفته کاهنی، هر چند کمتر متذکّر میشوید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,411,'کلامی است که از سوی پروردگار عالمیان نازل شده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,411,'اگر او سخنی دروغ بر ما میبست،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,411,'ما او را با قدرت میگرفتیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,411,'سپس رگ قلبش را قطع میکردیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,411,'و هیچ کس از شما نمیتوانست از (مجازات) او مانع شود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,411,'و آن مسلّماً تذکری برای پرهیزگاران است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,411,'و ما میدانیم که بعضی از شما (آن را) تکذیب میکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,411,'و آن مایه حسرت کافران است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,411,'و آن یقین خالص است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,411,'حال که چنین است به نام پروردگار بزرگت تسبیح گوی!');
+INSERT INTO chapters (id, number, quran_id) VALUES(412,70,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,412,'تقاضاکنندهای تقاضای عذابی کرد که واقع شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,412,'این عذاب مخصوص کافران است، و هیچ کس نمیتواند آن را دفع کند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,412,'از سوی خداوند ذی المعارج [= خداوندی که فرشتگانش بر آسمانها صعود و عروج میکنند]!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,412,'فرشتگان و روح [= فرشته مقرّب خداوند] بسوی او عروج میکنند در آن روزی که مقدارش پنجاه هزار سال است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,412,'پس صبر جمیل پیشه کن،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,412,'زیرا آنها آن روز را دور میبینند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,412,'و ما آن را نزدیک میبینیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,412,'همان روز که آسمان همچون فلز گداخته میشود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,412,'و کوهها مانند پشم رنگین متلاشی خواهد بود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,412,'و هیچ دوست صمیمی سراغ دوستش را نمیگیرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,412,'آنها را نشانشان میدهند (ولی هر کس گرفتار کار خویشتن است)، چنان است که گنهکار دوست میدارد فرزندان خود را در برابر عذاب آن روز فدا کند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,412,'و همسر و برادرش را،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,412,'و قبیلهاش را که همیشه از او حمایت میکرد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,412,'و همه مردم روی زمین را تا مایه نجاتش گردند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,412,'امّا هرگز چنین نیست (که با اینها بتوان نجات یافت، آری) شعلههای سوزان آتش است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,412,'دست و پا و پوست سر را میکند و میبرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,412,'و کسانی را که به فرمان خدا پشت کردند صدا میزند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,412,'و (همچنین آنها که) اموال را جمع و ذخیره کردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,412,'به یقین انسان حریص و کمطاقت آفریده شده است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,412,'هنگامی که بدی به او رسد بیتابی میکند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,412,'و هنگامی که خوبی به او رسد مانع دیگران میشود (و بخل میورزد)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,412,'مگر نمازگزاران،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,412,'آنها که نمازها را پیوسته بجا میآورند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,412,'و آنها که در اموالشان حق معلومی است...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,412,'برای تقاضاکننده و محروم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,412,'و آنها که به روز جزا ایمان دارند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,412,'و آنها که از عذاب پروردگارشان بیمناکند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,412,'چرا که هیچ کس از عذاب پروردگارش در امان نیست،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,412,'و آنها که دامان خویش را (از بیعفّتی) حفظ میکنند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,412,'جز با همسران و کنیزان (که در حکم همسرند آمیزش ندارند)، چرا که در بهرهگیری از اینها مورد سرزنش نخواهند بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,412,'و هر کس جز اینها را طلب کند، متجاوز است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,412,'و آنها که امانتها و عهد خود را رعایت میکنند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,412,'و آنها که با ادای شهادتشان قیام مینمایند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,412,'و آنها که بر نماز مواظبت دارند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,412,'آنان در باغهای بهشتی (پذیرایی و) گرامی داشته میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,412,'این کافران را چه میشود که با سرعت نزد تو میآیند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,412,'از راست و چپ، گروه گروه (و آرزوی بهشت دارند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,412,'آیا هر یک از آنها (با این اعمال زشتش) طمع دارد که او را در بهشت پر نعمت الهی وارد کنند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,412,'هرگز چنین نیست؛ ما آنها را از آنچه خودشان میدانند آفریدهایم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,412,'سوگند به پروردگار مشرقها و مغربها که ما قادریم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,412,'که جای آنان را به کسانی بدهیم که از آنها بهترند؛ و ما هرگز مغلوب نخواهیم شد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,412,'آنان را به حال خود واگذار تا در باطل خود فروروند و بازی کنند تا زمانی که روز موعود خود را ملاقات نمایند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,412,'همان روز که از قبرها بسرعت خارج میشوند، گویی به سوی بتها میدوند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,412,'در حالی که چشمهایشان از شرم و وحشت به زیر افتاده، و پردهای از ذلّت و خواری آنها را پوشانده است! این همان روزی است که به آنها وعده داده میشد!');
+INSERT INTO chapters (id, number, quran_id) VALUES(413,71,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,413,'ما نوح را به سوی قومش فرستادیم و گفتیم: «قوم خود را انذار کن پیش از آنکه عذاب دردناک به سراغشان آید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,413,'گفت: «ای قوم! من برای شما بیمدهنده آشکاری هستم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,413,'که خدا را پرستش کنید و از مخالفت او بپرهیزید و مرا اطاعت نمایید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,413,'اگر چنین کنید، خدا گناهانتان را میآمرزد و تا زمان معیّنی شما را عمر میدهد؛ زیرا هنگامی که اجل الهی فرا رسد، تأخیری نخواهد داشت اگر میدانستید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,413,'(نوح) گفت: «پروردگارا! من قوم خود را شب و روز (بسوی تو) دعوت کردم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,413,'امّا دعوت من چیزی جز فرار از حقّ بر آنان نیفزود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,413,'و من هر زمان آنها را دعوت کردم که (ایمان بیاورند و) تو آنها را بیامرزی، انگشتان خویش را در گوشهایشان قرار داده و لباسهایشان را بر خود پیچیدند، و در مخالفت اصرار ورزیدند و به شدّت استکبار کردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,413,'سپس من آنها را با صدای بلند (به اطاعت فرمان تو) دعوت کردم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,413,'سپس آشکارا و نهان (حقیقت توحید و ایمان را) برای آنان بیان داشتم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,413,'به آنها گفتم: «از پروردگار خویش آمرزش بطلبید که او بسیار آمرزنده است...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,413,'تا بارانهای پربرکت آسمان را پی در پی بر شما فرستد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,413,'و شما را با اموال و فرزندان فراوان کمک کند و باغهای سرسبز و نهرهای جاری در اختیارتان قرار دهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,413,'چرا شما برای خدا عظمت قائل نیستید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,413,'در حالی که شما را در مراحل مختلف آفرید (تا از نطفه به انسان کامل رسیدید)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,413,'آیا نمیدانید چگونه خداوند هفت آسمان را یکی بالای دیگری آفریده است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,413,'و ماه را در میان آسمانها مایه روشنایی، و خورشید را چراغ فروزانی قرار داده است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,413,'و خداوند شما را همچون گیاهی از زمین رویانید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,413,'سپس شما را به همان زمین بازمیگرداند، و بار دیگر شما را خارج میسازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,413,'و خداوند زمین را برای شما فرش گستردهای قرار داد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,413,'تا از راههای وسیع و درههای آن بگذرید (و به هر جا میخواهید بروید)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,413,'نوح (بعد از نومیدی از هدایت آنان) گفت: «پروردگارا! آنها نافرمانی من کردند و از کسانی پیروی نمودند که اموال و فرزندانشان چیزی جز زیانکاری بر آنها نیفزوده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,413,'و (این رهبران گمراه) مکر عظیمی به کار بردند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,413,'و گفتند: دست از خدایان و بتهای خود برندارید (به خصوص) بتهای «وَد»، «سواع»، «یغوث»، «یعوق» و «نسر» را رها نکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,413,'و آنها گروه بسیاری را گمراه کردند! خداوندا، ظالمان را جز ضلالت میفزا!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,413,'(آری، سرانجام) همگی بخاطر گناهانشان غرق شدند و در آتش دوزخ وارد گشتند، و جز خدا یاورانی برای خود نیافتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,413,'نوح گفت: «پروردگارا! هیچ یک از کافران را بر روی زمین باقی مگذار!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,413,'چرا که اگر آنها را باقی بگذاری، بندگانت را گمراه میکنند و جز نسلی فاجر و کافر به وجود نمیآورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,413,'پروردگارا! مرا، و پدر و مادرم و تمام کسانی را که با ایمان وارد خانه من شدند، و جمیع مردان و زنان باایمان را بیامرز؛ و ظالمان را جز هلاکت میفزا!»');
+INSERT INTO chapters (id, number, quran_id) VALUES(414,72,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,414,'بگو: به من وحی شده است که جمعی از جنّ به سخنانم گوش فرادادهاند، سپس گفتهاند: «ما قرآن عجیبی شنیدهایم...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,414,'که به راه راست هدایت میکند، پس ما به آن ایمان آوردهایم و هرگز کسی را شریک پروردگارمان قرارنمیدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,414,'و اینکه بلند است مقام باعظمت پروردگار ما، و او هرگز برای خود همسر و فرزندی انتخاب نکرده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,414,'و اینکه سفیه ما (ابلیس) درباره خداوند سخنان ناروا میگفت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,414,'و اینکه ما گمان میکردیم که انس و جنّ هرگز بر خدا دروغ نمیبندند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,414,'و اینکه مردانی از بشر به مردانی از جنّ پناه میبردند، و آنها سبب افزایش گمراهی و طغیانشان میشدند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,414,'و اینکه آنها گمان کردند -همانگونه که شما گمان میکردید- که خداوند هرگز کسی را (به نبوّت) مبعوث نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,414,'و اینکه ما آسمان را جستجو کردیم و همه را پر از محافظان قوّی و تیرهای شهاب یافتیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,414,'و اینکه ما پیش از این به استراق سمع در آسمانها مینشستیم؛ امّا اکنون هر کس بخواهد استراق سمع کند، شهابی را در کمین خود مییابد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,414,'و اینکه (با این اوضاع) ما نمیدانیم آیا اراده شرّی درباره اهل زمین شده یا پروردگارشان خواسته است آنان را هدایت کند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,414,'و اینکه در میان ما، افرادی صالح و افرادی غیر صالحند؛ و ما گروههای متفاوتی هستیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,414,'و اینکه ما یقین داریم هرگز نمیتوانیم بر اراده خداوند در زمین غالب شویم و نمیتوانیم از (پنجه قدرت) او بگریزیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,414,'و اینکه ما هنگامی که هدایت قرآن را شنیدیم به آن ایمان آوردیم؛ و هر کس به پروردگارش ایمان بیاورد، نه از نقصان میترسد و نه از ظلم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,414,'و اینکه گروهی از ما مسلمان و گروهی ظالمند؛ هر کس اسلام را اختیار کند راه راست را برگزیده است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,414,'و امّا ظالمان آتشگیره و هیزم دوزخند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,414,'و اینکه اگر آنها [= جنّ و انس] در راه (ایمان) استقامت ورزند، با آب فراوان سیرابشان میکنیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,414,'هدف این است که ما آنها را با این نعمت فراوان بیازماییم؛ و هر کس از یاد پروردگارش روی گرداند، او را به عذاب شدید و فزایندهای گرفتار میسازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,414,'و اینکه مساجد از آن خداست، پس هیچ کس را با خدا نخوانید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,414,'و اینکه هنگامی که بنده خدا [= محمّد (ص)] به عبادت برمیخاست و او را میخواند، گروهی پیرامون او بشدّت ازدحام میکردند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,414,'بگو: «من تنها پروردگارم را میخوانم و هیچ کس را شریک او قرار نمیدهم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,414,'بگو: «من مالک زیان و هدایتی برای شما نیستم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,414,'بگو: «(اگر من نیز بر خلاف فرمانش رفتار کنم) هیچ کس مرا در برابر او حمایت نمیکند و پناهگاهی جز او نمییابم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,414,'تنها وظیفه من ابلاغ از سوی خدا و رساندن رسالات اوست؛ و هر کس نافرمانی خدا و رسولش کند، آتش دوزخ از آن اوست و جاودانه در آن میمانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,414,'(این کار شکنی کفّار همچنان ادامه مییابد) تا آنچه را به آنها وعده داده شده ببینند؛ آنگاه میدانند چه کسی یاورش ضعیفتر و جمعیّتش کمتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,414,'بگو: «من نمیدانم آنچه به شما وعده داده شده نزدیک است یا پروردگارم زمانی برای آن قرارمیدهد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,414,'دانای غیب اوست و هیچ کس را بر اسرار غیبش آگاه نمیسازد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,414,'مگر رسولانی که آنان را برگزیده و مراقبینی از پیش رو و پشت سر برای آنها قرار میدهد...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,414,'تا بداند پیامبرانش رسالتهای پروردگارشان را ابلاغ کردهاند؛ و او به آنچه نزد آنهاست احاطه دارد و همه چیز را احصاء کرده است!»');
+INSERT INTO chapters (id, number, quran_id) VALUES(415,73,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,415,'ای جامه به خود پیچیده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,415,'شب را، جز کمی، بپاخیز!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,415,'نیمی از شب را، یا کمی از آن کم کن،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,415,'یا بر نصف آن بیفزا، و قرآن را با دقّت و تأمّل بخوان؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,415,'چرا که ما بزودی سخنی سنگین به تو القا خواهیم کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,415,'مسلّماً نماز و عبادت شبانه پابرجاتر و با استقامتتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,415,'و تو در روز تلاش مستمر و طولانی خواهی داشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,415,'و نام پروردگارت را یاد کن و تنها به او دل ببند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,415,'همان پروردگار شرق و غرب که معبودی جز او نیست، او را نگاهبان و وکیل خود انتخاب کن،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,415,'و در برابر آنچه (دشمنان) میگویند شکیبا باش و بطرزی شایسته از آنان دوری گزین!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,415,'و مرا با تکذیبکنندگان صاحب نعمت واگذار، و آنها را کمی مهلت ده،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,415,'که نزد ما غل و زنجیرها و (آتش) دوزخ است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,415,'و غذایی گلوگیر، و عذابی دردناک،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,415,'در آن روز که زمین و کوهها سخت به لرزه درمیآید، و کوهها (چنان درهم کوبیده میشود که) به شکل تودههایی از شن نرم درمیآید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,415,'ما پیامبری به سوی شما فرستادیم که گواه بر شماست، همان گونه که به سوی فرعون رسولی فرستادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,415,'(ولی) فرعون به مخالفت و نافرمانی آن رسول برخاست، و ما او را سخت مجازات کردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,415,'شما (نیز) اگر کافر شوید، چگونه خود را (از عذاب الهی) بر کنار میدارید؟! در آن روز که کودکان را پیر میکند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,415,'و آسمان از هم شکافته میشود، و وعده او شدنی و حتمی است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,415,'این هشدار و تذکّری است، پس هر کس بخواهد راهی به سوی پروردگارش برمیگزیند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,415,'پروردگارت میداند که تو و گروهی از آنها که با تو هستند نزدیک دو سوم از شب یا نصف یا ثلث آن را به پا میخیزند؛ خداوند شب و روز را اندازهگیری میکند؛ او میداند که شما نمیتوانید مقدار آن را (به دقّت) اندازهگیری کنید (برای عبادت کردن)، پس شما را بخشید؛ اکنون آنچه برای شما میسّر است قرآن بخوانید او میداند بزودی گروهی از شما بیمار میشوند، و گروهی دیگر برای به دست آوردن فضل الهی (و کسب روزی) به سفر میروند، و گروهی دیگر در راه خدا جهاد میکنند (و از تلاوت قرآن بازمیمانند)، پس به اندازهای که برای شما ممکن است از آن تلاوت کنید و نماز را بر پا دارید و زکات بپردازید و به خدا «قرض الحسنه» دهید [= در راه او انفاق نمایید] و (بدانید) آنچه را از کارهای نیک برای خود از پیش میفرستید نزد خدا به بهترین وجه و بزرگترین پاداش خواهید یافت؛ و از خدا آمرزش بطلبید که خداوند آمرزنده و مهربان است!');
+INSERT INTO chapters (id, number, quran_id) VALUES(416,74,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,416,'ای جامه خواب به خود پیچیده (و در بستر آرمیده)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,416,'برخیز و انذار کن (و عالمیان را بیم ده)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,416,'و پروردگارت را بزرگ بشمار،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,416,'و لباست را پاک کن،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,416,'و از پلیدی دوری کن،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,416,'و منّت مگذار و فزونی مطلب،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,416,'و بخاطر پروردگارت شکیبایی کن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,416,'هنگامی که در «صور» دمیده شود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,416,'آن روز، روز سختی است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,416,'و برای کافران آسان نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,416,'مرا با کسی که او را خود به تنهایی آفریدهام واگذار!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,416,'همان کسی که برای او مال گستردهای قرار دادم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,416,'و فرزندانی که همواره نزد او (و در خدمت او) هستند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,416,'و وسایل زندگی را از هر نظر برای وی فراهم ساختم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,416,'باز هم طمع دارد که بر او بیفزایم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,416,'هرگز چنین نخواهد شد؛ چرا که او نسبت به آیات ما دشمنی میورزد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,416,'و بزودی او را مجبور میکنم که از قلّه زندگی بالا رود (سپس او را به زیر میافکنم)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,416,'او (برای مبارزه با قرآن) اندیشه کرد و مطلب را آماده ساخت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,416,'مرگ بر او باد! چگونه (برای مبارزه با حق) مطلب را آماده کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,416,'باز هم مرگ بر او، چگونه مطلب (و نقشه شیطانی خود را) آماده نمود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,416,'سپس نگاهی افکند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,416,'بعد چهره درهم کشید و عجولانه دست به کار شد؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,416,'سپس پشت (به حقّ) کرد و تکبّر ورزید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,416,'و سرانجام گفت: «این (قرآن) چیزی جز افسون و سحری همچون سحرهای پیشینیان نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,416,'این فقط سخن انسان است (نه گفتار خدا)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,416,'(امّا) بزودی او را وارد سَقَر [= دوزخ] میکنم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,416,'و تو نمیدانی «سقر» چیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,416,'(آتشی است که) نه چیزی را باقی میگذارد و نه چیزی را رها میسازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,416,'پوست تن را بکلّی دگرگون میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,416,'نوزده نفر (از فرشتگان عذاب) بر آن گمارده شدهاند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,416,'مأموران دوزخ را فقط فرشتگان (عذاب) قرار دادیم، و تعداد آنها را جز برای آزمایش کافران معیّن نکردیم تا اهل کتاب [= یهود و نصاری] یقین پیدا کنند و بر ایمان مؤمنان بیفزاید، و اهل کتاب و مؤمنان (در حقّانیّت این کتاب آسمانی) تردید به خود راه ندهند، و بیماردلان و کافران بگویند: «خدا از این توصیف چه منظوری دارد؟!» (آری) این گونه خداوند هر کس را بخواهد گمراه میسازد و هر کس را بخواهد هدایت میکند! و لشکریان پروردگارت را جز او کسی نمیداند، و این جز هشدار و تذکّری برای انسانها نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,416,'اینچنین نیست که آنها تصوّر میکنند سوگند به ماه،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,416,'و به شب، هنگامی که (دامن برچیند و) پشت کند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,416,'و به صبح هنگامی که چهره بگشاید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,416,'که آن (حوادث هولناک قیامت) از مسائل مهم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,416,'هشدار و انذاری است برای همه انسانها،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,416,'برای کسانی از شما که میخواهند پیش افتند یا عقب بمانند [= بسوی هدایت و نیکی پیش روند یا نروند]!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,416,'(آری) هر کس در گرو اعمال خویش است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,416,'مگر «اصحاب یمین» (که نامه اعمالشان را به نشانه ایمان و تقوایشان به دست راستشان میدهند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,416,'آنها در باغهای بهشتند، و سؤال میکنند...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,416,'از مجرمان:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,416,'چه چیز شما را به دوزخ وارد ساخت؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,416,'میگویند: «ما از نمازگزاران نبودیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,416,'و اطعام مستمند نمیکردیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,416,'و پیوسته با اهل باطل همنشین و همصدا بودیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,416,'و همواره روز جزا را انکار میکردیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,416,'تا زمانی که مرگ ما فرا رسید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,416,'از این رو شفاعت شفاعتکنندگان به حال آنها سودی نمیبخشد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,416,'چرا آنها از تذکّر روی گردانند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,416,'گویی گورخرانی رمیدهاند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(51,4,416,'که از (مقابل) شیری فرار کردهاند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(52,4,416,'بلکه هر کدام از آنها انتظار دارد نامه جداگانهای (از سوی خدا) برای او فرستاده شود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(53,4,416,'چنین نیست که آنان میگویند، بلکه آنها از آخرت نمیترسند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(54,4,416,'چنین نیست که آنها میگویند، آن (قرآن) یک تذکّر و یادآوری است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(55,4,416,'هر کس بخواهد از آن پند میگیرد؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(56,4,416,'و هیچ کس پند نمیگیرد مگر اینکه خدا بخواهد؛ او اهل تقوا و اهل آمرزش است!');
+INSERT INTO chapters (id, number, quran_id) VALUES(417,75,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,417,'سوگند به روز قیامت،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,417,'و سوگند به (نفس لوّامه و) وجدان بیدار و ملامتگر (که رستاخیز حقّ است)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,417,'آیا انسان میپندارد که هرگز استخوانهای او را جمع نخواهیم کرد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,417,'آری قادریم که (حتّی خطوط سر) انگشتان او را موزون و مرتّب کنیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,417,'(انسان شک در معاد ندارد) بلکه او میخواهد (آزاد باشد و بدون ترس از دادگاه قیامت) در تمام عمر گناه کند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,417,'(از این رو) میپرسد: «قیامت کی خواهد بود»!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,417,'(بگو:) در آن هنگام که چشمها از شدّت وحشت به گردش درآید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,417,'و ماه بینور گردد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,417,'و خورشید و ماه یک جا جمع شوند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,417,'آن روز انسان میگوید: «راه فرار کجاست؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,417,'هرگز چنین نیست، راه فرار و پناهگاهی وجود ندارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,417,'آن روز قرارگاه نهایی تنها بسوی پروردگار تو است؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,417,'و در آن روز انسان را از تمام کارهایی که از پیش یا پس فرستاده آگاه میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,417,'بلکه انسان خودش از وضع خود آگاه است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,417,'هر چند (در ظاهر) برای خود عذرهایی بتراشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,417,'زبانت را بخاطر عجله برای خواندن آن [= قرآن] حرکت مده،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,417,'چرا که جمعکردن و خواندن آن بر عهده ماست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,417,'پس هر گاه آن را خواندیم، از خواندن آن پیروی کن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,417,'سپس بیان و (توضیح) آن (نیز) بر عهده ماست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,417,'چنین نیست که شما میپندارید (و دلایل معاد را کافی نمیدانید)؛ بلکه شما دنیای زودگذر را دوست دارید (و هوسرانی بیقید و شرط را)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,417,'و آخرت را رها میکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,417,'(آری) در آن روز صورتهایی شاداب و مسرور است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,417,'و به پروردگارش مینگرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,417,'و در آن روز صورتهایی عبوس و در هم کشیده است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,417,'زیرا میداند عذابی در پیش دارد که پشت را در هم میشکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,417,'چنین نیست (که انسان میپندارد! او ایمان نمیآورد) تا موقعی که جان به گلوگاهش رسد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,417,'و گفته شود: «آیا کسی هست که (این بیمار را از مرگ) نجات دهد؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,417,'و به جدائی از دنیا یقین پیدا کند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,417,'و ساق پاها (از سختی جاندادن) به هم بپیچد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,417,'(آری) در آن روز مسیر همه بسوی (دادگاه) پروردگارت خواهد بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,417,'(در آن روز گفته میشود:) او هرگز ایمان نیاورد و نماز نخواند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,417,'بلکه تکذیب کرد و رویگردان شد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,417,'سپس بسوی خانواده خود بازگشت در حالی که متکبّرانه قدم برمیداشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,417,'(با این اعمال) عذاب الهی برای تو شایستهتر است، شایستهتر!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,417,'سپس عذاب الهی برای تو شایستهتر است، شایستهتر!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,417,'آیا انسان گمان میکند بیهدف رها میشود؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,417,'آیا او نطفهای از منی که در رحم ریخته میشود نبود؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,417,'سپس بصورت خون بسته در آمد، و خداوند او را آفرید و موزون ساخت،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,417,'و از او دو زوج مرد و زن آفرید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,417,'آیا چنین کسی قادر نیست که مردگان را زنده کند؟!');
+INSERT INTO chapters (id, number, quran_id) VALUES(418,76,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,418,'آیا زمانی طولانی بر انسان گذشت که چیز قابل ذکری نبود؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,418,'ما انسان را از نطفه مختلطی آفریدیم، و او را میآزماییم؛ (بدین جهت) او را شنوا و بینا قرار دادیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,418,'ما راه را به او نشان دادیم، خواه شاکر باشد (و پذیرا گردد) یا ناسپاس!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,418,'ما برای کافران، زنجیرها و غلها و شعلههای سوزان آتش آماده کردهایم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,418,'به یقین ابرار (و نیکان) از جامی مینوشند که با عطر خوشی آمیخته است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,418,'از چشمهای که بندگان خاص خدا از آن مینوشند، و از هر جا بخواهند آن را جاری میسازند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,418,'آنها به نذر خود وفا میکنند، و از روزی که شرّ و عذابش گسترده است میترسند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,418,'و غذای (خود) را با اینکه به آن علاقه (و نیاز) دارند، به «مسکین» و «یتیم» و «اسیر» میدهند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,418,'(و میگویند:) ما شما را بخاطر خدا اطعام میکنیم، و هیچ پاداش و سپاسی از شما نمیخواهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,418,'ما از پروردگارمان خائفیم در آن روزی که عبوس و سخت است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,418,'(بخاطر این عقیده و عمل) خداوند آنان را از شرّ آن روز نگه میدارد و آنها را میپذیرد در حالی که غرق شادی و سرورند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,418,'و در برابر صبرشان، بهشت و لباسهای حریر بهشتی را به آنها پاداش میدهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,418,'این در حالی است که در بهشت بر تختهای زیبا تکیه کردهاند، نه آفتاب را در آنجا میبینند و نه سرما را!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,418,'و در حالی است که سایههای درختان بهشتی بر آنها فرو افتاده و چیدن میوههایش بسیار آسان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,418,'و در گرداگرد آنها ظرفهایی سیمین و قدحهایی بلورین میگردانند (پر از بهترین غذاها و نوشیدنیها)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,418,'ظرفهای بلورینی از نقره، که آنها را به اندازه مناسب آماده کردهاند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,418,'و در آنجا از جامهایی سیراب میشوند که لبریز از شراب طهوری آمیخته با زنجبیل است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,418,'از چشمهای در بهشت که نامش سلسبیل است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,418,'و بر گردشان (برای پذیرایی) نوجوانانی جاودانی میگردند که هرگاه آنها را ببینی گمان میکنی مروارید پراکندهاند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,418,'و هنگامی که آنجا را ببینی نعمتها و ملک عظیمی را میبینی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,418,'بر اندام آنها [= بهشتیان] لباسهایی است از حریر نازک سبزرنگ، و از دیبای ضخیم، و با دستبندهایی از نقره آراستهاند، و پروردگارشان شراب طهور به آنان مینوشاند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,418,'این پاداش شماست، و سعی و تلاش شما مورد قدردانی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,418,'مسلّماً ما قرآن را بر تو نازل کردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,418,'پس در (تبلیغ و اجرای) حکم پروردگارت شکیبا (و با استقامت) باش، و از هیچ گنهکار یا کافری از آنان اطاعت مکن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,418,'و نام پروردگارت را هر صبح و شام به یاد آور!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,418,'و در شبانگاه برای او سجده کن، و مقداری طولانی از شب، او را تسبیح گوی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,418,'آنها زندگی زودگذر دنیا را دوست دارند، در حالی که روز سختی را پشت سر خود رها میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,418,'ما آنها را آفریدیم و پیوندهای وجودشان را محکم کردیم، و هر زمان بخواهیم جای آنان را به گروه دیگری میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,418,'این یک تذکر و یادآوری است، و هر کس بخواهد (با استفاده از آن) راهی به سوی پروردگارش برمیگزیند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,418,'و شما هیچ چیز را نمیخواهید مگر اینکه خدا بخواهد، خداوند دانا و حکیم بوده و هست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,418,'و هر کس را بخواهد (و شایسته بداند) در رحمت (وسیع) خود وارد میکند، و برای ظالمان عذاب دردناکی آماده ساخته است!');
+INSERT INTO chapters (id, number, quran_id) VALUES(419,77,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,419,'سوگند به فرشتگانی که پی در پی فرستاده میشوند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,419,'و آنها که همچون تند باد حرکت میکنند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,419,'و سوگند به آنها که (ابرها را) میگسترانند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,419,'و آنها که جدا میکنند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,419,'و سوگند به آنها که آیات بیدارگر (الهی) را (به انبیا) القا مینمایند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,419,'برای اتمام حجّت یا برای انذار،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,419,'که آنچه به شما (درباره قیامت) وعده داده میشود، یقیناً واقعشدنی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,419,'در آن هنگام که ستارگان محو و تاریک شوند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,419,'و (کرات) آسمان از هم بشکافند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,419,'و در آن زمان که کوهها از جا کنده شوند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,419,'و در آن هنگام که برای پیامبران (بمنظور ادای شهادت) تعیین وقت شود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,419,'(این امر) برای چه روزی به تأخیر افتاده؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,419,'برای روز جدایی (حق از باطل)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,419,'تو چه میدانی روز جدایی چیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,419,'وای در آن روز بر تکذیبکنندگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,419,'آیا ما اقوام (مجرم) نخستین را هلاک نکردیم؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,419,'سپس دیگر (مجرمان) را به دنبال آنها میفرستیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,419,'(آری) این گونه با مجرمان رفتار میکنیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,419,'وای در آن روز بر تکذیبکنندگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,419,'آیا شما را از آبی پست و ناچیز نیافریدیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,419,'سپس آن را در قرارگاهی محفوظ و آماده قرار دادیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,419,'تا مدّتی معیّن؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,419,'ما قدرت بر این کار داشتیم، پس ما قدرتمند خوبی هستیم (و امر معاد برای ما آسان است)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,419,'وای در آن روز بر تکذیبکنندگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,419,'آیا زمین را مرکز اجتماع انسانها قرار ندادیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,419,'هم در حال حیاتشان و هم مرگشان؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,419,'و در آن کوههای استوار و بلندی قرار دادیم، و آبی گوارا به شما نوشاندیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,419,'وای در آن روز بر تکذیبکنندگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,419,'(در آن روز به آنها گفته میشود:) بیدرنگ، به سوی همان چیزی که پیوسته آن را تکذیب میکردید بروید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,419,'بروید به سوی سایه سه شاخه (دودهای خفقانبار و آتشزا)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,419,'سایهای که نه آرامبخش است و نه از شعلههای آتش جلوگیری میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,419,'شرارههایی از خود پرتاب میکند مانند یک کاخ!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,419,'گویی (در سرعت و کثرت) همچون شتران زردرنگی هستند (که به هر سو پراکنده میشوند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,419,'وای در آن روز بر تکذیبکنندگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,419,'امروز روزی است که سخن نمیگویند (و قادر بر دفاع از خویشتن نیستند)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,419,'و به آنها اجازه داده نمیشود که عذرخواهی کنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,419,'وای در آن روز بر تکذیبکنندگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,419,'(و به آنها گفته میشود:) امروز همان روز جدایی (حق از باطل) است که شما و پیشینیان را در آن جمع کردهایم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,419,'اگر چارهای در برابر من (برای فرار از چنگال مجازات) دارید انجام دهید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,419,'وای در آن روز بر تکذیبکنندگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,419,'(در آن روز) پرهیزگاران در سایههای (درختان بهشتی) و در میان چشمهها قرار دارند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,419,'و میوههایی از آنچه مایل باشند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,419,'بخورید و بنوشید گوارا، اینها در برابر اعمالی است که انجام میدادید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,419,'ما این گونه نیکوکاران را پاداش میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,419,'وای در آن روز بر تکذیبکنندگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,419,'(و به مجرمان بگو:) بخورید و بهره گیرید در این مدت کم (از زندگی دنیا، ولی بدانید عذاب الهی در انتظار شماست) چرا که شما مجرمید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(47,4,419,'وای در آن روز بر تکذیبکنندگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(48,4,419,'و هنگامی که به آنها گفته شود رکوع کنید رکوع نمیکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(49,4,419,'وای در آن روز بر تکذیبکنندگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(50,4,419,'(و اگر آنها به این قرآن ایمان نمیآورند) پس به کدام سخن بعد از آن ایمان میآورند؟!');
+INSERT INTO chapters (id, number, quran_id) VALUES(420,78,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,420,'آنها از چه چیز از یکدیگر سؤال میکنند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,420,'از خبر بزرگ و پراهمیّت (رستاخیز)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,420,'همان خبری که پیوسته در آن اختلاف دارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,420,'چنین نیست که آنها فکر میکنند، و بزودی میفهمند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,420,'باز هم چنین نیست که آنها میپندارند، و بزودی میفهمند (که قیامت حق است)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,420,'آیا زمین را محل آرامش (شما) قرار ندادیم؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,420,'و کوهها را میخهای زمین؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,420,'و شما را بصورت زوجها آفریدیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,420,'و خواب شما را مایه آرامشتان قرار دادیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,420,'و شب را پوششی (برای شما)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,420,'و روز را وسیلهای برای زندگی و معاش!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,420,'و بر فراز شما هفت (آسمان) محکم بنا کردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,420,'و چراغی روشن و حرارتبخش آفریدیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,420,'و از ابرهای بارانزا آبی فراوان نازل کردیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,420,'تا بوسیله آن دانه و گیاه بسیار برویانیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,420,'و باغهایی پردرخت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,420,'(آری) روز جدایی، میعاد همگان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,420,'روزی که در «صور» دمیده میشود و شما فوج فوج (به محشر) میآیید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,420,'و آسمان گشوده میشود و بصورت درهای متعددی درمیآید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,420,'و کوهها به حرکت درمیآید و بصورت سرابی میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,420,'مسلّماً (در آن روز) جهنّم کمینگاهی است بزرگ،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,420,'و محل بازگشتی برای طغیانگران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,420,'مدّتهای طولانی در آن میمانند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,420,'در آنجا نه چیز خنکی میچشند و نه نوشیدنی گوارایی،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,420,'جز آبی سوزان و مایعی از چرک و خون!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,420,'این مجازاتی است موافق و مناسب (اعمالشان)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,420,'چرا که آنها هیچ امیدی به حساب نداشتند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,420,'و آیات ما را بکلی تکذیب کردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,420,'و ما همه چیز را شمارش و ثبت کردهایم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,420,'پس بچشید که چیزی جز عذاب بر شما نمیافزاییم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,420,'مسلّماً برای پرهیزگاران نجات و پیروزی بزرگی است:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,420,'باغهایی سرسبز، و انواع انگورها،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,420,'و حوریانی بسیار جوان و همسن و سال،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,420,'و جامهایی لبریز و پیاپی (از شراب طهور)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,420,'در آنجا نه سخن لغو و بیهودهای میشنوند و نه دروغی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,420,'این کیفری است از سوی پروردگارت و عطیهای است کافی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,420,'همان پروردگار آسمانها و زمین و آنچه در میان آن دو است، پروردگار رحمان! و (در آن روز) هیچ کس حق ندارد بی اجازه او سخنی بگوید (یا شفاعتی کند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,420,'روزی که «روح» و «ملائکه» در یک صف میایستند و هیچ یک، جز به اذن خداوند رحمان، سخن نمیگویند، و (آنگاه که میگویند) درست میگویند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,420,'آن روز حق است؛ هر کس بخواهد راهی به سوی پروردگارش برمیگزیند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,420,'و ما شما را از عذاب نزدیکی بیم دادیم! این عذاب در روزی خواهد بود که انسان آنچه را از قبل با دستهای خود فرستاده میبیند، و کافر میگوید: «ای کاش خاک بودم (و گرفتار عذاب نمیشدم)!»');
+INSERT INTO chapters (id, number, quran_id) VALUES(421,79,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,421,'سوگند به فرشتگانی که (جان مجرمان را بشدّت از بدنهایشان) برمیکشند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,421,'و فرشتگانی که (روح مؤمنان) را با مدارا و نشاط جدا میسازند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,421,'و سوگند به فرشتگانی که (در اجرای فرمان الهی) با سرعت حرکت میکنند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,421,'و سپس بر یکدیگر سبقت میگیرند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,421,'و آنها که امور را تدبیر میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,421,'آن روز که زلزلههای وحشتناک همه چیز را به لرزه درمیآورد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,421,'و بدنبال آن، حادثه دومین [= صیحه عظیم محشر] رخ میدهد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,421,'دلهایی در آن روز سخت مضطرب است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,421,'و چشمهای آنان از شدّت ترس فروافتاده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,421,'(ولی امروز) میگویند: «آیا ما به زندگی مجدّد بازمیگردیم؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,421,'آیا هنگامی که استخوانهای پوسیدهای شدیم (ممکن است زنده شویم)؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,421,'میگویند: «اگر قیامتی در کار باشد، بازگشتی است زیانبار!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,421,'ولی (بدانید) این بازگشت تنها با یک صیحه عظیم است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,421,'ناگهان همگی بر عرصه زمین ظاهر میگردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,421,'آیا داستان موسی به تو رسیده است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,421,'در آن هنگام که پروردگارش او را در سرزمین مقدّس «طوی» ندا داد (و گفت):');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,421,'به سوی فرعون برو که طغیان کرده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,421,'و به او بگو: «آیا میخواهی پاکیزه شوی؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,421,'و من تو را به سوی پروردگارت هدایت کنم تا از او بترسی (و گناه نکنی)؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,421,'سپس موسی بزرگترین معجزه را به او نشان داد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,421,'امّا او تکذیب و عصیان کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,421,'سپس پشت کرد و پیوسته (برای محو آیین حق) تلاش نمود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,421,'و ساحران را جمع کرد و مردم را دعوت نمود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,421,'و گفت: «من پروردگار برتر شما هستم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,421,'از این رو خداوند او را به عذاب آخرت و دنیا گرفتار ساخت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,421,'در این عبرتی است برای کسی که (از خدا) بترسد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,421,'آیا آفرینش شما (بعد از مرگ) مشکلتر است یا آفرینش آسمان که خداوند آن را بنا نهاد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,421,'سقف آن را برافراشت و آن را منظّم ساخت،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,421,'و شبش را تاریک و روزش را آشکار نمود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,421,'و زمین را بعد از آن گسترش داد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,421,'و از آن آب و چراگاهش را بیرون آورد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,421,'و کوهها را ثابت و محکم نمود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,421,'همه اینها برای بهرهگیری شما و چهارپایانتان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,421,'هنگامی که آن حادثه بزرگ رخ دهد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,421,'در آن روز انسان به یاد کوششهایش میافتد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,421,'و جهنّم برای هر بینندهای آشکار میگردد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,421,'امّا آن کسی که طغیان کرده،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,421,'و زندگی دنیا را مقدّم داشته،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,421,'مسلّماً دوزخ جایگاه اوست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,421,'و آن کس که از مقام پروردگارش ترسان باشد و نفس را از هوی بازدارد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,421,'قطعاً بهشت جایگاه اوست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,421,'و از تو درباره قیامت میپرسند که در چه زمانی واقع میشود؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(43,4,421,'تو را با یادآوری این سخن چه کار؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(44,4,421,'نهایت آن به سوی پروردگار تو است (و هیچ کس جز خدا از زمانش آگاه نیست)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(45,4,421,'کار تو فقط بیمدادن کسانی است که از آن میترسند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(46,4,421,'آنها در آن روز که قیام قیامت را میبینند چنین احساس میکنند که گویی توقّفشان (در دنیا و برزخ) جز شامگاهی یا صبح آن بیشتر نبوده است!');
+INSERT INTO chapters (id, number, quran_id) VALUES(422,80,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,422,'چهره در هم کشید و روی برتافت...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,422,'از اینکه نابینایی به سراغ او آمده بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,422,'تو چه میدانی شاید او پاکی و تقوا پیشه کند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,422,'یا متذکّر گردد و این تذکّر به حال او مفید باشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,422,'امّا آن کس که توانگر است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,422,'تو به او روی میآوری،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,422,'در حالی که اگر او خود را پاک نسازد، چیزی بر تو نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,422,'امّا کسی که به سراغ تو میآید و کوشش میکند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,422,'و از خدا ترسان است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,422,'تو از او غافل میشوی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,422,'هرگز چنین نیست که آنها میپندارند؛ این (قرآن) تذکّر و یادآوری است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,422,'و هر کس بخواهد از آن پند میگیرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,422,'در الواح پرارزشی ثبت است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,422,'الواحی والاقدر و پاکیزه،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,422,'به دست سفیرانی است');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,422,'والا مقام و فرمانبردار و نیکوکار!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,422,'مرگ بر این انسان، چقدر کافر و ناسپاس است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,422,'(خداوند) او را از چه چیز آفریده است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,422,'او را از نطفه ناچیزی آفرید، سپس اندازهگیری کرد و موزون ساخت،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,422,'سپس راه را برای او آسان کرد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,422,'بعد او را میراند و در قبر پنهان نمود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,422,'سپس هرگاه بخواهد او را زنده میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,422,'چنین نیست که او میپندارد؛ او هنوز آنچه را (خدا) فرمان داده، اطاعت نکرده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,422,'انسان باید به غذای خویش (و آفرینش آن) بنگرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,422,'ما آب فراوان از آسمان فرو ریختیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,422,'سپس زمین را از هم شکافتیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,422,'و در آن دانههای فراوانی رویاندیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,422,'و انگور و سبزی بسیار،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,422,'و زیتون و نخل فراوان،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,422,'و باغهای پردرخت،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,422,'و میوه و چراگاه،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,422,'تا وسیلهای برای بهرهگیری شما و چهارپایانتان باشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,422,'هنگامی که آن صدای مهیب [= صیحه رستاخیز] بیاید، (کافران در اندوه عمیقی فرومیروند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,422,'در آن روز که انسان از برادر خود میگریزد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,422,'و از مادر و پدرش،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,422,'و زن و فرزندانش؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(37,4,422,'در آن روز هر کدام از آنها وضعی دارد که او را کاملاً به خود مشغول میسازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(38,4,422,'چهرههائی در آن روز گشاده و نورانی است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(39,4,422,'خندان و مسرور است؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(40,4,422,'و صورتهایی در آن روز غبارآلود است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(41,4,422,'و دود تاریکی آنها را پوشانده است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(42,4,422,'آنان همان کافران فاجرند!');
+INSERT INTO chapters (id, number, quran_id) VALUES(423,81,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,423,'در آن هنگام که خورشید در هم پیچیده شود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,423,'و در آن هنگام که ستارگان بیفروغ شوند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,423,'و در آن هنگام که کوهها به حرکت درآیند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,423,'و در آن هنگام که باارزشترین اموال به دست فراموشی سپرده شود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,423,'و در آن هنگام که وحوش جمع شوند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,423,'و در آن هنگام که دریاها برافروخته شوند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,423,'و در آن هنگام که هر کس با همسان خود قرین گردد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,423,'و در آن هنگام که از دختران زنده به گور شده سؤال شود:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,423,'به کدامین گناه کشته شدند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,423,'و در آن هنگام که نامههای اعمال گشوده شود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,423,'و در آن هنگام که پرده از روی آسمان برگرفته شود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,423,'و در آن هنگام که دوزخ شعلهور گردد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,423,'و در آن هنگام که بهشت نزدیک شود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,423,'(آری در آن هنگام) هر کس میداند چه چیزی را آماده کرده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,423,'سوگند به ستارگانی که بازمیگردند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,423,'حرکت میکنند و از دیدهها پنهان میشوند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,423,'و قسم به شب، هنگامی که پشت کند و به آخر رسد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,423,'و به صبح، هنگامی که تنفّس کند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,423,'که این (قرآن) کلام فرستاده بزرگواری است [= جبرئیل امین]');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,423,'که صاحب قدرت است و نزد (خداوند) صاحب عرش، مقام والائی دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,423,'در آسمانها مورد اطاعت (فرشتگان) و امین است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,423,'و مصاحب شما [= پیامبر] دیوانه نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,423,'او (جبرئیل) را در اُفق روشن دیده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,423,'و او نسبت به آنچه از طریق وحی دریافت داشته بخل ندارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,423,'این (قرآن) گفته شیطان رجیم نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,423,'پس به کجا میروید؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,423,'این قرآن چیزی جز تذکّری برای جهانیان نیست،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,423,'برای کسی از شما که بخواهد راه مستقیم در پیش گیرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,423,'و شما اراده نمیکنید مگر اینکه خداوند -پروردگار جهانیان- اراده کند و بخواهد!');
+INSERT INTO chapters (id, number, quran_id) VALUES(424,82,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,424,'آن زمان که آسمان [= کرات آسمانی] از هم شکافته شود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,424,'و آن زمان که ستارگان پراکنده شوند و فرو ریزند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,424,'و آن زمان که دریاها به هم پیوسته شود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,424,'و آن زمان که قبرها زیر و رو گردد (و مردگان خارج شوند)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,424,'(در آن زمان) هر کس میداند آنچه را از پیش فرستاده و آنچه را برای بعد گذاشته است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,424,'ای انسان! چه چیز تو را در برابر پروردگار کریمت مغرور ساخته است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,424,'همان خدایی که تو را آفرید و سامان داد و منظّم ساخت،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,424,'و در هر صورتی که خواست تو را ترکیب نمود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,424,'(آری) آن گونه که شما میپندارید نیست؛ بلکه شما روز جزا را منکرید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,424,'و بیشک نگاهبانانی بر شما گمارده شده...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,424,'والا مقام و نویسنده (اعمال نیک و بد شما)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,424,'که میدانند شما چه میکنید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,424,'به یقین نیکان در نعمتی فراوانند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,424,'و بدکاران در دوزخند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,424,'روز جزا وارد آن میشوند و میسوزند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,424,'و آنان هرگز از آن غایب و دور نیستند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,424,'تو چه میدانی روز جزا چیست؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,424,'باز چه میدانی روز جزا چیست؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,424,'روزی است که هیچ کس قادر بر انجام کاری به سود دیگری نیست، و همه امور در آن روز از آن خداست!');
+INSERT INTO chapters (id, number, quran_id) VALUES(425,83,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,425,'وای بر کمفروشان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,425,'آنان که وقتی برای خود پیمانه میکنند، حق خود را بطور کامل میگیرند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,425,'امّا هنگامی که میخواهند برای دیگران پیمانه یا وزن کنند، کم میگذارند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,425,'آیا آنها گمان نمیکنند که برانگیخته میشوند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,425,'در روزی بزرگ؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,425,'روزی که مردم در پیشگاه پروردگار جهانیان میایستند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,425,'چنین نیست که آنها (درباره قیامت) میپندارند، به یقین نامه اعمال بدکاران در «سجّین» است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,425,'تو چه میدانی «سجّین» چیست؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,425,'نامهای است رقم زده شده و سرنوشتی است حتمی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,425,'وای در آن روز بر تکذیبکنندگان!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,425,'همانها که روز جزا را انکار میکنند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,425,'تنها کسی آن را انکار میکند که متجاوز و گنهکار است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,425,'(همان کسی که) وقتی آیات ما بر او خوانده میشود میگوید: «این افسانههای پیشینیان است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,425,'چنین نیست که آنها میپندارند، بلکه اعمالشان چون زنگاری بر دلهایشان نشسته است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,425,'چنین نیست که میپندارند، بلکه آنها در آن روز از پروردگارشان محجوبند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,425,'سپس آنها به یقین وارد دوزخ میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,425,'بعد به آنها گفته میشود: «این همان چیزی است که آن را انکار میکردید!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,425,'چنان نیست که آنها (درباره معاد) میپندارند، بلکه نامه اعمال نیکان در «علیّین» است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,425,'و تو چه میدانی «علیّین» چیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,425,'نامهای است رقمخورده و سرنوشتی است قطعی،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,425,'که مقربان شاهد آنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,425,'مسلّماً نیکان در انواع نعمتاند:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,425,'بر تختهای زیبای بهشتی تکیه کرده و (به زیباییهای بهشت) مینگرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,425,'در چهرههایشان طراوت و نشاط نعمت را میبینی و میشناسی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,425,'آنها از شراب (طهور) زلال دستنخورده و سربستهای سیراب میشوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,425,'مهری که بر آن نهاده شده از مشک است؛ و در این نعمتهای بهشتی راغبان باید بر یکدیگر پیشی گیرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,425,'این شراب (طهور) آمیخته با «تسنیم» است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,425,'همان چشمهای که مقرّبان از آن مینوشند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,425,'بدکاران (در دنیا) پیوسته به مؤمنان میخندیدند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,425,'و هنگامی که از کنارشان میگذشتند آنان را با اشاره تمسخر میکردند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(31,4,425,'و چون به سوی خانواده خود بازمیگشتند مسرور و خندان بودند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(32,4,425,'و هنگامی که آنها را میدیدند میگفتند: «اینها گمراهانند!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(33,4,425,'در حالی که هرگز مأمور مراقبت و متکفّل آنان [= مؤمنان] نبودند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(34,4,425,'ولی امروز مؤمنان به کفار میخندند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(35,4,425,'در حالی که بر تختهای آراسته بهشتی نشسته و (به سرنوشت شوم آنها) مینگرند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(36,4,425,'آیا (با این حال) کافران پاداش اعمال خود را گرفتند؟!');
+INSERT INTO chapters (id, number, quran_id) VALUES(426,84,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,426,'در آن هنگام که آسمان [= کرات آسمانی] شکافته شود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,426,'و تسلیم فرمان پروردگارش شود -و سزاوار است چنین باشد-');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,426,'و در آن هنگام که زمین گسترده شود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,426,'و آنچه در درون دارد بیرون افکنده و خالی شود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,426,'و تسلیم فرمان پروردگارش گردد -و شایسته است که چنین باشد-');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,426,'ای انسان! تو با تلاش و رنج بسوی پروردگارت میروی و او را ملاقات خواهی کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,426,'پس کسی که نامه اعمالش به دست راستش داده شود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,426,'بزودی حساب آسانی برای او میشود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,426,'و خوشحال به اهل و خانوادهاش بازمیگردد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,426,'و امّا کسی که نامه اعمالش به پشت سرش داده شود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,426,'بزودی فریاد میزند وای بر من که هلاک شدم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,426,'و در شعلههای سوزان آتش میسوزد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,426,'چرا که او در میان خانوادهاش پیوسته (از کفر و گناه خود) مسرور بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,426,'او گمان میکرد هرگز بازگشت نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,426,'آری، پروردگارش نسبت به او بینا بود (و اعمالش را برای حساب ثبت کرد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,426,'سوگند به شفق،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,426,'و سوگند به شب و آنچه را جمعآوری میکند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,426,'و سوگند به ماه آنگاه که بَدر کامل میشود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,426,'که همه شما پیوسته از حالی به حال دیگر منتقل میشوید (تا به کمال برسید).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,426,'پس چرا آنان ایمان نمیآورند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,426,'و هنگامی که قرآن بر آنها خوانده میشود سجده نمیکنند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,426,'بلکه کافران پیوسته آیات الهی را انکار میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,426,'و خداوند آنچه را در دل پنهان میدارند بخوبی میداند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,426,'پس آنها را به عذابی دردناک بشارت ده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,426,'مگر کسانی که ایمان آورده و اعمال صالح انجام دادهاند، که برای آنان پاداشی است قطعنشدنی!');
+INSERT INTO chapters (id, number, quran_id) VALUES(427,85,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,427,'سوگند به آسمان که دارای برجهای بسیار است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,427,'و سوگند به آن روز موعود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,427,'و سوگند به «شاهد» و «مشهود»! [«شاهد»: پیامبر و گواهان اعمال، و «مشهود»: اعمال امّت است]');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,427,'مرگ بر شکنجهگران صاحب گودال (آتش)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,427,'آتشی عظیم و شعلهور!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,427,'هنگامی که در کنار آن نشسته بودند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,427,'و آنچه را با مؤمنان انجام میدادند (با خونسردی و قساوت) تماشا میکردند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,427,'آنها هیچ ایرادی بر مؤمنان نداشتند جز اینکه به خداوند عزیز و حمید ایمان آورده بودند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,427,'همان کسی که حکومت آسمانها و زمین از آن اوست و خداوند بر همه چیز گواه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,427,'کسانی که مردان و زنان باایمان را شکنجه دادند سپس توبه نکردند، برای آنها عذاب دوزخ و عذاب آتش سوزان است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,427,'و برای کسانی که ایمان آوردند و اعمال شایسته انجام دادند، باغهایی از بهشت است که نهرها زیر درختانش جاری است؛ و این نجات و پیروزی بزرگ است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,427,'گرفتن قهرآمیز و مجازات پروردگارت به یقین بسیار شدید است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,427,'اوست که آفرینش را آغاز میکند و بازمیگرداند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,427,'و او آمرزنده و دوستدار (مؤمنان) است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,427,'صاحب عرش و دارای مجد و عظمت است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,427,'و آنچه را میخواهد انجام میدهد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,427,'آیا داستان لشکرها به تو رسیده است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,427,'لشکریان فرعون و ثمود؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,427,'ولی کافران پیوسته در تکذیب حقند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,427,'و خداوند به همه آنها احاطه دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,427,'(این آیات، سحر و دروغ نیست،) بلکه قرآن باعظمت است...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,427,'که در لوح محفوظ جای دارد!');
+INSERT INTO chapters (id, number, quran_id) VALUES(428,86,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,428,'سوگند به آسمان و کوبنده شب!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,428,'و تو نمیدانی کوبنده شب چیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,428,'همان ستاره درخشان و شکافنده تاریکیهاست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,428,'(به این آیت بزرگ الهی سوگند) که هر کس مراقب و محافظی دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,428,'انسان باید بنگرد که از چه چیز آفریده شده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,428,'از یک آب جهنده آفریده شده است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,428,'آبی که از میان پشت و سینهها خارج میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,428,'مسلّماً او [= خدائی که انسان را از چنین چیز پستی آفرید] میتواند او را بازگرداند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,428,'در آن روز که اسرار نهان (انسان) آشکار میشود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,428,'و برای او هیچ نیرو و یاوری نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,428,'سوگند به آسمان پرباران،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,428,'و سوگند به زمین پرشکاف (که گیاهان از آن سر برمیآورند)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,428,'که این (قرآن) سخنی است که حقّ را از باطل جدا میکند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,428,'و هرگز شوخی نیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,428,'آنها پیوسته حیله میکنند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,428,'و من هم در برابر آنها چاره میکنم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,428,'حال که چنین است کافران را (فقط) اندکی مهلت ده (تا سزای اعمالشان را ببینند)!');
+INSERT INTO chapters (id, number, quran_id) VALUES(429,87,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,429,'منزّه شمار نام پروردگار بلندمرتبهات را!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,429,'همان خداوندی که آفرید و منظم کرد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,429,'و همان که اندازهگیری کرد و هدایت نمود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,429,'و آن کس را که چراگاه را به وجود آورد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,429,'سپس آن را خشک و تیره قرار داد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,429,'ما بزودی (قرآن را) بر تو میخوانیم و هرگز فراموش نخواهی کرد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,429,'مگر آنچه را خدا بخواهد، که او آشکار و نهان را میداند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,429,'و ما تو را برای انجام هر کار خیر آماده میکنیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,429,'پس تذکّر ده اگر تذکّر مفید باشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,429,'و بزودی کسی که از خدا میترسد متذکّر میشود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,429,'امّا بدبختترین افراد از آن دوری میگزیند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,429,'همان کسی که در آتش بزرگ وارد میشود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,429,'سپس در آن آتش نه میمیرد و نه زنده میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,429,'به یقین کسی که پاکی جست (و خود را تزکیه کرد)، رستگار شد.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,429,'و (آن که) نام پروردگارش را یاد کرد سپس نماز خواند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,429,'ولی شما زندگی دنیا را مقدم میدارید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,429,'در حالی که آخرت بهتر و پایدارتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,429,'این دستورها در کتب آسمانی پیشین (نیز) آمده است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,429,'در کتب ابراهیم و موسی.');
+INSERT INTO chapters (id, number, quran_id) VALUES(430,88,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,430,'آیا داستان غاشیه [= روز قیامت که حوادث وحشتناکش همه را میپوشاند] به تو رسیده است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,430,'چهرههایی در آن روز خاشع و ذلّتبارند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,430,'آنها که پیوسته عمل کرده و خسته شدهاند (و نتیجهای عایدشان نشده است)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,430,'و در آتش سوزان وارد میگردند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,430,'از چشمهای بسیار داغ به آنان مینوشانند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,430,'غذائی جز از ضَریع [= خار خشک تلخ و بدبو] ندارند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,430,'غذایی که نه آنها را فربه میکند و نه از گرسنگی میرهاند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,430,'چهرههایی در آن روز شاداب و باطراوتند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,430,'و از سعی و تلاش خود خشنودند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,430,'در بهشتی عالی جای دارند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,430,'که در آن هیچ سخن لغو و بیهودهای نمیشنوند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,430,'در آن چشمهای جاری است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,430,'در آن تختهای زیبای بلندی است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,430,'و قدحهایی (که در کنار این چشمه) نهاده،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,430,'و بالشها و پشتیهای صفداده شده،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,430,'و فرشهای فاخر گسترده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,430,'آیا آنان به شتر نمینگرند که چگونه آفریده شده است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,430,'و به آسمان نگاه نمیکنند که چگونه برافراشته شده؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,430,'و به کوهها که چگونه در جای خود نصب گردیده!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,430,'و به زمین که چگونه گسترده و هموار گشته است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,430,'پس تذکّر ده که تو فقط تذکّر دهندهای!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,430,'تو سلطهگر بر آنان نیستی که (بر ایمان) مجبورشان کنی،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,430,'مگر کسی که پشت کند و کافر شود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,430,'که خداوند او را به عذاب بزرگ مجازات میکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,430,'به یقین بازگشت (همه) آنان به سوی ماست،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,430,'و مسلّماً حسابشان (نیز) با ماست!');
+INSERT INTO chapters (id, number, quran_id) VALUES(431,89,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,431,'به سپیده دم سوگند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,431,'و به شبهای دهگانه،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,431,'و به زوج و فرد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,431,'و به شب، هنگامی که (به سوی روشنایی روز) حرکت میکند سوگند (که پروردگارت در کمین ظالمان است)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,431,'آیا در آنچه گفته شد، سوگند مهمّی برای صاحبان خرد نیست؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,431,'آیا ندیدی پروردگارت با قوم «عاد» چه کرد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,431,'و با آن شهر «اِرَم» باعظمت،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,431,'همان شهری که مانندش در شهرها آفریده نشده بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,431,'و قوم «ثمود» که صخرههای عظیم را از (کنار) درّه میبریدند (و از آن خانه و کاخ میساختند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,431,'و فرعونی که قدرتمند و شکنجهگر بود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,431,'همان اقوامی که در شهرها طغیان کردند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,431,'و فساد فراوان در آنها به بار آوردند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,431,'به همین سبب خداوند تازیانه عذاب را بر آنان فرو ریخت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,431,'به یقین پروردگار تو در کمینگاه (ستمگران) است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,431,'امّا انسان هنگامی که پروردگارش او را برای آزمایش، اکرام میکند و نعمت میبخشد (مغرور میشود و) میگوید: «پروردگارم مرا گرامی داشته است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,431,'و امّا هنگامی که برای امتحان، روزیش را بر او تنگ میگیرد (مأیوس میشود و) میگوید: «پروردگارم مرا خوار کرده است!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,431,'چنان نیست که شما میپندارید؛ شما یتیمان را گرامی نمیدارید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,431,'و یکدیگر را بر اطعام مستمندان تشویق نمیکنید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,431,'و میراث را (از راه مشروع و نامشروع) جمع کرده میخورید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,431,'و مال و ثروت را بسیار دوست دارید (و بخاطر آن گناهان زیادی مرتکب میشوید)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,431,'چنان نیست که آنها میپندارند! در آن هنگام که زمین سخت در هم کوبیده شود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(22,4,431,'و فرمان پروردگارت فرا رسد و فرشتگان صف در صف حاضر شوند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(23,4,431,'و در آن روز جهنم را حاضر میکنند؛ (آری) در آن روز انسان متذکّر میشود؛ امّا این تذکّر چه سودی برای او دارد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(24,4,431,'میگوید: «ای کاش برای (این) زندگیم چیزی از پیش فرستاده بودم!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(25,4,431,'در آن روز هیچ کس همانند او [= خدا] عذاب نمیکند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(26,4,431,'و هیچ کس همچون او کسی را به بند نمیکشد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(27,4,431,'تو ای روح آرامیافته!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(28,4,431,'به سوی پروردگارت بازگرد در حالی که هم تو از او خشنودی و هم او از تو خشنود است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(29,4,431,'پس در سلک بندگانم درآی،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(30,4,431,'و در بهشتم وارد شو!');
+INSERT INTO chapters (id, number, quran_id) VALUES(432,90,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,432,'قسم به این شهر مقدّس [= مکّه]،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,432,'شهری که تو در آن ساکنی،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,432,'و قسم به پدر و فرزندش [= ابراهیم خلیل و فرزندش اسماعیل ذبیح]،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,432,'که ما انسان را در رنج آفریدیم (و زندگی او پر از رنجهاست)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,432,'آیا او گمان میکند که هیچ کس نمیتواند بر او دست یابد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,432,'میگوید: «مال زیادی را (در کارهای خیر) نابود کردهام!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,432,'آیا (انسان) گمان میکند هیچ کس او را ندیده (که عمل خیری انجام نداده) است؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,432,'آیا برای او دو چشم قرار ندادیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,432,'و یک زبان و دو لب؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,432,'و او را به راه خیر و شرّ هدایت کردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,432,'ولی او از آن گردنه مهمّ نگذشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,432,'و تو نمیدانی آن گردنه چیست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,432,'آزادکردن بردهای،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,432,'یا غذا دادن در روز گرسنگی...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,432,'یتیمی از خویشاوندان،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,432,'یا مستمندی خاکنشین را،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,432,'سپس از کسانی باشد که ایمان آورده و یکدیگر را به شکیبایی و رحمت توصیه میکنند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,432,'آنها «اصحاب الیمین» اند (که نامه اعمالشان را به دست راستشان میدهند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,432,'و کسانی که آیات ما را انکار کردهاند افرادی شومند (که نامه اعمالشان به دست چپشان داده میشود).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,432,'بر آنها آتشی است فروبسته (که راه فراری از آن نیست)!');
+INSERT INTO chapters (id, number, quran_id) VALUES(433,91,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,433,'به خورشید و گسترش نور آن سوگند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,433,'و به ماه هنگامی که بعد از آن درآید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,433,'و به روز هنگامی که صفحه زمین را روشن سازد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,433,'و به شب آن هنگام که زمین را بپوشاند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,433,'و قسم به آسمان و کسی که آسمان را بنا کرده،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,433,'و به زمین و کسی که آن را گسترانیده،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,433,'و قسم به جان آدمی و آن کس که آن را (آفریده و) منظّم ساخته،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,433,'سپس فجور و تقوا (شرّ و خیرش) را به او الهام کرده است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,433,'که هر کس نفس خود را پاک و تزکیه کرده، رستگار شده؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,433,'و آن کس که نفس خویش را با معصیت و گناه آلوده ساخته، نومید و محروم گشته است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,433,'قوم «ثمود» بر اثر طغیان، (پیامبرشان را) تکذیب کردند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,433,'آنگاه که شقیترین آنها بپاخاست،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,433,'و فرستاده الهی [= صالح] به آنان گفت: «ناقه خدا [= همان شتری که معجزه الهی بود] را با آبشخورش واگذارید (و مزاحم آن نشوید)!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,433,'ولی آنها او را تکذیب و ناقه را پی کردند (و به هلاکت رساندند)؛ از این رو پروردگارشان آنها (و سرزمینشان) را بخاطر گناهانشان در هم کوبید و با خاک یکسان و صاف کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,433,'و او هرگز از فرجام این کار [= مجازات ستمگران] بیم ندارد!');
+INSERT INTO chapters (id, number, quran_id) VALUES(434,92,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,434,'قسم به شب در آن هنگام که (جهان را) بپوشاند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,434,'و قسم به روز هنگامی که تجلّی کند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,434,'و قسم به آن کس که جنس مذکّر و مؤنّث را آفرید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,434,'که سعی و تلاش شما مختلف است:');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,434,'امّا آن کس که (در راه خدا) انفاق کند و پرهیزگاری پیش گیرد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,434,'و جزای نیک (الهی) را تصدیق کند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,434,'ما او را در مسیر آسانی قرار میدهیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,434,'امّا کسی که بخل ورزد و (از این راه) بینیازی طلبد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,434,'و پاداش نیک (الهی) را انکار کند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,434,'بزودی او را در مسیر دشواری قرار میدهیم؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,434,'و در آن هنگام که (در جهنّم) سقوط میکند، اموالش به حال او سودی نخواهد داشت!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,434,'به یقین هدایت کردن بر ماست،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,434,'و آخرت و دنیا از آن ماست،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,434,'و من شما را از آتشی که زبانه میکشد بیم میدهم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,434,'کسی جز بدبختترین مردم وارد آن نمیشود؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,434,'همان کس که (آیات خدا را) تکذیب کرد و به آن پشت نمود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,434,'و بزودی با تقواترین مردم از آن دور داشته میشود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,434,'همان کس که مال خود را (در راه خدا) میبخشد تا پاک شود.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,434,'و هیچ کس را نزد او حق نعمتی نیست تا بخواهد (به این وسیله) او را جزا دهد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(20,4,434,'بلکه تنها هدفش جلب رضای پروردگار بزرگ اوست؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(21,4,434,'و بزودی راضی و خشنود میشود!');
+INSERT INTO chapters (id, number, quran_id) VALUES(435,93,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,435,'قسم به روز در آن هنگام که آفتاب برآید (و همه جا را فراگیرد)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,435,'و سوگند به شب در آن هنگام که آرام گیرد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,435,'که خداوند هرگز تو را وانگذاشته و مورد خشم قرار نداده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,435,'و مسلّماً آخرت برای تو از دنیا بهتر است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,435,'و بزودی پروردگارت آنقدر به تو عطا خواهد کرد که خشنود شوی!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,435,'آیا او تو را یتیم نیافت و پناه داد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,435,'و تو را گمشده یافت و هدایت کرد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,435,'و تو را فقیر یافت و بینیاز نمود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,435,'حال که چنین است یتیم را تحقیر مکن،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,435,'و سؤالکننده را از خود مران،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,435,'و نعمتهای پروردگارت را بازگو کن!');
+INSERT INTO chapters (id, number, quran_id) VALUES(436,94,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,436,'آیا ما سینه تو را گشاده نساختیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,436,'و بار سنگین تو را از تو برنداشتیم؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,436,'همان باری که سخت بر پشت تو سنگینی میکرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,436,'و آوازه تو را بلند ساختیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,436,'به یقین با (هر) سختی آسانی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,436,'(آری) مسلّماً با (هر) سختی آسانی است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,436,'پس هنگامی که از کار مهمّی فارغ میشوی به مهم دیگری پرداز،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,436,'و به سوی پروردگارت توجّه کن!');
+INSERT INTO chapters (id, number, quran_id) VALUES(437,95,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,437,'قسم به انجیر و زیتون [یا: قسم به سرزمین شام و بیت المقدّس]،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,437,'و سوگند به «طور سینین»،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,437,'و قسم به این شهر امن [= مکّه]،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,437,'که ما انسان را در بهترین صورت و نظام آفریدیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,437,'سپس او را به پایینترین مرحله بازگرداندیم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,437,'مگر کسانی که ایمان آورده و اعمال صالح انجام دادهاند که برای آنها پاداشی تمامنشدنی است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,437,'پس چه چیز سبب میشود که بعد از این همه (دلایل روشن) روز جزا را انکار کنی؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,437,'آیا خداوند بهترین حکمکنندگان نیست؟!');
+INSERT INTO chapters (id, number, quran_id) VALUES(438,96,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,438,'بخوان به نام پروردگارت که (جهان را) آفرید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,438,'همان کس که انسان را از خون بستهای خلق کرد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,438,'بخوان که پروردگارت (از همه) بزرگوارتر است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,438,'همان کسی که بوسیله قلم تعلیم نمود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,438,'و به انسان آنچه را نمیدانست یاد داد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,438,'چنین نیست (که شما میپندارید) به یقین انسان طغیان میکند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,438,'از اینکه خود را بینیاز ببیند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,438,'و به یقین بازگشت (همه) به سوی پروردگار تو است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,438,'به من خبر ده آیا کسی که نهی میکند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,438,'بندهای را به هنگامی که نماز میخواند (آیا مستحق عذاب الهی نیست)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,438,'به من خبر ده اگر این بنده به راه هدایت باشد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(12,4,438,'یا مردم را به تقوا فرمان دهد (آیا نهی کردن او سزاوار است)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(13,4,438,'به من خبر ده اگر (این طغیانگر) حق را انکار کند و به آن پشت نماید (آیا مستحق مجازات الهی نیست)؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(14,4,438,'آیا او ندانست که خداوند (همه اعمالش را) میبیند؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(15,4,438,'چنان نیست که او خیال میکند، اگر دست از کار خود برندارد، ناصیهاش [= موی پیش سرش] را گرفته (و به سوی عذاب میکشانیم)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(16,4,438,'همان ناصیه دروغگوی خطاکار را!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(17,4,438,'سپس هر که را میخواهد صدا بزند (تا یاریش کند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(18,4,438,'ما هم بزودی مأموران دوزخ را صدا میزنیم (تا او را به دوزخ افکنند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(19,4,438,'چنان نیست (که آن طغیانگر میپندارد)؛ هرگز او را اطاعت مکن، و سجده نما و (به خدا) تقرّب جوی!');
+INSERT INTO chapters (id, number, quran_id) VALUES(439,97,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,439,'ما آن [= قرآن] را در شب قدر نازل کردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,439,'و تو چه میدانی شب قدر چیست؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,439,'شب قدر بهتر از هزار ماه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,439,'فرشتگان و «روح» در آن شب به اذن پروردگارشان برای (تقدیر) هر کاری نازل میشوند.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,439,'شبی است سرشار از سلامت (و برکت و رحمت) تا طلوع سپیده!');
+INSERT INTO chapters (id, number, quran_id) VALUES(440,98,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,440,'کافران از اهل کتاب و مشرکان (میگفتند:) دست از آیین خود برنمیدارند تا دلیل روشنی برای آنها بیاید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,440,'پیامبری از سوی خدا (بیاید) که صحیفههای پاکی را (بر آنها) بخواند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,440,'و در آن نوشتههای صحیح و پرارزشی باشد! (ولی هنگامی که آمد ایمان نیاوردند، مانند اهل کتاب).');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,440,'اهل کتاب (نیز در دین خدا) اختلاف نکردند مگر بعد از آنکه دلیل روشن برای آنان آمد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,440,'و به آنها دستوری داده نشده بود جز اینکه خدا را بپرستند در حالی که دین خود را برای او خالص کنند و از شرک به توحید بازگردند، نماز را برپا دارند و زکات را بپردازند؛ و این است آیین مستقیم و پایدار!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,440,'کافران از اهل کتاب و مشرکان در آتش دوزخند، جاودانه در آن میمانند؛ آنها بدترین مخلوقاتند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,440,'(امّا) کسانی که ایمان آوردند و اعمال صالح انجام دادند، بهترین مخلوقات (خدا) یند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,440,'پاداش آنها نزد پروردگارشان باغهای بهشت جاویدان است که نهرها از زیر درختانش جاری است؛ همیشه در آن میمانند! (هم) خدا از آنها خشنود است و (هم) آنها از خدا خشنودند؛ و این (مقام والا) برای کسی است که از پروردگارش بترسد!');
+INSERT INTO chapters (id, number, quran_id) VALUES(441,99,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,441,'هنگامی که زمین شدیداً به لرزه درآید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,441,'و زمین بارهای سنگینش را خارج سازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,441,'و انسان میگوید: «زمین را چه میشود (که این گونه میلرزد)؟!»');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,441,'در آن روز زمین تمام خبرهایش را بازگو میکند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,441,'چرا که پروردگارت به او وحی کرده است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,441,'در آن روز مردم بصورت گروههای پراکنده (از قبرها) خارج میشوند تا اعمالشان به آنها نشان داده شود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,441,'پس هر کس هموزن ذرّهای کار خیر انجام دهد آن را میبیند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,441,'و هر کس هموزن ذرّهای کار بد کرده آن را میبیند!');
+INSERT INTO chapters (id, number, quran_id) VALUES(442,100,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,442,'سوگند به اسبان دونده (مجاهدان) در حالی که نفسزنان به پیش میرفتند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,442,'و سوگند به افروزندگان جرقه آتش (در برخورد سمهایشان با سنگهای بیابان)،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,442,'و سوگند به هجوم آوران سپیده دم');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,442,'که گرد و غبار به هر سو پراکندند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,442,'و (ناگهان) در میان دشمن ظاهر شدند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,442,'که انسان در برابر نعمتهای پروردگارش بسیار ناسپاس و بخیل است؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,442,'و او خود (نیز) بر این معنی گواه است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,442,'و او علاقه شدید به مال دارد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,442,'آیا نمیداند در آن روز که تمام کسانی که در قبرها هستند برانگیخته میشوند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,442,'و آنچه در درون سینههاست آشکار میگردد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,442,'در آن روز پروردگارشان از آنها کاملاً باخبر است!');
+INSERT INTO chapters (id, number, quran_id) VALUES(443,101,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,443,'آن حادثه کوبنده،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,443,'و چه حادثه کوبندهای!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,443,'و تو چه میدانی که حادثه کوبنده چیست؟! (آن حادثه همان روز قیامت است!)');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,443,'روزی که مردم مانند پروانههای پراکنده خواهند بود،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,443,'و کوهها مانند پشم رنگین حلاّجیشده میگردد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,443,'امّا کسی که (در آن روز) ترازوهای اعمالش سنگین است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,443,'در یک زندگی خشنودکننده خواهد بود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,443,'و امّا کسی که ترازوهایش سبک است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,443,'پناهگاهش «هاویه» [= دوزخ] است!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(10,4,443,'و تو چه میدانی «هاویه» چیست؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(11,4,443,'آتشی است سوزان!');
+INSERT INTO chapters (id, number, quran_id) VALUES(444,102,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,444,'افزون طلبی (و تفاخر) شما را به خود مشغول داشته (و از خدا غافل نموده) است.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,444,'تا آنجا که به دیدار قبرها رفتید (و قبور مردگان خود را برشمردید و به آن افتخار کردید)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,444,'چنین نیست که میپندارید، (آری) بزودی خواهید دانست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,444,'باز چنان نیست که شما میپندارید؛ بزودی خواهید دانست!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,444,'چنان نیست که شما خیال میکنید؛ اگر شما علم الیقین (به آخرت) داشتید (افزون طلبی شما را از خدا غافل نمیکرد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,444,'قطعاً شما جهنّم را خواهید دید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,444,'سپس (با ورود در آن) آن را به عین الیقین خواهید دید.');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,444,'سپس در آن روز (همه شما) از نعمتهایی که داشتهاید بازپرسی خواهید شد!');
+INSERT INTO chapters (id, number, quran_id) VALUES(445,103,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,445,'به عصر سوگند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,445,'که انسانها همه در زیانند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,445,'مگر کسانی که ایمان آورده و اعمال صالح انجام دادهاند، و یکدیگر را به حق سفارش کرده و یکدیگر را به شکیبایی و استقامت توصیه نمودهاند!');
+INSERT INTO chapters (id, number, quran_id) VALUES(446,104,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,446,'وای بر هر عیبجوی مسخرهکنندهای!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,446,'همان کس که مال فراوانی جمعآوری و شماره کرده (بیآنکه مشروع و نامشروع آن را حساب کند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,446,'او گمان میکند که اموالش او را جاودانه میسازد!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,446,'چنین نیست که میپندارد؛ بزودی در «حُطَمه» [= آتشی خردکننده] پرتاب میشود!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,446,'و تو چه میدانی «حُطمه» چیست؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,446,'آتش برافروخته الهی است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,446,'آتشی که از دلها سرمیزند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(8,4,446,'این آتش بر آنها فروبسته شده،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(9,4,446,'در ستونهای کشیده و طولانی!');
+INSERT INTO chapters (id, number, quran_id) VALUES(447,105,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,447,'آیا ندیدی پروردگارت با فیل سواران [= لشکر ابرهه که برای نابودی کعبه آمده بودند] چه کرد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,447,'آیا نقشه آنها را در ضلالت و تباهی قرار نداد؟!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,447,'و بر سر آنها پرندگانی را گروه گروه فرستاد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,447,'که با سنگهای کوچکی آنان را هدف قرارمیدادند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,447,'سرانجام آنها را همچون کاه خوردهشده (و متلاشی) قرار داد!');
+INSERT INTO chapters (id, number, quran_id) VALUES(448,106,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,448,'(کیفر لشکر فیلسواران) بخاطر این بود که قریش (به این سرزمین مقدس) الفت گیرند (و زمینه ظهور پیامبر فراهم شود)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,448,'الفت آنها در سفرهای زمستانه و تابستانه (و بخاطر این الفت به آن بازگردند)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,448,'پس (بشکرانه این نعمت بزرگ) باید پروردگار این خانه را عبادت کنند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,448,'همان کس که آنها را از گرسنگی نجات داد و از ترس و ناامنی ایمن ساخت.');
+INSERT INTO chapters (id, number, quran_id) VALUES(449,107,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,449,'آیا کسی که روز جزا را پیوسته انکار میکند دیدی؟');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,449,'او همان کسی است که یتیم را با خشونت میراند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,449,'و (دیگران را) به اطعام مسکین تشویق نمیکند!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,449,'پس وای بر نمازگزارانی که...');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,449,'در نماز خود سهلانگاری میکنند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,449,'همان کسانی که ریا میکنند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(7,4,449,'و دیگران را از وسایل ضروری زندگی منع مینمایند!');
+INSERT INTO chapters (id, number, quran_id) VALUES(450,108,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,450,'ما به تو کوثر [= خیر و برکت فراوان] عطا کردیم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,450,'پس برای پروردگارت نماز بخوان و قربانی کن!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,450,'(و بدان) دشمن تو قطعاً بریدهنسل و بیعقب است!');
+INSERT INTO chapters (id, number, quran_id) VALUES(451,109,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,451,'بگو: ای کافران!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,451,'آنچه را شما میپرستید من نمیپرستم!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,451,'و نه شما آنچه را من میپرستم میپرستید،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,451,'و نه من هرگز آنچه را شما پرستش کردهاید میپرستم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,451,'و نه شما آنچه را که من میپرستم پرستش میکنید؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,451,'(حال که چنین است) آیین شما برای خودتان، و آیین من برای خودم!');
+INSERT INTO chapters (id, number, quran_id) VALUES(452,110,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,452,'هنگامی که یاری خدا و پیروزی فرارسد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,452,'و ببینی مردم گروه گروه وارد دین خدا میشوند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,452,'پروردگارت را تسبیح و حمد کن و از او آمرزش بخواه که او بسیار توبهپذیر است!');
+INSERT INTO chapters (id, number, quran_id) VALUES(453,111,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,453,'بریده باد هر دو دست ابولهب (و مرگ بر او باد)!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,453,'هرگز مال و ثروتش و آنچه را به دست آورد به حالش سودی نبخشید!');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,453,'و بزودی وارد آتشی شعلهور و پرلهیب میشود؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,453,'و (نیز) همسرش، در حالی که هیزمکش (دوزخ) است،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,453,'و در گردنش طنابی است از لیف خرما!');
+INSERT INTO chapters (id, number, quran_id) VALUES(454,112,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,454,'بگو: خداوند، یکتا و یگانه است؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,454,'خداوندی است که همه نیازمندان قصد او میکنند؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,454,'(هرگز) نزاد، و زاده نشد،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,454,'و برای او هیچگاه شبیه و مانندی نبوده است!');
+INSERT INTO chapters (id, number, quran_id) VALUES(455,113,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,455,'بگو: پناه میبرم به پروردگار سپیده صبح،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,455,'از شرّ تمام آنچه آفریده است؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,455,'و از شرّ هر موجود شرور هنگامی که شبانه وارد میشود؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,455,'و از شرّ آنها که با افسون در گرهها میدمند (و هر تصمیمی را سست میکنند)؛');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,455,'و از شرّ هر حسودی هنگامی که حسد میورزد!');
+INSERT INTO chapters (id, number, quran_id) VALUES(456,114,4);
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(1,4,456,'بگو: پناه میبرم به پروردگار مردم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(2,4,456,'به مالک و حاکم مردم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(3,4,456,'به (خدا و) معبود مردم،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(4,4,456,'از شرّ وسوسهگر پنهانکار،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(5,4,456,'که در درون سینه انسانها وسوسه میکند،');
+INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(6,4,456,'خواه از جنّ باشد یا از انسان!');
\ No newline at end of file
diff --git a/src/sql/seed.sql.erb b/src/sql/seed.sql.erb
new file mode 100644
index 0000000..4bfc977
--- /dev/null
+++ b/src/sql/seed.sql.erb
@@ -0,0 +1,10 @@
+<% languages.each.with_index(1) do |language, quran_id| %>
+ INSERT INTO qurans (locale) VALUES(<%= SQLUtils.escape(language.locale) %>);
+ <% language.chapters.each do |chapter| %>
+ INSERT INTO chapters (id, number, quran_id) VALUES(<%= [chapter_id, chapter.number, quran_id].join(",") %>);
+ <% chapter.verses.each do |verse| %>
+ INSERT INTO verses (number, quran_id, chapter_id, content) VALUES(<%= [verse.number, quran_id, chapter_id, SQLUtils.escape(verse.content)].join(",") %>);
+ <% end %>
+ <% chapter_id += 1 %>
+ <% end %>
+<% end %>