-
Notifications
You must be signed in to change notification settings - Fork 1
/
wpbackfeed.sql
413 lines (362 loc) · 206 KB
/
wpbackfeed.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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
-- MySQL dump 10.13 Distrib 5.5.46, for debian-linux-gnu (x86_64)
--
-- Host: wpbackfeed.cb6pht5ogo4h.us-east-1.rds.amazonaws.com Database: wpbackfeed
-- ------------------------------------------------------
-- Server version 5.6.23-log
/*!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 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'Mr WordPress','','https://wordpress.org/','','2015-08-10 14:43:02','2015-08-10 14:43:02','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0),(2,1,'Lindsey','[email protected]','http://www.arvut.org/1/dft','107.173.157.59','2015-10-20 12:41:39','2015-10-20 12:41:39','I was just looking at your Hello world! - Backfeed site and see that your website has the potential to get a lot of visitors. I just want to tell you, In case you didn\'t already know... There is a website network which already has more than 16 million users, and most of the users are looking for topics like yours. By getting your site on this service you have a chance to get your site more popular than you can imagine. It is free to sign up and you can find out more about it here: http://bbqr.me/4fj5 - Now, let me ask you... Do you need your site to be successful to maintain your way of life? Do you need targeted visitors who are interested in the services and products you offer? Are looking for exposure, to increase sales, and to quickly develop awareness for your site? If your answer is YES, you can achieve these things only if you get your website on the service I am talking about. This traffic service advertises you to thousands, while also giving you a chance to test the service before paying anything. All the popular sites are using this network to boost their readership and ad revenue! Why aren’t you? And what is better than traffic? It’s recurring traffic! That\'s how running a successful website works... Here\'s to your success! Find out more here: http://tgi.link/dcf2',0,'0','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',0,0),(3,1,'Sandra','[email protected]','http://jdivert.com/2anlh','172.245.120.6','2015-10-31 18:48:10','2015-10-31 18:48:10','Hi my name is Sandra and I just wanted to drop you a quick note here instead of calling you. I came to your Hello world! - Backfeed page and noticed you could have a lot more traffic. I have found that the key to running a successful website is making sure the visitors you are getting are interested in your subject matter. There is a company that you can get targeted traffic from and they let you try the service for free for 7 days. I managed to get over 300 targeted visitors to day to my website. Check it out here: http://s.beautheac.net/2j',0,'0','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_mc4wp_log`
--
DROP TABLE IF EXISTS `wp_mc4wp_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mc4wp_log` (
`ID` bigint(20) NOT NULL AUTO_INCREMENT,
`email` varchar(255) NOT NULL,
`list_ids` varchar(255) NOT NULL,
`method` varchar(255) NOT NULL,
`type` varchar(255) NOT NULL,
`success` tinyint(1) DEFAULT '1',
`data` text,
`related_object_ID` bigint(20) DEFAULT NULL,
`url` varchar(255) DEFAULT '',
`datetime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_mc4wp_log`
--
LOCK TABLES `wp_mc4wp_log` WRITE;
/*!40000 ALTER TABLE `wp_mc4wp_log` DISABLE KEYS */;
INSERT INTO `wp_mc4wp_log` VALUES (1,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"122.173.210.163\"}',71,'http://www.bustybay.com/?page=1785','2015-10-20 10:00:25'),(2,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"95.132.57.47\"}',71,'http://backfeed.cc/','2015-10-20 20:46:40'),(3,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"58.106.5.210\"}',71,'http://backfeed.cc/','2015-10-21 05:16:09'),(4,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"158.169.40.8\"}',71,'http://backfeed.cc/','2015-10-23 07:55:00'),(5,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"86.190.74.75\"}',71,'http://backfeed.cc/','2015-10-23 16:37:12'),(6,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"81.193.98.123\"}',71,'http://backfeed.cc/','2015-10-24 16:09:47'),(7,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"46.14.74.122\"}',71,'http://backfeed.cc/','2015-10-24 19:24:51'),(8,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"81.88.231.122\"}',71,'http://backfeed.cc/','2015-10-25 16:30:08'),(9,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"80.179.204.39\"}',71,'http://backfeed.cc/','2015-10-26 12:26:56'),(10,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"80.179.204.39\"}',71,'http://backfeed.cc/','2015-10-26 12:27:16'),(11,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"89.98.149.128\"}',71,'http://backfeed.cc/','2015-10-26 12:38:06'),(12,'[email protected]','040512b5ed','form','form',0,'{\"OPTIN_IP\":\"199.203.151.209\"}',71,'http://backfeed.cc/','2015-10-27 15:23:37'),(13,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"81.82.236.20\"}',71,'http://backfeed.cc/','2015-10-27 18:20:39'),(14,'[email protected]','040512b5ed','form','form',0,'{\"OPTIN_IP\":\"199.203.151.209\"}',71,'http://backfeed.cc/','2015-10-28 08:54:02'),(15,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"93.46.39.194\"}',71,'http://backfeed.cc/','2015-10-28 20:32:22'),(16,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"179.197.212.222\"}',71,'http://backfeed.cc/','2015-10-28 23:59:04'),(17,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"80.72.12.5\"}',71,'http://backfeed.cc./','2015-10-30 13:58:11'),(18,'[email protected]','040512b5ed','form','form',0,'{\"OPTIN_IP\":\"212.235.66.73\"}',71,'http://backfeed.cc/','2015-11-01 08:41:00'),(19,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"212.235.66.73\"}',71,'http://backfeed.cc/','2015-11-01 08:41:17'),(20,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"82.227.165.44\"}',71,'http://backfeed.cc/','2015-11-01 22:54:56'),(21,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"188.167.32.36\"}',71,'http://backfeed.cc/','2015-11-02 07:02:58'),(22,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"86.149.159.183\"}',71,'http://backfeed.cc/','2015-11-04 14:02:12'),(23,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"176.63.20.156\"}',71,'http://backfeed.cc/','2015-11-05 18:34:26'),(24,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"78.76.116.44\"}',71,'http://backfeed.cc/','2015-11-06 21:53:35'),(25,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"46.126.153.21\"}',71,'http://backfeed.cc/','2015-11-08 22:52:24'),(26,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"89.159.88.26\"}',71,'http://backfeed.cc/','2015-11-09 10:15:43'),(27,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"58.152.54.131\"}',71,'http://backfeed.cc/','2015-11-09 17:12:41'),(28,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"84.103.184.165\"}',71,'http://backfeed.cc/','2015-11-10 09:47:27'),(29,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"91.143.79.66\"}',71,'http://backfeed.cc/','2015-11-10 11:58:02'),(30,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"83.162.47.67\"}',71,'http://backfeed.cc/','2015-11-10 22:40:38'),(31,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"66.241.95.11\"}',71,'http://backfeed.cc/','2015-11-11 22:00:33'),(32,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"77.218.227.30\"}',71,'http://backfeed.cc/','2015-11-12 05:57:38'),(33,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"178.192.78.14\"}',71,'http://backfeed.cc/','2015-11-12 11:34:33'),(34,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"86.187.35.178\"}',71,'http://backfeed.cc/','2015-11-12 13:33:36'),(35,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"46.218.46.150\"}',71,'http://backfeed.cc/','2015-11-12 13:37:48'),(36,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"80.71.18.245\"}',71,'http://backfeed.cc/','2015-11-12 13:43:17'),(37,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"82.16.27.98\"}',71,'http://backfeed.cc/','2015-11-12 14:22:42'),(38,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"217.162.187.76\"}',71,'http://backfeed.cc/','2015-11-12 22:55:33'),(39,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"217.59.136.122\"}',71,'http://backfeed.cc/','2015-11-13 14:20:33'),(40,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"189.6.127.107\"}',71,'http://backfeed.cc/','2015-11-13 15:22:25'),(41,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"185.61.190.195\"}',71,'http://backfeed.cc/','2015-11-13 17:37:18'),(42,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"95.94.18.102\"}',71,'http://backfeed.cc/','2015-11-13 21:23:30'),(43,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"98.165.217.68\"}',71,'http://backfeed.cc/','2015-11-14 00:14:43'),(44,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"149.31.141.207\"}',71,'http://backfeed.cc/','2015-11-14 14:58:50'),(45,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"149.31.207.27\"}',71,'http://backfeed.cc/','2015-11-14 15:07:57'),(46,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"173.68.109.210\"}',71,'http://backfeed.cc/','2015-11-14 15:13:29'),(47,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"213.205.194.253\"}',71,'http://backfeed.cc/','2015-11-15 09:51:19'),(48,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"93.108.174.113\"}',71,'http://backfeed.cc/','2015-11-15 12:15:17'),(49,'[email protected]','040512b5ed','form','form',1,'{\"OPTIN_IP\":\"85.3.92.125\"}',71,'http://backfeed.cc/','2015-11-16 11:23:27');
/*!40000 ALTER TABLE `wp_mc4wp_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=2044 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://new.backfeed.cc','yes'),(2,'home','http://new.backfeed.cc','yes'),(3,'blogname','Backfeed','yes'),(4,'blogdescription','Decentralizing the Present','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','[email protected]','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','[email protected]','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','0','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'gzipcompression','0','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:7:{i:0;s:34:\"advanced-custom-fields-pro/acf.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:45:\"mailchimp-for-wp-pro/mailchimp-for-wp-pro.php\";i:3;s:29:\"postman-smtp/postman-smtp.php\";i:4;s:13:\"soil/soil.php\";i:5;s:24:\"wordpress-seo/wp-seo.php\";i:6;s:27:\"wp-super-cache/wp-cache.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'advanced_edit','0','yes'),(37,'comment_max_links','2','yes'),(38,'gmt_offset','0','yes'),(39,'default_email_category','1','yes'),(40,'recently_edited','','no'),(41,'template','backfeed','yes'),(42,'stylesheet','backfeed','yes'),(43,'comment_whitelist','1','yes'),(44,'blacklist_keys','','no'),(45,'comment_registration','0','yes'),(46,'html_type','text/html','yes'),(47,'use_trackback','0','yes'),(48,'default_role','subscriber','yes'),(49,'db_version','33056','yes'),(50,'uploads_use_yearmonth_folders','1','yes'),(51,'upload_path','','yes'),(52,'blog_public','1','yes'),(53,'default_link_category','2','yes'),(54,'show_on_front','posts','yes'),(55,'tag_base','','yes'),(56,'show_avatars','1','yes'),(57,'avatar_rating','G','yes'),(58,'upload_url_path','','yes'),(59,'thumbnail_size_w','150','yes'),(60,'thumbnail_size_h','150','yes'),(61,'thumbnail_crop','1','yes'),(62,'medium_size_w','300','yes'),(63,'medium_size_h','300','yes'),(64,'avatar_default','mystery','yes'),(65,'large_size_w','1024','yes'),(66,'large_size_h','1024','yes'),(67,'image_default_link_type','file','yes'),(68,'image_default_size','','yes'),(69,'image_default_align','','yes'),(70,'close_comments_for_old_posts','0','yes'),(71,'close_comments_days_old','14','yes'),(72,'thread_comments','1','yes'),(73,'thread_comments_depth','5','yes'),(74,'page_comments','0','yes'),(75,'comments_per_page','50','yes'),(76,'default_comments_page','newest','yes'),(77,'comment_order','asc','yes'),(78,'sticky_posts','a:0:{}','yes'),(79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(82,'uninstall_plugins','a:1:{s:27:\"wp-super-cache/wp-cache.php\";s:22:\"wpsupercache_uninstall\";}','no'),(83,'timezone_string','','yes'),(84,'page_for_posts','0','yes'),(85,'page_on_front','0','yes'),(86,'default_post_format','0','yes'),(87,'link_manager_enabled','0','yes'),(88,'initial_db_version','31536','yes'),(89,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:64:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:19:\"manage_postman_smtp\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(90,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(91,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(92,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(93,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(94,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:15:\"sidebar-primary\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:14:\"sidebar-footer\";N;s:13:\"array_version\";i:3;}','yes'),(97,'cron','a:6:{i:1447701120;a:1:{s:20:\"wp_maybe_auto_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1447705700;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1447718400;a:1:{s:11:\"wp_cache_gc\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1447728182;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1447771389;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(99,'_transient_random_seed','c112ec700d2bdf6ce53088ac68a5a81d','yes'),(100,'nonce_key','mIgU}B)grx!VK;UyILGmiT`agm6Kw9)A#yZyr0[~(qSw|75D;Zk_&dtF4|IG=Rv#','yes'),(101,'nonce_salt','_y>-+l@O9M!dfC6>~Fom dn.gvctD3fLmMOssFKV|:y?lXxQpc?:GgeKjGiMD%D{','yes'),(112,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:16:\"[email protected]\";s:7:\"version\";s:5:\"4.2.4\";s:9:\"timestamp\";i:1439217784;}','yes'),(113,'auth_key','h%x4NhJ~s$SeaU&54oM9Y*Qc?1c85%AKux@]2@Swg9D!-v02%E`FP9B?q{Dottan','yes'),(114,'auth_salt','[PwcE &g#oS!4),Z0w0skmPix$+nmxx$Q&%u.W?v05P->$N0(>OJ!_i1WV5sT`L[','yes'),(115,'logged_in_key','}wA{$>nO(9h9);k:0h$)<KZj_?W?r749%pZd#DvRpND0p6*A}/&RjXpgW9zeElZD','yes'),(116,'logged_in_salt','Q9kd,iG1m;>+OQnu1J$ut>06^3k36h.N^%BU~(bh j#l_:u6I2[DF9EOFSouyrN@','yes'),(140,'_transient_twentyfifteen_categories','1','yes'),(150,'recently_activated','a:0:{}','yes'),(161,'theme_mods_twentyfifteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1439289813;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(162,'current_theme','Sage Starter Theme','yes'),(163,'theme_mods_backfeed','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:18:\"primary_navigation\";i:2;}}','yes'),(164,'theme_switched','','yes'),(167,'acf_version','5.3.1','yes'),(212,'widget_calendar','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(213,'widget_nav_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(214,'widget_pages','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(216,'widget_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(218,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(361,'finished_splitting_shared_terms','1','yes'),(364,'db_upgraded','','yes'),(385,'mc4wp','a:1:{s:7:\"api_key\";s:37:\"80efb40b91a7d4b3de269ddc3c15b2ff-us11\";}','yes'),(386,'mc4wp_checkbox','a:15:{s:5:\"label\";s:30:\"Sign me up for the newsletter!\";s:8:\"precheck\";i:1;s:3:\"css\";i:0;s:20:\"show_at_comment_form\";i:0;s:25:\"show_at_registration_form\";i:0;s:22:\"show_at_multisite_form\";i:0;s:23:\"show_at_buddypress_form\";i:0;s:20:\"show_at_edd_checkout\";i:0;s:28:\"show_at_woocommerce_checkout\";i:0;s:21:\"show_at_bbpress_forms\";i:0;s:5:\"lists\";a:0:{}s:12:\"double_optin\";i:1;s:12:\"send_welcome\";i:0;s:15:\"update_existing\";i:0;s:20:\"woocommerce_position\";s:5:\"order\";}','yes'),(387,'mc4wp_form','a:18:{s:3:\"css\";i:0;s:18:\"custom_theme_color\";s:4:\"#1af\";s:4:\"ajax\";i:1;s:12:\"double_optin\";i:1;s:15:\"update_existing\";i:0;s:17:\"replace_interests\";i:1;s:12:\"send_welcome\";i:0;s:15:\"text_subscribed\";s:89:\"Thank you, your sign-up request was successful! Please check your email inbox to confirm.\";s:10:\"text_error\";s:51:\"Oops. Something went wrong. Please try again later.\";s:18:\"text_invalid_email\";s:37:\"Please provide a valid email address.\";s:23:\"text_already_subscribed\";s:53:\"Given email address is already subscribed, thank you!\";s:20:\"text_invalid_captcha\";s:28:\"Please complete the CAPTCHA.\";s:27:\"text_required_field_missing\";s:35:\"Please fill in the required fields.\";s:17:\"text_unsubscribed\";s:35:\"You were successfully unsubscribed.\";s:19:\"text_not_subscribed\";s:38:\"Given email address is not subscribed.\";s:8:\"redirect\";s:0:\"\";s:18:\"hide_after_success\";i:0;s:15:\"send_email_copy\";i:0;}','yes'),(388,'mc4wp_default_form_id','69','yes'),(389,'mc4wp_license','a:4:{s:3:\"key\";s:32:\"29b3d1938f66907d850c9d91fd69165f\";s:6:\"status\";s:5:\"valid\";s:11:\"expiry_date\";s:10:\"1469202952\";s:11:\"show_notice\";b:1;}','yes'),(390,'mc4wp_license_manager_version','2','yes'),(393,'mc4wp_log_db_version','1.1','yes'),(394,'mc4wp_version','2.7.20','yes'),(454,'wpsupercache_gc_time','1447687429','yes'),(461,'_site_transient_timeout_browser_465fd49f178c13882c055bf57bdda477','1445195579','yes'),(462,'_site_transient_browser_465fd49f178c13882c055bf57bdda477','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:11:\"47.0.2516.0\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(463,'wpcf7','a:1:{s:7:\"version\";s:3:\"4.3\";}','yes'),(464,'ossdl_off_cdn_url','http://backfeed.cc','yes'),(465,'ossdl_off_include_dirs','wp-content,wp-includes','yes'),(466,'ossdl_off_exclude','.php','yes'),(467,'ossdl_cname','','yes'),(468,'wpseo','a:20:{s:14:\"blocking_files\";a:0:{}s:26:\"ignore_blog_public_warning\";b:0;s:31:\"ignore_meta_description_warning\";b:0;s:20:\"ignore_page_comments\";b:0;s:16:\"ignore_permalink\";b:0;s:15:\"ms_defaults_set\";b:0;s:23:\"theme_description_found\";s:0:\"\";s:21:\"theme_has_description\";N;s:7:\"version\";s:5:\"2.3.5\";s:11:\"alexaverify\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:0:\"\";s:20:\"disableadvanced_meta\";b:1;s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:12:\"website_name\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";}','yes'),(469,'wpseo_permalinks','a:13:{s:15:\"cleanpermalinks\";b:0;s:24:\"cleanpermalink-extravars\";s:0:\"\";s:29:\"cleanpermalink-googlecampaign\";b:0;s:31:\"cleanpermalink-googlesitesearch\";b:0;s:15:\"cleanreplytocom\";b:0;s:10:\"cleanslugs\";b:1;s:14:\"hide-feedlinks\";b:0;s:12:\"hide-rsdlink\";b:0;s:14:\"hide-shortlink\";b:0;s:16:\"hide-wlwmanifest\";b:0;s:18:\"redirectattachment\";b:0;s:17:\"stripcategorybase\";b:0;s:13:\"trailingslash\";b:0;}','yes'),(470,'wpseo_titles','a:54:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:5:\"noodp\";b:0;s:6:\"noydir\";b:0;s:15:\"usemetakeywords\";b:0;s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:18:\"metakey-home-wpseo\";s:0:\"\";s:20:\"metakey-author-wpseo\";s:0:\"\";s:22:\"noindex-subpages-wpseo\";b:0;s:20:\"noindex-author-wpseo\";b:0;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"metakey-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:16:\"hideeditbox-post\";b:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"metakey-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:16:\"hideeditbox-page\";b:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"metakey-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:22:\"hideeditbox-attachment\";b:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:20:\"metakey-tax-category\";s:0:\"\";s:24:\"hideeditbox-tax-category\";b:0;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:20:\"metakey-tax-post_tag\";s:0:\"\";s:24:\"hideeditbox-tax-post_tag\";b:0;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:23:\"metakey-tax-post_format\";s:0:\"\";s:27:\"hideeditbox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;}','yes'),(471,'wpseo_social','a:21:{s:9:\"fb_admins\";a:0:{}s:12:\"fbconnectkey\";s:32:\"dc154f5eaa8ec743bc20e8cbbceb27eb\";s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:18:\"og_frontpage_title\";s:37:\"Backfeed | Decentralizing the Present\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:73:\"http://backfeed.cc/wp-content/uploads/2015/10/Triangle-SideWay-300-x2.png\";s:9:\"opengraph\";b:1;s:10:\"googleplus\";b:0;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:14:\"plus-publisher\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:7:\"summary\";s:11:\"youtube_url\";s:0:\"\";s:15:\"google_plus_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}','yes'),(472,'wpseo_rss','a:2:{s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";}','yes'),(473,'wpseo_internallinks','a:10:{s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:23:\"breadcrumbs-blog-remove\";b:0;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"»\";s:23:\"post_types-post-maintax\";i:0;}','yes'),(474,'wpseo_xml','a:16:{s:22:\"disable_author_sitemap\";b:1;s:22:\"disable_author_noposts\";b:1;s:16:\"enablexmlsitemap\";b:1;s:16:\"entries-per-page\";i:1000;s:14:\"excluded-posts\";s:0:\"\";s:38:\"user_role-administrator-not_in_sitemap\";b:0;s:31:\"user_role-editor-not_in_sitemap\";b:0;s:31:\"user_role-author-not_in_sitemap\";b:0;s:36:\"user_role-contributor-not_in_sitemap\";b:0;s:35:\"user_role-subscriber-not_in_sitemap\";b:0;s:30:\"post_types-post-not_in_sitemap\";b:0;s:30:\"post_types-page-not_in_sitemap\";b:0;s:36:\"post_types-attachment-not_in_sitemap\";b:1;s:34:\"taxonomies-category-not_in_sitemap\";b:0;s:34:\"taxonomies-post_tag-not_in_sitemap\";b:0;s:37:\"taxonomies-post_format-not_in_sitemap\";b:0;}','yes'),(480,'widget_mc4wp_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(492,'wpseo-gsc-refresh_token','1/a7RMnbhmnFpGua-Rj9RAvAFYsn3x-j1yfVDzZNJyoQ4','yes'),(493,'wpseo-gsc-access_token','a:5:{s:13:\"refresh_token\";s:45:\"1/a7RMnbhmnFpGua-Rj9RAvAFYsn3x-j1yfVDzZNJyoQ4\";s:12:\"access_token\";s:73:\"ya29.CQIKWRQ_XtkaMtX52f9q4oDG4d_xcEdTtjMulbqdehyM5A84D94fDBR7fxEO3j_UuG4R\";s:7:\"expires\";i:1444594499;s:10:\"expires_in\";i:3600;s:7:\"created\";i:1444590899;}','yes'),(519,'site_icon','75','yes'),(526,'wpseo-gsc','a:1:{s:7:\"profile\";s:19:\"http://backfeed.cc/\";}','yes'),(531,'wpseo_gsc_issues_counts','a:0:{}','yes'),(532,'wpseo_gsc_last_fetch','1444591050','no'),(543,'optimizely_token','b9c311d5441108b4f7f83585c6521481:757969b3','yes'),(544,'optimizely_project_id','3628130027','yes'),(545,'optimizely_num_variations','2','yes'),(546,'optimizely_post_types','post,mc4wp-form','yes'),(547,'optimizely_project_name','backfeed.cc','yes'),(548,'optimizely_variation_template','$( \".optimizely-$POST_ID\" ).text( \"$NEW_TITLE\" );','yes'),(549,'optimizely_conditional_activation_code','$( \".optimizely-$POST_ID\" ).length > 0','yes'),(550,'optimizely_activation_mode','conditional','yes'),(551,'optimizely_url_targeting','http://backfeed.cc','yes'),(552,'optimizely_url_targeting_type','substring','yes'),(565,'category_children','a:0:{}','yes'),(795,'_site_transient_timeout_browser_262925b5953ae4848285fd856e58bb65','1445750913','yes'),(796,'_site_transient_browser_262925b5953ae4848285fd856e58bb65','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:11:\"48.0.2535.0\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(813,'can_compress_scripts','0','yes'),(1168,'_site_transient_timeout_browser_5033218327be6572462a1c5e892df798','1446544208','yes'),(1169,'_site_transient_browser_5033218327be6572462a1c5e892df798','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:11:\"48.0.2540.0\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(1172,'wp_super_cache_index_detected','3','yes'),(1173,'wpsupercache_start','1445939449','yes'),(1174,'wpsupercache_count','0','yes'),(1204,'_transient_timeout_plugin_slugs','1447773921','no'),(1205,'_transient_plugin_slugs','a:8:{i:0;s:34:\"advanced-custom-fields-pro/acf.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:45:\"mailchimp-for-wp-pro/mailchimp-for-wp-pro.php\";i:3;s:29:\"postman-smtp/postman-smtp.php\";i:4;s:13:\"soil/soil.php\";i:5;s:41:\"wordpress-importer/wordpress-importer.php\";i:6;s:27:\"wp-super-cache/wp-cache.php\";i:7;s:24:\"wordpress-seo/wp-seo.php\";}','no'),(1642,'_site_transient_timeout_browser_b10ea858e287322be96ef3a56d4aafea','1447529587','yes'),(1643,'_site_transient_browser_b10ea858e287322be96ef3a56d4aafea','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"46.0.2490.80\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(1946,'_transient_timeout_wpseo_sitemap_cache_category_1','1447659805','no'),(1947,'_transient_wpseo_sitemap_cache_category_1','<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n <url>\n <loc>http://backfeed.cc/category/uncategorized/</loc>\n <lastmod>2015-08-10T14:43:02+00:00</lastmod>\n <changefreq>weekly</changefreq>\n <priority>0.2</priority>\n </url>\n</urlset>','no'),(1967,'_transient_timeout_wpseo_sitemap_cache_1_1','1447706249','no'),(1968,'_transient_wpseo_sitemap_cache_1_1','<sitemapindex xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n<sitemap>\n<loc>http://backfeed.cc/post-sitemap.xml</loc>\n<lastmod>2015-08-10T14:43:02+00:00</lastmod>\n</sitemap>\n<sitemap>\n<loc>http://backfeed.cc/page-sitemap.xml</loc>\n<lastmod>2015-08-10T14:43:02+00:00</lastmod>\n</sitemap>\n<sitemap>\n<loc>http://backfeed.cc/category-sitemap.xml</loc>\n<lastmod>2015-08-10T14:43:02+00:00</lastmod>\n</sitemap>\n</sitemapindex>','no'),(1971,'_transient_timeout_wpseo_sitemap_cache_page_1','1447706258','no'),(1972,'_transient_wpseo_sitemap_cache_page_1','<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:image=\"http://www.google.com/schemas/sitemap-image/1.1\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n <url>\n <loc>http://backfeed.cc</loc>\n <changefreq>daily</changefreq>\n <priority>1</priority>\n </url>\n <url>\n <loc>http://backfeed.cc/sample-page/</loc>\n <lastmod>2015-08-10T14:43:02+00:00</lastmod>\n <changefreq>weekly</changefreq>\n <priority>0.8</priority>\n </url>\n</urlset>','no'),(1985,'_transient_timeout_acf_pro_get_remote_info','1447701124','no'),(1986,'_transient_acf_pro_get_remote_info','a:15:{s:4:\"name\";s:26:\"Advanced Custom Fields Pro\";s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:8:\"homepage\";s:36:\"http://www.advancedcustomfields.com/\";s:7:\"version\";s:7:\"5.3.2.2\";s:6:\"author\";s:13:\"elliot condon\";s:10:\"author_url\";s:28:\"http://www.elliotcondon.com/\";s:12:\"contributors\";s:12:\"elliotcondon\";s:8:\"requires\";s:5:\"3.6.0\";s:6:\"tested\";s:3:\"4.3\";s:4:\"tags\";a:32:{i:0;s:5:\"5.3.1\";i:1;s:5:\"5.3.0\";i:2;s:5:\"5.2.9\";i:3;s:5:\"5.2.8\";i:4;s:5:\"5.2.7\";i:5;s:5:\"5.2.6\";i:6;s:5:\"5.2.5\";i:7;s:5:\"5.2.4\";i:8;s:5:\"5.2.3\";i:9;s:5:\"5.2.2\";i:10;s:5:\"5.2.1\";i:11;s:5:\"5.2.0\";i:12;s:5:\"5.1.9\";i:13;s:5:\"5.1.8\";i:14;s:5:\"5.1.7\";i:15;s:5:\"5.1.6\";i:16;s:5:\"5.1.5\";i:17;s:5:\"5.1.4\";i:18;s:5:\"5.1.3\";i:19;s:5:\"5.1.2\";i:20;s:5:\"5.1.1\";i:21;s:5:\"5.1.0\";i:22;s:5:\"5.0.9\";i:23;s:5:\"5.0.8\";i:24;s:5:\"5.0.7\";i:25;s:5:\"5.0.6\";i:26;s:5:\"5.0.5\";i:27;s:5:\"5.0.4\";i:28;s:5:\"5.0.3\";i:29;s:5:\"5.0.2\";i:30;s:5:\"5.0.1\";i:31;s:5:\"5.0.0\";}s:6:\"tagged\";s:123:\"acf, advanced, custom, field, fields, custom field, custom fields, simple fields, magic fields, more fields, repeater, edit\";s:11:\"description\";s:4328:\"<p>Advanced Custom Fields is the perfect solution for any WordPress website which needs more flexible data like other Content Management Systems. </p>\n<ul><li>Visually create your Fields</li><li>Select from multiple input types (text, textarea, wysiwyg, image, file, page link, post object, relationship, select, checkbox, radio buttons, date picker, true / false, repeater, flexible content, gallery and more to come!)</li><li>Assign your fields to multiple edit pages (via custom location rules)</li><li>Easily load data through a simple and friendly API</li><li>Uses the native WordPress custom post type for ease of use and fast processing</li><li>Uses the native WordPress metadata for ease of use and fast processing</li></ul>\n<h4> Field Types </h4>\n<ul><li>Text (type text, api returns text)</li><li>Text Area (type text, api returns text)</li><li>Number (type number, api returns integer)</li><li>Email (type email, api returns text)</li><li>Password (type password, api returns text)</li><li>WYSIWYG (a WordPress wysiwyg editor, api returns html)</li><li>Image (upload an image, api returns the url)</li><li>File (upload a file, api returns the url)</li><li>Select (drop down list of choices, api returns chosen item)</li><li>Checkbox (tickbox list of choices, api returns array of choices)</li><li>Radio Buttons ( radio button list of choices, api returns chosen item)</li><li>True / False (tick box with message, api returns true or false)</li><li>Page Link (select 1 or more page, post or custom post types, api returns the selected url)</li><li>Post Object (select 1 or more page, post or custom post types, api returns the selected post objects)</li><li>Relationship (search, select and order post objects with a tidy interface, api returns the selected post objects)</li><li>Taxonomy (select taxonomy terms with options to load, display and save, api returns the selected term objects)</li><li>User (select 1 or more WP users, api returns the selected user objects)</li><li>Google Maps (interactive map, api returns lat,lng,address data)</li><li>Date Picker (jquery date picker, options for format, api returns string)</li><li>Color Picker (WP color swatch picker)</li><li>Tab (Group fields into tabs)</li><li>Message (Render custom messages into the fields)</li><li>Repeater (ability to create repeatable blocks of fields!)</li><li>Flexible Content (ability to create flexible blocks of fields!)</li><li>Gallery (Add, edit and order multiple images in 1 simple field)</li><li>[Custom](<a href=\"http://www.advancedcustomfields.com/resources/tutorials/creating-a-new-field-type/)\">www.advancedcustomfields.com/resources/tutorials/creating-a-new-field-type/)</a> (Create your own field type!)</li></ul>\n<h4> Tested on </h4>\n<ul><li>Mac Firefox :)</li><li>Mac Safari :)</li><li>Mac Chrome :)</li><li>PC Safari :)</li><li>PC Chrome :)</li><li>PC Firefox :)</li><li>iPhone Safari :)</li><li>iPad Safari :)</li><li>PC ie7 :S</li></ul>\n<h4> Website </h4>\n<p><a href=\"http://www.advancedcustomfields.com/\">www.advancedcustomfields.com/</a></p>\n<h4> Documentation </h4>\n<ul><li>[Getting Started](<a href=\"http://www.advancedcustomfields.com/resources/#getting-started)\">www.advancedcustomfields.com/resources/#getting-started)</a></li><li>[Field Types](<a href=\"http://www.advancedcustomfields.com/resources/#field-types)\">www.advancedcustomfields.com/resources/#field-types)</a></li><li>[Functions](<a href=\"http://www.advancedcustomfields.com/resources/#functions)\">www.advancedcustomfields.com/resources/#functions)</a></li><li>[Actions](<a href=\"http://www.advancedcustomfields.com/resources/#actions)\">www.advancedcustomfields.com/resources/#actions)</a></li><li>[Filters](<a href=\"http://www.advancedcustomfields.com/resources/#filters)\">www.advancedcustomfields.com/resources/#filters)</a></li><li>[How to guides](<a href=\"http://www.advancedcustomfields.com/resources/#how-to)\">www.advancedcustomfields.com/resources/#how-to)</a></li><li>[Tutorials](<a href=\"http://www.advancedcustomfields.com/resources/#tutorials)\">www.advancedcustomfields.com/resources/#tutorials)</a></li></ul>\n<h4> Bug Submission and Forum Support </h4>\n<p><a href=\"http://support.advancedcustomfields.com/\">support.advancedcustomfields.com/</a></p>\n<h4> Please Vote and Enjoy </h4>\n<p>Your votes really make a difference! Thanks.</p>\n\";s:12:\"installation\";s:467:\"<ol><li>Upload <code>advanced-custom-fields</code> to the <code>/wp-content/plugins/</code> directory</li><li>Activate the plugin through the <code>Plugins</code> menu in WordPress</li><li>Click on the new menu item \"Custom Fields\" and create your first Custom Field Group!</li><li>Your custom field group will now appear on the page / post / template you specified in the field group\'s location rules!</li><li>Read the documentation to display your data: </li></ol>\n\";s:9:\"changelog\";s:6789:\"<h4> 5.3.2.2 </h4>\n<ul><li>Core: Fixed PHP error when registering a local field missing one of more settings</li><li>Core: Fixed incorrect json load_path setting when WPML is active</li><li>Language: Updated Polish translation - thanks to Michal Lepiarz</li></ul>\n<h4> 5.3.2.1 </h4>\n<ul><li>Core: Fixed bug causing issues when loading values from an options page, widget or taxonomy term</li></ul>\n<h4> 5.3.2 </h4>\n<ul><li>Repeater field: Added new setting and icon to collapse row</li><li>Google Maps: Improved google API loading for better theme compatibility</li><li>Taxonomy field: Fixed bug where <code>Add new term</code> popup only showed 20 parent terms</li><li>Core: Added new setting <code>export_translate</code> to customise which field settings should be wrapped in __()</li><li>Core: Improved efficiency of AJAX call when finding new field groups when editing a post</li><li>API: Added new functions add_row(), update_row() and delete_row()</li><li>Language: Updated German translation - thanks to Ralf Koller</li><li>Language: Updated Italian translation - thanks to Davide Pantè</li><li>Language: Updated Dutch translation - thanks to Derk Oosterveld</li><li>Language: Updated Portuguese translation - thanks to Augusto Simão</li></ul>\n<h4> 5.3.1 </h4>\n<ul><li>Flexible Content field: added toggle icons to show layout open/close state</li><li>Gallery field: Fixed bug where images could not save a blank title value</li><li>Taxonomy field: Added pagination when rendered as a Select2 element</li><li>Relationship field: Changed validation to better edit values when a minimum is set</li><li>Google map field: Fixed minor autocomplete bugs and added search icon</li><li>Message field: Added new_lines setting</li><li>Core: Added <code>*</code> to required fields when editing a field group</li><li>Core: Prevented updates to .json file when syncing</li><li>Core: Fields now render as div (instead of table) when labels are left aligned</li><li>Core: Minor fixes and improvements</li><li>Language: Updated .po headers - thanks to Ralf Koller</li></ul>\n<h4> 5.3.0 </h4>\n<ul><li>WYSIWYG field: Fixed <code>Visual/Text</code> toggle bug with WP 4.3</li><li>Select field: Fixed Select2 bug hiding selected choices</li></ul>\n<h4> 5.2.9 </h4>\n<ul><li>Field group: Added new <code>status</code> setting to enable/disable</li><li>Field group: Added new <code>description</code> setting shown to developers when viewing the field group list</li><li>Field group: Moved <code>Show field keys</code> Screen Option within existing <code>Show on Screen</code> checkboxes</li><li>Tab field: Fixed missing min-height to left aligned tab wrapper</li><li>Relationship field: Added timeout to reduce AJAX requests whilst typing in search</li><li>Flexible Content field: Fixed minor JS bug where removing a layout would not update the order numbers</li><li>Core: Fixed bug validating uppercase file extensions</li><li>Core: Renamed menu items</li><li>Core: Replace sprite icons with font</li><li>Core: Added new setting <code>export_textdomain</code> to add __() to generated export code</li><li>Core: Fixed conflict with Post Type Order plugin causing issues when querying posts</li><li>Core: Fixed conflict with WPML causing issues when querying posts</li><li>Core: Added compatibility for WP 4.3</li><li>Core: Minor fixes and improvements</li><li>Language: Updated German translation - thanks to Ralf Koller</li><li>Language: Updated Italian translation - thanks to Davide Pantè</li></ul>\n<h4> 5.2.8 </h4>\n<ul><li>Image field: Added selection restrictions in media popup (width, height, size, type)</li><li>File field: Same as above</li><li>Gallery field: Same as above</li><li>Tab field: Added new <code>endpoint</code> setting - allows multiple tab groups</li><li>Tab field: Improved CSS/JS to allow individual tab groups to use different alignments (left/top)</li><li>Repeater field: Added logic to delete nested sub field values (grand children)</li><li>Options page: Added new <code>autoload</code> setting</li><li>Core: Added new filter <code>acf/prepare_field</code></li><li>Core: Added upload validation logic to ignore filetype case sensitivity</li><li>Core: Fixed upload issue when filesize restriction contained a decimal place</li><li>Core: Improved validation/save JS compatibility with 3rd party plugins</li><li>Core: Updated Select2 library to v3.5.2</li><li>Core: Fixed bug hiding Select2 choices when multiple found with the same label</li><li>Core: Minor fixes and improvements</li><li>Language: Updated Italian translation - thanks to Davide Pantè & Francesco Mazzola</li><li>Language: Updated German translation - thanks to Ralf Koller</li><li>Language: Updating Finnish translation - thanks to Sauli Rajala</li></ul>\n<h4> 5.2.7 </h4>\n<ul><li>Taxonomy field: Split setting <code>load_save_terms</code> into <code>load_terms</code> and <code>save_terms</code></li><li>Select field: Fixed bug causing values containing <code>,</code> to fail</li><li>Checkbox field: Fixed bug causing values containing <code>,</code> to fail</li><li>Checkbox field: Added new <code>toggle all</code> setting</li><li>User field: Added new filters <code>acf/fields/user/result</code> and <code>acf/fields/user/search_columns</code></li><li>Gallery field: Added logic to increase sidebar width when space is available</li><li>Options page: Added new <code>post_id</code> setting to customise where values are loaded and saved</li><li>API: Improved `get_field()` to better handle no value</li><li>API: Optimised asset loading when using the `acf_form()` function</li><li>API: Added new function `delete_sub_field()`</li><li>Core: Added new `acf/init` action when ACF has loaded all functionality</li><li>Core: Added compatibility with Select2 language translations</li><li>Core: Changed compatibility filter default to false</li><li>Core: Minor fixes and improvements</li><li>Language: Updated German translation - thanks to Thomas Meyer</li><li>Language: Updated French Translation - thanks to Maxime Bernard-Jacquet</li><li>Language: Updated Persian translation - thanks to Kamel</li></ul>\n<h4> 5.2.6 </h4>\n<ul><li>Core: Improved validation logic to display HTML5 validation messages</li><li>Core: Improved conditional logic performance for large field groups</li><li>Core: Removed updates menu item when not activated as a plugin (included within theme)</li><li>Core: Fixed various JS performance issues</li><li>Core: Minor fixes and improvements</li><li>Core: Added compatibility for saving widget in <code>accessibility mode</code></li><li>Language: Added Finnish translation - thanks to Sauli Rajala</li></ul>\n<h4> 5.2.5 </h4>\n<ul><li>Core: Fixed JS error preventing changes to large field groups</li><li>Language: Added Romanian translation - thanks to Eduard Ungureanu</li></ul>\n\";s:14:\"upgrade_notice\";s:550:\"<h4> 5.2.7 </h4>\n<ul><li>Field class names have changed slightly in v5.2.7 from `field_type-{$type}` to `acf-field-{$type}`. This change was introduced to better optimise JS performance. The previous class names can be added back in with the following filter: <a href=\"http://www.advancedcustomfields.com/resources/acfcompatibility/\">www.advancedcustomfields.com/resources/acfcompatibility/</a></li></ul>\n<h4> 3.0.0 </h4>\n<ul><li>Editor is broken in WordPress 3.3</li></ul>\n<h4> 2.1.4 </h4>\n<ul><li>Adds post_id column back into acf_values</li></ul>\n\";}','no'),(1993,'_transient_timeout_mc4wp_mailchimp_lists','1447759406','no'),(1994,'_transient_mc4wp_mailchimp_lists','a:5:{s:10:\"7fafe07c1a\";O:8:\"stdClass\":5:{s:2:\"id\";s:10:\"7fafe07c1a\";s:4:\"name\";s:5:\"Qrate\";s:16:\"subscriber_count\";i:5;s:10:\"merge_vars\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"name\";s:13:\"Email Address\";s:10:\"field_type\";s:5:\"email\";s:3:\"req\";b:1;s:3:\"tag\";s:5:\"EMAIL\";}i:1;O:8:\"stdClass\":4:{s:4:\"name\";s:10:\"First Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"FNAME\";}i:2;O:8:\"stdClass\":4:{s:4:\"name\";s:9:\"Last Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"LNAME\";}}s:18:\"interest_groupings\";a:0:{}}s:10:\"f41d88400b\";O:8:\"stdClass\":5:{s:2:\"id\";s:10:\"f41d88400b\";s:4:\"name\";s:23:\"Chessmates Beta Testers\";s:16:\"subscriber_count\";i:28;s:10:\"merge_vars\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"name\";s:13:\"Email Address\";s:10:\"field_type\";s:5:\"email\";s:3:\"req\";b:1;s:3:\"tag\";s:5:\"EMAIL\";}i:1;O:8:\"stdClass\":4:{s:4:\"name\";s:10:\"First Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"FNAME\";}i:2;O:8:\"stdClass\":4:{s:4:\"name\";s:9:\"Last Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"LNAME\";}}s:18:\"interest_groupings\";a:0:{}}s:10:\"040512b5ed\";O:8:\"stdClass\":5:{s:2:\"id\";s:10:\"040512b5ed\";s:4:\"name\";s:19:\"Backfeed Newsletter\";s:16:\"subscriber_count\";i:231;s:10:\"merge_vars\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"name\";s:13:\"Email Address\";s:10:\"field_type\";s:5:\"email\";s:3:\"req\";b:1;s:3:\"tag\";s:5:\"EMAIL\";}i:1;O:8:\"stdClass\":4:{s:4:\"name\";s:10:\"First Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"FNAME\";}i:2;O:8:\"stdClass\":4:{s:4:\"name\";s:9:\"Last Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"LNAME\";}}s:18:\"interest_groupings\";a:0:{}}s:10:\"3e3248d370\";O:8:\"stdClass\":5:{s:2:\"id\";s:10:\"3e3248d370\";s:4:\"name\";s:10:\"Test Group\";s:16:\"subscriber_count\";i:5;s:10:\"merge_vars\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"name\";s:13:\"Email Address\";s:10:\"field_type\";s:5:\"email\";s:3:\"req\";b:1;s:3:\"tag\";s:5:\"EMAIL\";}i:1;O:8:\"stdClass\":4:{s:4:\"name\";s:10:\"First Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"FNAME\";}i:2;O:8:\"stdClass\":4:{s:4:\"name\";s:9:\"Last Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"LNAME\";}}s:18:\"interest_groupings\";a:0:{}}s:10:\"bdf32f08dd\";O:8:\"stdClass\":5:{s:2:\"id\";s:10:\"bdf32f08dd\";s:4:\"name\";s:18:\"Ouishare fest 2015\";s:16:\"subscriber_count\";i:14;s:10:\"merge_vars\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"name\";s:13:\"Email Address\";s:10:\"field_type\";s:5:\"email\";s:3:\"req\";b:1;s:3:\"tag\";s:5:\"EMAIL\";}i:1;O:8:\"stdClass\":4:{s:4:\"name\";s:10:\"First Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"FNAME\";}i:2;O:8:\"stdClass\":4:{s:4:\"name\";s:9:\"Last Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"LNAME\";}}s:18:\"interest_groupings\";a:0:{}}}','no'),(1995,'_transient_timeout_mc4wp_mailchimp_lists_fallback','1448882606','no'),(1996,'_transient_mc4wp_mailchimp_lists_fallback','a:5:{s:10:\"7fafe07c1a\";O:8:\"stdClass\":5:{s:2:\"id\";s:10:\"7fafe07c1a\";s:4:\"name\";s:5:\"Qrate\";s:16:\"subscriber_count\";i:5;s:10:\"merge_vars\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"name\";s:13:\"Email Address\";s:10:\"field_type\";s:5:\"email\";s:3:\"req\";b:1;s:3:\"tag\";s:5:\"EMAIL\";}i:1;O:8:\"stdClass\":4:{s:4:\"name\";s:10:\"First Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"FNAME\";}i:2;O:8:\"stdClass\":4:{s:4:\"name\";s:9:\"Last Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"LNAME\";}}s:18:\"interest_groupings\";a:0:{}}s:10:\"f41d88400b\";O:8:\"stdClass\":5:{s:2:\"id\";s:10:\"f41d88400b\";s:4:\"name\";s:23:\"Chessmates Beta Testers\";s:16:\"subscriber_count\";i:28;s:10:\"merge_vars\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"name\";s:13:\"Email Address\";s:10:\"field_type\";s:5:\"email\";s:3:\"req\";b:1;s:3:\"tag\";s:5:\"EMAIL\";}i:1;O:8:\"stdClass\":4:{s:4:\"name\";s:10:\"First Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"FNAME\";}i:2;O:8:\"stdClass\":4:{s:4:\"name\";s:9:\"Last Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"LNAME\";}}s:18:\"interest_groupings\";a:0:{}}s:10:\"040512b5ed\";O:8:\"stdClass\":5:{s:2:\"id\";s:10:\"040512b5ed\";s:4:\"name\";s:19:\"Backfeed Newsletter\";s:16:\"subscriber_count\";i:231;s:10:\"merge_vars\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"name\";s:13:\"Email Address\";s:10:\"field_type\";s:5:\"email\";s:3:\"req\";b:1;s:3:\"tag\";s:5:\"EMAIL\";}i:1;O:8:\"stdClass\":4:{s:4:\"name\";s:10:\"First Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"FNAME\";}i:2;O:8:\"stdClass\":4:{s:4:\"name\";s:9:\"Last Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"LNAME\";}}s:18:\"interest_groupings\";a:0:{}}s:10:\"3e3248d370\";O:8:\"stdClass\":5:{s:2:\"id\";s:10:\"3e3248d370\";s:4:\"name\";s:10:\"Test Group\";s:16:\"subscriber_count\";i:5;s:10:\"merge_vars\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"name\";s:13:\"Email Address\";s:10:\"field_type\";s:5:\"email\";s:3:\"req\";b:1;s:3:\"tag\";s:5:\"EMAIL\";}i:1;O:8:\"stdClass\":4:{s:4:\"name\";s:10:\"First Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"FNAME\";}i:2;O:8:\"stdClass\":4:{s:4:\"name\";s:9:\"Last Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"LNAME\";}}s:18:\"interest_groupings\";a:0:{}}s:10:\"bdf32f08dd\";O:8:\"stdClass\":5:{s:2:\"id\";s:10:\"bdf32f08dd\";s:4:\"name\";s:18:\"Ouishare fest 2015\";s:16:\"subscriber_count\";i:14;s:10:\"merge_vars\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"name\";s:13:\"Email Address\";s:10:\"field_type\";s:5:\"email\";s:3:\"req\";b:1;s:3:\"tag\";s:5:\"EMAIL\";}i:1;O:8:\"stdClass\":4:{s:4:\"name\";s:10:\"First Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"FNAME\";}i:2;O:8:\"stdClass\":4:{s:4:\"name\";s:9:\"Last Name\";s:10:\"field_type\";s:4:\"text\";s:3:\"req\";b:0;s:3:\"tag\";s:5:\"LNAME\";}}s:18:\"interest_groupings\";a:0:{}}}','no'),(1997,'_site_transient_timeout_browser_d0eb2c5dd7ab27dc46f7ae1bb180c501','1448288044','yes'),(1998,'_site_transient_browser_d0eb2c5dd7ab27dc46f7ae1bb180c501','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:11:\"48.0.2552.0\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(2003,'_site_transient_timeout_mc4wp_update-response','1447694081','yes'),(2004,'_site_transient_mc4wp_update-response','O:8:\"stdClass\":19:{s:13:\"license_check\";s:5:\"valid\";s:11:\"new_version\";s:6:\"2.7.25\";s:4:\"name\";s:23:\"MailChimp for WordPress\";s:4:\"slug\";s:20:\"mailchimp-for-wp-pro\";s:3:\"url\";s:17:\"https://mc4wp.com\";s:8:\"homepage\";s:17:\"https://mc4wp.com\";s:7:\"package\";s:150:\"https://mc4wp.com/edd-sl/package_download/MTQ0NzcyNjQ4MDoyOWIzZDE5MzhmNjY5MDdkODUwYzlkOTFmZDY5MTY1Zjo4OTk6YjhjM2E1NzVlOGM3Y2YxYmVjZWY5NzMyNjI5OWFhOTY=\";s:13:\"download_link\";s:150:\"https://mc4wp.com/edd-sl/package_download/MTQ0NzcyNjQ4MDoyOWIzZDE5MzhmNjY5MDdkODUwYzlkOTFmZDY5MTY1Zjo4OTk6YjhjM2E1NzVlOGM3Y2YxYmVjZWY5NzMyNjI5OWFhOTY=\";s:8:\"sections\";a:2:{s:11:\"description\";s:940:\"<p><em>Adding sign-up methods for your MailChimp lists to your WordPress site should be easy. With this plugin, it finally is.</em></p>\n<p>MailChimp for WordPress lets you create a highly customizable sign-up form which you can display wherever you want it to display using a simple shortcode, widget or template function. You can also add sign-up checkboxes to various forms on your site, like your comment or contact forms.</p>\n<p><strong>Sign-Up Forms</strong></p>\n<p>Easily create sign-up forms for your MailChimp list and display it using a simple shortcode, a widget or PHP function.</p>\n<p><strong>Sign-Up Checkboxes</strong></p>\n<p>Add sign-up checkboxes to any form on your website. The plugin offers built-in integration with comment forms, registration forms, Contact Form 7, BuddyPress, bbPress and WordPress MultiSite.</p>\n<p>For more information, please take a look at <a href=\"https://mc4wp.com/\">the plugin website</a>.</p>\n\";s:9:\"changelog\";s:24950:\"<p>2.7.25 - November 11, 2015</p>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>AJAX loader image is now created & loaded in JavaScript to make sure it\'s always there. </li>\n<li>Preparations for <a href=\"https://mc4wp.com/blog/breaking-backwards-compatibility-in-version-3-0/\">major upcoming changes in version 3.0</a>.</li>\n<li>Don\'t show cookie data in email notification.</li>\n</ul>\n<p>2.7.24 - November 2, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>AJAX forms not working when loader image not found on server.</li>\n<li>Prevent double AJAX request (edge case bug)</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Usage tracking is now scheduled once a week, instead of daily.</li>\n</ul>\n<p>2.7.23 - October 22, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Honeypot field being autofilled in Chrome, causing a form error.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Updated Portugese translations</li>\n<li>Manual CSS field in Styles Builder now adjusts to the number of lines in the textarea.</li>\n</ul>\n<p>2.7.22 - October 14, 2015</p>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Textual improvements to general settings page.</li>\n<li>Connectivity issues with MailChimp will now <em>always</em> show an error message.</li>\n<li>Renewing MailChimp lists will now also update the output of the {subscriber_count} tag.</li>\n</ul>\n<p>2.7.21 - October 12, 2015</p>\n<p>Added anonymous usage tracking to help us further improve the plugin. No sensitive data is tracked.</p>\n<p>2.7.20 - October 2, 2015</p>\n<p>Fixes license issue with network-activated plugins.</p>\n<p>2.7.19 - October 1, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Changelog not showing for available updates.</li>\n<li>JavaScript error when page has no submit button.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Various improvements to the license management & plugin update functionality.</li>\n<li>Styles Builder: improved error message when stylesheet can\'t be created.</li>\n<li>Reports now uses local WordPress\' timezone.</li>\n<li>Only prefix url fields with http:// if they are not left empty.</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>You can now control whether a background image should repeat itself in the Styles Builder.</li>\n</ul>\n<p>2.7.18 - September 25, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Honeypot causing horizontal scrollbar on RTL sites.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Minor styling improvements for RTL sites.</li>\n<li>MailChimp list fields of type "website" will now become HTML5 url type fields.</li>\n<li>Auto-prefix fields of type url with http://</li>\n</ul>\n<p>2.7.17 - September 23, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Licenses were showing as expired, when they were not.</li>\n<li>Certain fields were incorrectly being hidden when using one of the default form themes.</li>\n</ul>\n<p>2.7.16 - September 21, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Issue with interest groupings not being fetched after updating to v2.7.15</li>\n</ul>\n<p>2.7.15 - September 21, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Honeypot field being filled by browser\'s autocomplete.</li>\n<li>Empty response from MailChimp API</li>\n<li>Your license expiration date is now updated with each update check.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Do not query MailChimp API for interest groupings if list has none.</li>\n<li>Integration errors are now logged to PHP\'s error log for easier debugging.</li>\n<li>Email notification now uses local date & time format.</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>You can now use shortcodes in the form content.</li>\n</ul>\n<p>2.7.14 - September 9, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>CSS issue with rounded corners on Mobile Safari.</li>\n</ul>\n<p>2.7.13 - September 7, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Showing "not connected" when the plugin was actually connected to MailChimp.</li>\n<li>Issue with address fields when addr1 was not given.</li>\n<li>Comment form checkbox not outputted for some older themes.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Do not flush MailChimp cache on every settings save.</li>\n<li>Add default CSS styles for number fields.</li>\n</ul>\n<p>2.7.12 - September 1, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Line height inconsistency between Styles Builder preview and actual result</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>MailChimp lists cache is now automatically flushed after changing your API key setting.</li>\n<li>Better field population after submitting a form with errors.</li>\n<li>More helpful error message when no list is selected.</li>\n<li>Translate options when installing plugin from a language other than English.</li>\n<li>Add form mark-up to WPML configuration file.</li>\n<li>Sign-up checkbox in comment form is now shown before the "submit comment" button.</li>\n<li>URL-encode variables in "Redirect URL" setting.</li>\n<li>Better error message when connected to MailChimp but account has no lists.</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Add mc4wp_form_action filter to set a custom action attribute on the form element.</li>\n</ul>\n<p>2.7.11 - August 18, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Multisite stripping all form HTML for all users except superadmins.</li>\n</ul>\n<p>2.7.10 - August 18, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Some options from free plugin were not automatically transferred</li>\n<li>Prevented JS error when outputting forms with no submit button.</li>\n<li>Using 0 as a Redirect URL resulted in a blank page.</li>\n<li>Sign-up checkbox was showing twice in the Easy Digital Downloads checkout when showing registration fields, thanks <a href=\"https://github.com/growdev\">Daniel Espinoza</a>.</li>\n<li>Default form was not automatically translated for languages other than English.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Better way to hide the honeypot field, which stops bots from subscribing to your lists.</li>\n<li>role="form" is no longer needed, thanks <a href=\"https://github.com/XhmikosR\">XhmikosR</a>!</li>\n<li>Filter mc4wp_form_animate_scroll now disables just the scroll animation, not the scroll itself.</li>\n<li>Revamped UI for MailChimp lists overview</li>\n<li>Updated German & Greek translations.</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Added mc4wp_form_is_submitted() and mc4wp_form_get_response_html() functions.</li>\n</ul>\n<p>2.7.9 - July 14, 2015</p>\n<p><strong>Bugfixes</strong></p>\n<ul>\n<li>Only show Dashboard widget with most recent log entries to users with the required capability.</li>\n</ul>\n<p>2.7.8 - July 13, 2015</p>\n<p><strong>Bugfixes</strong></p>\n<ul>\n<li>Fix for MultiSite activated licenses that keep on deactivating.</li>\n<li>Fatal error in Styles Builder form preview when BuddyPress was activated.</li>\n<li>Visual editors were not loading when using the Page Builder in Nevada theme</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Use the same order as MailChimp.com, which is useful when you have over 100 MailChimp lists.</li>\n<li>Use /* ... */ for inline JavaScript comments to prevent errors with minified HTML.</li>\n<li>Add IP address and referring URL to email notification</li>\n<li>Various textual improvements</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Filter: mc4wp_form_animate_scroll to disable animated scroll-to after submitting a form.</li>\n<li>Add {current_path} variable to use in form templates.</li>\n<li>Add default attribute to {data_name} variables, usage: {data_something default=\"The default value\"}</li>\n</ul>\n<p>2.7.7 - July 6, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Undefined index notice when visitor\'s USER_AGENT is not set.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Relayed the browser\'s Accept-Language header to MailChimp for auto-detecting a subscriber\'s language.</li>\n<li>Better CSS for form reset</li>\n<li>Updated HTML5 placeholder polyfill</li>\n</ul>\n<p>2.7.6 - June 16, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Default messages in general form settings were not saving correctly</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Creating a stylesheet from the Styles Builder will now bust CDN & browser caches</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Added a dashboard widget with the last few subscribe attempts</li>\n<li>You can now export your Reports > Log section</li>\n</ul>\n<p>2.7.5 - May 30, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Styles Builder only showing 5 forms</li>\n<li>GROUPINGS not being sent to MailChimp</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Minor improvements to generated CSS by Styles Builder</li>\n</ul>\n<p>2.7.4 - May 26, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Get correct IP address when using a proxy like Cloudflare</li>\n<li>JS error when using new style of updating plugins</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<p>This release was mainly focused the Form Styles Builder and includes the following improvements.</p>\n<ul>\n<li>Copy styles from your other forms.</li>\n<li>Upload & set a background image or pattern for your form.</li>\n<li>Set a border radius on buttons & fields</li>\n<li>Cleaner generated stylesheet, only the minimum amount of rules are outputted.</li>\n<li>Responsiveness improvements to generated CSS rules.</li>\n<li>Styles are no longer generated for deleted forms.</li>\n<li>Stylesheet files are now updated, instead of creating a separate new file.</li>\n<li>All text in the Styles Builder interface is now translatable</li>\n<li>Various other code & usability improvements</li>\n</ul>\n<p>Other improvements:</p>\n<ul>\n<li>Create short form on plugin installation</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Added Russian translations</li>\n</ul>\n<p>2.7.3 - May 11, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Get correct IP address when using a proxy like Cloudflare</li>\n<li>Requests were no longer logged since v2.7.2</li>\n</ul>\n<p>2.7.2 - May 10, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Log report no longer showed which form was used since v2.7.</li>\n</ul>\n<p>2.7.1 - May 7, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Fixes a JavaScript issue with lazy-loaded AJAX enabled forms</li>\n<li>New style of updating plugins not working for MailChimp for WordPress</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>IE8 compatibility for JS-helpers (honeypot hider & mc4wp-form-submitted class)</li>\n</ul>\n<p>2.7 - May 6, 2015</p>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Various code & testability improvements.</li>\n<li>You can now use <a href=\"https://mc4wp.com/kb/using-variables-in-your-form-or-messages/\">form variables in both forms, messages as checkbox label texts</a>.</li>\n<li>Use Composer for autoloading all plugin classes (PHP 5.2 compatible)</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Add role attribute to form elements</li>\n<li><a href=\"https://mc4wp.com/blog/new-feature-unsubscribe-forms/\">Unsubscribe calls can be handled using our forms now too</a>.</li>\n<li>Added Indonesian translation.</li>\n</ul>\n<p>2.6.6 - April 27, 2015</p>\n<p><strong>Fixes</strong>:</p>\n<ul>\n<li>"Invalid argument" warning when generating text for email confirmation</li>\n</ul>\n<p>2.6.5 - April 24, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Fatal error when trying to create a new form for some users on v2.6.4</li>\n</ul>\n<p>2.6.4 - April 20, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Integration with any type of user registration not correctly picking up first- and last names</li>\n<li>AJAX forms not activated when other plugin throw JavaScript error in global scope</li>\n<li>Allow 0 as Redirect URL again, to override general setting for individual forms.</li>\n<li>Add explicit menu item position, fixes very rare menu item issue.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>In very rare cases, the jQuery dependency was not loaded.</li>\n<li>AJAX requests are now pointed at /wp-admin/admin-ajax?mc4wp_action=subscribe</li>\n<li>Updated all translations</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Portugese, Russian, Turkish, Vietnamese and German (CH) translations.</li>\n</ul>\n<p>v2.6.3 - March 24, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>MultiSite was stripping all form fields form non-superadmins.</li>\n<li>API key field value was not properly escaped.</li>\n<li>Background images were stripped from submit buttons.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Use $wpdb->prepare for querying Reports graph data.</li>\n<li>Better sanitising of all settings.</li>\n<li>Updated all translations.</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Added mc4wp_before_checkbox and mc4wp_after_checkbox filters to easily add more fields to sign-up checkbox integrations.</li>\n<li>Added some helper methods related to interest groupings to MC4WP_MailChimp class.</li>\n<li>Allow setting custom MailChimp lists to subscribe to using lists attribute on shortcode.</li>\n</ul>\n<p>v2.6.2 - March 11, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Honeypot field was visible for themes or templates not calling wp_head() and wp_footer()</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Major refactor of AJAX functionality, now using vanilla JavaScript where possible.</li>\n<li>Major refactor of code for Reports graph.</li>\n<li>The jQuery Forms library is no longer used for AJAX forms, saving an additional HTTP request per page load.</li>\n<li>Various minor code improvements</li>\n<li>Updated German, Spanish, Brazilian, French, Hungarian and Russian translations.</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Added <a href=\"https://github.com/dannyvankooten/mailchimp-for-wordpress/blob/06f0c833027f347a288d2cb9805e0614767409b6/includes/class-form-request.php#L292-L301\">mc4wp_form_success</a> action hook to hook into successful sign-ups</li>\n<li>Added <a href=\"https://github.com/dannyvankooten/mailchimp-for-wordpress/blob/06f0c833027f347a288d2cb9805e0614767409b6/includes/class-form-request.php#L138-L142\">mc4wp_form_data</a> filter hook to modify all form data before processing</li>\n</ul>\n<p>2.6.1 - February 26, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>mc4wp-submitted class was not added in IE8</li>\n<li>Incorrect action attribute on form element for some server configurations</li>\n<li>Custom date range on Reports page didn\'t show 2015 as a year option</li>\n<li>CSS reset wasn\'t working for WooCommerce checkout sign-up checkbox</li>\n<li>License key wasn\'t saved properly when using certain security plugins</li>\n<li>AJAX response not appearing when form is rendered from POST request</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Anti-SPAM improvements: a better honeypot field and a timestamp field to prevent instant form submissions.</li>\n<li>Refactor JS for AJAX functionality. All events have been renamed (with backwards compatibility).</li>\n<li>Reset background-image on submit buttons when using CSS themes</li>\n<li>Smarter email detection when integrating with third-party forms</li>\n<li>Added various missing translations for the Reports page</li>\n<li>Textual improvements to settings pages</li>\n<li>Updated all translations</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Custom fallback for browsers not supporting date fields</li>\n</ul>\n<p>2.6 - February 12, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Translations were loaded too late for certain strings, like admin menu items.</li>\n<li>Renewal link now points to correct URL.</li>\n<li>WooCommerce checkout sign-up not working for cheque\'s.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Presence of required fields in your form mark-up is now validates as you type.</li>\n<li>Massive improvements to logging functionality. All MailChimp requests are now logged, showing you failed requests as well.</li>\n<li>Various JavaScript improvements.</li>\n<li>Updated translations</li>\n<li>Improved WPML compatibility.</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li><a href=\"https://wordpress.org/plugins/mailchimp-top-bar/\">MailChimp Top Bar</a> now integrates with log.</li>\n</ul>\n<p>2.5.6 - February 2, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Issue with "insufficient permissions" message showing when using Styles Builder and changing forms.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>You will now be asked for a confirmation when deleting a form</li>\n<li>Updated all URL\'s to use https protocol</li>\n<li>On error, number fields will now be repopulated as well</li>\n<li>Code style improvements</li>\n</ul>\n<p>2.5.5 - January 24, 2015</p>\n<p>Minor additions and improvements for compatibility with the <a href=\"https://wordpress.org/plugins/mailchimp-sync/\">MailChimp Sync plugin</a>.</p>\n<p>2.5.4 - January 19, 2014</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Issue where license auto-deactivated for certain configurations after each update check</li>\n</ul>\n<p>2.5.3 - January 14, 2014</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Plugin wouldn\'t connect for people with API keys ending in -us10</li>\n<li>Issue where form response wasn\'t shown when form was set to hide after success.</li>\n</ul>\n<p>2.5.2 - January 13, 2014</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Plugin wasn\'t connecting for people on MailChimp server "us10"</li>\n<li>Issue with changelog not showing for plugin updates</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Use JS object to transfer lists data to Field Wizard.</li>\n<li>Field Wizard strings are now translatable</li>\n<li>Add is_spam method to checkbox integration to battle spam sign-ups</li>\n<li>Easy Digital Downloads & WooCommerce checkbox integration now runs after payment is complete, since that\'s more important</li>\n<li>Many minor code & code style improvements</li>\n<li>Updated Danish, German, Spanish, French, Italian and Portugese (Brazil) translations</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>You can now set MC_LOCATION, MC_NOTES and MC_LANGUAGE from your form HTML</li>\n<li>The submit button now has a default value when generating HTML for it</li>\n</ul>\n<p>2.5.1 - December 8, 2014</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Email in URLs after redirecting lost the @ character.</li>\n<li>Textarea\'s are now re-populated on errors as well.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<p>Email is no longer showed on a separate line in email notifications.</p>\n<p>2.5 - December 5, 2014</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Fixed JS event bug for older versions of IE</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Major refactor of the code that handles form submissions</li>\n<li>Notification emails will now show "pretty" field names</li>\n<li>Form fields are now only sent to lists that actually have that field</li>\n<li>Updated Dutch, Italian, Hungarian and Spanish translation</li>\n<li>Minor code improvements</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Added {email} tag to use in form mark-up</li>\n<li>Added French and Spanish (Puerto Rico) translation</li>\n</ul>\n<p>2.4.6 - November 18, 2014</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>mc4wp_get_current_url() fix for IIS servers</li>\n<li>Protocol issue when using custom stylesheet</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Refactored AJAX script</li>\n<li>Added & updated translations</li>\n<li>Better handling of expired licenses</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Automatic formatting of MC_LANGUAGE field</li>\n<li>mc4wp_form_redirect_delay filter to control time before redirect when using AJAX.</li>\n</ul>\n<p>2.4.5 - October 9, 2014</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>WooCommerce integration was sending last name as FNAME.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Fix issue with aggressive WP Super Cache configuration</li>\n<li>Make sure is_email is only called on strings</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Added a filter to control the length of mc4wp_email cookie</li>\n</ul>\n<p>2.4.4 - September 24, 2014</p>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>AJAX Loader is now lazy loaded</li>\n<li>Minor performance improvement to class autoloader</li>\n<li>Updated Dutch translations</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Added .mc4wp-form-submitted CSS class to style errors after submission attempts</li>\n<li>Added mc4wp-form-success and .mc4wp-form-error CSS classes to AJAX forms</li>\n<li>Added Hungarian translations</li>\n</ul>\n<p>2.4.3 - September 14, 2014</p>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Various security improvements</li>\n<li>Added Slovak translation</li>\n<li>Updated Dutch, Italian and Spanish translations</li>\n<li>Improvements to Styles Builder default CSS</li>\n<li>Improvements to WooCommerce checkbox integration</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Allow to change position of checkbox in WooCommerce checkout forms</li>\n<li>Add mc4wp.ajax.before and mc4wp.ajax.after event hooks.</li>\n<li>Added some missing text domains</li>\n</ul>\n<p>2.4.2 - September 1, 2014</p>\n<p><strong>Bugfixes</strong></p>\n<ul>\n<li>Dequeue zTranslate assets on mc4wp-form pages</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>URL clean-up for license related requests.</li>\n<li>Add double opt-in note to email summaries</li>\n<li>Add -webkit-appearance reset to checkbox CSS</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Integration with Events Manager</li>\n</ul>\n<p>2.4.1 - August 26, 2014</p>\n<p><strong>Bugfixes</strong></p>\n<ul>\n<li>Minified JS files for changes in Styles Builder</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Improved process for license (de)activation and performing update checks.</li>\n</ul>\n<p>2.4 - August 25, 2014</p>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Feature to create multiple form styles, where styles only apply to 1 individual form.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Minor CSS improvement for WordPress 4.0 compatibility</li>\n<li>Add vertical align reset to Styles Builder</li>\n<li>Change API url to new site: <a href=\"https://mc4wp.com/\">https://mc4wp.com/</a></li>\n<li>Updated Italian translations</li>\n<li>Take array fields into consideration when checking if fields are present in form mark-up</li>\n<li>Don\'t use {response} tag if form is hidden after success</li>\n</ul>\n<p><strong>Bugfixes</strong></p>\n<ul>\n<li>Remove obsolete closing form tag</li>\n<li>Remove text attribute from textarea elements</li>\n</ul>\n<p>2.3.2 - August 12, 2014</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>mc4wp_get_current_url() now takes ports and the WP site url option into account</li>\n<li>Quicktags buttons were not showing because script was not loaded, now it is.</li>\n<li>Fixed CSS bug for table column widths in other languages than English</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Added deprecated warning to some functions</li>\n<li>The "license inactive" notice can now be hidden</li>\n<li>Improved CSS reset for the sign-up checkbox</li>\n<li>Updated Dutch translations</li>\n<li>Updated English translations</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Added mc4wp_form_error_{ERROR_CODE} action hook to allow hooking into all form errors.</li>\n<li>Added {response} tag to allow setting a custom response position</li>\n<li>Added various filters to customize form HTML</li>\n<li>Added German language, thanks to <a href=\"http://slotnerd.de/\">Jochen Gererstorfer</a></li>\n<li>Added Italian language, thanks to <a href=\"http://www.casalegnovernici.it/\">Gianpaolo</a></li>\n<li>Added link to plugin documentation</li>\n</ul>\n<p>2.3.1 - July 29, 2014</p>\n<p>Improvements</p>\n<ul>\n<li>Required MailChimp fields are now validated server side as well.</li>\n<li>Birthday and address fields are now automatically formatted in the correct format</li>\n<li>Improved code, memory usage and class documentation</li>\n</ul>\n<p>Additions</p>\n<ul>\n<li>Option to set the text for when a required field is missing</li>\n</ul>\n<p>2.3 - July 25, 2014</p>\n<p>Fixes</p>\n<ul>\n<li>Generated CSS was showing \'Array\' when file couldn\'t be automatically created</li>\n</ul>\n<p>Improvements</p>\n<ul>\n<li>Improved JS code for AJAX forms</li>\n<li>Minified assets (CSS & JSS files) will now be loaded, unless SCRIPT_DEBUG is true</li>\n<li>Submit button is now disabled during the AJAX request, to prevent double sign-ups</li>\n</ul>\n<p>Additions</p>\n<ul>\n<li>Added mc4wp_lazy_load_ajax_scripts filter to disable lazy loading of AJAX scripts</li>\n<li>Added JS events: mc4wp.success, mc4wp.error and mc4wp.submit hooks</li>\n<li>Added mc4wp_form_message_position filter to choose position of form messages</li>\n<li>Added mc4wp_form_error_message to register custom error messages</li>\n<li>Added Brazilian language files</li>\n</ul>\n\";}s:6:\"author\";s:45:\"<a href=\"https://ibericode.com\">ibericode</a>\";s:14:\"author_profile\";s:40:\"https://profiles.wordpress.org/ibericode\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:5:\"4.3.1\";s:12:\"last_updated\";s:19:\"2015-11-11 05:20:16\";s:17:\"short_description\";s:43:\"MailChimp for WordPress. The absolute best.\";s:4:\"tags\";a:5:{i:0;s:9:\"mailchimp\";i:1;s:9:\"subscribe\";i:2;s:11:\"woocommerce\";i:3;s:14:\"contact form 7\";i:4;s:10:\"buddypress\";}s:7:\"banners\";a:1:{s:4:\"high\";s:68:\"//ps.w.org/mailchimp-for-wp/assets/banner-772x250.png?rev=1447683280\";}s:18:\"license_expiration\";s:10:\"1469202952\";s:6:\"plugin\";s:45:\"mailchimp-for-wp-pro/mailchimp-for-wp-pro.php\";}','yes'),(2010,'rewrite_rules','a:88:{s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:25:\"index.php?xsl=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:38:\"mc4wp-form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"mc4wp-form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"mc4wp-form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"mc4wp-form/([^/]+)/trackback/?$\";s:37:\"index.php?mc4wp-form=$matches[1]&tb=1\";s:39:\"mc4wp-form/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&paged=$matches[2]\";s:46:\"mc4wp-form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&cpage=$matches[2]\";s:31:\"mc4wp-form/([^/]+)(/[0-9]+)?/?$\";s:49:\"index.php?mc4wp-form=$matches[1]&page=$matches[2]\";s:27:\"mc4wp-form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"mc4wp-form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"mc4wp-form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(2015,'_site_transient_timeout_theme_roots','1447686793','yes'),(2016,'_site_transient_theme_roots','a:1:{s:8:\"backfeed\";s:7:\"/themes\";}','yes'),(2018,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.3.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.3.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.3.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.3.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.3.1\";s:7:\"version\";s:5:\"4.3.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1447686591;s:15:\"version_checked\";s:5:\"4.3.1\";s:12:\"translations\";a:1:{i:0;a:7:{s:4:\"type\";s:4:\"core\";s:4:\"slug\";s:7:\"default\";s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:19:\"2015-08-20 19:10:20\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.3.1/zh_CN.zip\";s:10:\"autoupdate\";b:1;}}}','yes'),(2019,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1447686592;s:7:\"checked\";a:1:{s:8:\"backfeed\";s:5:\"8.2.1\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','yes'),(2024,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1447697294','yes'),(2025,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','a:100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"5550\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"3478\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"3435\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"2930\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"2674\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"2131\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"2122\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"1951\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"1918\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"1901\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"1896\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1842\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1751\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:4:\"1552\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:4:\"1474\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:4:\"1434\";}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";s:4:\"1286\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:4:\"1264\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:4:\"1249\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:4:\"1213\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:4:\"1105\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:4:\"1044\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:4:\"1009\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"959\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"926\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"893\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"861\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"852\";}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";s:3:\"844\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"841\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"821\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"786\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"752\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"719\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"713\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"712\";}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";s:3:\"710\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"709\";}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";s:3:\"692\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"689\";}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"Share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";s:3:\"687\";}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";s:3:\"667\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"665\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"660\";}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";s:3:\"636\";}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";s:3:\"624\";}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"CSS\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";s:3:\"618\";}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";s:3:\"617\";}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";s:3:\"611\";}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";s:3:\"609\";}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";s:3:\"589\";}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";s:3:\"587\";}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"572\";}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";s:3:\"572\";}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";s:3:\"563\";}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";s:3:\"562\";}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";s:3:\"560\";}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";s:3:\"558\";}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";s:3:\"551\";}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";s:3:\"545\";}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";s:3:\"535\";}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";s:3:\"514\";}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";s:3:\"513\";}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";s:3:\"509\";}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";s:3:\"507\";}s:7:\"picture\";a:3:{s:4:\"name\";s:7:\"picture\";s:4:\"slug\";s:7:\"picture\";s:5:\"count\";s:3:\"498\";}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";s:3:\"495\";}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";s:3:\"491\";}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";s:3:\"488\";}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";s:3:\"485\";}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";s:3:\"466\";}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";s:3:\"462\";}s:8:\"pictures\";a:3:{s:4:\"name\";s:8:\"pictures\";s:4:\"slug\";s:8:\"pictures\";s:5:\"count\";s:3:\"449\";}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";s:3:\"443\";}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";s:3:\"438\";}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";s:3:\"437\";}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";s:3:\"425\";}s:5:\"flash\";a:3:{s:4:\"name\";s:5:\"flash\";s:4:\"slug\";s:5:\"flash\";s:5:\"count\";s:3:\"419\";}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";s:3:\"415\";}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";s:3:\"411\";}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";s:3:\"400\";}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";s:3:\"397\";}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"News\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";s:3:\"394\";}s:4:\"shop\";a:3:{s:4:\"name\";s:4:\"shop\";s:4:\"slug\";s:4:\"shop\";s:5:\"count\";s:3:\"393\";}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";s:3:\"391\";}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";s:3:\"387\";}s:3:\"tag\";a:3:{s:4:\"name\";s:3:\"tag\";s:4:\"slug\";s:3:\"tag\";s:5:\"count\";s:3:\"386\";}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";s:3:\"382\";}s:9:\"thumbnail\";a:3:{s:4:\"name\";s:9:\"thumbnail\";s:4:\"slug\";s:9:\"thumbnail\";s:5:\"count\";s:3:\"379\";}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";s:3:\"375\";}s:4:\"text\";a:3:{s:4:\"name\";s:4:\"text\";s:4:\"slug\";s:4:\"text\";s:5:\"count\";s:3:\"375\";}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";s:3:\"373\";}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";s:3:\"372\";}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";s:3:\"372\";}s:6:\"upload\";a:3:{s:4:\"name\";s:6:\"upload\";s:4:\"slug\";s:6:\"upload\";s:5:\"count\";s:3:\"366\";}s:9:\"automatic\";a:3:{s:4:\"name\";s:9:\"automatic\";s:4:\"slug\";s:9:\"automatic\";s:5:\"count\";s:3:\"364\";}s:7:\"sharing\";a:3:{s:4:\"name\";s:7:\"sharing\";s:4:\"slug\";s:7:\"sharing\";s:5:\"count\";s:3:\"363\";}s:8:\"lightbox\";a:3:{s:4:\"name\";s:8:\"lightbox\";s:4:\"slug\";s:8:\"lightbox\";s:5:\"count\";s:3:\"363\";}s:7:\"profile\";a:3:{s:4:\"name\";s:7:\"profile\";s:4:\"slug\";s:7:\"profile\";s:5:\"count\";s:3:\"362\";}s:14:\"administration\";a:3:{s:4:\"name\";s:14:\"administration\";s:4:\"slug\";s:14:\"administration\";s:5:\"count\";s:3:\"360\";}}','yes'),(2026,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1447686621;s:7:\"checked\";a:8:{s:34:\"advanced-custom-fields-pro/acf.php\";s:5:\"5.3.1\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:3:\"4.3\";s:45:\"mailchimp-for-wp-pro/mailchimp-for-wp-pro.php\";s:6:\"2.7.20\";s:29:\"postman-smtp/postman-smtp.php\";s:5:\"1.7.2\";s:13:\"soil/soil.php\";s:5:\"3.4.0\";s:41:\"wordpress-importer/wordpress-importer.php\";s:5:\"0.6.1\";s:27:\"wp-super-cache/wp-cache.php\";s:5:\"1.4.6\";s:24:\"wordpress-seo/wp-seo.php\";s:5:\"2.3.5\";}s:8:\"response\";a:2:{s:34:\"advanced-custom-fields-pro/acf.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:7:\"5.3.2.2\";s:3:\"url\";s:36:\"http://www.advancedcustomfields.com/\";s:7:\"package\";s:0:\"\";}s:45:\"mailchimp-for-wp-pro/mailchimp-for-wp-pro.php\";O:8:\"stdClass\":19:{s:13:\"license_check\";s:5:\"valid\";s:11:\"new_version\";s:6:\"2.7.25\";s:4:\"name\";s:23:\"MailChimp for WordPress\";s:4:\"slug\";s:20:\"mailchimp-for-wp-pro\";s:3:\"url\";s:17:\"https://mc4wp.com\";s:8:\"homepage\";s:17:\"https://mc4wp.com\";s:7:\"package\";s:150:\"https://mc4wp.com/edd-sl/package_download/MTQ0NzcyNjQ4MDoyOWIzZDE5MzhmNjY5MDdkODUwYzlkOTFmZDY5MTY1Zjo4OTk6YjhjM2E1NzVlOGM3Y2YxYmVjZWY5NzMyNjI5OWFhOTY=\";s:13:\"download_link\";s:150:\"https://mc4wp.com/edd-sl/package_download/MTQ0NzcyNjQ4MDoyOWIzZDE5MzhmNjY5MDdkODUwYzlkOTFmZDY5MTY1Zjo4OTk6YjhjM2E1NzVlOGM3Y2YxYmVjZWY5NzMyNjI5OWFhOTY=\";s:8:\"sections\";a:2:{s:11:\"description\";s:940:\"<p><em>Adding sign-up methods for your MailChimp lists to your WordPress site should be easy. With this plugin, it finally is.</em></p>\n<p>MailChimp for WordPress lets you create a highly customizable sign-up form which you can display wherever you want it to display using a simple shortcode, widget or template function. You can also add sign-up checkboxes to various forms on your site, like your comment or contact forms.</p>\n<p><strong>Sign-Up Forms</strong></p>\n<p>Easily create sign-up forms for your MailChimp list and display it using a simple shortcode, a widget or PHP function.</p>\n<p><strong>Sign-Up Checkboxes</strong></p>\n<p>Add sign-up checkboxes to any form on your website. The plugin offers built-in integration with comment forms, registration forms, Contact Form 7, BuddyPress, bbPress and WordPress MultiSite.</p>\n<p>For more information, please take a look at <a href=\"https://mc4wp.com/\">the plugin website</a>.</p>\n\";s:9:\"changelog\";s:24950:\"<p>2.7.25 - November 11, 2015</p>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>AJAX loader image is now created & loaded in JavaScript to make sure it\'s always there. </li>\n<li>Preparations for <a href=\"https://mc4wp.com/blog/breaking-backwards-compatibility-in-version-3-0/\">major upcoming changes in version 3.0</a>.</li>\n<li>Don\'t show cookie data in email notification.</li>\n</ul>\n<p>2.7.24 - November 2, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>AJAX forms not working when loader image not found on server.</li>\n<li>Prevent double AJAX request (edge case bug)</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Usage tracking is now scheduled once a week, instead of daily.</li>\n</ul>\n<p>2.7.23 - October 22, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Honeypot field being autofilled in Chrome, causing a form error.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Updated Portugese translations</li>\n<li>Manual CSS field in Styles Builder now adjusts to the number of lines in the textarea.</li>\n</ul>\n<p>2.7.22 - October 14, 2015</p>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Textual improvements to general settings page.</li>\n<li>Connectivity issues with MailChimp will now <em>always</em> show an error message.</li>\n<li>Renewing MailChimp lists will now also update the output of the {subscriber_count} tag.</li>\n</ul>\n<p>2.7.21 - October 12, 2015</p>\n<p>Added anonymous usage tracking to help us further improve the plugin. No sensitive data is tracked.</p>\n<p>2.7.20 - October 2, 2015</p>\n<p>Fixes license issue with network-activated plugins.</p>\n<p>2.7.19 - October 1, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Changelog not showing for available updates.</li>\n<li>JavaScript error when page has no submit button.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Various improvements to the license management & plugin update functionality.</li>\n<li>Styles Builder: improved error message when stylesheet can\'t be created.</li>\n<li>Reports now uses local WordPress\' timezone.</li>\n<li>Only prefix url fields with http:// if they are not left empty.</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>You can now control whether a background image should repeat itself in the Styles Builder.</li>\n</ul>\n<p>2.7.18 - September 25, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Honeypot causing horizontal scrollbar on RTL sites.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Minor styling improvements for RTL sites.</li>\n<li>MailChimp list fields of type "website" will now become HTML5 url type fields.</li>\n<li>Auto-prefix fields of type url with http://</li>\n</ul>\n<p>2.7.17 - September 23, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Licenses were showing as expired, when they were not.</li>\n<li>Certain fields were incorrectly being hidden when using one of the default form themes.</li>\n</ul>\n<p>2.7.16 - September 21, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Issue with interest groupings not being fetched after updating to v2.7.15</li>\n</ul>\n<p>2.7.15 - September 21, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Honeypot field being filled by browser\'s autocomplete.</li>\n<li>Empty response from MailChimp API</li>\n<li>Your license expiration date is now updated with each update check.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Do not query MailChimp API for interest groupings if list has none.</li>\n<li>Integration errors are now logged to PHP\'s error log for easier debugging.</li>\n<li>Email notification now uses local date & time format.</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>You can now use shortcodes in the form content.</li>\n</ul>\n<p>2.7.14 - September 9, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>CSS issue with rounded corners on Mobile Safari.</li>\n</ul>\n<p>2.7.13 - September 7, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Showing "not connected" when the plugin was actually connected to MailChimp.</li>\n<li>Issue with address fields when addr1 was not given.</li>\n<li>Comment form checkbox not outputted for some older themes.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Do not flush MailChimp cache on every settings save.</li>\n<li>Add default CSS styles for number fields.</li>\n</ul>\n<p>2.7.12 - September 1, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Line height inconsistency between Styles Builder preview and actual result</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>MailChimp lists cache is now automatically flushed after changing your API key setting.</li>\n<li>Better field population after submitting a form with errors.</li>\n<li>More helpful error message when no list is selected.</li>\n<li>Translate options when installing plugin from a language other than English.</li>\n<li>Add form mark-up to WPML configuration file.</li>\n<li>Sign-up checkbox in comment form is now shown before the "submit comment" button.</li>\n<li>URL-encode variables in "Redirect URL" setting.</li>\n<li>Better error message when connected to MailChimp but account has no lists.</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Add mc4wp_form_action filter to set a custom action attribute on the form element.</li>\n</ul>\n<p>2.7.11 - August 18, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Multisite stripping all form HTML for all users except superadmins.</li>\n</ul>\n<p>2.7.10 - August 18, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Some options from free plugin were not automatically transferred</li>\n<li>Prevented JS error when outputting forms with no submit button.</li>\n<li>Using 0 as a Redirect URL resulted in a blank page.</li>\n<li>Sign-up checkbox was showing twice in the Easy Digital Downloads checkout when showing registration fields, thanks <a href=\"https://github.com/growdev\">Daniel Espinoza</a>.</li>\n<li>Default form was not automatically translated for languages other than English.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Better way to hide the honeypot field, which stops bots from subscribing to your lists.</li>\n<li>role="form" is no longer needed, thanks <a href=\"https://github.com/XhmikosR\">XhmikosR</a>!</li>\n<li>Filter mc4wp_form_animate_scroll now disables just the scroll animation, not the scroll itself.</li>\n<li>Revamped UI for MailChimp lists overview</li>\n<li>Updated German & Greek translations.</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Added mc4wp_form_is_submitted() and mc4wp_form_get_response_html() functions.</li>\n</ul>\n<p>2.7.9 - July 14, 2015</p>\n<p><strong>Bugfixes</strong></p>\n<ul>\n<li>Only show Dashboard widget with most recent log entries to users with the required capability.</li>\n</ul>\n<p>2.7.8 - July 13, 2015</p>\n<p><strong>Bugfixes</strong></p>\n<ul>\n<li>Fix for MultiSite activated licenses that keep on deactivating.</li>\n<li>Fatal error in Styles Builder form preview when BuddyPress was activated.</li>\n<li>Visual editors were not loading when using the Page Builder in Nevada theme</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Use the same order as MailChimp.com, which is useful when you have over 100 MailChimp lists.</li>\n<li>Use /* ... */ for inline JavaScript comments to prevent errors with minified HTML.</li>\n<li>Add IP address and referring URL to email notification</li>\n<li>Various textual improvements</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Filter: mc4wp_form_animate_scroll to disable animated scroll-to after submitting a form.</li>\n<li>Add {current_path} variable to use in form templates.</li>\n<li>Add default attribute to {data_name} variables, usage: {data_something default=\"The default value\"}</li>\n</ul>\n<p>2.7.7 - July 6, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Undefined index notice when visitor\'s USER_AGENT is not set.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Relayed the browser\'s Accept-Language header to MailChimp for auto-detecting a subscriber\'s language.</li>\n<li>Better CSS for form reset</li>\n<li>Updated HTML5 placeholder polyfill</li>\n</ul>\n<p>2.7.6 - June 16, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Default messages in general form settings were not saving correctly</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Creating a stylesheet from the Styles Builder will now bust CDN & browser caches</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Added a dashboard widget with the last few subscribe attempts</li>\n<li>You can now export your Reports > Log section</li>\n</ul>\n<p>2.7.5 - May 30, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Styles Builder only showing 5 forms</li>\n<li>GROUPINGS not being sent to MailChimp</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Minor improvements to generated CSS by Styles Builder</li>\n</ul>\n<p>2.7.4 - May 26, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Get correct IP address when using a proxy like Cloudflare</li>\n<li>JS error when using new style of updating plugins</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<p>This release was mainly focused the Form Styles Builder and includes the following improvements.</p>\n<ul>\n<li>Copy styles from your other forms.</li>\n<li>Upload & set a background image or pattern for your form.</li>\n<li>Set a border radius on buttons & fields</li>\n<li>Cleaner generated stylesheet, only the minimum amount of rules are outputted.</li>\n<li>Responsiveness improvements to generated CSS rules.</li>\n<li>Styles are no longer generated for deleted forms.</li>\n<li>Stylesheet files are now updated, instead of creating a separate new file.</li>\n<li>All text in the Styles Builder interface is now translatable</li>\n<li>Various other code & usability improvements</li>\n</ul>\n<p>Other improvements:</p>\n<ul>\n<li>Create short form on plugin installation</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Added Russian translations</li>\n</ul>\n<p>2.7.3 - May 11, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Get correct IP address when using a proxy like Cloudflare</li>\n<li>Requests were no longer logged since v2.7.2</li>\n</ul>\n<p>2.7.2 - May 10, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Log report no longer showed which form was used since v2.7.</li>\n</ul>\n<p>2.7.1 - May 7, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Fixes a JavaScript issue with lazy-loaded AJAX enabled forms</li>\n<li>New style of updating plugins not working for MailChimp for WordPress</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>IE8 compatibility for JS-helpers (honeypot hider & mc4wp-form-submitted class)</li>\n</ul>\n<p>2.7 - May 6, 2015</p>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Various code & testability improvements.</li>\n<li>You can now use <a href=\"https://mc4wp.com/kb/using-variables-in-your-form-or-messages/\">form variables in both forms, messages as checkbox label texts</a>.</li>\n<li>Use Composer for autoloading all plugin classes (PHP 5.2 compatible)</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Add role attribute to form elements</li>\n<li><a href=\"https://mc4wp.com/blog/new-feature-unsubscribe-forms/\">Unsubscribe calls can be handled using our forms now too</a>.</li>\n<li>Added Indonesian translation.</li>\n</ul>\n<p>2.6.6 - April 27, 2015</p>\n<p><strong>Fixes</strong>:</p>\n<ul>\n<li>"Invalid argument" warning when generating text for email confirmation</li>\n</ul>\n<p>2.6.5 - April 24, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Fatal error when trying to create a new form for some users on v2.6.4</li>\n</ul>\n<p>2.6.4 - April 20, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Integration with any type of user registration not correctly picking up first- and last names</li>\n<li>AJAX forms not activated when other plugin throw JavaScript error in global scope</li>\n<li>Allow 0 as Redirect URL again, to override general setting for individual forms.</li>\n<li>Add explicit menu item position, fixes very rare menu item issue.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>In very rare cases, the jQuery dependency was not loaded.</li>\n<li>AJAX requests are now pointed at /wp-admin/admin-ajax?mc4wp_action=subscribe</li>\n<li>Updated all translations</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Portugese, Russian, Turkish, Vietnamese and German (CH) translations.</li>\n</ul>\n<p>v2.6.3 - March 24, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>MultiSite was stripping all form fields form non-superadmins.</li>\n<li>API key field value was not properly escaped.</li>\n<li>Background images were stripped from submit buttons.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Use $wpdb->prepare for querying Reports graph data.</li>\n<li>Better sanitising of all settings.</li>\n<li>Updated all translations.</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Added mc4wp_before_checkbox and mc4wp_after_checkbox filters to easily add more fields to sign-up checkbox integrations.</li>\n<li>Added some helper methods related to interest groupings to MC4WP_MailChimp class.</li>\n<li>Allow setting custom MailChimp lists to subscribe to using lists attribute on shortcode.</li>\n</ul>\n<p>v2.6.2 - March 11, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Honeypot field was visible for themes or templates not calling wp_head() and wp_footer()</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Major refactor of AJAX functionality, now using vanilla JavaScript where possible.</li>\n<li>Major refactor of code for Reports graph.</li>\n<li>The jQuery Forms library is no longer used for AJAX forms, saving an additional HTTP request per page load.</li>\n<li>Various minor code improvements</li>\n<li>Updated German, Spanish, Brazilian, French, Hungarian and Russian translations.</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Added <a href=\"https://github.com/dannyvankooten/mailchimp-for-wordpress/blob/06f0c833027f347a288d2cb9805e0614767409b6/includes/class-form-request.php#L292-L301\">mc4wp_form_success</a> action hook to hook into successful sign-ups</li>\n<li>Added <a href=\"https://github.com/dannyvankooten/mailchimp-for-wordpress/blob/06f0c833027f347a288d2cb9805e0614767409b6/includes/class-form-request.php#L138-L142\">mc4wp_form_data</a> filter hook to modify all form data before processing</li>\n</ul>\n<p>2.6.1 - February 26, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>mc4wp-submitted class was not added in IE8</li>\n<li>Incorrect action attribute on form element for some server configurations</li>\n<li>Custom date range on Reports page didn\'t show 2015 as a year option</li>\n<li>CSS reset wasn\'t working for WooCommerce checkout sign-up checkbox</li>\n<li>License key wasn\'t saved properly when using certain security plugins</li>\n<li>AJAX response not appearing when form is rendered from POST request</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Anti-SPAM improvements: a better honeypot field and a timestamp field to prevent instant form submissions.</li>\n<li>Refactor JS for AJAX functionality. All events have been renamed (with backwards compatibility).</li>\n<li>Reset background-image on submit buttons when using CSS themes</li>\n<li>Smarter email detection when integrating with third-party forms</li>\n<li>Added various missing translations for the Reports page</li>\n<li>Textual improvements to settings pages</li>\n<li>Updated all translations</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Custom fallback for browsers not supporting date fields</li>\n</ul>\n<p>2.6 - February 12, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Translations were loaded too late for certain strings, like admin menu items.</li>\n<li>Renewal link now points to correct URL.</li>\n<li>WooCommerce checkout sign-up not working for cheque\'s.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Presence of required fields in your form mark-up is now validates as you type.</li>\n<li>Massive improvements to logging functionality. All MailChimp requests are now logged, showing you failed requests as well.</li>\n<li>Various JavaScript improvements.</li>\n<li>Updated translations</li>\n<li>Improved WPML compatibility.</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li><a href=\"https://wordpress.org/plugins/mailchimp-top-bar/\">MailChimp Top Bar</a> now integrates with log.</li>\n</ul>\n<p>2.5.6 - February 2, 2015</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Issue with "insufficient permissions" message showing when using Styles Builder and changing forms.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>You will now be asked for a confirmation when deleting a form</li>\n<li>Updated all URL\'s to use https protocol</li>\n<li>On error, number fields will now be repopulated as well</li>\n<li>Code style improvements</li>\n</ul>\n<p>2.5.5 - January 24, 2015</p>\n<p>Minor additions and improvements for compatibility with the <a href=\"https://wordpress.org/plugins/mailchimp-sync/\">MailChimp Sync plugin</a>.</p>\n<p>2.5.4 - January 19, 2014</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Issue where license auto-deactivated for certain configurations after each update check</li>\n</ul>\n<p>2.5.3 - January 14, 2014</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Plugin wouldn\'t connect for people with API keys ending in -us10</li>\n<li>Issue where form response wasn\'t shown when form was set to hide after success.</li>\n</ul>\n<p>2.5.2 - January 13, 2014</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Plugin wasn\'t connecting for people on MailChimp server "us10"</li>\n<li>Issue with changelog not showing for plugin updates</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Use JS object to transfer lists data to Field Wizard.</li>\n<li>Field Wizard strings are now translatable</li>\n<li>Add is_spam method to checkbox integration to battle spam sign-ups</li>\n<li>Easy Digital Downloads & WooCommerce checkbox integration now runs after payment is complete, since that\'s more important</li>\n<li>Many minor code & code style improvements</li>\n<li>Updated Danish, German, Spanish, French, Italian and Portugese (Brazil) translations</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>You can now set MC_LOCATION, MC_NOTES and MC_LANGUAGE from your form HTML</li>\n<li>The submit button now has a default value when generating HTML for it</li>\n</ul>\n<p>2.5.1 - December 8, 2014</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Email in URLs after redirecting lost the @ character.</li>\n<li>Textarea\'s are now re-populated on errors as well.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<p>Email is no longer showed on a separate line in email notifications.</p>\n<p>2.5 - December 5, 2014</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>Fixed JS event bug for older versions of IE</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Major refactor of the code that handles form submissions</li>\n<li>Notification emails will now show "pretty" field names</li>\n<li>Form fields are now only sent to lists that actually have that field</li>\n<li>Updated Dutch, Italian, Hungarian and Spanish translation</li>\n<li>Minor code improvements</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Added {email} tag to use in form mark-up</li>\n<li>Added French and Spanish (Puerto Rico) translation</li>\n</ul>\n<p>2.4.6 - November 18, 2014</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>mc4wp_get_current_url() fix for IIS servers</li>\n<li>Protocol issue when using custom stylesheet</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Refactored AJAX script</li>\n<li>Added & updated translations</li>\n<li>Better handling of expired licenses</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Automatic formatting of MC_LANGUAGE field</li>\n<li>mc4wp_form_redirect_delay filter to control time before redirect when using AJAX.</li>\n</ul>\n<p>2.4.5 - October 9, 2014</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>WooCommerce integration was sending last name as FNAME.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Fix issue with aggressive WP Super Cache configuration</li>\n<li>Make sure is_email is only called on strings</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Added a filter to control the length of mc4wp_email cookie</li>\n</ul>\n<p>2.4.4 - September 24, 2014</p>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>AJAX Loader is now lazy loaded</li>\n<li>Minor performance improvement to class autoloader</li>\n<li>Updated Dutch translations</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Added .mc4wp-form-submitted CSS class to style errors after submission attempts</li>\n<li>Added mc4wp-form-success and .mc4wp-form-error CSS classes to AJAX forms</li>\n<li>Added Hungarian translations</li>\n</ul>\n<p>2.4.3 - September 14, 2014</p>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Various security improvements</li>\n<li>Added Slovak translation</li>\n<li>Updated Dutch, Italian and Spanish translations</li>\n<li>Improvements to Styles Builder default CSS</li>\n<li>Improvements to WooCommerce checkbox integration</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Allow to change position of checkbox in WooCommerce checkout forms</li>\n<li>Add mc4wp.ajax.before and mc4wp.ajax.after event hooks.</li>\n<li>Added some missing text domains</li>\n</ul>\n<p>2.4.2 - September 1, 2014</p>\n<p><strong>Bugfixes</strong></p>\n<ul>\n<li>Dequeue zTranslate assets on mc4wp-form pages</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>URL clean-up for license related requests.</li>\n<li>Add double opt-in note to email summaries</li>\n<li>Add -webkit-appearance reset to checkbox CSS</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Integration with Events Manager</li>\n</ul>\n<p>2.4.1 - August 26, 2014</p>\n<p><strong>Bugfixes</strong></p>\n<ul>\n<li>Minified JS files for changes in Styles Builder</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Improved process for license (de)activation and performing update checks.</li>\n</ul>\n<p>2.4 - August 25, 2014</p>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Feature to create multiple form styles, where styles only apply to 1 individual form.</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Minor CSS improvement for WordPress 4.0 compatibility</li>\n<li>Add vertical align reset to Styles Builder</li>\n<li>Change API url to new site: <a href=\"https://mc4wp.com/\">https://mc4wp.com/</a></li>\n<li>Updated Italian translations</li>\n<li>Take array fields into consideration when checking if fields are present in form mark-up</li>\n<li>Don\'t use {response} tag if form is hidden after success</li>\n</ul>\n<p><strong>Bugfixes</strong></p>\n<ul>\n<li>Remove obsolete closing form tag</li>\n<li>Remove text attribute from textarea elements</li>\n</ul>\n<p>2.3.2 - August 12, 2014</p>\n<p><strong>Fixes</strong></p>\n<ul>\n<li>mc4wp_get_current_url() now takes ports and the WP site url option into account</li>\n<li>Quicktags buttons were not showing because script was not loaded, now it is.</li>\n<li>Fixed CSS bug for table column widths in other languages than English</li>\n</ul>\n<p><strong>Improvements</strong></p>\n<ul>\n<li>Added deprecated warning to some functions</li>\n<li>The "license inactive" notice can now be hidden</li>\n<li>Improved CSS reset for the sign-up checkbox</li>\n<li>Updated Dutch translations</li>\n<li>Updated English translations</li>\n</ul>\n<p><strong>Additions</strong></p>\n<ul>\n<li>Added mc4wp_form_error_{ERROR_CODE} action hook to allow hooking into all form errors.</li>\n<li>Added {response} tag to allow setting a custom response position</li>\n<li>Added various filters to customize form HTML</li>\n<li>Added German language, thanks to <a href=\"http://slotnerd.de/\">Jochen Gererstorfer</a></li>\n<li>Added Italian language, thanks to <a href=\"http://www.casalegnovernici.it/\">Gianpaolo</a></li>\n<li>Added link to plugin documentation</li>\n</ul>\n<p>2.3.1 - July 29, 2014</p>\n<p>Improvements</p>\n<ul>\n<li>Required MailChimp fields are now validated server side as well.</li>\n<li>Birthday and address fields are now automatically formatted in the correct format</li>\n<li>Improved code, memory usage and class documentation</li>\n</ul>\n<p>Additions</p>\n<ul>\n<li>Option to set the text for when a required field is missing</li>\n</ul>\n<p>2.3 - July 25, 2014</p>\n<p>Fixes</p>\n<ul>\n<li>Generated CSS was showing \'Array\' when file couldn\'t be automatically created</li>\n</ul>\n<p>Improvements</p>\n<ul>\n<li>Improved JS code for AJAX forms</li>\n<li>Minified assets (CSS & JSS files) will now be loaded, unless SCRIPT_DEBUG is true</li>\n<li>Submit button is now disabled during the AJAX request, to prevent double sign-ups</li>\n</ul>\n<p>Additions</p>\n<ul>\n<li>Added mc4wp_lazy_load_ajax_scripts filter to disable lazy loading of AJAX scripts</li>\n<li>Added JS events: mc4wp.success, mc4wp.error and mc4wp.submit hooks</li>\n<li>Added mc4wp_form_message_position filter to choose position of form messages</li>\n<li>Added mc4wp_form_error_message to register custom error messages</li>\n<li>Added Brazilian language files</li>\n</ul>\n\";}s:6:\"author\";s:45:\"<a href=\"https://ibericode.com\">ibericode</a>\";s:14:\"author_profile\";s:40:\"https://profiles.wordpress.org/ibericode\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:5:\"4.3.1\";s:12:\"last_updated\";s:19:\"2015-11-11 05:20:16\";s:17:\"short_description\";s:43:\"MailChimp for WordPress. The absolute best.\";s:4:\"tags\";a:5:{i:0;s:9:\"mailchimp\";i:1;s:9:\"subscribe\";i:2;s:11:\"woocommerce\";i:3;s:14:\"contact form 7\";i:4;s:10:\"buddypress\";}s:7:\"banners\";a:1:{s:4:\"high\";s:68:\"//ps.w.org/mailchimp-for-wp/assets/banner-772x250.png?rev=1447683280\";}s:18:\"license_expiration\";s:10:\"1469202952\";s:6:\"plugin\";s:45:\"mailchimp-for-wp-pro/mailchimp-for-wp-pro.php\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:5:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"790\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:3:\"4.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.3.zip\";}s:29:\"postman-smtp/postman-smtp.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"57035\";s:4:\"slug\";s:12:\"postman-smtp\";s:6:\"plugin\";s:29:\"postman-smtp/postman-smtp.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/postman-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/postman-smtp.1.7.2.zip\";}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"14975\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:5:\"0.6.1\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.6.1.zip\";}s:27:\"wp-super-cache/wp-cache.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:4:\"1221\";s:4:\"slug\";s:14:\"wp-super-cache\";s:6:\"plugin\";s:27:\"wp-super-cache/wp-cache.php\";s:11:\"new_version\";s:5:\"1.4.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/wp-super-cache/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wp-super-cache.1.4.6.zip\";s:14:\"upgrade_notice\";s:64:\"Bugfix for sites that use mod_rewrite to serve compressed pages.\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"5899\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:5:\"2.3.5\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.2.3.5.zip\";}}}','yes'),(2027,'postman_state','a:4:{s:15:\"locking_enabled\";b:1;s:12:\"install_date\";i:1447686622;s:7:\"version\";s:5:\"1.7.2\";s:22:\"delivery_success_total\";i:2;}','yes'),(2033,'postman_options','a:30:{s:8:\"enc_type\";s:4:\"none\";s:8:\"hostname\";s:14:\"smtp.gmail.com\";s:12:\"sender_email\";s:16:\"[email protected]\";s:15:\"envelope_sender\";s:16:\"[email protected]\";s:14:\"transport_type\";s:9:\"gmail_api\";s:9:\"auth_type\";s:6:\"oauth2\";s:11:\"sender_name\";s:8:\"Backfeed\";s:15:\"oauth_client_id\";s:73:\"1076782626558-l1br7sefrcculge0vhrc3hi7btpckil8.apps.googleusercontent.com\";s:19:\"oauth_client_secret\";s:24:\"aIDLiztKOyZsoTdR8zS-GBHk\";s:19:\"basic_auth_username\";s:0:\"\";s:19:\"basic_auth_password\";s:0:\"\";s:16:\"mandrill_api_key\";s:0:\"\";s:16:\"sendgrid_api_key\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:28:\"prevent_sender_name_override\";s:0:\"\";s:29:\"prevent_sender_email_override\";s:0:\"\";s:24:\"disable_email_validation\";s:0:\"\";s:9:\"forced_to\";s:0:\"\";s:9:\"forced_cc\";s:0:\"\";s:10:\"forced_bcc\";s:0:\"\";s:7:\"headers\";s:0:\"\";s:12:\"read_timeout\";i:60;s:18:\"connection_timeout\";i:10;s:9:\"log_level\";i:40000;s:16:\"mail_log_enabled\";s:4:\"true\";s:20:\"mail_log_max_entries\";i:250;s:8:\"run_mode\";s:10:\"production\";s:12:\"stealth_mode\";s:0:\"\";s:15:\"transcript_size\";i:128;s:7:\"tmp_dir\";s:4:\"/tmp\";}','yes'),(2034,'_transient_timeout_settings_errors','1447687489','no'),(2035,'_transient_settings_errors','a:1:{i:0;a:4:{s:7:\"setting\";s:7:\"general\";s:4:\"code\";s:16:\"settings_updated\";s:7:\"message\";s:15:\"Settings saved.\";s:4:\"type\";s:7:\"updated\";}}','no'),(2040,'postman_auth_token','a:4:{s:12:\"access_token\";s:73:\"ya29.LgJPKKpdqPJUmP-5WVd2bFd5ZEuzszwrc2h-JHD0afNn4_uxPRN9BMr81shvmF0n08A9\";s:13:\"refresh_token\";s:66:\"1/cIzA25PmII9q5QDqQp0a9rFIMoVfBQPvoO-KIEslp2FIgOrJDtdun6zK6XiATCKT\";s:18:\"auth_token_expires\";s:10:\"1447691082\";s:11:\"vendor_name\";s:6:\"google\";}','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=294 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(83,13,'_menu_item_type','custom'),(84,13,'_menu_item_menu_item_parent','0'),(85,13,'_menu_item_object_id','13'),(86,13,'_menu_item_object','custom'),(87,13,'_menu_item_target',''),(88,13,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(89,13,'_menu_item_xfn',''),(90,13,'_menu_item_url','#about'),(92,14,'_menu_item_type','custom'),(93,14,'_menu_item_menu_item_parent','0'),(94,14,'_menu_item_object_id','14'),(95,14,'_menu_item_object','custom'),(96,14,'_menu_item_target',''),(97,14,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(98,14,'_menu_item_xfn',''),(99,14,'_menu_item_url','#vision'),(101,15,'_menu_item_type','custom'),(102,15,'_menu_item_menu_item_parent','0'),(103,15,'_menu_item_object_id','15'),(104,15,'_menu_item_object','custom'),(105,15,'_menu_item_target',''),(106,15,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(107,15,'_menu_item_xfn',''),(108,15,'_menu_item_url','#use-cases'),(110,16,'_menu_item_type','custom'),(111,16,'_menu_item_menu_item_parent','0'),(112,16,'_menu_item_object_id','16'),(113,16,'_menu_item_object','custom'),(114,16,'_menu_item_target',''),(115,16,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(116,16,'_menu_item_xfn',''),(117,16,'_menu_item_url','#technology'),(119,17,'_menu_item_type','custom'),(120,17,'_menu_item_menu_item_parent','0'),(121,17,'_menu_item_object_id','17'),(122,17,'_menu_item_object','custom'),(123,17,'_menu_item_target',''),(124,17,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(125,17,'_menu_item_xfn',''),(126,17,'_menu_item_url','#team'),(128,18,'_menu_item_type','custom'),(129,18,'_menu_item_menu_item_parent','0'),(130,18,'_menu_item_object_id','18'),(131,18,'_menu_item_object','custom'),(132,18,'_menu_item_target',''),(133,18,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(134,18,'_menu_item_xfn',''),(135,18,'_menu_item_url','#partners'),(137,22,'vote_score','3.021484375'),(138,22,'tagline_id','20'),(139,20,'tagline_value','3.021484375'),(140,23,'vote_score','3.521484375'),(141,23,'tagline_id',''),(142,24,'vote_score','3.708984375'),(143,24,'tagline_id',''),(144,25,'vote_score','2.22265625'),(145,25,'tagline_id',''),(146,26,'vote_score','2.09765625'),(147,26,'tagline_id','21'),(148,21,'tagline_value','3.671484375'),(149,27,'vote_score','4.7578125'),(150,27,'tagline_id','21'),(151,28,'vote_score','3.833984375'),(152,28,'tagline_id','21'),(153,29,'vote_score','4.9453125'),(154,29,'tagline_id','21'),(155,31,'vote_score','2.72265625'),(156,31,'tagline_id','21'),(157,33,'_edit_last','1'),(159,33,'position','normal'),(160,33,'layout','no_box'),(161,33,'hide_on_screen',''),(162,33,'_edit_lock','1439497715:1'),(163,33,'rule','a:5:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:12:\"team-members\";s:8:\"order_no\";i:0;s:8:\"group_no\";i:0;}'),(164,34,'_edit_lock','1439500578:1'),(165,34,'_edit_last','1'),(166,47,'_edit_last','1'),(167,47,'name','Ore Landau'),(168,47,'_name','field_55ccffd4db038'),(169,47,'role','Chief Unicorn'),(170,47,'_role','field_55ccffe4db039'),(171,47,'avatar','50'),(172,47,'_avatar','field_55ccffeedb03a'),(173,47,'description','Web developer with a special hunch for Front-End UI/UX development'),(174,47,'_description','field_55cd007adb03b'),(175,47,'social_links_0_social_network','facebook-official'),(176,47,'_social_links_0_social_network','field_55cd00e1db03d'),(177,47,'social_links_0_social_url','http://facebook.com/Ore4444'),(178,47,'_social_links_0_social_url','field_55cd01f7db03f'),(179,47,'social_links','4'),(180,47,'_social_links','field_55cd00b9db03c'),(181,47,'_edit_lock','1439500553:1'),(182,48,'_wp_attached_file','2015/08/matan.png'),(183,48,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:17:\"2015/08/matan.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(184,49,'_wp_attached_file','2015/08/michel.png'),(185,49,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:18:\"2015/08/michel.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(186,50,'_wp_attached_file','2015/08/ore.png'),(187,50,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:15:\"2015/08/ore.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(188,51,'_wp_attached_file','2015/08/phillipe.png'),(189,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:20:\"2015/08/phillipe.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(190,52,'_wp_attached_file','2015/08/primavera.png'),(191,52,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:21:\"2015/08/primavera.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(192,53,'_wp_attached_file','2015/08/shahar.png'),(193,53,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:18:\"2015/08/shahar.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(194,54,'_wp_attached_file','2015/08/tal.png'),(195,54,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:15:\"2015/08/tal.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(196,55,'_wp_attached_file','2015/08/yaniv.png'),(197,55,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:17:\"2015/08/yaniv.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(198,56,'_wp_attached_file','2015/08/zeev.png'),(199,56,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:16:\"2015/08/zeev.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(200,57,'_wp_attached_file','2015/08/adam.png'),(201,57,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:16:\"2015/08/adam.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(202,58,'_wp_attached_file','2015/08/dana.png'),(203,58,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:16:\"2015/08/dana.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(204,59,'_wp_attached_file','2015/08/jordan.png'),(205,59,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:18:\"2015/08/jordan.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(206,47,'social_links_1_social_network','twitter-square'),(207,47,'_social_links_1_social_network','field_55cd00e1db03d'),(208,47,'social_links_1_social_url','http://twitter.com/Ore4444'),(209,47,'_social_links_1_social_url','field_55cd01f7db03f'),(210,47,'social_links_2_social_network','linkedin-square'),(211,47,'_social_links_2_social_network','field_55cd00e1db03d'),(212,47,'social_links_2_social_url','http://linkedin.com/in/Ore4444'),(213,47,'_social_links_2_social_url','field_55cd01f7db03f'),(214,47,'social_links_3_social_network','google-plus-square'),(215,47,'_social_links_3_social_network','field_55cd00e1db03d'),(216,47,'social_links_3_social_url','https://plus.google.com/u/0/+OreLandau/posts'),(217,47,'_social_links_3_social_url','field_55cd01f7db03f'),(218,61,'_edit_last','1'),(219,61,'_edit_lock','1439501913:1'),(220,65,'_wp_attached_file','2015/08/partner1.png'),(221,65,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:137;s:6:\"height\";i:137;s:4:\"file\";s:20:\"2015/08/partner1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(222,64,'_edit_last','1'),(223,64,'_edit_lock','1439500782:1'),(224,64,'logo','65'),(225,64,'_logo','field_55cd0964ef8f6'),(226,64,'website','http://ouishare.net/en'),(227,64,'_website','field_55cd097aef8f7'),(228,67,'_edit_last','1'),(229,67,'_edit_lock','1440428293:1'),(234,71,'_edit_last','1'),(235,71,'_mc4wp_settings','a:15:{s:5:\"lists\";a:1:{s:10:\"040512b5ed\";s:10:\"040512b5ed\";}s:15:\"send_email_copy\";s:1:\"0\";s:19:\"email_copy_receiver\";s:16:\"[email protected]\";s:12:\"double_optin\";s:0:\"\";s:15:\"update_existing\";s:0:\"\";s:4:\"ajax\";s:0:\"\";s:18:\"hide_after_success\";s:0:\"\";s:8:\"redirect\";s:0:\"\";s:15:\"text_subscribed\";s:0:\"\";s:10:\"text_error\";s:0:\"\";s:18:\"text_invalid_email\";s:0:\"\";s:23:\"text_already_subscribed\";s:0:\"\";s:27:\"text_required_field_missing\";s:0:\"\";s:17:\"text_unsubscribed\";s:0:\"\";s:19:\"text_not_subscribed\";s:0:\"\";}'),(236,71,'_edit_lock','1445176236:1'),(237,73,'_form','<form class=\"form subscribe-box form-inline\"><p>For when you have a project or an idea you want to share:</p><label for=\"contact-name\">Name</label>[text contact-name id:contact-name class:form-control class:input-lg placeholder \"Type your name here\"]<label for=\"contact-email\">Email</label>[email contact-email id:contact-email class:form-control class:input-lg placeholder \"We will keep it safe, we promise!\"]<label for=\"contact-message\">We\'re all ears!</label>[textarea* contact-message id:contact-message class:form-control class:input-lg placeholder \"Type your message here\"][submit class:btn class:btn-primary class:btn-block class:btn-lg class:center-block \"Send\"]</form>'),(238,73,'_mail','a:8:{s:7:\"subject\";s:42:\"New email from contact form in backfeed.cc\";s:6:\"sender\";s:16:\"[email protected]\";s:4:\"body\";s:149:\"From: [contact-name] <[contact-email]>\n\nMessage Body:\n[contact-message]\n\n--\nThis e-mail was sent from a contact form on Backfeed (http://backfeed.cc)\";s:9:\"recipient\";s:16:\"[email protected]\";s:18:\"additional_headers\";s:25:\"Reply-To: [contact-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(239,73,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:27:\"Backfeed <[email protected]>\";s:4:\"body\";s:106:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Backfeed (http://backfeed.cc)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:26:\"Reply-To: [email protected]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(240,73,'_messages','a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:75:\"Failed to send your message. Please try later or contact the administrator.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}'),(241,73,'_additional_settings',''),(242,73,'_locale','en_US'),(243,74,'_wp_attached_file','2015/10/Triangle-SideWay-300-x2.png'),(244,74,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:643;s:4:\"file\";s:35:\"2015/10/Triangle-SideWay-300-x2.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Triangle-SideWay-300-x2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Triangle-SideWay-300-x2-280x300.png\";s:5:\"width\";i:280;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(245,75,'_wp_attached_file','2015/10/cropped-Triangle-SideWay-300-x2.png'),(246,75,'_wp_attachment_context','site-icon'),(247,75,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:43:\"2015/10/cropped-Triangle-SideWay-300-x2.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"cropped-Triangle-SideWay-300-x2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"cropped-Triangle-SideWay-300-x2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:43:\"cropped-Triangle-SideWay-300-x2-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:43:\"cropped-Triangle-SideWay-300-x2-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:43:\"cropped-Triangle-SideWay-300-x2-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:41:\"cropped-Triangle-SideWay-300-x2-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(248,78,'_menu_item_type','custom'),(249,78,'_menu_item_menu_item_parent','0'),(250,78,'_menu_item_object_id','78'),(251,78,'_menu_item_object','custom'),(252,78,'_menu_item_target',''),(253,78,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(254,78,'_menu_item_xfn',''),(255,78,'_menu_item_url','http://blog.backfeed.cc'),(257,79,'_menu_item_type','custom'),(258,79,'_menu_item_menu_item_parent','0'),(259,79,'_menu_item_object_id','79'),(260,79,'_menu_item_object','custom'),(261,79,'_menu_item_target',''),(262,79,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(263,79,'_menu_item_xfn',''),(264,79,'_menu_item_url','http://forum.backfeed.cc/'),(266,82,'success','1'),(267,82,'from_header','Backfeed <[email protected]>'),(268,82,'to_header','[email protected]'),(269,82,'transport_uri','https:oauth2://www.googleapis.com:443'),(270,82,'original_to','[email protected]'),(271,82,'original_subject','Postman SMTP Test (backfeed.cc)'),(272,82,'original_message','Content-Type: text/plain; charset = \"UTF-8\"\r\nContent-Transfer-Encoding: 8bit\r\n\r\nHello!\r\n\r\nSent by Postman 1.7.2 - https://wordpress.org/plugins/postman-smtp/\r\n\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<style type=\"text/css\" media=\"all\">\r\n.wporg-notification .im {\r\n color: #888;\r\n} /* undo a GMail-inserted style */\r\n</style>\r\n</head>\r\n<body class=\"wporg-notification\">\r\n <div style=\"background: #e8f6fe; font-family: & quot; Helvetica Neue&quot; , Helvetica ,Arial,sans-serif; font-size: 14px; color: #666; text-align: center; margin: 0; padding: 0\">\r\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#e8f6fe\" style=\"background: #e8f6fe; width: 100%;\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"padding: 0px; width: 100%;\"\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <div style=\"max-width: 600px; height: 400px; margin: 0 auto; overflow: hidden;background-image:url(\'https://ps.w.org/postman-smtp/assets/email/poofytoo.png\');background-repeat: no-repeat;\">\r\n <div style=\"margin:50px 0 0 300px; width:300px; font-size:2em;\">Hello! - 你好 - Bonjour! - नमस्ते - ¡Hola! - Olá - Привет! - 今日は</div>\r\n <div style=\"text-align:right;font-size: 1.4em; color:black;margin:150px 0 0 200px;\">Sent by Postman 1.7.2\r\n <br/><span style=\"font-size: 0.8em\"><a style=\"color:#3f73b9\" href=\"https://wordpress.org/plugins/postman-smtp/\">https://wordpress.org/plugins/postman-smtp/</a></span>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n <br><span style=\"font-size:0.9em;color:#94c0dc;\">Image source: <a style=\"color:#94c0dc\" href=\"http://poofytoo.com\">poofytoo.com</a> - Used with permission</span>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n</body>\r\n</html>'),(273,82,'original_headers','Content-Type: multipart/alternative;'),(274,82,'session_transcript','https:oauth2://www.googleapis.com:443\n\nPostman_Google_Service_Gmail_Message Object\n(\n [collection_key:protected] => labelIds\n [internal_gapi_mappings:protected] => Array\n (\n )\n\n [historyId] => \n [id] => 15110e6574730734\n [labelIds] => Array\n (\n [0] => SENT\n [1] => INBOX\n [2] => UNREAD\n )\n\n [payloadType:protected] => Postman_Google_Service_Gmail_MessagePart\n [payloadDataType:protected] => \n [raw] => \n [sizeEstimate] => \n [snippet] => \n [threadId] => 15110e6574730734\n [modelData:protected] => Array\n (\n )\n\n [processed:protected] => Array\n (\n )\n\n)\n\n\n--Raw message follows--\n\nX-Mailer: Postman SMTP 1.7.2 for WordPress (https://wordpress.org/plugins/postman-smtp/)\nContent-Type: multipart/alternative;\n boundary=\"=_0d7d1ee849945b65b890bdb889b1d433\"\nFrom: Backfeed <[email protected]>\nSender: [email protected]\nTo: [email protected]\nSubject: Postman SMTP Test (backfeed.cc)\nDate: Mon, 16 Nov 2015 15:25:08 +0000\nMIME-Version: 1.0\n\n--=_0d7d1ee849945b65b890bdb889b1d433\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: quoted-printable\n\nHello!=0D=0DSent by Postman 1.7.2 - https://wordpress.org/plugins/postma=\nn-smtp/=0D=0D\n\n--=_0d7d1ee849945b65b890bdb889b1d433\nContent-Type: text/html; charset=UTF-8\nContent-Transfer-Encoding: quoted-printable\n\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://w=\nww.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">=0D<html xmlns=3D\"http:=\n//www.w3.org/1999/xhtml\">=0D<head>=0D<meta http-equiv=3D\"Content-Type\" c=\nontent=3D\"text/html; charset=3Dutf-8\" />=0D<style type=3D\"text/css\" medi=\na=3D\"all\">=0D.wporg-notification .im {=0D=09color: #888;=0D} /* undo a G=\nMail-inserted style */=0D</style>=0D</head>=0D<body class=3D\"wporg-notif=\nication\">=0D=09<div style=3D\"background: #e8f6fe; font-family: & quo=\nt; Helvetica Neue&quot; , Helvetica ,Arial,sans-serif; font-size: 14=\npx; color: #666; text-align: center; margin: 0; padding: 0\">=0D=09=09<ta=\nble border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" bgcolor=3D\"#e8f6fe\"=\n=09style=3D\"background: #e8f6fe; width: 100%;\">=0D=09=09=09<tbody>=0D=09=\n=09=09=09<tr>=0D=09=09=09=09=09<td>=0D=09=09=09=09=09=09<table border=3D=\n\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" align=3D\"center\" style=3D\"paddin=\ng: 0px; width: 100%;\"\">=0D=09=09=09=09=09=09=09<tbody>=0D=09=09=09=09=09=\n=09=09=09<tr>=0D=09=09=09=09=09=09=09=09=09<td>=0D=09=09=09=09=09=09=09=\n=09=09=09<div style=3D\"max-width: 600px; height: 400px; margin: 0 auto;=\n overflow: hidden;background-image:url(\'https://ps.w.org/postman-smtp/as=\nsets/email/poofytoo.png\');background-repeat: no-repeat;\">=0D=09=09=09=09=\n=09=09=09=09=09=09=09<div style=3D\"margin:50px 0 0 300px; width:300px; f=\nont-size:2em;\">Hello! - 你好 - Bonjour! - नम=\n60;्ते - =C2=A1Hola! - Olá - При=\n;вет! - 今日は</div>=0D=09=09=09=09=\n=09=09=09=09=09=09=09<div style=3D\"text-align:right;font-size: 1.4em; co=\nlor:black;margin:150px 0 0 200px;\">Sent by Postman 1.7.2=0D=09=09=09=09=\n=09=09=09=09=09=09=09=09<br/><span style=3D\"font-size: 0.8em\"><a style=\n=3D\"color:#3f73b9\" href=3D\"https://wordpress.org/plugins/postman-smtp/\">=\nhttps://wordpress.org/plugins/postman-smtp/</a></span>=0D=09=09=09=09=09=\n=09=09=09=09=09=09</div>=0D=09=09=09=09=09=09=09=09=09=09</div>=0D=09=09=\n=09=09=09=09=09=09=09</td>=0D=09=09=09=09=09=09=09=09</tr>=0D=09=09=09=\n=09=09=09=09</tbody>=0D=09=09=09=09=09=09</table>=0D=09=09=09=09=09=09<b=\nr><span style=3D\"font-size:0.9em;color:#94c0dc;\">Image source: <a style=\n=3D\"color:#94c0dc\" href=3D\"http://poofytoo.com\">poofytoo.com</a> - Used=\n with permission</span>=0D=09=09=09=09=09</td>=0D=09=09=09=09</tr>=0D=09=\n=09=09</tbody>=0D=09=09</table>=0D</body>=0D</html>\n\n--=_0d7d1ee849945b65b890bdb889b1d433--'),(275,83,'success','1'),(276,83,'from_header','Backfeed <[email protected]>'),(277,83,'to_header','[email protected]'),(278,83,'transport_uri','https:oauth2://www.googleapis.com:443'),(279,83,'original_to','[email protected]'),(280,83,'original_subject','[Backfeed] Password Reset'),(281,83,'original_message','Someone requested that the password be reset for the following account:\r\n\r\nhttp://backfeed.cc/\r\n\r\nUsername: back\r\n\r\nIf this was a mistake, just ignore this email and nothing will happen.\r\n\r\nTo reset your password, visit the following address:\r\n\r\n<http://backfeed.cc/wp-login.php?action=rp&key=cw71XNwp01tvEvAWwQip&login=back>\r\n'),(282,83,'original_headers',''),(283,83,'session_transcript','https:oauth2://www.googleapis.com:443\n\nPostman_Google_Service_Gmail_Message Object\n(\n [collection_key:protected] => labelIds\n [internal_gapi_mappings:protected] => Array\n (\n )\n\n [historyId] => \n [id] => 15110e69feca31bd\n [labelIds] => Array\n (\n [0] => SENT\n )\n\n [payloadType:protected] => Postman_Google_Service_Gmail_MessagePart\n [payloadDataType:protected] => \n [raw] => \n [sizeEstimate] => \n [snippet] => \n [threadId] => 15110e69feca31bd\n [modelData:protected] => Array\n (\n )\n\n [processed:protected] => Array\n (\n )\n\n)\n\n\n--Raw message follows--\n\nX-Mailer: Postman SMTP 1.7.2 for WordPress (https://wordpress.org/plugins/postman-smtp/)\nFrom: Backfeed <[email protected]>\nSender: [email protected]\nTo: [email protected]\nSubject: [Backfeed] Password Reset\nDate: Mon, 16 Nov 2015 15:25:28 +0000\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: quoted-printable\nContent-Disposition: inline\nMIME-Version: 1.0\n\nSomeone requested that the password be reset for the following account:=\n=0D=0A=0D=0Ahttp://backfeed.cc/=0D=0A=0D=0AUsername: back=0D=0A=0D=0AIf=\n this was a mistake, just ignore this email and nothing will happen.=0D=\n=0A=0D=0ATo reset your password, visit the following address:=0D=0A=0D=\n=0A<http://backfeed.cc/wp-login.php?action=3Drp&key=3Dcw71XNwp01tvEvAWwQ=\nip&login=3Dback>=0D=0A'),(284,84,'success','1'),(285,84,'from_header','[email protected]'),(286,84,'to_header','[email protected]'),(287,84,'reply_to_header','[email protected]'),(288,84,'transport_uri','https:oauth2://www.googleapis.com:443'),(289,84,'original_to','[email protected]'),(290,84,'original_subject','New email from contact form in backfeed.cc'),(291,84,'original_message','From: Ore Landau <[email protected]>\n\nMessage Body:\nwerfer\n\n--\nThis e-mail was sent from a contact form on Backfeed (http://backfeed.cc)'),(292,84,'original_headers','From: [email protected]\nReply-To: [email protected]\n'),(293,84,'session_transcript','https:oauth2://www.googleapis.com:443\n\nPostman_Google_Service_Gmail_Message Object\n(\n [collection_key:protected] => labelIds\n [internal_gapi_mappings:protected] => Array\n (\n )\n\n [historyId] => \n [id] => 15110e6f525b600d\n [labelIds] => Array\n (\n [0] => SENT\n )\n\n [payloadType:protected] => Postman_Google_Service_Gmail_MessagePart\n [payloadDataType:protected] => \n [raw] => \n [sizeEstimate] => \n [snippet] => \n [threadId] => 15110e6f525b600d\n [modelData:protected] => Array\n (\n )\n\n [processed:protected] => Array\n (\n )\n\n)\n\n\n--Raw message follows--\n\nX-Mailer: Postman SMTP 1.7.2 for WordPress (https://wordpress.org/plugins/postman-smtp/)\nFrom: [email protected]\nSender: [email protected]\nTo: [email protected]\nReply-To: [email protected]\nSubject: New email from contact form in backfeed.cc\nDate: Mon, 16 Nov 2015 15:25:50 +0000\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: quoted-printable\nContent-Disposition: inline\nMIME-Version: 1.0\n\nFrom: Ore Landau <[email protected]>=0A=0AMessage Body:=0Awerfer=0A=0A--=\n=0AThis e-mail was sent from a contact form on Backfeed (http://backfeed=\n.cc)');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=85 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2015-08-10 14:43:02','2015-08-10 14:43:02','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2015-08-10 14:43:02','2015-08-10 14:43:02','',0,'http://new.backfeed.cc/?p=1',0,'post','',1),(2,1,'2015-08-10 14:43:02','2015-08-10 14:43:02','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://new.backfeed.cc/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2015-08-10 14:43:02','2015-08-10 14:43:02','',0,'http://new.backfeed.cc/?page_id=2',0,'page','',0),(13,1,'2015-08-13 14:36:09','2015-08-13 14:36:09','','About','','publish','open','closed','','about','','','2015-10-27 22:15:05','2015-10-27 22:15:05','',0,'http://backfeed.dev/?p=13',1,'nav_menu_item','',0),(14,1,'2015-08-13 14:36:09','2015-08-13 14:36:09','','Vision','','publish','open','closed','','vision','','','2015-10-27 22:15:07','2015-10-27 22:15:07','',0,'http://backfeed.dev/?p=14',2,'nav_menu_item','',0),(15,1,'2015-08-13 14:36:10','2015-08-13 14:36:10','','Use Cases','','publish','open','closed','','use-cases','','','2015-10-27 22:15:07','2015-10-27 22:15:07','',0,'http://backfeed.dev/?p=15',3,'nav_menu_item','',0),(16,1,'2015-08-13 14:36:10','2015-08-13 14:36:10','','Tech','','publish','open','closed','','tech','','','2015-10-27 22:15:08','2015-10-27 22:15:08','',0,'http://backfeed.dev/?p=16',4,'nav_menu_item','',0),(17,1,'2015-08-13 14:36:10','2015-08-13 14:36:10','','Team','','publish','open','closed','','team','','','2015-10-27 22:15:09','2015-10-27 22:15:09','',0,'http://backfeed.dev/?p=17',5,'nav_menu_item','',0),(18,1,'2015-08-13 14:36:10','2015-08-13 14:36:10','','Partners','','publish','open','closed','','partners','','','2015-10-27 22:15:10','2015-10-27 22:15:10','',0,'http://backfeed.dev/?p=18',6,'nav_menu_item','',0),(19,0,'2015-08-13 15:27:01','2015-08-13 15:27:01','','knmbhbvmghjj','','publish','open','open','','knmbhbvmghjj','','','2015-08-13 15:27:01','2015-08-13 15:27:01','',0,'http://backfeed.dev/tagline/knmbhbvmghjj/',0,'tagline','',0),(20,1,'2015-08-13 15:27:29','2015-08-13 15:27:29','','ngkjhygfki','','publish','open','open','','ngkjhygfki','','','2015-08-13 15:27:29','2015-08-13 15:27:29','',0,'http://backfeed.dev/tagline/ngkjhygfki/',0,'tagline','',0),(21,1,'2015-08-13 15:27:39','2015-08-13 15:27:39','','21658746','','publish','open','open','','21658746','','','2015-08-13 15:27:39','2015-08-13 15:27:39','',0,'http://backfeed.dev/tagline/21658746/',0,'tagline','',0),(22,1,'2015-08-13 15:27:47','2015-08-13 15:27:47','','','','publish','open','open','','22','','','2015-08-13 15:27:47','2015-08-13 15:27:47','',0,'http://backfeed.dev/2015/08/13/22/',0,'tagline_vote','',0),(23,0,'2015-08-13 15:28:03','2015-08-13 15:28:03','','','','publish','open','open','','23','','','2015-08-13 15:28:03','2015-08-13 15:28:03','',0,'http://backfeed.dev/2015/08/13/23/',0,'tagline_vote','',0),(24,0,'2015-08-13 15:28:06','2015-08-13 15:28:06','','','','publish','open','open','','24','','','2015-08-13 15:28:06','2015-08-13 15:28:06','',0,'http://backfeed.dev/2015/08/13/24/',0,'tagline_vote','',0),(25,0,'2015-08-13 15:28:07','2015-08-13 15:28:07','','','','publish','open','open','','25','','','2015-08-13 15:28:07','2015-08-13 15:28:07','',0,'http://backfeed.dev/2015/08/13/25/',0,'tagline_vote','',0),(26,1,'2015-08-13 15:39:59','2015-08-13 15:39:59','','','','publish','open','open','','26','','','2015-08-13 15:39:59','2015-08-13 15:39:59','',0,'http://backfeed.dev/2015/08/13/26/',0,'tagline_vote','',0),(27,1,'2015-08-13 15:41:36','2015-08-13 15:41:36','','','','publish','open','open','','27','','','2015-08-13 15:41:36','2015-08-13 15:41:36','',0,'http://backfeed.dev/2015/08/13/27/',0,'tagline_vote','',0),(28,0,'2015-08-13 16:20:50','2015-08-13 16:20:50','','','','publish','open','open','','28','','','2015-08-13 16:20:50','2015-08-13 16:20:50','',0,'http://backfeed.dev/2015/08/13/28/',0,'tagline_vote','',0),(29,0,'2015-08-13 16:23:14','2015-08-13 16:23:14','','','','publish','open','open','','29','','','2015-08-13 16:23:14','2015-08-13 16:23:14','',0,'http://backfeed.dev/2015/08/13/29/',0,'tagline_vote','',0),(30,0,'2015-08-13 16:23:29','2015-08-13 16:23:29','','564','','publish','open','open','','564','','','2015-08-13 16:23:29','2015-08-13 16:23:29','',0,'http://backfeed.dev/tagline/564/',0,'tagline','',0),(31,0,'2015-08-13 16:25:17','2015-08-13 16:25:17','','','','publish','open','open','','31','','','2015-08-13 16:25:17','2015-08-13 16:25:17','',0,'http://backfeed.dev/2015/08/13/31/',0,'tagline_vote','',0),(32,0,'2015-08-13 16:25:52','2015-08-13 16:25:52','','jmyhgjghy','','publish','open','open','','jmyhgjghy','','','2015-08-13 16:25:52','2015-08-13 16:25:52','',0,'http://backfeed.dev/tagline/jmyhgjghy/',0,'tagline','',0),(33,1,'2015-08-13 20:28:34','2015-08-13 20:28:34','','Team Members','','publish','closed','closed','','acf_team-members','','','2015-08-13 20:28:34','2015-08-13 20:28:34','',0,'http://backfeed.dev/?post_type=acf&p=33',0,'acf','',0),(34,1,'2015-08-13 20:36:17','2015-08-13 20:36:17','a:6:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:12:\"team-members\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:1:{i:0;s:9:\"permalink\";}}','Team Member','team-member','publish','closed','closed','','group_55ccffc12d8a5','','','2015-08-13 21:18:34','2015-08-13 21:18:34','',0,'http://backfeed.dev/?post_type=acf-field-group&p=34',0,'acf-field-group','',0),(35,1,'2015-08-13 20:46:42','2015-08-13 20:46:42','a:12:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:8:\"readonly\";i:0;s:8:\"disabled\";i:0;}','Name','name','publish','open','open','','field_55ccffd4db038','','','2015-08-13 20:46:42','2015-08-13 20:46:42','',34,'http://backfeed.dev/?post_type=acf-field&p=35',0,'acf-field','',0),(36,1,'2015-08-13 20:46:42','2015-08-13 20:46:42','a:12:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:8:\"readonly\";i:0;s:8:\"disabled\";i:0;}','Role','role','publish','open','open','','field_55ccffe4db039','','','2015-08-13 21:18:34','2015-08-13 21:18:34','',34,'http://backfeed.dev/?post_type=acf-field&p=36',1,'acf-field','',0),(37,1,'2015-08-13 20:46:42','2015-08-13 20:46:42','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Avatar','avatar','publish','open','open','','field_55ccffeedb03a','','','2015-08-13 21:18:34','2015-08-13 21:18:34','',34,'http://backfeed.dev/?post_type=acf-field&p=37',2,'acf-field','',0),(38,1,'2015-08-13 20:46:42','2015-08-13 20:46:42','a:12:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";i:140;s:4:\"rows\";i:2;s:9:\"new_lines\";s:0:\"\";s:8:\"readonly\";i:0;s:8:\"disabled\";i:0;}','Description','description','publish','open','open','','field_55cd007adb03b','','','2015-08-13 20:46:42','2015-08-13 20:46:42','',34,'http://backfeed.dev/?post_type=acf-field&p=38',3,'acf-field','',0),(39,1,'2015-08-13 20:46:42','2015-08-13 20:46:42','a:9:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:15:\"Add Social Icon\";}','Social Links','social_links','publish','open','open','','field_55cd00b9db03c','','','2015-08-13 21:10:46','2015-08-13 21:10:46','',34,'http://backfeed.dev/?post_type=acf-field&p=39',4,'acf-field','',0),(40,1,'2015-08-13 20:46:42','2015-08-13 20:46:42','a:14:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:5:{s:17:\"facebook-official\";s:8:\"Facebook\";s:14:\"twitter-square\";s:7:\"Twitter\";s:6:\"medium\";s:6:\"Medium\";s:15:\"linkedin-square\";s:8:\"LinkedIn\";s:18:\"google-plus-square\";s:7:\"Google+\";}s:13:\"default_value\";a:1:{s:0:\"\";s:0:\"\";}s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:1;s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";s:8:\"disabled\";i:0;s:8:\"readonly\";i:0;}','Social Network','social_network','publish','open','open','','field_55cd00e1db03d','','','2015-08-13 21:10:46','2015-08-13 21:10:46','',39,'http://backfeed.dev/?post_type=acf-field&p=40',0,'acf-field','',0),(41,1,'2015-08-13 20:46:42','2015-08-13 20:46:42','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','URL','social_url','publish','open','open','','field_55cd01f7db03f','','','2015-08-13 20:46:42','2015-08-13 20:46:42','',39,'http://backfeed.dev/?post_type=acf-field&p=41',1,'acf-field','',0),(47,1,'2015-08-13 20:50:03','2015-08-13 20:50:03','','Ore Landau','','publish','closed','closed','','auto-draft','','','2015-08-13 21:13:56','2015-08-13 21:13:56','',0,'http://backfeed.dev/?post_type=team-members&p=47',0,'team-members','',0),(48,1,'2015-08-13 20:51:38','2015-08-13 20:51:38','','matan','','inherit','open','open','','matan','','','2015-08-13 20:51:38','2015-08-13 20:51:38','',47,'http://backfeed.dev/wp-content/uploads/2015/08/matan.png',0,'attachment','image/png',0),(49,1,'2015-08-13 20:51:39','2015-08-13 20:51:39','','michel','','inherit','open','open','','michel','','','2015-08-13 20:51:39','2015-08-13 20:51:39','',47,'http://backfeed.dev/wp-content/uploads/2015/08/michel.png',0,'attachment','image/png',0),(50,1,'2015-08-13 20:51:39','2015-08-13 20:51:39','','ore','','inherit','open','open','','ore','','','2015-08-13 20:51:39','2015-08-13 20:51:39','',47,'http://backfeed.dev/wp-content/uploads/2015/08/ore.png',0,'attachment','image/png',0),(51,1,'2015-08-13 20:51:40','2015-08-13 20:51:40','','phillipe','','inherit','open','open','','phillipe','','','2015-08-13 20:51:40','2015-08-13 20:51:40','',47,'http://backfeed.dev/wp-content/uploads/2015/08/phillipe.png',0,'attachment','image/png',0),(52,1,'2015-08-13 20:51:41','2015-08-13 20:51:41','','primavera','','inherit','open','open','','primavera','','','2015-08-13 20:51:41','2015-08-13 20:51:41','',47,'http://backfeed.dev/wp-content/uploads/2015/08/primavera.png',0,'attachment','image/png',0),(53,1,'2015-08-13 20:51:42','2015-08-13 20:51:42','','shahar','','inherit','open','open','','shahar','','','2015-08-13 20:51:42','2015-08-13 20:51:42','',47,'http://backfeed.dev/wp-content/uploads/2015/08/shahar.png',0,'attachment','image/png',0),(54,1,'2015-08-13 20:51:43','2015-08-13 20:51:43','','tal','','inherit','open','open','','tal','','','2015-08-13 20:51:43','2015-08-13 20:51:43','',47,'http://backfeed.dev/wp-content/uploads/2015/08/tal.png',0,'attachment','image/png',0),(55,1,'2015-08-13 20:51:43','2015-08-13 20:51:43','','yaniv','','inherit','open','open','','yaniv','','','2015-08-13 20:51:43','2015-08-13 20:51:43','',47,'http://backfeed.dev/wp-content/uploads/2015/08/yaniv.png',0,'attachment','image/png',0),(56,1,'2015-08-13 20:51:44','2015-08-13 20:51:44','','zeev','','inherit','open','open','','zeev','','','2015-08-13 20:51:44','2015-08-13 20:51:44','',47,'http://backfeed.dev/wp-content/uploads/2015/08/zeev.png',0,'attachment','image/png',0),(57,1,'2015-08-13 20:51:45','2015-08-13 20:51:45','','adam','','inherit','open','open','','adam','','','2015-08-13 20:51:45','2015-08-13 20:51:45','',47,'http://backfeed.dev/wp-content/uploads/2015/08/adam.png',0,'attachment','image/png',0),(58,1,'2015-08-13 20:51:46','2015-08-13 20:51:46','','dana','','inherit','open','open','','dana','','','2015-08-13 20:51:46','2015-08-13 20:51:46','',47,'http://backfeed.dev/wp-content/uploads/2015/08/dana.png',0,'attachment','image/png',0),(59,1,'2015-08-13 20:51:47','2015-08-13 20:51:47','','jordan','','inherit','open','open','','jordan','','','2015-08-13 20:51:47','2015-08-13 20:51:47','',47,'http://backfeed.dev/wp-content/uploads/2015/08/jordan.png',0,'attachment','image/png',0),(61,1,'2015-08-13 21:18:05','2015-08-13 21:18:05','a:6:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:8:\"partners\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:1:{i:0;s:9:\"permalink\";}}','Partner','partner','publish','closed','closed','','group_55cd095d7898a','','','2015-08-13 21:18:49','2015-08-13 21:18:49','',0,'http://backfeed.dev/?post_type=acf-field-group&p=61',0,'acf-field-group','',0),(62,1,'2015-08-13 21:18:05','2015-08-13 21:18:05','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Logo','logo','publish','open','open','','field_55cd0964ef8f6','','','2015-08-13 21:18:05','2015-08-13 21:18:05','',61,'http://backfeed.dev/?post_type=acf-field&p=62',0,'acf-field','',0),(63,1,'2015-08-13 21:18:05','2015-08-13 21:18:05','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','Website','website','publish','open','open','','field_55cd097aef8f7','','','2015-08-13 21:18:05','2015-08-13 21:18:05','',61,'http://backfeed.dev/?post_type=acf-field&p=63',1,'acf-field','',0),(64,1,'2015-08-13 21:19:41','2015-08-13 21:19:41','','OuiShare','','publish','closed','closed','','ouishare','','','2015-08-13 21:19:41','2015-08-13 21:19:41','',0,'http://backfeed.dev/?post_type=partners&p=64',0,'partners','',0),(65,1,'2015-08-13 21:19:08','2015-08-13 21:19:08','','partner1','','inherit','open','open','','partner1','','','2015-08-13 21:19:08','2015-08-13 21:19:08','',64,'http://backfeed.dev/wp-content/uploads/2015/08/partner1.png',0,'attachment','image/png',0),(67,1,'2015-08-24 14:58:13','0000-00-00 00:00:00','','Matan Field','','draft','closed','closed','','','','','2015-08-24 14:58:13','2015-08-24 14:58:13','',0,'http://backfeed.dev/?post_type=team-members&p=67',0,'team-members','',0),(71,1,'2015-08-25 09:07:53','2015-08-25 09:07:53','<p>Sign up to get the latest on Backfeed and the new developments in the blockchain space:</p>\r\n<p><label class=\"sr-only\">Email</label><input name=\"EMAIL\" class=\"input-lg form-control\" type=\"email\" placeholder=\"Email\"></p>\r\n<p><button type=\"submit\" class=\"btn btn-primary btn-block btn-lg\">Subscribe</button></p>','Header','','publish','closed','closed','','header','','','2015-10-18 13:49:46','2015-10-18 13:49:46','<p>Sign up to get the latest on Backfeed and the new developments in the blockchain space:</p>\r\n<p><label class=\"sr-only\">Email</label><input name=\"EMAIL\" class=\"input-lg form-control\" type=\"email\" placeholder=\"Email\"></p>\r\n<p><button type=\"submit\" class=\"btn btn-primary btn-block btn-lg\">Subscribe</button></p>',0,'http://backfeed.dev/?post_type=mc4wp-form&p=71',0,'mc4wp-form','',0),(73,1,'2015-10-11 19:13:19','2015-10-11 19:13:19','<form class=\"form subscribe-box form-inline\"><p>For when you have a project or an idea you want to share:</p><label for=\"contact-name\">Name</label>[text contact-name id:contact-name class:form-control class:input-lg placeholder \"Type your name here\"]<label for=\"contact-email\">Email</label>[email contact-email id:contact-email class:form-control class:input-lg placeholder \"We will keep it safe, we promise!\"]<label for=\"contact-message\">We\'re all ears!</label>[textarea* contact-message id:contact-message class:form-control class:input-lg placeholder \"Type your message here\"][submit class:btn class:btn-primary class:btn-block class:btn-lg class:center-block \"Send\"]</form>\nNew email from contact form in backfeed.cc\[email protected]\nFrom: [contact-name] <[contact-email]>\r\n\r\nMessage Body:\r\n[contact-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Backfeed (http://backfeed.cc)\[email protected]\nReply-To: [contact-email]\n\n\n\n\n[your-subject]\nBackfeed <[email protected]>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Backfeed (http://backfeed.cc)\n[your-email]\nReply-To: [email protected]\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.','Contact Us Header','','publish','closed','closed','','contact-form-1','','','2015-11-16 15:28:41','2015-11-16 15:28:41','',0,'http://backfeed.cc/?post_type=wpcf7_contact_form&p=73',0,'wpcf7_contact_form','',0),(74,1,'2015-10-11 19:15:56','2015-10-11 19:15:56','','Triangle-SideWay-300-x2','','inherit','open','closed','','triangle-sideway-300-x2','','','2015-10-11 19:15:56','2015-10-11 19:15:56','',0,'http://backfeed.cc/wp-content/uploads/2015/10/Triangle-SideWay-300-x2.png',0,'attachment','image/png',0),(75,1,'2015-10-11 19:16:58','2015-10-11 19:16:58','http://backfeed.cc/wp-content/uploads/2015/10/cropped-Triangle-SideWay-300-x2.png','cropped-Triangle-SideWay-300-x2.png','','inherit','open','closed','','cropped-triangle-sideway-300-x2-png','','','2015-10-11 19:16:58','2015-10-11 19:16:58','',0,'http://backfeed.cc/wp-content/uploads/2015/10/cropped-Triangle-SideWay-300-x2.png',0,'attachment','image/png',0),(78,1,'2015-10-27 09:51:52','2015-10-27 09:51:52','','Blog','','publish','closed','closed','','blog','','','2015-10-27 22:15:11','2015-10-27 22:15:11','',0,'http://backfeed.cc/?p=78',7,'nav_menu_item','',0),(79,1,'2015-10-27 22:15:13','2015-10-27 22:15:13','','Forum','','publish','closed','closed','','forum','','','2015-10-27 22:15:13','2015-10-27 22:15:13','',0,'http://backfeed.cc/?p=79',8,'nav_menu_item','',0),(81,1,'2015-11-16 14:14:06','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2015-11-16 14:14:06','0000-00-00 00:00:00','',0,'http://backfeed.cc/?p=81',0,'post','',0),(82,1,'2015-11-16 15:25:10','2015-11-16 15:25:10','Content-Type: text/plain; charset = \"UTF-8\"\r\nContent-Transfer-Encoding: 8bit\r\n\r\nHello!\r\n\r\nSent by Postman 1.7.2 - https://wordpress.org/plugins/postman-smtp/\r\n\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<style type=\"text/css\" media=\"all\">\r\n.wporg-notification .im {\r\n color: #888;\r\n} /* undo a GMail-inserted style */\r\n</style>\r\n</head>\r\n<body class=\"wporg-notification\">\r\n <div style=\"background: #e8f6fe; font-family: & quot; Helvetica Neue&quot; , Helvetica ,Arial,sans-serif; font-size: 14px; color: #666; text-align: center; margin: 0; padding: 0\">\r\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#e8f6fe\" style=\"background: #e8f6fe; width: 100%;\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"padding: 0px; width: 100%;\"\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <div style=\"max-width: 600px; height: 400px; margin: 0 auto; overflow: hidden;background-image:url(\'https://ps.w.org/postman-smtp/assets/email/poofytoo.png\');background-repeat: no-repeat;\">\r\n <div style=\"margin:50px 0 0 300px; width:300px; font-size:2em;\">Hello! - 你好 - Bonjour! - नमस्ते - ¡Hola! - Olá - Привет! - 今日は</div>\r\n <div style=\"text-align:right;font-size: 1.4em; color:black;margin:150px 0 0 200px;\">Sent by Postman 1.7.2\r\n <br/><span style=\"font-size: 0.8em\"><a style=\"color:#3f73b9\" href=\"https://wordpress.org/plugins/postman-smtp/\">https://wordpress.org/plugins/postman-smtp/</a></span>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n <br><span style=\"font-size:0.9em;color:#94c0dc;\">Image source: <a style=\"color:#94c0dc\" href=\"http://poofytoo.com\">poofytoo.com</a> - Used with permission</span>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n</body>\r\n</html>','Postman SMTP Test (backfeed.cc)','','private','closed','closed','','postman-smtp-test-backfeed-cc','','','2015-11-16 15:25:10','2015-11-16 15:25:10','',0,'http://backfeed.cc/postman_sent_mail/postman-smtp-test-backfeed-cc/',0,'postman_sent_mail','',0),(83,0,'2015-11-16 15:25:28','2015-11-16 15:25:28','Someone requested that the password be reset for the following account:\r\n\r\nhttp://backfeed.cc/\r\n\r\nUsername: back\r\n\r\nIf this was a mistake, just ignore this email and nothing will happen.\r\n\r\nTo reset your password, visit the following address:\r\n\r\n\r\n','[Backfeed] Password Reset','','private','closed','closed','','backfeed-password-reset','','','2015-11-16 15:25:28','2015-11-16 15:25:28','',0,'http://backfeed.cc/postman_sent_mail/backfeed-password-reset/',0,'postman_sent_mail','',0),(84,1,'2015-11-16 15:25:50','2015-11-16 15:25:50','From: Ore Landau <[email protected]>\n\nMessage Body:\nwerfer\n\n--\nThis e-mail was sent from a contact form on Backfeed (http://backfeed.cc)','New email from contact form in backfeed.cc','','private','closed','closed','','new-email-from-contact-form-in-backfeed-cc','','','2015-11-16 15:25:50','2015-11-16 15:25:50','',0,'http://backfeed.cc/postman_sent_mail/new-email-from-contact-form-in-backfeed-cc/',0,'postman_sent_mail','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(13,2,0),(14,2,0),(15,2,0),(16,2,0),(17,2,0),(18,2,0),(78,2,0),(79,2,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'nav_menu','',0,8);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Header Menu','header-menu',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','back'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp360_locks,wp390_widgets,wp410_dfw'),(13,1,'show_welcome_panel','1'),(15,1,'wp_dashboard_quick_press_last_post_id','81'),(16,1,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(17,1,'metaboxhidden_nav-menus','a:3:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";}'),(18,1,'wp_user-settings','libraryContent=browse&editor=tinymce&hidetb=1&wplink=1'),(19,1,'wp_user-settings-time','1444590774'),(20,1,'meta-box-order_mc4wp-form','a:4:{s:15:\"acf_after_title\";s:0:\"\";s:4:\"side\";s:50:\"mc4wp-form-settings,submitdiv,mc4wp-form-variables\";s:6:\"normal\";s:71:\"mc4wp-optional-settings,acf-group_55cd095d7898a,acf-group_55ccffc12d8a5\";s:8:\"advanced\";s:0:\"\";}'),(21,1,'screen_layout_mc4wp-form','2'),(22,1,'wpseo_ignore_tour','1'),(23,1,'wpseo_seen_about_version','2.3.5'),(24,1,'nav_menu_recently_edited','2'),(26,1,'session_tokens','a:1:{s:64:\"f3ee68c87d06683a6e58925c28b5569308d7ec3feda7d443d62bf2b5a1e0b501\";a:4:{s:10:\"expiration\";i:1448892841;s:2:\"ip\";s:12:\"66.85.131.91\";s:2:\"ua\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2552.0 Safari/537.36\";s:5:\"login\";i:1447683241;}}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_pass` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'back','$P$BtVNRkn3pOHl5tarLvHyEZMo6CCUj8/','back','[email protected]','','2015-08-10 14:43:02','1447687527:$P$BgzCGnAErMsbwB9rlMO5eyxd97zr1j/',0,'back');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2015-11-16 11:18:50