forked from avitus/Memverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemverse_quests.sql
249 lines (240 loc) · 28.1 KB
/
memverse_quests.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
-- phpMyAdmin SQL Dump
-- version 2.11.9.4
-- http://www.phpmyadmin.net
--
-- Host: mysql.appletownprince.com
-- Generation Time: Feb 03, 2011 at 02:22 PM
-- Server version: 5.0.67
-- PHP Version: 5.2.12
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `memverse_production`
--
-- --------------------------------------------------------
--
-- Table structure for table `quests`
--
CREATE TABLE IF NOT EXISTS `quests` (
`id` int(11) NOT NULL auto_increment,
`level` int(11) default NULL,
`task` varchar(255) default NULL,
`description` text,
`objective` varchar(255) default NULL,
`qualifier` varchar(255) default NULL,
`quantity` int(11) default NULL,
`url` varchar(255) default NULL,
`created_at` datetime default NULL,
`updated_at` datetime default NULL,
PRIMARY KEY (`id`),
KEY `index_quests_on_level` (`level`),
KEY `index_quests_on_objective` (`objective`),
KEY `index_quests_on_qualifier` (`qualifier`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=205 ;
--
-- Dumping data for table `quests`
--
INSERT INTO `quests` (`id`, `level`, `task`, `description`, `objective`, `qualifier`, `quantity`, `url`, `created_at`, `updated_at`) VALUES
(3, 1, 'Start learning 5 verses', 'Add 5 verses that you would like to memorize.', 'Verses', 'Learning', 5, 'https://www.memverse.com/add_verse', '2010-08-13 13:49:01', '2010-08-13 13:49:01'),
(4, 1, 'Read the Memverse tutorial', '', 'Url', '', NULL, 'https://www.memverse.com/tutorial', '2010-08-13 13:49:59', '2010-08-13 13:49:59'),
(5, 2, 'Complete your first memorization session', 'Type in each verse until you eventually see the progress chart at the end of the session. This chart will update each day as you complete more sessions.', 'Sessions', '', 1, '', '2010-08-13 13:52:53', '2010-08-13 13:52:53'),
(6, 2, 'Complete your profile', '', 'Url', '', NULL, 'https://www.memverse.com/update_profile', '2010-08-13 13:53:49', '2010-08-13 13:53:49'),
(7, 2, 'Increase your number of verses to 10', 'This is a good number to start with and shouldn''t take too much time each day.', 'Verses', 'Learning', 10, '', '2010-08-13 13:57:47', '2010-08-13 13:57:47'),
(9, 3, 'Memorize 5 Verses', '', 'Verses', 'Memorized', 5, '', '2010-08-13 14:03:06', '2010-08-13 14:03:06'),
(10, 3, 'Learning 20 verses', '', 'Verses', 'Learning', 20, '', '2010-08-13 14:04:03', '2010-08-13 14:04:03'),
(11, 3, 'Learn how to report errors in verses', 'This blog post will describe how the Memverse verification method works.', 'Url', '', NULL, 'https://www.memverse.com/blog/main/Reporting_Errors_in_Verses', '2010-08-13 14:05:49', '2010-08-13 14:05:49'),
(13, 1, 'Learn to rate your verse recall', 'This is a very important lesson. It''s a good idea to come back to this post frequently. ', 'Url', '', NULL, 'https://www.memverse.com/blog/main/Rating_Your_Memory_Recall', '2010-08-13 14:10:26', '2010-08-13 14:10:26'),
(14, 2, 'Learn how to delete verses', '', 'Url', '', NULL, 'https://www.memverse.com/blog/main/Getting_Started__Deleting_Verses', '2010-08-13 14:11:52', '2010-08-13 14:11:52'),
(15, 3, 'Learn to pace yourself', 'Adding too many verses too quickly is a quick way to become discouraged!', 'Url', '', NULL, 'https://www.memverse.com/blog/main/Getting_Started__How_Many_Verse_to_Add', '2010-08-13 14:13:24', '2010-08-13 14:13:24'),
(16, 4, 'Learn 30 verses', '', 'Verses', 'Learning', 30, '', '2010-08-13 14:15:26', '2010-08-13 14:15:26'),
(17, 4, 'Memorize 10 Verses', '', 'Verses', 'Memorized', 10, '', '2010-08-13 14:16:05', '2010-08-13 14:16:05'),
(18, 4, 'Learn to tag verses', 'Tagging is useful for sorting your verses and helps others find verses to memorize.\r\n\r\nKey tip: reuse tags that others have used.', 'Url', '', NULL, 'https://www.memverse.com/blog/main/Tag_Your_Memory_Verses', '2010-08-13 14:17:44', '2010-08-13 14:17:44'),
(19, 4, 'Boost your reference recall to 25%', 'Try to take the reference recall test as often as possible as this will help your memorization a lot.', 'References', '', 25, '', '2010-08-13 14:21:27', '2010-08-13 14:21:27'),
(20, 17, 'An impossible task!', 'You''ve reached the maximum level. Check back soon, though, we''re adding levels all the time.', '', '', NULL, '', '2010-08-13 14:22:06', '2011-01-14 15:36:43'),
(21, 5, 'Learning 40 Verses', '', 'Verses', 'Learning', 40, '', '2010-08-13 14:27:41', '2010-08-13 14:27:41'),
(22, 5, 'Memorize 20 Verses', '', 'Verses', 'Memorized', 20, '', '2010-08-13 14:28:22', '2010-08-13 14:28:22'),
(23, 5, 'Sharpen your Accuracy to 16%', 'We know that seems low but the accuracy test is tough. Take it regularly to assess whether you''re being to lenient when rating your recall.', 'Accuracy', '', 16, '', '2010-08-13 14:30:20', '2010-08-13 14:30:20'),
(24, 5, 'Raise your reference recall to 30%', '', 'References', '', 30, '', '2010-08-13 15:20:52', '2010-09-18 10:59:35'),
(25, 5, 'Learn a verse from the gospels', '', 'Gospels', 'Learning', 1, '', '2010-08-13 15:39:14', '2010-08-13 15:39:14'),
(26, 5, 'Learn a verse from the epistles', '', 'Epistles', 'Learning', 1, '', '2010-08-13 15:40:00', '2010-08-13 15:40:00'),
(27, 5, 'Learn a verse from the wisdom literature', '', 'Wisdom', 'Learning', 1, '', '2010-08-13 15:40:38', '2010-08-13 15:40:38'),
(28, 5, 'Learn a verse from biblical history', '', 'History', 'Learning', 1, '', '2010-08-13 15:41:52', '2010-08-13 15:41:52'),
(29, 5, 'Learn a verse from biblical prophecy', 'A major or a minor prophet. Your choice.', 'Prophecy', 'Learning', 1, '', '2010-08-13 15:42:49', '2010-08-13 15:42:49'),
(30, 5, 'Tag 8 Verses', '', 'Tags', '', 8, '', '2010-08-13 16:45:43', '2010-08-13 16:45:43'),
(31, 6, 'Memorize 30 Verses', '', 'Verses', 'Memorized', 30, '', '2010-08-13 20:40:37', '2010-08-13 20:40:37'),
(32, 6, 'Learning 50 Verses', '', 'Verses', 'Learning', 50, '', '2010-08-13 20:41:12', '2010-08-13 20:41:12'),
(33, 6, 'Learning 5 verses from the gospels', '', 'Gospels', 'Learning', 5, '', '2010-08-13 20:42:08', '2010-08-13 20:42:08'),
(34, 6, 'Learning 5 verses from the epistles', '', 'Epistles', 'Learning', 5, '', '2010-08-13 20:42:40', '2010-08-13 20:43:04'),
(35, 6, 'Learning 3 verses from the wisdom literature', '', 'Wisdom', 'Learning', 3, '', '2010-08-13 20:43:42', '2010-08-13 20:43:42'),
(36, 6, 'Learning 3 verses from biblical history', '', 'History', 'Learning', 3, '', '2010-08-13 20:44:21', '2010-08-13 20:44:21'),
(37, 6, 'Learning 3 verses of prophecy', '', 'Prophecy', 'Learning', 3, '', '2010-08-13 20:45:03', '2010-08-13 20:45:03'),
(38, 6, 'Increase accuracy to 17%', '', 'Accuracy', '', 17, '', '2010-08-13 20:45:49', '2010-08-13 20:45:49'),
(39, 6, 'Raise your reference recall to 35%', '', 'References', '', 35, '', '2010-08-13 20:46:52', '2010-09-18 10:59:14'),
(40, 6, 'Tag 10 verses', '', 'Tags', '', 10, '', '2010-08-13 20:47:45', '2010-08-13 20:56:39'),
(41, 6, 'Refer a new user to Memverse', 'The new user will have to list you as the person who referred you. They can use either your username (login), name, or email address.', 'Referrals', '', 1, '', '2010-08-13 20:49:03', '2010-08-13 20:49:03'),
(42, 7, 'Learning 75 verses', '', 'Verses', 'Learning', 75, '', '2010-08-16 23:07:09', '2010-08-16 23:08:19'),
(43, 7, 'Memorize 40 verses', '', 'Verses', 'Memorized', 40, '', '2010-08-16 23:09:13', '2010-08-16 23:09:13'),
(44, 7, 'Learning 8 verses from the gospels', '', 'Gospels', 'Learning', 8, '', '2010-08-16 23:10:40', '2010-08-16 23:10:40'),
(45, 7, 'Memorize 1 verse from the gospels', '', 'Gospels', 'Memorized', 1, '', '2010-08-16 23:11:37', '2010-08-16 23:11:37'),
(46, 7, 'Learn 8 verses from the epistles', '', 'Epistles', 'Learning', 8, '', '2010-08-16 23:12:52', '2010-08-16 23:12:52'),
(47, 7, 'Memorize 1 verse from the epistles', '', 'Epistles', 'Memorized', 1, '', '2010-08-16 23:14:05', '2010-08-16 23:14:05'),
(48, 7, 'Learn 4 verses from the wisdom literature', '', 'Wisdom', 'Learning', 4, '', '2010-08-16 23:15:45', '2010-08-16 23:15:45'),
(49, 7, 'Memorize 1 verse from the wisdom literature', '', 'Wisdom', 'Memorized', 1, '', '2010-08-16 23:17:01', '2010-08-16 23:17:01'),
(50, 7, 'Learn 4 verses of biblical history', '', 'History', 'Learning', 4, '', '2010-08-16 23:18:11', '2010-08-16 23:18:11'),
(51, 7, 'Memorize 1 verse of biblical history', '', 'History', 'Memorized', 1, '', '2010-08-16 23:19:15', '2010-08-16 23:19:15'),
(52, 7, 'Learn 4 verses of biblical prophecy', '', 'Prophecy', 'Learning', 4, '', '2010-08-16 23:20:46', '2010-08-16 23:20:46'),
(53, 7, 'Memorize 1 verse of biblical prophecy', '', 'Prophecy', 'Memorized', 1, '', '2010-08-16 23:21:42', '2010-08-16 23:21:42'),
(54, 7, 'Maintain 18% on the accuracy test', '', 'Accuracy', '', 18, '', '2010-08-16 23:23:10', '2010-08-16 23:23:10'),
(55, 7, 'Recall 40% of your verse references', '', 'References', '', 40, '', '2010-08-16 23:24:31', '2010-09-18 10:58:47'),
(56, 7, 'Start learning a complete chapter of the bible', 'We recommend a short psalm to get started.', 'Chapters', 'Learning', 1, '', '2010-08-16 23:25:59', '2010-08-16 23:48:13'),
(57, 7, 'Tag 15 of your memory verses', '', 'Tags', '', 15, '', '2010-08-16 23:27:00', '2010-08-16 23:27:00'),
(58, 8, 'Learning a total of 100 verses', 'Congratulations. You''re well on your way to having memorized 100 verses of the bible!', 'Verses', 'Learning', 100, '', '2010-08-17 22:05:11', '2010-08-17 22:05:11'),
(59, 8, 'Memorize 50 verses', '', 'Verses', 'Memorized', 50, '', '2010-08-17 22:06:52', '2010-08-17 22:06:52'),
(60, 8, 'Learn 10 verses from the gospels', '', 'Gospels', 'Learning', 10, '', '2010-08-17 22:09:49', '2010-08-17 22:09:49'),
(61, 8, 'Memorize 5 verses from the gospels', '', 'Gospels', 'Memorized', 5, '', '2010-08-17 22:10:45', '2010-08-17 22:10:45'),
(62, 8, 'Learn 10 verses from the epistles', '', 'Epistles', 'Learning', 10, '', '2010-08-17 22:12:14', '2010-08-17 22:12:14'),
(63, 8, 'Memorize 5 verses from the epistles', '', 'Epistles', 'Memorized', 5, '', '2010-08-17 22:14:21', '2010-10-25 14:22:34'),
(64, 8, 'Learn 5 verses from the wisdom literature', '', 'Wisdom', 'Learning', 5, '', '2010-08-17 22:16:30', '2010-08-17 22:16:30'),
(65, 8, 'Memorize 3 verses from the wisdom literature', '', 'Wisdom', 'Memorized', 3, '', '2010-08-17 22:21:40', '2010-08-17 22:21:40'),
(66, 8, 'Learn 5 verses of biblical history', '', 'History', 'Learning', 5, '', '2010-08-17 22:23:07', '2010-08-17 22:23:07'),
(67, 8, 'Memorize 3 verses of biblical history', '', 'History', 'Memorized', 3, '', '2010-08-17 22:23:51', '2010-08-17 22:23:51'),
(68, 8, 'Learn 5 verses of biblical prophecy', '', 'Prophecy', 'Learning', 5, '', '2010-08-17 22:25:18', '2010-08-17 22:25:47'),
(69, 8, 'Memorize 3 verses of biblical prophecy', '', 'Prophecy', 'Memorized', 3, '', '2010-08-17 22:26:37', '2010-08-17 22:26:37'),
(70, 8, 'Increase your accuracy test score to 19%', '', 'Accuracy', '', 19, '', '2010-08-17 22:29:26', '2010-08-17 22:29:26'),
(71, 8, 'Recall 45% of your verse references', '', 'References', '', 45, '', '2010-08-17 22:30:07', '2010-09-18 10:58:16'),
(72, 3, 'Read about the eFactor', 'The eFactor is a measure of how difficult a verse is to memorize.', 'Url', '', NULL, 'https://www.memverse.com/blog/main/The_Mysterious_eFactor', '2010-08-17 22:35:43', '2010-08-17 22:35:43'),
(73, 8, 'Tag 20 of your memory verses', '', 'Tags', '', 20, '', '2010-08-17 22:39:48', '2010-08-17 22:39:48'),
(74, 9, 'Learning a total of 125 verses', '', 'Verses', 'Learning', 125, '', '2010-08-19 22:53:20', '2010-08-19 22:53:20'),
(75, 9, 'Memorize 75 verses', '', 'Verses', 'Memorized', 75, '', '2010-08-19 22:54:35', '2010-08-19 22:54:35'),
(76, 9, 'Learn 13 verses from the gospels', '', 'Gospels', 'Learning', 13, '', '2010-08-19 22:55:49', '2010-08-19 22:55:49'),
(77, 9, 'Memorize 8 verses from the gospels', '', 'Gospels', 'Memorized', 8, '', '2010-08-19 22:56:50', '2010-08-19 22:56:50'),
(78, 9, 'Learn 13 verses from the epistles', '', 'Epistles', 'Learning', 13, '', '2010-08-19 22:58:07', '2010-08-19 22:58:07'),
(79, 9, 'Memorize 8 verses from the epistles', '', 'Epistles', 'Memorized', 8, '', '2010-08-19 22:59:00', '2010-08-19 22:59:00'),
(80, 9, 'Learn 6 verses from the wisdom literature', '', 'Wisdom', 'Learning', 6, '', '2010-08-19 23:00:07', '2010-08-19 23:00:07'),
(81, 9, 'Memorize 4 verses from the wisdom literature', '', 'Wisdom', 'Memorized', 4, '', '2010-08-19 23:01:22', '2010-08-19 23:01:22'),
(82, 9, 'Learn 6 verses of biblical history', '', 'History', 'Learning', 6, '', '2010-08-19 23:03:11', '2010-08-19 23:03:11'),
(83, 9, 'Memorize 4 verses of biblical history', '', 'History', 'Memorized', 4, '', '2010-08-19 23:04:02', '2010-08-19 23:04:02'),
(84, 9, 'Learn 6 verses of biblical prophecy', '', 'Prophecy', 'Learning', 6, '', '2010-08-19 23:05:09', '2010-08-19 23:05:09'),
(85, 9, 'Memorize 4 verses of biblical prophecy', '', 'Prophecy', 'Memorized', 4, '', '2010-08-19 23:06:04', '2010-08-19 23:06:04'),
(86, 9, 'Boost your accuracy test score to 20%', '', 'Accuracy', '', 20, '', '2010-08-19 23:07:51', '2010-08-19 23:07:51'),
(87, 9, 'Recall 50% of your verse references', '', 'References', '', 50, '', '2010-08-19 23:08:36', '2010-09-18 10:57:44'),
(88, 9, 'Memorize 1 chapter of the bible', '', 'Chapters', 'Memorized', 1, '', '2010-08-19 23:09:49', '2010-08-19 23:24:22'),
(89, 9, 'Tag 25 of your memory verses', '', 'Tags', '', 25, '', '2010-08-19 23:10:46', '2010-08-19 23:10:46'),
(90, 7, 'Read how to review an entire chapter', '', 'Url', '', NULL, 'https://www.memverse.com/blog/main/Review_Entire_Chapters', '2010-08-19 23:15:07', '2010-08-19 23:15:07'),
(91, 10, 'Learning a total of 150 verses', '', 'Verses', 'Learning', 150, '', '2010-08-19 23:27:49', '2010-08-19 23:27:49'),
(92, 10, 'Memorize 100 verses', 'Congratulations on reaching 100 verses!', 'Verses', 'Memorized', 100, '', '2010-08-19 23:28:53', '2010-08-19 23:28:53'),
(93, 10, 'Learn 15 verses from the gospels', '', 'Gospels', 'Learning', 15, '', '2010-08-19 23:30:13', '2010-08-19 23:30:13'),
(94, 10, 'Memorize 10 verses from the gospels', '', 'Gospels', 'Memorized', 10, '', '2010-08-19 23:31:18', '2010-08-19 23:31:18'),
(95, 10, 'Learn 15 verses from the epistles', '', 'Epistles', 'Learning', 15, '', '2010-08-19 23:32:12', '2010-08-19 23:32:12'),
(96, 10, 'Memorize 10 verses from the epistles', '', 'Epistles', 'Memorized', 10, '', '2010-08-19 23:33:13', '2010-08-19 23:33:13'),
(97, 10, 'Learn 8 verses from the wisdom literature', '', 'Wisdom', 'Learning', 8, '', '2010-08-19 23:34:12', '2010-08-19 23:34:12'),
(98, 10, 'Memorize 5 verses from the wisdom literature', '', 'Wisdom', 'Memorized', 5, '', '2010-08-19 23:35:05', '2010-08-19 23:35:05'),
(99, 10, 'Learn 8 verses of biblical history', '', 'History', 'Learning', 8, '', '2010-08-19 23:36:31', '2010-08-19 23:36:31'),
(100, 10, 'Memorize 5 verses of biblical history', '', 'History', 'Memorized', 5, '', '2010-08-19 23:37:13', '2010-08-19 23:37:13'),
(101, 10, 'Learn 8 verses of biblical prophecy', '', 'Prophecy', 'Learning', 8, '', '2010-08-19 23:37:58', '2010-08-19 23:37:58'),
(102, 10, 'Memorize 5 verses of biblical prophecy', '', 'Prophecy', 'Memorized', 5, '', '2010-08-19 23:38:52', '2010-08-19 23:38:52'),
(103, 10, 'Maintain 25% on the accuracy test', '', 'Accuracy', '', 25, '', '2010-08-19 23:41:04', '2010-08-19 23:41:04'),
(104, 10, 'Recall 55% of your verse references', 'Practice your reference recall frequently.', 'References', '', 55, '', '2010-08-19 23:41:52', '2010-09-18 10:57:13'),
(105, 10, 'Learning 2 chapters of the bible', '', 'Chapters', 'Learning', 2, '', '2010-08-19 23:42:42', '2010-08-19 23:42:42'),
(106, 10, 'Refer 2 people to Memverse', '', 'Referrals', '', 2, '', '2010-08-19 23:43:29', '2010-08-19 23:43:29'),
(107, 10, 'Tag 30 of your memory verses', '', 'Tags', '', 30, '', '2010-08-19 23:44:16', '2010-08-19 23:44:16'),
(108, 11, 'Learn 175 verses', '', 'Verses', 'Learning', 175, '', '2010-09-01 15:40:16', '2010-09-01 15:40:16'),
(109, 11, 'Memorize 125 Verses', '', 'Verses', 'Memorized', 125, '', '2010-09-01 15:41:00', '2010-09-01 15:41:00'),
(110, 11, 'Learn 18 verses from the gospels', '', 'Gospels', 'Learning', 18, '', '2010-09-01 15:42:43', '2010-09-01 15:42:43'),
(111, 11, 'Memorize 13 verses from the gospels', '', 'Gospels', 'Memorized', 13, '', '2010-09-01 15:43:18', '2010-09-01 15:43:18'),
(112, 11, 'Learn 18 verses from the epistles', '', 'Epistles', 'Learning', 18, '', '2010-09-01 15:44:05', '2010-09-01 15:44:05'),
(113, 11, 'Memorize 13 verses from the epistles', '', 'Epistles', 'Memorized', 13, '', '2010-09-01 15:49:11', '2010-09-01 15:49:11'),
(114, 11, 'Learn 9 verses from the wisdom literature', '', 'Wisdom', 'Learning', 9, '', '2010-09-01 15:50:43', '2010-09-01 15:50:43'),
(115, 11, 'Memorize 6 verses from the wisdom literature', '', 'Wisdom', 'Memorized', 6, '', '2010-09-01 15:51:31', '2010-09-01 15:51:31'),
(116, 11, 'Learn 9 verses of biblical history', '', 'History', 'Learning', 9, '', '2010-09-01 15:53:27', '2010-09-01 15:53:27'),
(117, 11, 'Memorize 6 verses of biblical history', '', 'History', 'Memorized', 6, '', '2010-09-01 15:53:59', '2010-09-01 15:53:59'),
(118, 11, 'Learn 9 verses of biblical prophecy', '', 'Prophecy', 'Learning', 9, '', '2010-09-01 15:54:32', '2010-09-01 15:54:32'),
(119, 11, 'Memorize 6 verses of biblical prophecy', '', 'Prophecy', 'Learning', 6, '', '2010-09-01 15:55:10', '2010-09-01 15:55:10'),
(120, 11, 'Raise your overall accuracy to 26%', '', 'Accuracy', '', 26, '', '2010-09-01 15:57:28', '2010-09-01 15:57:28'),
(121, 11, 'Maintain your reference recall > 60%', '', 'References', '', 60, '', '2010-09-01 15:58:39', '2010-09-18 10:56:23'),
(122, 11, 'Tag 35 of your memory verses', '', 'Tags', '', 35, '', '2010-09-01 15:59:24', '2010-09-01 15:59:24'),
(123, 12, 'Learn 200 verses', '', 'Verses', 'Learning', 200, '', '2010-09-08 14:43:10', '2010-09-08 14:43:10'),
(124, 12, 'Memorize 150 Verses', '', 'Verses', 'Memorized', 150, '', '2010-09-08 14:43:59', '2010-09-08 14:43:59'),
(125, 12, 'Learn 20 verses from the gospels', '', 'Gospels', 'Learning', 20, '', '2010-09-08 14:44:49', '2010-09-08 14:44:49'),
(126, 12, 'Memorize 15 verses from the gospels', '', 'Gospels', 'Memorized', 15, '', '2010-09-08 14:45:36', '2010-09-08 14:45:36'),
(127, 12, 'Learn 20 verses from the epistles', '', 'Epistles', 'Learning', 20, '', '2010-09-08 14:46:14', '2010-09-08 14:46:14'),
(128, 12, 'Memorize 20 verses from the epistles', '', 'Epistles', 'Memorized', 20, '', '2010-09-08 14:46:52', '2010-09-08 14:46:52'),
(129, 12, 'Learn 10 verses from the wisdom literature', '', 'Wisdom', 'Learning', 10, '', '2010-09-08 14:48:06', '2010-09-08 14:48:06'),
(130, 12, 'Memorize 8 verses from the wisdom literature', '', 'Wisdom', 'Memorized', 8, '', '2010-09-08 14:48:47', '2010-09-08 14:48:47'),
(131, 12, 'Learn 10 verses of biblical history', '', 'History', 'Learning', 10, '', '2010-09-08 14:52:14', '2010-09-08 14:52:14'),
(132, 12, 'Memorize 8 verses of biblical history', '', 'History', 'Memorized', 8, '', '2010-09-08 14:52:58', '2010-09-08 14:52:58'),
(133, 12, 'Learn 10 verses of biblical prophecy', '', 'Prophecy', 'Learning', 10, '', '2010-09-08 14:53:38', '2010-09-08 14:53:38'),
(134, 12, 'Memorize 8 verses of biblical prophecy', '', 'Prophecy', 'Memorized', 8, '', '2010-09-08 14:54:16', '2010-09-08 14:54:16'),
(135, 12, 'Maintain accuracy > 27%', '', 'Accuracy', '', 27, '', '2010-09-08 14:55:07', '2010-09-08 14:55:07'),
(136, 12, 'Raise your reference recall to 65%', '', 'References', '', 65, '', '2010-09-08 14:55:42', '2010-09-18 10:55:51'),
(137, 12, 'Memorize two chapters of the bible', '', 'Chapters', 'Memorized', 2, '', '2010-09-08 14:57:01', '2010-09-09 08:10:33'),
(138, 12, 'Tag 40 of your memory verses', '', 'Tags', '', 40, '', '2010-09-08 14:57:45', '2010-09-08 14:57:45'),
(139, 13, 'Learn 225 verses', '', 'Verses', 'Learning', 225, '', '2010-09-18 10:26:42', '2010-09-18 10:27:20'),
(140, 13, 'Memorize 175 Verses', '', 'Verses', 'Memorized', 175, '', '2010-09-18 10:28:11', '2010-09-18 10:28:40'),
(141, 13, 'Learning 23 verses from the gospels', '', 'Gospels', 'Learning', 23, '', '2010-09-18 10:29:54', '2010-09-18 10:29:54'),
(142, 13, 'Memorize 18 verses from the gospels', '', 'Gospels', 'Memorized', 18, '', '2010-09-18 10:31:12', '2010-09-18 10:31:12'),
(143, 13, 'Learning 23 verses from the epistles', '', 'Epistles', 'Learning', 23, '', '2010-09-18 10:32:13', '2010-09-18 10:32:13'),
(144, 13, 'Memorize 18 verses from the epistles', '', 'Epistles', 'Memorized', 18, '', '2010-09-18 10:32:48', '2010-09-18 10:32:48'),
(145, 13, 'Learning 11 verses from the wisdom literature', '', 'Wisdom', 'Learning', 11, '', '2010-09-18 10:34:27', '2010-09-18 10:34:27'),
(146, 13, 'Memorize 9 verses from the wisdom literature', '', 'Wisdom', 'Memorized', 9, '', '2010-09-18 10:35:07', '2010-09-18 10:35:07'),
(147, 13, 'Learning 11 verses from biblical history', '', 'History', 'Learning', 11, '', '2010-09-18 10:35:54', '2010-09-18 10:35:54'),
(148, 13, 'Memorize 9 verses of biblical history', '', 'History', 'Memorized', 9, '', '2010-09-18 10:36:33', '2010-09-18 10:36:33'),
(149, 13, 'Learning 11 verses of biblical prophecy', '', 'Prophecy', 'Learning', 9, '', '2010-09-18 10:37:19', '2010-09-18 10:37:19'),
(150, 13, 'Memorize 9 verses of biblical prophecy', '', 'Prophecy', 'Memorized', 9, '', '2010-09-18 10:37:52', '2010-09-18 10:37:52'),
(151, 13, 'Maintain reference recall > 66%', 'Know the references for 2/3 of your memory verses', 'References', '', 66, '', '2010-09-18 10:47:11', '2010-09-18 10:52:58'),
(152, 13, 'Maintain 28% on the accuracy test', '', 'Accuracy', '', 28, '', '2010-09-18 10:53:47', '2010-09-18 10:53:47'),
(153, 13, 'Learn 3 chapters of the bible', '', 'Chapters', 'Learning', 3, '', '2010-09-18 10:54:18', '2010-09-18 10:54:18'),
(154, 13, 'Tag 45 of your memory verses', 'Tag another 5 verses', 'Tags', '', 45, '', '2010-09-18 10:55:10', '2010-09-18 10:55:10'),
(155, 5, 'Learn to avoid mistakes when entering verses', '', 'Url', '', NULL, 'https://www.memverse.com/blog/main/Common_Mistakes_When_Entering_Verses', '2010-09-18 11:04:50', '2010-09-18 11:04:50'),
(156, 14, 'Learn 250 verses', '', 'Verses', 'Learning', 250, '', '2010-09-25 18:04:17', '2010-09-25 18:04:17'),
(157, 14, 'Memorize 200 verses', '', 'Verses', 'Memorized', 200, '', '2010-09-25 18:04:50', '2010-09-25 18:04:50'),
(158, 14, 'Learning 25 verses from the gospels', '', 'Gospels', 'Learning', 25, '', '2010-09-25 18:06:56', '2010-09-25 18:06:56'),
(159, 14, 'Memorize 20 verses from the gospels', '', 'Gospels', 'Memorized', 20, '', '2010-09-25 18:07:28', '2010-09-25 18:07:28'),
(160, 14, 'Learning 25 verses from the epistles', '', 'Epistles', 'Learning', 25, '', '2010-09-25 18:08:15', '2010-09-25 18:08:15'),
(161, 14, 'Memorize 20 verses from the epistles', '', 'Epistles', 'Memorized', 20, '', '2010-09-25 18:08:49', '2010-09-25 18:08:49'),
(162, 14, 'Learning 13 verses from the wisdom literature', '', 'Wisdom', 'Learning', 13, '', '2010-09-25 18:09:32', '2010-09-25 18:09:32'),
(163, 14, 'Memorize 10 verses from the wisdom literature', '', 'Wisdom', 'Memorized', 10, '', '2010-09-25 18:10:04', '2010-09-25 18:10:33'),
(164, 14, 'Learning 13 verses from biblical history', '', 'History', 'Learning', 10, '', '2010-09-25 18:11:19', '2010-09-25 18:11:19'),
(165, 14, 'Memorize 10 verses of biblical history', '', 'History', 'Memorized', 10, '', '2010-09-25 18:12:06', '2010-09-25 18:12:06'),
(166, 14, 'Learning 13 verses of biblical prophecy', '', 'Prophecy', 'Learning', 13, '', '2010-09-25 18:13:07', '2010-09-25 18:13:07'),
(167, 14, 'Memorize 10 verses of biblical prophecy', '', 'Prophecy', 'Memorized', 10, '', '2010-09-25 18:13:40', '2010-09-25 18:13:40'),
(168, 14, 'Recall 67% of your verse references', '', 'References', '', 67, '', '2010-09-25 18:33:36', '2010-09-25 18:33:36'),
(169, 14, 'Maintain 29% on the accuracy test', '', 'Accuracy', '', 29, '', '2010-09-25 18:34:41', '2010-09-25 18:34:41'),
(170, 14, 'Tag 50 of your memory verses', '', 'Tags', '', 50, '', '2010-09-25 18:35:13', '2010-09-25 18:35:13'),
(171, 14, 'Refer a new user to Memverse', '', 'Referrals', '', 3, '', '2010-09-25 18:36:59', '2010-09-25 18:36:59'),
(172, 3, 'Read about the Feedback Forum', 'The feedback forum is for more than just giving feedback. You can vote for new features that you''d like to see on Memverse.', 'Url', '', NULL, 'https://www.memverse.com/blog/main/Ideas__Questions__Problems_or_Praise_', '2010-09-25 19:53:59', '2010-09-25 19:54:13'),
(173, 15, 'Learn 275 verses', '', 'Verses', 'Learning', 275, '', '2010-10-27 15:39:42', '2010-10-27 15:39:42'),
(174, 15, 'Memorize 225 Verses', '', 'Verses', 'Memorized', 225, '', '2010-10-27 15:40:18', '2010-10-27 15:40:18'),
(175, 15, 'Learn 28 verses from the gospels', '', 'Gospels', 'Learning', 28, '', '2010-10-27 15:41:11', '2010-10-27 15:41:11'),
(176, 15, 'Memorize 23 verses from the gospels', '', 'Gospels', 'Memorized', 23, '', '2010-10-27 15:41:41', '2010-10-27 15:41:41'),
(177, 15, 'Learn 28 verses from the epistles', '', 'Epistles', 'Learning', 28, '', '2010-10-27 15:42:38', '2010-10-27 15:42:38'),
(178, 15, 'Memorize 23 verses from the epistles', '', 'Epistles', 'Memorized', 23, '', '2010-10-27 15:43:12', '2010-10-27 15:43:12'),
(179, 15, 'Learn 14 verses from the wisdom literature', '', 'Wisdom', 'Learning', 14, '', '2010-10-27 15:44:01', '2010-10-27 15:44:01'),
(180, 15, 'Memorize 11 verses from the wisdom literature', '', 'Wisdom', 'Memorized', 11, '', '2010-10-27 15:44:23', '2010-10-27 15:44:23'),
(181, 15, 'Learn 14 verses of biblical history', '', 'History', 'Learning', 14, '', '2010-10-27 15:45:03', '2010-10-27 15:45:03'),
(182, 15, 'Memorize 11 verses of biblical history', '', 'History', 'Memorized', 11, '', '2010-10-27 15:45:26', '2010-10-27 15:45:26'),
(183, 15, 'Learn 14 verses of biblical prophecy', '', 'Prophecy', 'Learning', 14, '', '2010-10-27 15:45:59', '2010-10-27 15:45:59'),
(184, 15, 'Memorize 11 verses of biblical prophecy', '', 'Prophecy', 'Memorized', 11, '', '2010-10-27 15:46:16', '2010-10-27 15:46:16'),
(185, 15, 'Maintain accuracy > 30%', '', 'Accuracy', '', 30, '', '2010-10-27 15:47:06', '2010-10-27 15:47:06'),
(186, 15, 'Recall 68% of your verse references', '', 'References', '', 68, '', '2010-10-27 15:48:15', '2010-10-27 15:48:15'),
(187, 15, 'Memorize 3 chapters of the bible', '', 'Chapters', 'Memorized', 3, '', '2010-10-27 15:49:11', '2010-10-27 15:49:11'),
(188, 15, 'Tag 55 of your memory verses', '', 'Tags', '', 55, '', '2010-10-27 15:49:47', '2010-10-27 15:49:47'),
(189, 16, 'Learn 300 verses', '', 'Verses', 'Learning', 300, '', '2011-01-14 15:18:43', '2011-01-14 15:18:43'),
(190, 16, 'Memorize 250 verses', '', 'Verses', 'Memorized', 250, '', '2011-01-14 15:19:53', '2011-01-14 15:19:53'),
(191, 16, 'Learn 30 verses from the gospels', '', 'Gospels', 'Learning', 30, '', '2011-01-14 15:21:07', '2011-01-14 15:21:07'),
(192, 16, 'Memorize 25 verses from the gospels', '', 'Gospels', 'Memorized', 25, '', '2011-01-14 15:22:19', '2011-01-14 15:22:19'),
(193, 16, 'Learn 30 verses from the epistles', '', 'Epistles', 'Learning', 30, '', '2011-01-14 15:23:45', '2011-01-14 15:23:45'),
(194, 16, 'Memorize 25 verses from the espistles', '', 'Epistles', 'Memorized', 25, '', '2011-01-14 15:24:29', '2011-01-14 15:24:29'),
(195, 16, 'Learn 15 verses from the wisdom literature', '', 'Wisdom', 'Learning', 15, '', '2011-01-14 15:25:43', '2011-01-14 15:25:43'),
(196, 16, 'Memorize 13 verses from the wisdom literature', '', 'Wisdom', 'Memorized', 13, '', '2011-01-14 15:26:20', '2011-01-14 15:26:20'),
(197, 16, 'Learn 15 verses of biblical history', '', 'History', 'Learning', 15, '', '2011-01-14 15:27:15', '2011-01-14 15:27:15'),
(198, 16, 'Memorize 13 verses of biblical history', '', 'History', 'Memorized', 13, '', '2011-01-14 15:28:40', '2011-01-14 15:28:40'),
(199, 16, 'Learn 15 verses of biblical prophecy', '', 'Prophecy', 'Learning', 15, '', '2011-01-14 15:30:07', '2011-01-14 15:30:33'),
(200, 16, 'Memorize 13 verses of biblical prophecy', '', 'Prophecy', 'Memorized', 13, '', '2011-01-14 15:31:25', '2011-01-14 15:32:17'),
(201, 16, 'Maintain accuracy > 31%', '', 'Accuracy', '', 31, '', '2011-01-14 15:32:54', '2011-01-14 15:32:54'),
(202, 16, 'Recall 69% of your verse references', '', 'References', '', 69, '', '2011-01-14 15:33:27', '2011-01-14 15:33:27'),
(203, 16, 'Learn 4 complete chapters of the bible', '', 'Chapters', 'Learning', 4, '', '2011-01-14 15:35:23', '2011-01-14 15:35:23'),
(204, 16, 'Tag 60 of your memory verses', '', 'Tags', '', 60, '', '2011-01-14 15:36:02', '2011-01-14 15:36:02');