-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.sql
516 lines (449 loc) · 740 KB
/
db.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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
-- MySQL dump 10.13 Distrib 5.5.29, for debian-linux-gnu (i686)
--
-- Host: localhost Database: moduleq
-- ------------------------------------------------------
-- Server version 5.5.29-0ubuntu0.12.04.1
/*!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) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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 NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) 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 NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) 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=2 DEFAULT CHARSET=utf8;
/*!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-03-25 06:16:46','2015-03-25 06:16:46','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,'post-trashed','','',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) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) 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) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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_nf_objectmeta`
--
DROP TABLE IF EXISTS `wp_nf_objectmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf_objectmeta` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`object_id` bigint(20) NOT NULL,
`meta_key` varchar(255) NOT NULL,
`meta_value` longtext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nf_objectmeta`
--
LOCK TABLES `wp_nf_objectmeta` WRITE;
/*!40000 ALTER TABLE `wp_nf_objectmeta` DISABLE KEYS */;
INSERT INTO `wp_nf_objectmeta` VALUES (1,1,'date_updated','2015-05-12 06:11:55'),(2,1,'form_title','Contact Form'),(3,1,'show_title','0'),(4,1,'save_subs','1'),(5,1,'logged_in','0'),(6,1,'append_page',''),(7,1,'ajax','0'),(8,1,'clear_complete','1'),(9,1,'hide_complete','1'),(10,1,'success_msg','Your form has been successfully submitted.'),(11,1,'email_from',''),(12,1,'email_type','html'),(13,1,'user_email_msg','Thank you so much for contacting us. We will get back to you shortly.'),(14,1,'user_email_fields','0'),(15,1,'admin_email_msg',''),(16,1,'admin_email_fields','1'),(17,1,'admin_attach_csv','0'),(18,1,'email_from_name',''),(19,2,'date_updated','2014-09-09'),(20,2,'active','1'),(21,2,'name','Email User'),(22,2,'type','email'),(23,2,'email_format','html'),(24,2,'attach_csv','1'),(25,2,'from_name',''),(26,2,'from_address',''),(27,2,'reply_to',''),(28,2,'to','field_2'),(29,2,'cc',''),(30,2,'bcc',''),(31,2,'email_subject','Thank you for contacting us!'),(32,2,'email_message','Thank you so much for contacting us. We will get back to you shortly.'),(33,2,'redirect_url',''),(34,2,'success_message_loc','ninja_forms_display_before_fields'),(35,2,'success_msg',''),(36,3,'date_updated','2014-09-09'),(37,3,'active','1'),(38,3,'name','Success Message'),(39,3,'type','success_message'),(40,3,'email_format','html'),(41,3,'attach_csv','0'),(42,3,'from_name',''),(43,3,'from_address',''),(44,3,'reply_to',''),(45,3,'to',''),(46,3,'cc',''),(47,3,'bcc',''),(48,3,'email_subject',''),(49,3,'email_message',''),(50,3,'redirect_url',''),(51,3,'success_message_loc','ninja_forms_display_after_fields'),(52,3,'success_msg','Your form has been successfully submitted.'),(53,3,'text_message_number',''),(54,3,'text_message_carrier','0'),(55,3,'text_message_message',''),(56,4,'date_updated','2014-09-09'),(57,4,'active','1'),(58,4,'name','Email Admin'),(59,4,'type','email'),(60,4,'email_format','html'),(61,4,'attach_csv','1'),(62,4,'from_name',''),(63,4,'from_address',''),(64,4,'reply_to','field_2'),(65,4,'to',''),(66,4,'cc',''),(67,4,'bcc',''),(68,4,'email_subject','Ninja Form Submission'),(69,4,'email_message','[ninja_forms_all_fields]'),(70,4,'redirect_url',''),(71,4,'success_message_loc','ninja_forms_display_before_fields'),(72,4,'success_msg',''),(73,4,'text_message_number',''),(74,4,'text_message_carrier','0'),(75,4,'text_message_message',''),(76,5,'date_updated','2015-05-12 22:30:46'),(77,5,'clear_complete','1'),(78,5,'hide_complete','1'),(79,5,'show_title','0'),(80,5,'status',''),(81,5,'form_title','Sign Up Form'),(82,5,'last_sub','14'),(83,6,'date_updated','2015-04-15'),(84,6,'active','1'),(85,6,'name','Sign Up Form Success'),(86,6,'type','success_message'),(87,6,'from_name',''),(88,6,'from_address',''),(89,6,'to',''),(90,6,'email_subject',''),(91,6,'email_message',''),(92,6,'attach_csv','0'),(93,6,'email_format','html'),(94,6,'reply_to',''),(95,6,'cc',''),(96,6,'bcc',''),(97,6,'redirect_url',''),(98,6,'success_msg','<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/thankyou_03.png\"><img class=\" size-full wp-image-192 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/thankyou_03.png\" alt=\"thankyou_03\" width=\"626\" height=\"640\" /></a>'),(99,1,'status','');
/*!40000 ALTER TABLE `wp_nf_objectmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nf_objects`
--
DROP TABLE IF EXISTS `wp_nf_objects`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf_objects` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`type` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nf_objects`
--
LOCK TABLES `wp_nf_objects` WRITE;
/*!40000 ALTER TABLE `wp_nf_objects` DISABLE KEYS */;
INSERT INTO `wp_nf_objects` VALUES (1,'form'),(2,'notification'),(3,'notification'),(4,'notification'),(5,'form'),(6,'notification');
/*!40000 ALTER TABLE `wp_nf_objects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_nf_relationships`
--
DROP TABLE IF EXISTS `wp_nf_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf_relationships` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`child_id` bigint(20) NOT NULL,
`parent_id` bigint(20) NOT NULL,
`child_type` varchar(255) NOT NULL,
`parent_type` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_nf_relationships`
--
LOCK TABLES `wp_nf_relationships` WRITE;
/*!40000 ALTER TABLE `wp_nf_relationships` DISABLE KEYS */;
INSERT INTO `wp_nf_relationships` VALUES (1,2,1,'notification','form'),(2,3,1,'notification','form'),(3,4,1,'notification','form'),(4,6,5,'notification','form');
/*!40000 ALTER TABLE `wp_nf_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ninja_forms_fav_fields`
--
DROP TABLE IF EXISTS `wp_ninja_forms_fav_fields`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ninja_forms_fav_fields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`row_type` int(11) NOT NULL,
`type` varchar(255) NOT NULL,
`order` int(11) NOT NULL,
`data` longtext NOT NULL,
`name` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=93 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ninja_forms_fav_fields`
--
LOCK TABLES `wp_ninja_forms_fav_fields` WRITE;
/*!40000 ALTER TABLE `wp_ninja_forms_fav_fields` DISABLE KEYS */;
INSERT INTO `wp_ninja_forms_fav_fields` VALUES (2,0,'_list',0,'a:10:{s:5:\"label\";s:14:\"State Dropdown\";s:9:\"label_pos\";s:4:\"left\";s:9:\"list_type\";s:8:\"dropdown\";s:10:\"multi_size\";s:1:\"5\";s:15:\"list_show_value\";s:1:\"1\";s:4:\"list\";a:1:{s:7:\"options\";a:51:{i:0;a:3:{s:5:\"label\";s:7:\"Alabama\";s:5:\"value\";s:2:\"AL\";s:8:\"selected\";s:1:\"0\";}i:1;a:3:{s:5:\"label\";s:6:\"Alaska\";s:5:\"value\";s:2:\"AK\";s:8:\"selected\";s:1:\"0\";}i:2;a:3:{s:5:\"label\";s:7:\"Arizona\";s:5:\"value\";s:2:\"AZ\";s:8:\"selected\";s:1:\"0\";}i:3;a:3:{s:5:\"label\";s:8:\"Arkansas\";s:5:\"value\";s:2:\"AR\";s:8:\"selected\";s:1:\"0\";}i:4;a:3:{s:5:\"label\";s:10:\"California\";s:5:\"value\";s:2:\"CA\";s:8:\"selected\";s:1:\"0\";}i:5;a:3:{s:5:\"label\";s:8:\"Colorado\";s:5:\"value\";s:2:\"CO\";s:8:\"selected\";s:1:\"0\";}i:6;a:3:{s:5:\"label\";s:11:\"Connecticut\";s:5:\"value\";s:2:\"CT\";s:8:\"selected\";s:1:\"0\";}i:7;a:3:{s:5:\"label\";s:8:\"Delaware\";s:5:\"value\";s:2:\"DE\";s:8:\"selected\";s:1:\"0\";}i:8;a:3:{s:5:\"label\";s:20:\"District of Columbia\";s:5:\"value\";s:2:\"DC\";s:8:\"selected\";s:1:\"0\";}i:9;a:3:{s:5:\"label\";s:7:\"Florida\";s:5:\"value\";s:2:\"FL\";s:8:\"selected\";s:1:\"0\";}i:10;a:3:{s:5:\"label\";s:7:\"Georgia\";s:5:\"value\";s:2:\"GA\";s:8:\"selected\";s:1:\"0\";}i:11;a:3:{s:5:\"label\";s:6:\"Hawaii\";s:5:\"value\";s:2:\"HI\";s:8:\"selected\";s:1:\"0\";}i:12;a:3:{s:5:\"label\";s:5:\"Idaho\";s:5:\"value\";s:2:\"ID\";s:8:\"selected\";s:1:\"0\";}i:13;a:3:{s:5:\"label\";s:8:\"Illinois\";s:5:\"value\";s:2:\"IL\";s:8:\"selected\";s:1:\"0\";}i:14;a:3:{s:5:\"label\";s:7:\"Indiana\";s:5:\"value\";s:2:\"IN\";s:8:\"selected\";s:1:\"0\";}i:15;a:3:{s:5:\"label\";s:4:\"Iowa\";s:5:\"value\";s:2:\"IA\";s:8:\"selected\";s:1:\"0\";}i:16;a:3:{s:5:\"label\";s:6:\"Kansas\";s:5:\"value\";s:2:\"KS\";s:8:\"selected\";s:1:\"0\";}i:17;a:3:{s:5:\"label\";s:8:\"Kentucky\";s:5:\"value\";s:2:\"KY\";s:8:\"selected\";s:1:\"0\";}i:18;a:3:{s:5:\"label\";s:9:\"Louisiana\";s:5:\"value\";s:2:\"LA\";s:8:\"selected\";s:1:\"0\";}i:19;a:3:{s:5:\"label\";s:5:\"Maine\";s:5:\"value\";s:2:\"ME\";s:8:\"selected\";s:1:\"0\";}i:20;a:3:{s:5:\"label\";s:8:\"Maryland\";s:5:\"value\";s:2:\"MD\";s:8:\"selected\";s:1:\"0\";}i:21;a:3:{s:5:\"label\";s:13:\"Massachusetts\";s:5:\"value\";s:2:\"MA\";s:8:\"selected\";s:1:\"0\";}i:22;a:3:{s:5:\"label\";s:8:\"Michigan\";s:5:\"value\";s:2:\"MI\";s:8:\"selected\";s:1:\"0\";}i:23;a:3:{s:5:\"label\";s:9:\"Minnesota\";s:5:\"value\";s:2:\"MN\";s:8:\"selected\";s:1:\"0\";}i:24;a:3:{s:5:\"label\";s:11:\"Mississippi\";s:5:\"value\";s:2:\"MS\";s:8:\"selected\";s:1:\"0\";}i:25;a:3:{s:5:\"label\";s:8:\"Missouri\";s:5:\"value\";s:2:\"MO\";s:8:\"selected\";s:1:\"0\";}i:26;a:3:{s:5:\"label\";s:7:\"Montana\";s:5:\"value\";s:2:\"MT\";s:8:\"selected\";s:1:\"0\";}i:27;a:3:{s:5:\"label\";s:8:\"Nebraska\";s:5:\"value\";s:2:\"NE\";s:8:\"selected\";s:1:\"0\";}i:28;a:3:{s:5:\"label\";s:6:\"Nevada\";s:5:\"value\";s:2:\"NV\";s:8:\"selected\";s:1:\"0\";}i:29;a:3:{s:5:\"label\"3s:13:\"New Hampshire\";s:5:\"value\";s:2:\"NH\";s:8:\"selected\";s:1:\"0\";}i:30;a:3:{s:5:\"label\";s:10:\"New Jersey\";s:5:\"value\";s:2:\"NJ\";s:8:\"selected\";s:1:\"0\";}i:31;a:3:{s:5:\"label\";s:10:\"New Mexico\";s:5:\"value\";s:2:\"NM\";s:8:\"selected\";s:1:\"0\";}i:32;a:3:{s:5:\"label\";s:8:\"New York\";s:5:\"value\";s:2:\"NY\";s:8:\"selected\";s:1:\"0\";}i:33;a:3:{s:5:\"label\";s:14:\"North Carolina\";s:5:\"value\";s:2:\"NC\";s:8:\"selected\";s:1:\"0\";}i:34;a:3:{s:5:\"label\";s:12:\"North Dakota\";s:5:\"value\";s:2:\"ND\";s:8:\"selected\";s:1:\"0\";}i:35;a:3:{s:5:\"label\";s:4:\"Ohio\";s:5:\"value\";s:2:\"OH\";s:8:\"selected\";s:1:\"0\";}i:36;a:3:{s:5:\"label\";s:8:\"Oklahoma\";s:5:\"value\";s:2:\"OK\";s:8:\"selected\";s:1:\"0\";}i:37;a:3:{s:5:\"label\";s:6:\"Oregon\";s:5:\"value\";s:2:\"OR\";s:8:\"selected\";s:1:\"0\";}i:38;a:3:{s:5:\"label\";s:12:\"Pennsylvania\";s:5:\"value\";s:2:\"PA\";s:8:\"selected\";s:1:\"0\";}i:39;a:3:{s:5:\"label\";s:12:\"Rhode Island\";s:5:\"value\";s:2:\"RI\";s:8:\"selected\";s:1:\"0\";}i:40;a:3:{s:5:\"label\";s:14:\"South Carolina\";s:5:\"value\";s:2:\"SC\";s:8:\"selected\";s:1:\"0\";}i:41;a:3:{s:5:\"label\";s:12:\"South Dakota\";s:5:\"value\";s:2:\"SD\";s:8:\"selected\";s:1:\"0\";}i:42;a:3:{s:5:\"label\";s:9:\"Tennessee\";s:5:\"value\";s:2:\"TN\";s:8:\"selected\";s:1:\"0\";}i:43;a:3:{s:5:\"label\";s:5:\"Texas\";s:5:\"value\";s:2:\"TX\";s:8:\"selected\";s:1:\"0\";}i:44;a:3:{s:5:\"label\";s:4:\"Utah\";s:5:\"value\";s:2:\"UT\";s:8:\"selected\";s:1:\"0\";}i:45;a:3:{s:5:\"label\";s:7:\"Vermont\";s:5:\"value\";s:2:\"VT\";s:8:\"selected\";s:1:\"0\";}i:46;a:3:{s:5:\"label\";s:8:\"Virginia\";s:5:\"value\";s:2:\"VA\";s:8:\"selected\";s:1:\"0\";}i:47;a:3:{s:5:\"label\";s:10:\"Washington\";s:5:\"value\";s:2:\"WA\";s:8:\"selected\";s:1:\"0\";}i:48;a:3:{s:5:\"label\";s:13:\"West Virginia\";s:5:\"value\";s:2:\"WV\";s:8:\"selected\";s:1:\"0\";}i:49;a:3:{s:5:\"label\";s:9:\"Wisconsin\";s:5:\"value\";s:2:\"WI\";s:8:\"selected\";s:1:\"0\";}i:50;a:3:{s:5:\"label\";s:7:\"Wyoming\";s:5:\"value\";s:2:\"WY\";s:8:\"selected\";s:1:\"0\";}}}s:3:\"req\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";}','State Dropdown'),(3,0,'_spam',0,'a:6:{s:9:\"label_pos\";s:4:\"left\";s:5:\"label\";s:18:\"Anti-Spam Question\";s:6:\"answer\";s:16:\"Anti-Spam Answer\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";}','Anti-Spam'),(4,0,'_submit',0,'a:4:{s:5:\"label\";s:6:\"Submit\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";}','Submit'),(5,0,'_tax',0,'a:11:{s:5:\"label\";s:3:\"Tax\";s:9:\"label_pos\";s:5:\"above\";s:13:\"default_value\";s:0:\"\";s:19:\"payment_field_group\";s:1:\"1\";s:11:\"payment_tax\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:11:\"conditional\";s:0:\"\";s:11:\"calc_option\";s:1:\"0\";s:4:\"calc\";s:0:\"\";}','Tax'),(6,0,'_text',0,'a:19:{s:5:\"label\";s:10:\"First Name\";s:9:\"label_pos\";s:5:\"above\";s:13:\"default_value\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:10:\"datepicker\";s:1:\"0\";s:5:\"email\";s:1:\"0\";s:10:\"send_email\";s:1:\"0\";s:10:\"from_email\";s:1:\"0\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"0\";s:9:\"from_name\";s:1:\"0\";s:21:\"user_info_field_group\";s:1:\"1\";s:3:\"req\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:17:\"calc_auto_include\";s:1:\"0\";s:11:\"calc_option\";s:1:\"0\";s:11:\"conditional\";s:0:\"\";}','First Name'),(7,0,'_text',0,'a:19:{s:5:\"label\";s:9:\"Last Name\";s:9:\"label_pos\";s:5:\"above\";s:13:\"default_value\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:10:\"datepicker\";s:1:\"0\";s:5:\"email\";s:1:\"0\";s:10:\"send_email\";s:1:\"0\";s:10:\"from_email\";s:1:\"0\";s:10:\"first_name\";s:1:\"0\";s:9:\"last_name\";s:1:\"1\";s:9:\"from_name\";s:1:\"0\";s:21:\"user_info_field_group\";s:1:\"1\";s:3:\"req\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:17:\"calc_auto_include\";s:1:\"0\";s:11:\"calc_option\";s:1:\"0\";s:11:\"conditional\";s:0:\"\";}','Last Name'),(8,0,'_text',0,'a:23:{s:5:\"label\";s:9:\"Address 1\";s:9:\"label_pos\";s:5:\"above\";s:13:\"default_value\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:10:\"datepicker\";s:1:\"0\";s:5:\"email\";s:1:\"0\";s:10:\"send_email\";s:1:\"0\";s:10:\"from_email\";s:1:\"0\";s:10:\"first_name\";s:1:\"0\";s:9:\"last_name\";s:1:\"0\";s:9:\"from_name\";s:1:\"0\";s:14:\"user_address_1\";s:1:\"1\";s:14:\"user_address_2\";s:1:\"0\";s:9:\"user_city\";s:1:\"0\";s:8:\"user_zip\";s:1:\"0\";s:21:\"user_info_field_group\";s:1:\"1\";s:3:\"req\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:17:\"calc_auto_include\";s:1:\"0\";s:11:\"calc_option\";s:1:\"0\";s:11:\"conditional\";s:0:\"\";}','Address 1'),(9,0,'_text',0,'a:23:{s:5:\"label\";s:9:\"Address 2\";s:9:\"label_pos\";s:5:\"above\";s:13:\"default_value\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:10:\"datepicker\";s:1:\"0\";s:5:\"email\";s:1:\"0\";s:10:\"send_email\";s:1:\"0\";s:10:\"from_email\";s:1:\"0\";s:10:\"first_name\";s:1:\"0\";s:9:\"last_name\";s:1:\"0\";s:9:\"from_name\";s:1:\"0\";s:14:\"user_address_1\";s:1:\"0\";s:14:\"user_address_2\";s:1:\"1\";s:9:\"user_city\";s:1:\"0\";s:8:\"user_zip\";s:1:\"0\";s:21:\"user_info_field_group\";s:1:\"1\";s:3:\"req\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:17:\"calc_auto_include\";s:1:\"0\";s:11:\"calc_option\";s:1:\"0\";s:11:\"conditional\";s:0:\"\";}','Address 2'),(10,0,'_text',0,'a:23:{s:5:\"label\";s:4:\"City\";s:9:\"label_pos\";s:5:\"above\";s:13:\"default_value\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:10:\"datepicker\";s:1:\"0\";s:5:\"email\";s:1:\"0\";s:10:\"send_email\";s:1:\"0\";s:10:\"from_email\";s:1:\"0\";s:10:\"first_name\";s:1:\"0\";s:9:\"last_name\";s:1:\"0\";s:9:\"from_name\";s:1:\"0\";s:14:\"user_address_1\";s:1:\"0\";s:14:\"user_address_2\";s:1:\"0\";s:9:\"user_city\";s:1:\"1\";s:8:\"user_zip\";s:1:\"0\";s:21:\"user_info_field_group\";s:1:\"1\";s:3:\"req\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:17:\"calc_auto_include\";s:1:\"0\";s:11:\"calc_option\";s:1:\"0\";s:11:\"conditional\";s:0:\"\";}','City'),(11,0,'_list',0,'a:16:{s:5:\"label\";s:5:\"State\";s:9:\"label_pos\";s:5:\"above\";s:10:\"multi_size\";s:1:\"5\";s:15:\"list_show_value\";s:1:\"1\";s:4:\"list\";a:1:{s:7:\"options\";a:51:{i:0;a:4:{s:5:\"label\";s:7:\"Alabama\";s:5:\"value\";s:2:\"AL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:1;a:4:{s:5:\"label\";s:6:\"Alaska\";s:5:\"value\";s:2:\"AK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:2;a:4:{s:5:\"label\";s:7:\"Arizona\";s:5:\"value\";s:2:\"AZ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:3;a:4:{s:5:\"label\";s:8:\"Arkansas\";s:5:\"value\";s:2:\"AR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:4;a:4:{s:5:\"label\";s:10:\"California\";s:5:\"value\";s:2:\"CA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:5;a:4:{s:5:\"label\";s:8:\"Colorado\";s:5:\"value\";s:2:\"CO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:6;a:4:{s:5:\"label\";s:11:\"Connecticut\";s:5:\"value\";s:2:\"CT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:7;a:4:{s:5:\"label\";s:8:\"Delaware\";s:5:\"value\";s:2:\"DE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:8;a:4:{s:5:\"label\";s:20:\"District of Columbia\";s:5:\"value\";s:2:\"DC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:9;a:4:{s:5:\"label\";s:7:\"Florida\";s:5:\"value\";s:2:\"FL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:10;a:4:{s:5:\"label\";s:7:\"Georgia\";s:5:\"value\";s:2:\"GA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:11;a:4:{s:5:\"label\";s:6:\"Hawaii\";s:5:\"value\";s:2:\"HI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:12;a:4:{s:5:\"label\";s:5:\"Idaho\";s:5:\"value\";s:2:\"ID\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:13;a:4:{s:5:\"label\";s:8:\"Illinois\";s:5:\"value\";s:2:\"IL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:14;a:4:{s:5:\"label\";s:7:\"Indiana\";s:5:\"value\";s:2:\"IN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:15;a:4:{s:5:\"label\";s:4:\"Iowa\";s:5:\"value\";s:2:\"IA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:16;a:4:{s:5:\"label\";s:6:\"Kansas\";s:5:\"value\";s:2:\"KS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:17;a:4:{s:5:\"label\";s:8:\"Kentucky\";s:5:\"value\";s:2:\"KY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:18;a:4:{s:5:\"label\";s:9:\"Louisiana\";s:5:\"value\";s:2:\"LA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:19;a:4:{s:5:\"label\";s:5:\"Maine\";s:5:\"value\";s:2:\"ME\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:20;a:4:{s:5:\"label\";s:8:\"Maryland\";s:5:\"value\";s:2:\"MD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:21;a:4:{s:5:\"label\";s:13:\"Massachusetts\";s:5:\"value\";s:2:\"MA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:22;a:4:{s:5:\"label\";s:8:\"Michigan\";s:5:\"value\";s:2:\"MI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:23;a:4:{s:5:\"label\";s:9:\"Minnesota\";s:5:\"value\";s:2:\"MN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:24;a:4:{s:5:\"label\";s:11:\"Mississippi\";s:5:\"value\";s:2:\"MS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:25;a:4:{s:5:\"label\";s:8:\"Missouri\";s:5:\"value\";s:2:\"MO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:26;a:4:{s:5:\"label\";s:7:\"Montana\";s:5:\"value\";s:2:\"MT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:27;a:4:{s:5:\"label\";s:8:\"Nebraska\";s:5:\"value\";s:2:\"NE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:28;a:4:{s:5:\"label\";s:6:\"Nevada\";s:5:\"value\";s:2:\"NV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:29;a:4:{s:5:\"label\";s:13:\"New Hampshire\";s:5:\"value\";s:2:\"NH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:30;a:4:{s:5:\"label\";s:10:\"New Jersey\";s:5:\"value\";s:2:\"NJ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:31;a:4:{s:5:\"label\";s:10:\"New Mexico\";s:5:\"value\";s:2:\"NM\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:32;a:4:{s:5:\"label\";s:8:\"New York\";s:5:\"value\";s:2:\"NY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:33;a:4:{s:5:\"label\";s:14:\"North Carolina\";s:5:\"value\";s:2:\"NC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:34;a:4:{s:5:\"label\";s:12:\"North Dakota\";s:5:\"value\";s:2:\"ND\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:35;a:4:{s:5:\"label\";s:4:\"Ohio\";s:5:\"value\";s:2:\"OH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:36;a:4:{s:5:\"label\";s:8:\"Oklahoma\";s:5:\"value\";s:2:\"OK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:37;a:4:{s:5:\"label\";s:6:\"Oregon\";s:5:\"value\";s:2:\"OR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:38;a:4:{s:5:\"label\";s:12:\"Pennsylvania\";s:5:\"value\";s:2:\"PA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:39;a:4:{s:5:\"label\";s:12:\"Rhode Island\";s:5:\"value\";s:2:\"RI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:40;a:4:{s:5:\"label\";s:14:\"South Carolina\";s:5:\"value\";s:2:\"SC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:41;a:4:{s:5:\"label\";s:12:\"South Dakota\";s:5:\"value\";s:2:\"SD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:42;a:4:{s:5:\"label\";s:9:\"Tennessee\";s:5:\"value\";s:2:\"TN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:43;a:4:{s:5:\"label\";s:5:\"Texas\";s:5:\"value\";s:2:\"TX\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:44;a:4:{s:5:\"label\";s:4:\"Utah\";s:5:\"value\";s:2:\"UT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:45;a:4:{s:5:\"label\";s:7:\"Vermont\";s:5:\"value\";s:2:\"VT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:46;a:4:{s:5:\"label\";s:8:\"Virginia\";s:5:\"value\";s:2:\"VA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:47;a:4:{s:5:\"label\";s:10:\"Washington\";s:5:\"value\";s:2:\"WA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:48;a:4:{s:5:\"label\";s:13:\"West Virginia\";s:5:\"value\";s:2:\"WV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:49;a:4:{s:5:\"label\";s:9:\"Wisconsin\";s:5:\"value\";s:2:\"WI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}i:50;a:4:{s:5:\"label\";s:7:\"Wyoming\";s:5:\"value\";s:2:\"WY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";s:1:\"0\";}}}s:9:\"list_type\";s:8:\"dropdown\";s:10:\"user_state\";s:1:\"1\";s:21:\"user_info_field_group\";s:1:\"1\";s:13:\"populate_term\";s:0:\"\";s:3:\"req\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:17:\"calc_auto_include\";s:1:\"0\";s:11:\"calc_option\";s:1:\"0\";s:11:\"conditional\";s:0:\"\";}','State'),(12,0,'_text',0,'a:23:{s:5:\"label\";s:15:\"Zip / Post Code\";s:9:\"label_pos\";s:5:\"above\";s:13:\"default_value\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:10:\"datepicker\";s:1:\"0\";s:5:\"email\";s:1:\"0\";s:10:\"send_email\";s:1:\"0\";s:10:\"from_email\";s:1:\"0\";s:10:\"first_name\";s:1:\"0\";s:9:\"last_name\";s:1:\"0\";s:9:\"from_name\";s:1:\"0\";s:14:\"user_address_1\";s:1:\"0\";s:14:\"user_address_2\";s:1:\"0\";s:9:\"user_city\";s:1:\"0\";s:8:\"user_zip\";s:1:\"1\";s:21:\"user_info_field_group\";s:1:\"1\";s:3:\"req\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:17:\"calc_auto_include\";s:1:\"0\";s:11:\"calc_option\";s:1:\"0\";s:11:\"conditional\";s:0:\"\";}','Zip / Post Code'),(13,0,'_country',0,'a:10:{s:5:\"label\";s:7:\"Country\";s:9:\"label_pos\";s:5:\"above\";s:13:\"default_value\";s:2:\"US\";s:21:\"user_info_field_group\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:17:\"calc_auto_include\";s:1:\"0\";s:11:\"calc_option\";s:1:\"0\";s:11:\"conditional\";s:0:\"\";}','Country'),(14,0,'_text',0,'a:25:{s:5:\"label\";s:5:\"Email\";s:9:\"label_pos\";s:5:\"above\";s:13:\"default_value\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:10:\"datepicker\";s:1:\"0\";s:5:\"email\";s:1:\"1\";s:10:\"send_email\";s:1:\"0\";s:10:\"from_email\";s:1:\"0\";s:10:\"first_name\";s:1:\"0\";s:9:\"last_name\";s:1:\"0\";s:9:\"from_name\";s:1:\"0\";s:14:\"user_address_1\";s:1:\"0\";s:14:\"user_address_2\";s:1:\"0\";s:9:\"user_city\";s:1:\"0\";s:8:\"user_zip\";s:1:\"0\";s:10:\"user_phone\";s:1:\"0\";s:10:\"user_email\";s:1:\"1\";s:21:\"user_info_field_group\";s:1:\"1\";s:3:\"req\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:17:\"calc_auto_include\";s:1:\"0\";s:11:\"calc_option\";s:1:\"0\";s:11:\"conditional\";s:0:\"\";}','Email'),(15,0,'_text',0,'a:25:{s:5:\"label\";s:5:\"Phone\";s:9:\"label_pos\";s:5:\"above\";s:13:\"default_value\";s:0:\"\";s:4:\"mask\";s:14:\"(999) 999-9999\";s:10:\"datepicker\";s:1:\"0\";s:5:\"email\";s:1:\"0\";s:10:\"send_email\";s:1:\"0\";s:10:\"from_email\";s:1:\"0\";s:10:\"first_name\";s:1:\"0\";s:9:\"last_name\";s:1:\"0\";s:9:\"from_name\";s:1:\"0\";s:14:\"user_address_1\";s:1:\"0\";s:14:\"user_address_2\";s:1:\"0\";s:9:\"user_city\";s:1:\"0\";s:8:\"user_zip\";s:1:\"0\";s:10:\"user_phone\";s:1:\"1\";s:10:\"user_email\";s:1:\"0\";s:21:\"user_info_field_group\";s:1:\"1\";s:3:\"req\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:17:\"calc_auto_include\";s:1:\"0\";s:11:\"calc_option\";s:1:\"0\";s:11:\"conditional\";s:0:\"\";}','Phone'),(16,0,'_calc',0,'a:20:{s:9:\"calc_name\";s:9:\"sub_total\";s:13:\"default_value\";s:0:\"\";s:17:\"calc_display_type\";s:4:\"text\";s:5:\"label\";s:9:\"Sub Total\";s:9:\"label_pos\";s:5:\"above\";s:26:\"calc_display_text_disabled\";s:1:\"1\";s:17:\"calc_display_html\";s:26:\"<p>[ninja_forms_calc]</p>\n\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:11:\"calc_method\";s:4:\"auto\";s:4:\"calc\";s:0:\"\";s:7:\"calc_eq\";s:0:\"\";s:19:\"payment_field_group\";s:1:\"1\";s:13:\"payment_total\";s:1:\"0\";s:17:\"payment_sub_total\";s:1:\"1\";s:11:\"calc_places\";s:1:\"2\";s:17:\"calc_auto_include\";s:1:\"0\";s:11:\"calc_option\";s:1:\"0\";s:11:\"conditional\";s:0:\"\";}','Sub Total'),(17,0,'_calc',0,'a:20:{s:9:\"calc_name\";s:5:\"total\";s:13:\"default_value\";s:0:\"\";s:17:\"calc_display_type\";s:4:\"text\";s:5:\"label\";s:5:\"Total\";s:9:\"label_pos\";s:5:\"above\";s:26:\"calc_display_text_disabled\";s:1:\"1\";s:17:\"calc_display_html\";s:26:\"<p>[ninja_forms_calc]</p>\n\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:11:\"calc_method\";s:4:\"auto\";s:4:\"calc\";a:5:{i:0;a:2:{s:2:\"op\";s:3:\"add\";s:5:\"field\";s:2:\"70\";}i:1;a:2:{s:2:\"op\";s:3:\"add\";s:5:\"field\";s:2:\"69\";}i:2;a:2:{s:2:\"op\";s:3:\"add\";s:5:\"field\";s:2:\"15\";}i:3;a:2:{s:2:\"op\";s:3:\"add\";s:5:\"field\";s:2:\"61\";}i:4;a:2:{s:2:\"op\";s:3:\"add\";s:5:\"field\";s:2:\"70\";}}s:7:\"calc_eq\";s:5:\"5 + 5\";s:19:\"payment_field_group\";s:1:\"1\";s:13:\"payment_total\";s:1:\"1\";s:17:\"payment_sub_total\";s:1:\"0\";s:11:\"calc_places\";s:1:\"2\";s:17:\"calc_auto_include\";s:1:\"0\";s:11:\"calc_option\";s:1:\"0\";s:11:\"conditional\";s:0:\"\";}','Total'),(92,0,'_credit_card',0,'a:6:{s:5:\"label\";s:11:\"Credit Card\";s:19:\"payment_field_group\";s:1:\"1\";s:3:\"req\";s:1:\"0\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:11:\"conditional\";s:0:\"\";}','Credit Card');
/*!40000 ALTER TABLE `wp_ninja_forms_fav_fields` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ninja_forms_fields`
--
DROP TABLE IF EXISTS `wp_ninja_forms_fields`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ninja_forms_fields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`form_id` int(11) NOT NULL,
`type` varchar(255) NOT NULL,
`order` int(11) NOT NULL,
`data` longtext NOT NULL,
`fav_id` int(11) DEFAULT NULL,
`def_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ninja_forms_fields`
--
LOCK TABLES `wp_ninja_forms_fields` WRITE;
/*!40000 ALTER TABLE `wp_ninja_forms_fields` DISABLE KEYS */;
INSERT INTO `wp_ninja_forms_fields` VALUES (1,1,'_text',0,'a:24:{s:5:\"label\";s:4:\"Name\";s:9:\"label_pos\";s:5:\"above\";s:13:\"default_value\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:10:\"datepicker\";s:1:\"0\";s:5:\"email\";s:1:\"0\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:9:\"from_name\";s:1:\"0\";s:14:\"user_address_1\";s:0:\"\";s:14:\"user_address_2\";s:0:\"\";s:9:\"user_city\";s:0:\"\";s:8:\"user_zip\";s:0:\"\";s:10:\"user_phone\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:21:\"user_info_field_group\";s:0:\"\";s:3:\"req\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:9:\"show_desc\";s:1:\"0\";s:8:\"desc_pos\";s:4:\"none\";s:9:\"desc_text\";s:0:\"\";s:17:\"calc_auto_include\";s:1:\"0\";}',0,0),(2,1,'_text',1,'a:28:{s:5:\"label\";s:5:\"Email\";s:9:\"label_pos\";s:5:\"above\";s:13:\"default_value\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:10:\"datepicker\";s:1:\"0\";s:5:\"email\";s:1:\"1\";s:10:\"first_name\";s:1:\"0\";s:9:\"last_name\";s:1:\"0\";s:9:\"from_name\";s:1:\"0\";s:14:\"user_address_1\";s:1:\"0\";s:14:\"user_address_2\";s:1:\"0\";s:9:\"user_city\";s:1:\"0\";s:8:\"user_zip\";s:1:\"0\";s:10:\"user_phone\";s:1:\"0\";s:10:\"user_email\";s:1:\"1\";s:21:\"user_info_field_group\";s:1:\"1\";s:3:\"req\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:17:\"calc_auto_include\";s:1:\"0\";s:11:\"calc_option\";s:1:\"0\";s:11:\"conditional\";s:0:\"\";s:26:\"user_info_field_group_name\";s:0:\"\";s:28:\"user_info_field_group_custom\";s:0:\"\";s:9:\"show_desc\";s:1:\"0\";s:8:\"desc_pos\";s:4:\"none\";s:9:\"desc_text\";s:0:\"\";}',0,14),(3,1,'_textarea',2,'a:14:{s:5:\"label\";s:7:\"Message\";s:9:\"label_pos\";s:5:\"above\";s:13:\"default_value\";s:0:\"\";s:12:\"textarea_rte\";s:1:\"0\";s:14:\"textarea_media\";s:1:\"0\";s:18:\"disable_rte_mobile\";s:1:\"0\";s:3:\"req\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:9:\"show_desc\";s:1:\"0\";s:8:\"desc_pos\";s:4:\"none\";s:9:\"desc_text\";s:0:\"\";s:17:\"calc_auto_include\";s:1:\"0\";}',0,0),(5,1,'_submit',3,'a:7:{s:5:\"label\";s:4:\"Send\";s:5:\"class\";s:25:\"rollover-button no-margin\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:9:\"show_desc\";s:1:\"0\";s:8:\"desc_pos\";s:4:\"none\";s:9:\"desc_text\";s:0:\"\";}',0,0),(6,5,'_text',1,'a:39:{s:5:\"label\";s:4:\"Name\";s:9:\"label_pos\";s:5:\"above\";s:13:\"default_value\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:10:\"datepicker\";s:1:\"0\";s:5:\"email\";s:1:\"0\";s:10:\"send_email\";s:1:\"0\";s:10:\"from_email\";s:1:\"0\";s:10:\"first_name\";s:1:\"1\";s:9:\"last_name\";s:1:\"0\";s:9:\"from_name\";s:1:\"0\";s:21:\"user_info_field_group\";s:1:\"1\";s:3:\"req\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:17:\"calc_auto_include\";s:1:\"0\";s:11:\"calc_option\";s:1:\"0\";s:11:\"conditional\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:14:\"user_address_1\";s:0:\"\";s:14:\"user_address_2\";s:0:\"\";s:9:\"user_city\";s:0:\"\";s:8:\"user_zip\";s:0:\"\";s:10:\"user_phone\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:13:\"disable_input\";s:1:\"0\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:4:\"char\";s:15:\"input_limit_msg\";s:0:\"\";s:10:\"user_state\";s:1:\"0\";s:16:\"autocomplete_off\";s:1:\"0\";s:8:\"num_sort\";s:1:\"0\";s:11:\"admin_label\";s:0:\"\";s:26:\"user_info_field_group_name\";s:0:\"\";s:28:\"user_info_field_group_custom\";s:0:\"\";s:9:\"show_desc\";s:1:\"0\";s:8:\"desc_pos\";s:4:\"none\";s:9:\"desc_text\";s:0:\"\";}',NULL,6),(7,5,'_submit',3,'a:8:{s:5:\"label\";s:7:\"Sign Up\";s:15:\"input_limit_msg\";s:17:\"character(s) left\";s:5:\"class\";s:15:\"rollover-button\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:9:\"show_desc\";s:1:\"0\";s:8:\"desc_pos\";s:4:\"none\";s:9:\"desc_text\";s:0:\"\";}',NULL,NULL),(8,5,'_text',2,'a:39:{s:5:\"label\";s:10:\"Work Email\";s:9:\"label_pos\";s:5:\"above\";s:13:\"default_value\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:10:\"datepicker\";s:1:\"0\";s:5:\"email\";s:1:\"1\";s:10:\"send_email\";s:1:\"0\";s:10:\"from_email\";s:1:\"0\";s:10:\"first_name\";s:1:\"0\";s:9:\"last_name\";s:1:\"0\";s:9:\"from_name\";s:1:\"0\";s:14:\"user_address_1\";s:1:\"0\";s:14:\"user_address_2\";s:1:\"0\";s:9:\"user_city\";s:1:\"0\";s:8:\"user_zip\";s:1:\"0\";s:10:\"user_phone\";s:1:\"0\";s:10:\"user_email\";s:1:\"1\";s:21:\"user_info_field_group\";s:1:\"1\";s:3:\"req\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:17:\"calc_auto_include\";s:1:\"0\";s:11:\"calc_option\";s:1:\"0\";s:11:\"conditional\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:13:\"disable_input\";s:1:\"0\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:4:\"char\";s:15:\"input_limit_msg\";s:0:\"\";s:10:\"user_state\";s:1:\"0\";s:16:\"autocomplete_off\";s:1:\"0\";s:8:\"num_sort\";s:1:\"0\";s:11:\"admin_label\";s:0:\"\";s:26:\"user_info_field_group_name\";s:0:\"\";s:28:\"user_info_field_group_custom\";s:0:\"\";s:9:\"show_desc\";s:1:\"0\";s:8:\"desc_pos\";s:4:\"none\";s:9:\"desc_text\";s:0:\"\";}',NULL,14),(9,5,'_desc',0,'a:8:{s:5:\"label\";s:4:\"Text\";s:15:\"input_limit_msg\";s:17:\"character(s) left\";s:13:\"default_value\";s:309:\"<h1 style=\"text-align: center;font-weight:600;color:#56f538;\">Sign Up For Rev</h1> <p style=\"text-align: center;width:105%\">Please enter your name and work email address to reserve a space in our early release program. We\'ll be in touch as soon as an invitation becomes available.</p>\";s:7:\"desc_el\";s:3:\"div\";s:5:\"class\";s:0:\"\";s:9:\"show_desc\";s:1:\"0\";s:8:\"desc_pos\";s:4:\"none\";s:9:\"desc_text\";s:0:\"\";}',NULL,NULL);
/*!40000 ALTER TABLE `wp_ninja_forms_fields` 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) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=1742 DEFAULT CHARSET=utf8;
/*!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://moduleq.sophiashoemaker.com','yes'),(2,'home','http://moduleq.sophiashoemaker.com','yes'),(3,'blogname','ModuleQ','yes'),(4,'blogdescription','Just another WordPress site','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','/%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:9:{i:0;s:29:\"column-matic/column-matic.php\";i:1;s:35:\"display-widgets/display-widgets.php\";i:2;s:33:\"duplicate-post/duplicate-post.php\";i:3;s:27:\"ninja-forms/ninja-forms.php\";i:4;s:45:\"simple-page-ordering/simple-page-ordering.php\";i:5;s:45:\"taxonomy-terms-order/taxonomy-terms-order.php\";i:6;s:14:\"types/wpcf.php\";i:7;s:47:\"ultimate-posts-widget/ultimate-posts-widget.php\";i:8;s:53:\"velvet-blues-update-urls/velvet-blues-update-urls.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','a:2:{i:0;s:80:\"/home/mrscobbler/sophiashoemaker/dev/moduleq/wp-content/themes/moduleq/style.css\";i:1;s:0:\"\";}','no'),(41,'template','moduleq','yes'),(42,'stylesheet','moduleq','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','30133','yes'),(50,'uploads_use_yearmonth_folders','1','yes'),(51,'upload_path','','yes'),(52,'blog_public','0','yes'),(53,'default_link_category','2','yes'),(54,'show_on_front','page','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:4:{i:2;a:7:{s:5:\"title\";s:15:\"Media Inquiries\";s:4:\"text\";s:99:\"Michelle McNulty\r\nMarketing Manager\r\n<a href=\"mailto:[email protected]\">[email protected]</a>\";s:6:\"filter\";b:1;s:8:\"page-176\";i:1;s:10:\"dw_include\";i:1;s:9:\"dw_logged\";s:0:\"\";s:9:\"other_ids\";s:0:\"\";}i:3;a:3:{s:5:\"title\";s:21:\"Join The Conversation\";s:4:\"text\";s:423:\"<a href=\"https://twitter.com/moduleQ\" class=\"social\"><i class=\"fa fa-lg fa-twitter\"></i></a><a href=\"https://www.linkedin.com/company/2708312?trk=tyah&trkInfo=clickedVertical%3Acompany%2Cidx%3A1-1-1%2CtarId%3A1429033159210%2Ctas%3Amoduleq\" class=\"social\"><i class=\"fa fa-lg fa-linkedin\"></i></a><a href=\"https://www.facebook.com/pages/ModuleQ/111268418984871?fref=ts\" class=\"social\"><i class=\"fa fa-lg fa-facebook\"></i></a>\";s:6:\"filter\";b:0;}i:4;a:7:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:95:\"<hr/>\r\n<p><strong>ModuleQ</strong>\r\n717 Market Street\r\nSuite 100\r\nSan Francisco, CA 94103\r\n</p>\";s:6:\"filter\";b:1;s:10:\"dw_include\";i:1;s:9:\"dw_logged\";s:0:\"\";s:9:\"other_ids\";s:0:\"\";s:8:\"page-178\";i:1;}s:12:\"_multiwidget\";i:1;}','yes'),(81,'widget_rss','a:0:{}','yes'),(82,'uninstall_plugins','a:0:{}','no'),(83,'timezone_string','','yes'),(84,'page_for_posts','204','yes'),(85,'page_on_front','24','yes'),(86,'default_post_format','0','yes'),(87,'link_manager_enabled','0','yes'),(88,'initial_db_version','30133','yes'),(89,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:63:{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:10:\"copy_posts\";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:10:\"copy_posts\";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,'_transient_random_seed','4c9e3a6e1ce40578b5641f3ec15c4051','yes'),(91,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(92,'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'),(93,'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'),(94,'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'),(95,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(96,'sidebars_widgets','a:4:{s:18:\"orphaned_widgets_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\";}s:19:\"wp_inactive_widgets\";a:0:{}s:7:\"sidebar\";a:4:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";i:2;s:14:\"sticky-posts-2\";i:3;s:6:\"text-4\";}s:13:\"array_version\";i:3;}','yes'),(97,'cron','a:6:{i:1431670617;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:1431671742;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;}}}i:1431675540;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:1431716146;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:1431732718;a:1:{s:24:\"ninja_forms_daily_action\";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,'auth_key','[z]L?r}nEQkS)#*]?{Ip1yjKe;br*CF*$W{=`ZP6XGWi[~n1^L%MORA4dmMM*+}9','yes'),(100,'auth_salt','v>Y8)r!D$^?AFG9>|qytYg*Z_vOpUudO!p#|uo`pVa_+J_3(QPQ=I6y!qH< x#[J','yes'),(101,'logged_in_key','GCUvH,[HzaELs|URd3l*gcE}+kn8GIQngV`1Aumt{i=JcW7E.L<FQ>>*.x6ygv/1','yes'),(102,'logged_in_salt','4x*];I[eb02QMBo8Z[=Q17~BCRiAJrpp8@K%6zBWqD{vFuf&|_) i<4XLKoOhvQq','yes'),(103,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.2.2.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.2.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.2.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.2.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.2.2\";s:7:\"version\";s:5:\"4.2.2\";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:\"\";}i:1;O:8:\"stdClass\":13:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.2.2.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.2.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.2.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.2.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.2.2\";s:7:\"version\";s:5:\"4.2.2\";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:\"notify_email\";s:1:\"1\";s:13:\"support_email\";s:26:\"[email protected]\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":12:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.1.5.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.1.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.1.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.1.5-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-4.1.5-partial-1.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.1.5-rollback-1.zip\";}s:7:\"current\";s:5:\"4.1.5\";s:7:\"version\";s:5:\"4.1.5\";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:5:\"4.1.1\";s:13:\"support_email\";s:26:\"[email protected]\";s:9:\"new_files\";s:0:\"\";}i:3;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.2.2.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.2.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.2.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.2.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:0:\"\";s:7:\"version\";s:0:\"\";s:11:\"php_version\";s:3:\"4.3\";s:13:\"mysql_version\";s:5:\"4.1.2\";s:11:\"new_bundled\";s:3:\"4.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1431632537;s:15:\"version_checked\";s:5:\"4.1.1\";s:12:\"translations\";a:0:{}}','yes'),(109,'nonce_key','N2xA#(%WWKFIu0_?w9u /60Hu;`X-c_r<!_0yf&QXKKs}f^]D/{eazzf@1!~nCkE','yes'),(110,'nonce_salt','Ag$5!$+fK<:@/^5<xxUH<|)3K&~w#dYps .f|C>l<:&87OMqKhd*/miG4@k9SfF`','yes'),(130,'can_compress_scripts','1','yes'),(133,'_transient_twentyfifteen_categories','1','yes'),(158,'theme_mods_twentyfifteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1427350323;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'),(159,'current_theme','ModuleQ','yes'),(160,'theme_mods_moduleq','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:11:\"header-menu\";i:2;s:11:\"footer-menu\";i:3;}}','yes'),(161,'theme_switched','','yes'),(311,'recently_activated','a:1:{s:19:\"columns/columns.php\";i:1431033159;}','yes'),(339,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(345,'WPCF_VERSION','1.6.6.1','no'),(346,'wpcf-version','1.6.6.1','yes'),(347,'wp_installer_settings','eJztfduS28i15fMoov8BUQ9Wt4OsInivkloTurblkGydrmq37YkJBUigSLRAgAbAKlWf6Ag/zQfMvMx5O99yPsVfMvuSVyBBstSyo8fOMxPhVhFIZO7cuXNf144uRhf/Xl2Ew4uTMtkWVVoXZZpUJ4+iiyH+ML44ud1uMvx3KP4dR3WE/z7Hf8N7aXzyqLoYzfnJfr1O+rdFGW/LpKr6m11Wp1mar3ZR1t9mu1Wa49MwTB5tEvrPwcXJ9+/evgn6wdU6Cb6HV9/hq8Fb49XgnXoVp7oti3i3rPtqDB6C5nFxsiszenB6cbKu6211cXaGMzstyhX+fQhPwzqT9x+Su+r9JsqjVbJJ8vq9eG8Utt87i5bLYpfXZ/hidSbnUe2226Ks39fRqhIkSi8GBu32TnB07vjQdVHuNtVZXWzTZR/GpV/ggz/9VF0AibfR8gPMV25QejGehINwDv+aWduBi7dov9xUDcLjIxaNn7+9pL/D+uOkWpbptk4LpvkABsbdWRabbZbUSSDm0QtWRREHMOkgyu8C84sBkqoXpPky28XwpyDKqsJ+4vuieF5sNkm5TAJBylP8HNAl3cDockemrh253faXRV7Dxp3ttlkRxdXZcBCOzwZzeqafFasi7A/C021O2z65OAHWSsqTR7hFMCgSs4TX5R/miq80+w8nbTL2YbX9LL1OaMcHjZ3GN5pUJfrwG07ywgkQM9yW6TIRXBKeT+j5GfLZQr3wvr7bJjjn6WwY4geHjt/f18nH+rjpNIdP8+uC3oQfLo0fgtu0Xgd5ESQft2l5Z7PyZODYof8exXG/LvrLqKy/DqfDwej8V9Fm+2ixu3ufF7dfhydMddiE5Ba4A+kJ5GRG321XZRQnxh+BK+LiNqetFvKHD9u8uQWhkChHcvdsPhQvAHsv0jypbDYVbBZEu3oN0hFYmUixLW6T8nqXBXUZ5VUWEZG0ODkNXtf8TAUjlMDcEZwbkh9wVuIgreAfeJqCJC92qzXtygK4dgVvnH7x4IsHj+PsyeO4fnK1K/PKEIzm5B6fwQOP4/jJy5ukvAuSjL4Np854fpHAuhqLOgVhCzPg04nHGWRKD6Zb1fA/KM56wRLmu6LbAP57V9XFJkDW4tknN0mO5MKvVacwi5im+oe0rJFkWYRfWSVBnJbJku8Uek/+gJ+GH6+vEzyCQVxsojSv1Gr+VOzg+/hEtc2iO5PE9OZ3374B8u2W6yCqgsfJ5knyMUJansKUzkBAPz6Dv/Vav1yX/EsApE5zJc2yu/ZUevgMHIy++vc2KdX09YqfFzmQIsU3TT5AnimLTK/o+zUQ7A6WdZMmtwFcknACgdhBcc3EJ+oI+sNjDzMQoEkS3K6j+iH8mJVJFGs6JDE9j7/CkQRekwSDI2cT67rEfROf69PHYWG36xQZL05rZGfB4GJRZ8B2Qgov17DeBHiSTupsCDLz8Xr8ZHQanp6fzh6fwX+/Sj/iZAIQnQtgPj4awBU7cxr6pSm99OvgMlnuyrS+C67h/Ur/PhG/n7zOsmQFnLRJPyKNlkXGQ50ESVkW5RcPfh08VwwaLO4MzgKpjkSRzJPEevgxDf80jmHO4sahc6cPy/h0eKqfH8nnU/w2TIemG9QFc6AQiXn/Zb4C+q4DIFgZLWs8wXqQoUGotKp2Cb9XRTdIfNpz2CHYyXV0AxICNJ3G6VBLMwYNjUFhLgFMvsh2xHu4IHNSOFX9Jr2nyL/bgjqXyB/nYn8uNxHwH0insrhhgQIr3iTIDmm1oQ+UyaaoUSHIr9MVkCUzZjcX2+gc5nVe1fDnpOwhF8IJvk3hoXWSbYNVUgckh3lW5oBjY7kVCJ8S9gKEFxxg4IoFSLUa2YDoamgVvRYn0rGpo49FXmwssWJ8izf9so5oXEkj0E9582kLxbfwYLlGg3O4gS2EayaBY4/SGJeF3zZ1Hksg6+8zv3xHX42RZPBdk3GcH0QhQh+IQRtKUXbD2uM0CuDC2ZiUZMb5t126/EADM/vrSbVoT8+/jX6A58RvOCf3quH7K7jNcXcqRT+DAfSwM7HMXwffAifdwEI3IKCiD0kO0jiiAxoBE99tih0IsV2+xA/gpbSr8NSYmwDcUJGsAznx7jfvgseT0xHKB+YWXN9tWcA7uwppBA/Bd+p0CfSB+zyGe1ZNyTxUcHZq4k6kuPOGV+8xhWgRiruDBWjISCi181GQ7zYL+AVmUADjlG7C8Al8tlsJdqN7ARSNooQvw/44X+Lz9mqXZYF5Ju4awm10ek7jyX3EX5Fik9OJGmps7Lf5XXyvapwJOYHB6bAfKdrBnIMFzJ+PN+5Y0riUgCwL1A0qEB856AcoGOG0gJaCCtKOn1Jj865cpWBgwLDIs2LHaf4ncO2RtE/wKj+BXa0qeRaYzBWJId5PedcMaMzfwW34zXevezCbGoQ2S4vqLl/S2wsQbCa16XOWZpj0l+LY0GSH+sYIVnBh18aOWwPh6Hp3zdP3tikShuoC4XNSwULBtF4yM95GZQ4PA+vn1jZPQYF8zV+srF28RTWkQpLhKdqg0QbKN2ws6rWV+qIgOamIYjuR7iXQOKpArMIBxS/hGLRr4jjSLbYENRz4Q0k9GO8C1Vm49OFqs84Sv0Z3udSxt9skIh27vk2X8qbET8BWbuxngX/4cTzlUs3RVCARjM/TLOI0zv/21/+oYc3lB0NIKuW+0n9kkTAUd+Xj9ejJK9jMHYwKfxg9+eLBVVpnCanJQlQBQ+dwna9oWV88ADp9vUTxBcNlcBeDzrUVCgRfmLsyAm0p2OVgkPL8+r9a1Y+CN0qJ+dv/+t/B5cvfB7+nF2HdT7MMxoEPVbAJS5hwlhk6D+9rkpOlHRfLHTMaCmqD3opKV8YfX0TVelFEZaxYBsTYBlWjMzD1UEM63Rb86iWxifU2X3FfPHiVRSvgwkwrYkF1SyeuBEtIOQHQgPoRSE42Aui5NTAqbldSguoDxiTcYyXwD2pQyECkuDbH++LBd5W2LFjGxcl1BEdHPfzFgxdqi5FSwoC5TpMsrmwlgEgn9544Dz6KWtkXD1A+yLtHTueqLHawd9W6KOjpKuGfaWdqqSyYVK9xr+Gj1yhiSKWWX0Fdj6Yvpse6oP63mGOaKAUxNk0AYe2htcjcUSb9CE7lig63OYUfigWw0KXQeEHjisEoj4nE5Cxhrjz9uMloOjAoqdViycy8FS8EvsUsDz+8jdA40zTHowI3lzwmz8ritjKsJpgf71rwJR3p1y/V3f3VFw+eiy1CRkqX+L24MPV4lHFIIJ4GWgS7DTz0JRON+RCGaQuZPHhzSQPdFuUHMt9xx1kqNNgGpZ3Wu4HmeXB5BRuSwpYZZu0XD+RBDcinRKODLMpSIMwiARImwGolzDUuoxUsrbXpcCNEmgUXcFl8wD1GIfzFg+9ZXSmzNm9Y6gjqwjAYbD8tZhPR6p4ttuwmwMtMyUhgZuDX63QprmCc8SJhBmbFXI5alEKcINMEt0AKtCyXCWg1MW/xW7i4xRbTymAeZUI0W7JyKK8o+OGHf9uhY0Kdoiy9Sb78Sog7nnaap5vdBob4yy5FWa5FuLzn04qE6Aj1OnrnOVL4b3/9P3i5iD85ZBM+AAqseMD85a1S4sRDM/HQW9KZ+W8TvgWkQv5cKFZZIu0M876Vz4birkZnFB+STbFAYzsGocYkULTAZ5Bc0U2RxnQzgAySm8y6C7vM5cXMunh4GsiT/ELx6gt2UxDHvDGdLA2HOjqgvngwPA3e0rT6r+Cg5zGIbcXRl0rMjk4DlivolSKtW1whhcN388WD8WnwAti9D9K1/6IstsHv8Wzge9akeCmmso0axjWIWlRFlUZj6RJEEXhJaiCCHqx5K0VHq2+SxBEpq6R9xyj3AxKOeApg4qZetChIshRggiLZlXG3E1ZYm7vEFKanY7GStlfhRVr9ZVcpN1mPFZkNSwdcNkgBk4smSkllbVvYuay/ggpWqW+OpJFgasNEMfID3BBJDeWT1TMgHi2mxb4T/p5Wswzt2ebAqTgMj3cZnP7/9jhL6VxQTMDtUBmhcQKPiafbVKqaArsh9ITX8UtQRoCbkJJR9pU5pHRBtVRuw0bs0rHNcdiCY3uNzPeW5kH2nParRqW1soaNt7BMuIL20vKGVOLtx2dATEnesOF8aJp/0vACEQYzRKagj8TKldtBSaH5sD4NdIST8SNSrSyjO56hOj1ruH7SH20mHzR3nfcx2sHYZExL17w87ppMtlu0TEyaKYXT4p3R1fM2yzApG94K87HLBHXHWkjdlA1x9EsuaRYF/RmNHW2jM29b3wKSAgXa+9dlgrf3cGI4/Cp1iHmnLMKQKblDBQk/8Pp5lL8plrQvMHvQFa8j/JZt2I1P5Ue6hM43RbHKElPnEjcza70F3jMwJfQb58HTy+evX5PXUrnVKfTwNKuKHh4pjO5pltbksM1ZoHMEanEei9mNWz40IbeZ/yIwA+Bcdw9YY5QprUi/vhamlxp6KBdeKeNNae+oYBSrdCl9ixFeX5XUIHG4XW5oT/L9Pd7WoZbvYixlV5Bwwjt8r7sWBxjovQJT2DhFj8HwBl3vyVs8e5f22Xt8Jn78r//sY9yN7o08YWsTGBGkV4YeEVDm6ex2zaLHIg2jA/wwinhiFbC/TN6Xk3mVZmipLO6CdxQg1ZaPw2i0ZglbnMKchIW6ApbY0iW3XON3RZAJ/Uqky8IHRIyJbTjTReSaV0tDwYkh5aw5YAQEF/ywOiS/iWiuDz2lQF/wO9pac9W/F1a89cElWILI2cRwwMTkCzcV6iS4AZ0SKdhpP7tmcdUQ5DjA3/76f7/LZWAO5Pff/vofMgxyZ00KH5bGjSIysgDFGCJYe4RqFoYvSQt1s46TO9DJeGkInCsVFPxDmtxW1jSU87PYlSR7xW2EOSRC+pJVRuIVeAaYR+pgbcE6Er5J9iYklc5GsH2efOG/C1721ZX/pTAuKiLMNZAcVK1dIqeAcUL7BVtHgJ+/OpWTsHQv5REDOyjOOM0BNDagTdWleJlxVXYhGd4IQ/rC3iA5ksqpsg3VfIbaVyelbCo14l1l6hEsbUnN2xYo+FISIWh4sFcdLlCeN+7bKRt733MEEjZPmHyG+Po2ibJ+DTpZIIz3V6xloCQzecd4TvIizudK2r8c6zDfaDK/OJI8vnXrb2DOcLKfksbWEhHWoxhuB+UfyHmFWm4grlvzbFtjt1gdroDgm6S+Sj7WsJIss2dii292ru8WFIJ70Vjey6hCTg++TdAgUQIBTG8X2w8Ml7x1kW7oT7nhpSKDh9ytuE2sPSFhQFeVt12/JRblN/FpUOj6ZbKCyxc95+wWbkpn4/lL4XK8dD+JMv4Ozz67pYw4gLFUVL3NHBsi7/dpDHLAeOS124Eu9DqTX17GmMVmvHrVdYZMYkunL/4/Mw7Epimpb2RgkUOkTJYwDzg7KYb5492SLnZ5Noh3IvRxUqy6ZRAN6OKS1jhc7HFizJa4Eu6MCAUUuhQxzlmWJB17nLaQ/yBdCJyJwiYazw+VcLiGkg2pTdmdMbKeA+rhIKluUfevS1KMgJAi50bStOkcs9kEjyMFHSkSruZoPPSOXBA0qUVCkh4nq7iPNafrKM2Md36XoA/9JtGXFj8G1h8J/a8sRx4avVqb2xpXFh0ykMi42Kwotl0i2Jzub97h4OmS9blGNKp9LoeGKcxHoUwxWCnthlgqoRv0kSYR6W1ZUZGA1Q7HnMyKxrFqq/V5UtNFGcG+3zQfV2aU4yLkS/KjMOzN9XZYNMIY3CDxywTz4QzvN0sTi9JIEUqjujgRngjxL5EmItIOUcJTAtb5xclwEE76A/j/02Awx79MBnY+2XjmyieTNubX08F8/ivxsa+Nz4QwAl7u/SLv324p31Pl9i1AaqoMsSmngDpyVClP8qf0InQllo1Enlhbj+tKLZvA60qtZANCiUc8dCDqlJuddohOuOV5YfMob0S3aCNOlbJFwqfagoJX1XdZ8vXJssiK8gI38NGJDuRRglAfHek0NuWoWaoRUonUoY4MOk6fAkYud/R1+CJ9+8qt3Yo0UemcqGzHD4fhKWnhDmgM/030IB3okn9kAmFGD9iocX9ZxOTqEBIKj2wF18syOQ1+h7ycoYiEX+7oFUM2sH5zuik4VaUHp7TWXr7umYvRyHiyBizT1bpmbygO07E/uJIX5tpwF9AjcEe+fhaOKeppSdnHdCwMbZxSIjTy50OMuayA/onYPZnMFvyeOMQiGy25uIYrHqi70zxDbIUXSU039JdZ+oFHh8dACyy/kgwmPX0Ud5TMJ91KFCq2vtfjyx5DoVJm1FEfNftTV/rY8Hw65PQxuF+FEi1vWBSZUkCbIUvMTWs6Ak/lECx9geIfpI8POVbkedkB8bFSl0PtN/m0lC6pHDgyqIaYqzDunNVcOW/gsdGex0bqKWcmECtlAStppdA12WQXZuIG7+4bIPxWzxpGC/d8c6gfG+x5TD503lCRrOy/P1Imrc4L01k7eF5JJWKGsXwxdgrCQATf8SSwfzNOtqBrJvmSskCQX/GpOQX2H4KRiw5W4vclijC4Yh2HmgNe4gpNUDnFg1fJkB2dYM4DLhMlIkl43kYgu2rMVJNriUT6Qk/G3ShszPYk6ig3oNxhrEicQvKufkmRiGXNrht8Cq4keCj+SnymWhe7DEOIFO+ihSuCzA2KG8QwEsP03Cl+R0FJXGtCTpd4R/SQidVy2Fnnds/Up6cGH7I2K5+Z8jvH+UrVeBNjvKZXVOYomXlJ+E73wTKOlZF26EgVEm/gc/yCHFJ82hx2QIPKfMnmZynTRzwx75BElLmjnnEfPsq1kc90PsG/zzrHgBmIRCK5kt0WpYWMS4YdmzwUJzpUcQcrfauR+cYxY+DQWxEKlKQN1Wckn+DHPw6tzE/UqPHOMXhDvDQRWys8KixP1W8ja16dIS3LsTcSbBMqX3xbn87Y9selPH93xVm36qXQ4eJRPzLX7NWe1XEQL40tE77p6l5Gy7UMm4hENOsEwc2MboSlkSgeaTVcfEJ6CVoud/H7sJOTx4J7lI7mDGKpYbrYdKwYedjJbkCH7k+RG0M4+1shATX01HYBGuEVQwA1kw1xaNsrj0NNDNZyOeqUTy5or2Skjv9QeiUP+twacVx8daTSEOXKG24EEWbLRQ4OZQu4XDSW7bhBxQ1VVkwIU06cRi4Y32JN34mRGLEp4l2WNO3esOEgkbF7ca1rF4n2jCAHs8NEpfsoAvDx/EbkDHddHM5DNXQf0+AZL5fzb5XJKh1UHJtQrhN2skp/guVFU58RB+tWhOY5hYlGwFtWFlF8iwYBlju9Sa5rS5sJldZJDsWuMHmoHh50yDxyQtmODKMuR7w+UK9j/pF0F8LbNdfvoX87BVqLrThtm+4TMNBRRe803Mf9wTwIB1hB2DLcJwcM9/OhMtzVR44220eixpSp269N+xts9qHLZp8Jm93N5V0Fj8PpQBvuV92HRBq4WL9QoVHcqL7BmyYqV6ZlSCVgvxzLXVWZKcds8G2B514ULl3irR1pmQJSKsestzSPyjtT5ag4Z9POJDs1fdv0PuWI4qEJqm2yxFwcFYZl4QGatvYWFzpaaRVrqPIrTFUUuQyO+iu1CiEUscIk0nEjtBm4JOr6qEqrJIntfAZVE0E2+50WumpJttDFJFG5ajPfTlxaILFA6K2QnnqJJuf9ZZfsEl1U9hI0B2OcYI2044eosEw45zGRz96IuECbSQaTs6L4wHUSuErM3yt6AWzQDyBdYD9SkfqOO6GndZnGSX9x18f/tdaYCPe7WfhmWPRU3ka1bYtCuF9UfmXj7taUZ09CrOvclqrsDrgJ8+JlYlrCmS7Sh02etB6nN5EARw3rFoty/pBWO/HJ31zBgUE+MKj+VGW2wCH6YEc/xMq6CQr3CYa4FsWu5lQOHEPnG5yyFkGFTyqDhkxCkT2Mj9OFvS1SZiL2CLZTF+xtpbMlJ6HDz+QFwqAKLhaUeNI2k6xKDlT8DcfTObtsqOLs0z0naohBl+8Ef3UrqLL+SzzkVj+F40TabHuM2rl6ZnrA8NXliJ/H8NX1h8cbvroGsdvw1dWARxq+XUatNnq7TdGRMkYPG73dBqs2ersshfOGYXqM0Ttq2KGOd4QNp7RuoVWTN5oVQ7N8QllvZtko6IBLcThLrIKupepLHzJKL1RFZypKWdV54JiWGv1IE7edtalGMI3ciKwdmTNvOAatW5avMjp/uOQv0R2eUi0xvv6VHHiPISxtWpkBvkQPbVLV6UaeFSujrSnWr4XnUC9XZf4KKYWBOGXcmgYHGVOkCxNJ3IlzLqNtolhTWsuvm+Vd1uV+bSdP9syAWiPftUy2CZOSn21Y3d1Webc53bDKWX3vyHc7wvIOGyb0Z7XOA/bTEq/Jgph9WWOkqSzwGk7yNYrL2PR+2Ba0yOHT55MqWtF5y/gdDXve8JbLDWolSAihaCb8mAnXbUvzGBPfna2trXxH+E+a5toWd+VJNIzlZuYt6SdmRWczJL7fXrat3KbnoWHVCpAWw9vwggUN86dK2jSPUUdp2rXWnc18kjXRCLMPRDoaJucLlQ0FLoXYpcLI7rNdSVlr+o/0RSXbTIPstO3OCK1M2uv7WugifEVum5PfYsUMqqeYfpHSEajqHWj1GOoE4XSt6ADzVikT5l6ffC4jfnpxwkpbpxU/6ofDAEz4wfnFYNKw4h3QSbYVP1ZWvP7K0Wb8TEJF6Z3pbwyTHEz5kcOUD2cq/J4uP9wFb1BL7jDg5+dG4J0BVCj7Hq8HquQiDZus1V1O5VcYh+mhVLku8KDKAykZlq7Nh5UIIQl9vi5+OXb8OwvCxZlkaKO4IOoCqicyzYeSv1GQVyKnRxkfZEgtfkBWff0CI+0BSB4U1IZtxpNnDzWVta4Kip3DG5XMNBKngorgIkp1iDEJ8fpOEHsj7wxY5ylnFQDJRExNpK3zxOX20dMvnjUzltRS8h4bsZE5PYyTK2wQMnTh9s6ipVgDjy3L9+m1BFML8M80qzaUy4tnFmjLw90qu3tIZrVkFpjOb4pbvCJ6LJ4wPEg2Gw1COXIMmEX5BrcUBhRkwyG5FgkFsTYQaTLKIKZd4DhGL1incBeVy7WqH+H544WzW+IdLm9WsVp7g27g4ZizMMSnH0fBukyuvz45++9Iw/dp/PXkfHzyxDyJ5AEKVrsUs9miJ84kgHAUKotyJHSjTzcoR0J7ctqTo71G4Fg+1G0FzpWuODloKY4sy+7nW4oyy/g+luJoT0aEtBRHtopk3Yx7lARbR3jVUt0txzSKJmT0mvNCDQaxkswRtIZT3yosM6wKSYfYfMkom2QZUGuNT9qpLeVa/vx3C0OFny8MFR4dhrIcoHtDUqEBl+M0KY1lVfYWkf6oqs7dn9Fq0MhUi+M2XIhUhS1tWmbuOGu/KBcPQdFYVKsMLbwvyGxuRFScyqytn9nra5kBwtdGiVgi12mZgRpuFUHCdVemYCMbUZZ7a42fJTBDYvMYlW48um9gZmCodOIjx2p04UwFZpDW/Yw1M9Djxk6MxKkjJvMU9uQOXu/S6CZzvDm2qg7lNxRxqYzoBKuQhi+dGAc07x2l3Fo2CbC1Vt0en23RJtgqkLaHmEIjwQK4Yq1Ooo05ClzdPZFth6kEAsJGizdVSoGTgLEyEUcQo+oH13D1Y2lwzfVpFCTYNucrowIyEZF8EFSFFp+q2ZvaEvmWs6QmPUUQRikZD+0ghqjaIli/6+t0yV518rU/pIpVApIimDypikiby0ndnp4uJ2WlqOvh8GDcSfLGBSPPbbaE30LutIJUzDiJsJKGYmSOlbWVZVVk5I7RcUYtwTQorRnHdeknhnoiM6OcysVgn/dYPvJ5nceDT3AeD45wHktJpsq4m/EqcbU1Ly4pzl7nKdYRKRHcIbYGexLBQWwNKJ48gg24lyU6m4fnM0NuDe6fB96yRCNLEE3UUgj3NV1mxpKmUlbBbM2f7z3rKQnLicvoldikCNz6u+imUzqea3v3ORbCA4toSCIFFSNrEu6E2bBTNbn5HaeO/nIsWhmZfoYR2WUJSgzyZqqDuuwsivivlsW2pho3C6gT45RYBaWJooPDQAKsNmIt4M6E0uThKn6XllYpD5UUglQFk2N8jXS8dLVeMEys8L7JGSAmRh+ZgJJBG6uojZRveCzD/F0j4Qt+TkuzjpZdrrE1pFRBKnKR9tdgf1ZWJbTwAHDam+lQRld3kmXVgYBgOECgX+n/3yMfx3vtKil6xkdYVuPPbFmNP8GyGh9hWbnTU82QGX/3yrQJrFzHoYWoKsUuaDYUnBJEtuMi0pffYQENO+j7WRLxGrW4DV2fgzjoHjELORVKqPaKI4xFdtd40S58ajrvNbCcjlgOLZTVdqKUIQpFumWPfLC8spblQnVP5Fmq0h+TvbZxw4HeYRCI+th3GCR7WsIEbjS81kLJt4pFWcPG+UTPdDt3rNdJEwMo5LPnkpGoOObuv38u2dS4RMf3u/rxXmXos03Vz/FehQt46rqAZX8CgobquH6nA/gsq5yVbfbbO0VjiFx/U1OPJLgf3sfK3mVce4RGJVSqLwkUH3Yx2sVp0cO0F/LvJvXy9Cvb+jCnwGFLTEVZM+IwOWj6PHgbCdF2cYJdhVghPAFKSKlEOqZAc2DALFPzpgUVOBOVrao/kjZTopSf9lZ+UpJAUw11hxUhttyxrgB3cFnX0aqnacW0EdQkxDOkCMok62O4uPaUqTUBzbRKMDTFwi+Wgzazz3CQ11yFWnXSncp6KyNjiZQymzkUigfGwpz5uFzL7PaljudGQVUnrvPwtCufwy5K6nKXmYU/XZkVZrVI+FntnqFyZt2nWiQ8aPfoSrCjq0VCd8ZAF7KUSqfBwhRRyFUJjZg4VpUAb4BfqaKIYxvscZL9CLZFTp/aYWrzK8pWVlqe8Wkr8UXA2rI6u4k+SNgL6xYVUtxxGIKsqINlhsCqJfB6291rAmsZINOUPbLiOkMTjh3rOyUMIWVIdGC1nhoApJUDTKF5LPeA7oSdms+5pa89a/gmm7BFTs2nXbvYSM3ZlghFxb4nThPG6euEnaGFENVFWVeqz1EqSBu72enCtjUFXIaA3CO85gjk63LNbK7uIYljw0yjQ7YS6LxmwE4KK7oq3Bsuh0uHzijwdNuRCacuchq8kbmrEt1Ldl5owccuio8SKFfm7NNtRhdQmVDuL14DNAqaUz2BC/P2DaFV8qKtRFBqMkFUE0kq8sJjEHQQf/rme2oQlDBWZa6EvHc7E/H3+ntZeRqDmnIv5Wk2no2tRPz7+XsHQnnasE4EqtPM5ehVutMf37x+9apLdzof2qn29LDKrBeUZShiF64tA45WH9Btav5WFdf1LRzDX45Dg9U+sa6lcNLwahk0qpnwpQLijTWTGSixXAMM2maNBG/SgxZAPSxB1XplClI0uilK9Jo/f3oFvxRZA6sKNDcqOGcziLL9GzOoJKw9K0KGcxW/ktac4b3BuLtE4dtTgcGODKaCAXtnIGs7CFBROxOVKdgkhRkYR+NKpGKj+zk19LaOyPZ8EA5PnjRnJBNBxNHvCHCPZyHrZAOVq+zQyQZHpCgPjkhRHnzGFOXgqRJhAtGsVvsi1SISnkK2ca6jNOgHn5DcPDgiuVmXmjt9HPiz81qw4bAqC0bLvHD1IdCNyoBP44JMm82/6Rhg5RbQtM/HCOjR+F4Cej6YautWfeTeAvpjBhrSfkf2QKGnOBzZ95zkjO6CuasOa3px8k0JBihs4CtgQLu/X8fVMBrBejVf7mSwh7bRGo28OcLEajXvipakgW1YMFxJaahscJW8Q6UTAjxQ3khtGAF1nxBzuOD6tHTTz3I5JZyz33NRL2OQxthBTwo511BtoEWhr1gZR9KXq1baC7iMqWm6OmXWZCKdusPOeml77zDp7+Mp5geZbZwaSmp7EIKwFCPxQAKW1lDv1SjHj2G/2PVxVOvsVQjYFNhEyngSZjv3D6kaIorVfUuhFBbUQ4SJ/0C7IUIO4sVjlHyqBjNrA+hiwi00E8m1FHRmdrPivABR3uWBg309mDQwDOH2up+Mms+HhgdOfOTo4BsMvuL9IJa1cJiw4eVPXW0sXZrm8c0sHd0WQQGdnctEho5mi+H5o0PNFjsn0dVjETfhT2AVk1G/sEXffXsrTg72VqQGrtj9tNXRUjyFD02acnvsaCCpnmcCY+3aMFo2COwg/TkQ6OXHGgskKRmhNbBos4ppuFHOjpA7oA9lFNyksTSX0nyHaeDydHNLI4Y1OXXs7ej8kyg6a1L0p3ZrSm6KO9zTJbQvHu+j20Py76zZH3a4p02nwuUjx4nB2EfTPcQzeYlW+abIE071WEdVlTEGDg0vPMMRfZKwOsVmsAuTDAqs4kdwPkmBVrCGZBJi6YBUaO0E9jQNpweOGfU0ve9WjcM28+M3lE73npqWJjF+I6R99N1EfTfR1HcTbde4+26ivpuo7ybqu4n6bqK+m6jvJuq7ifpuor6bqO8m6ruJNgJwvpuo7ybqu4m28AB9N1HfTdR3E/XdRH03Ud9N1HcT9d1EfTdR303UdxP13UR9N1HfTdR3E/XdRH03Ud9N1HcT9d1EH/luor6bqB7QdxP13UR9N1HfTdR3E/XdRH03UQvMwncT9d1Eu57x3UR9N1HfTdR3E019N9FfiOXuu4n6bqK+m6jvJupy2fhuop/R8PXdRH03Ud9NVIp13030kDntu4n6bqK+m6jvJuq7ifpuokfY8b6bqO8m6ruJ+m6ivpuo7ybqu4kajOq7iR4XmPHdRH03Ud9N1HcTbcarfDdR303UdxP13UQf+W6ivpuo7ybqu4n6bqK+m6jvJuq7ibqrRXw30dR3E/XdRH03Ud9N1HcT9d1EfTdR303UdxP13UR9N1HfTdR3E/XdRH030eO7if6ECQSTcBBOZQNG0BTTWGYcWLhNC8nMdr6opZs9k54TR/wMRr5i1S5dMmnFwnoMgtvq/YIfrOR5Iov0vaDaNHRQ7XbbF4r+GZtT1RmQf3w2mNMzfRitCPuD8HSbr8S2kVoliQfik9PdDWpuqcC61m0tO6ji0szvQRt3+9Xhwfar80cH2692zuIf0X91fGT/1YmDqHsbsE4cq/r0DqyzPR1YaeS/TwvWcPJJRJ0e0YJ1SAQbHd2CVXJxqwfr6OgerCZ7H9+EdQKn7jtzmFqJiPY2iEuc4jStWb2RLVql+UdOeO7NCvsnEMrJ/XctNRChMXCNSTNvrbNf6/Tv0691cL9+rfAFV9vio7Z15Gpg/Bl2c3T+uXbzc2yi68xxBOxQS+t7n8n5z+61O/S9dn2vXd9r1/faTXyvXd9r1/fa9b12fa/dzPfa9b12fa9d32vX99r1vXYb4Wnfa9f32vW9dltomb7Xru+163vt+l67vteu77Xre+36Xru+167vtet77fpeu77Xru+163vt+l67vteu77Xre+36XrsedsHDLnjYBQ+74GEXPOyCh13wsAsedsENu0D/x1hWmWFfY8b+4OLff6Lpr6NqTXPEmp5FNBteR7MoiofDaTyZza/nUTSYJkOwsabjiKt1gBpUEp3UqgaKyRDpUjJViDcO1dN9YRtRFQ/c0jGrfKIVuey22KjfueJ3g37wTlhW9k3TeBuXKsre+nKYmRrF3gvcMNwL2oo+45qBaCeldMxK6fsPyV31Xp8oWcI3srZRv3smaq3OqLbgTM5IXA3v0cVkFKFgiR5XilSiTiy9GM7D8/mkVc8Ia+AcnapBI/jhjf7BpQPDgl+wawO9TKWsexBdyo1OeZQgQRFjhI00WiU5ixi7KOAuZByeDcZnYgVcy+gqZJw0CxmHk8GU6gRd1YwmTRwljAcp465bnO2vW5yMp+ODdYuNT/+8YsWRk0vtMh7kmtnouHpFrPSXO7GnSjGcqkX0Prk40UFi+MTo/LRZPHjsIufhsfWDw7kWPFbJoMEzrcqyuRY4sk6wZ5eWNVjq51AC1jwc7q/oGs4G408h1HA6axVa7inqGmBBHnbPlQQ7glbDc0Wrvx+J8DwepNDoEynUYqX9FHKUvYVdZW9wdp5SwV+XUIaRsIuuLAsU2pGpu1EmpYaL18kXVojCaYEOcBk2xGtDp7NBWtEwMf1b6tjbpTgfBRQCu9Y60ua1Ju5W121V+1KWj7iG6YqqN2gGOgG2mLV7f5joEFSjuYy2kapN2Rjg73IYSn+RvXd1Gdgt53qClZQLLRXXnXAaHIMHYfscsBC0Ih026rFsT6BVnZVecY7PM4wGJ6V8XxQeNJPe0XWyXO7KaHknelKyVadnUFkthLnnssUw8guTlvXe7jeWNjB5m31DrJWIzCryr5S6BIWPQaMjiCMdw+gO8/zbly9I+1iVpnkSGrl/+3OcjAaSKomL5ogjtxuEGGaOqD3oHNmCEFETARnBChZn9JisithW2tPfRNAdqOhGSWBYFlJ+rz1cOxOLG9+nWd1Hu4oGdhosJAn2eX/HAVgZ4+FF2ATYdyvJhs0ShvPZ1IL5mNzLaAEZT8P2IyExBbLHcBKOB4OWJgyiNVKi9R4iF++F5+Ks06HWwpWPCZVssmgpct0Mw639ju+v/fLY3crv8F7Kr0EGh+57iBiIQvYZ7p/UDQ1xAPoDruzJQRXaXsHP06CHR2gEo/n5+exIBXosab9Xf57IFXxu9Tkct9Tno1Z4PhgMj9WeR1OtDLpBNzT3tbTo2UEt2mbOn6tEH1YRx59GrvN769Cztg59gFrDeZce/VmJFB62NEafRqR7GhoONXrSpUbDGiijqWOl4UA+gPFxAotQTazpr2bCZs9A8Gvdo71GlQ/nxDw303WdqvZkMg6lqj3F/HOp3ghfIlVupRtuiqueaiKG6SRYQ+vhETA3RaTP8l+L60CeLTMbnAcWWq8A+RHavvF76HaRP393FXCeiaVwTYUa2l1sIZtQX7c85qohBbvO1YgTPQdbfRSyMpBXNA77Hebj4jVVnXBGNOznFW8XaeLiFayKxEh8or9iaP9UzW44uxsX24c0jykLgLxiaoTxHhNGLJmyq6weDqi3cq9HMcoRcYupDjoEwN3R1qioFq7yVyXQJHiZx/KNpuYqS4ctO6MZecrSRRmVd5zpy+3KqzXVazZV44kwX2zV2DZi2ibdRHzrlZEbboYDHZObWL0NVXDP/pKufuBWJxZDTTpRJJ5zFw+kIaVCYg2RaoMxcdohRvPDZYPl9RByACtUlJuQAEAYgiKmElPSGrEQJP0xka9a26eSyMgEo6fhy2vSQVXRCVZkliypzDAa5V27bRWKAPR0y0weeQlT45imtnWI5KpxNwfhVGj0WBbQsTxjiEY0qcLV7nT4udkbh+NjGCAVDxkpMxiyAdOoEFltOCIxMR9fGSV0hY6tFjqjDmahxH95KhoqsTrsBAoNxGtEC3m0pcsofUvYTqLArVRuDTcDtEOJrl/d+17I4q4y2SYSelehQ5LdbVxNcIHTJciJ4JQ50i4TUu910YxK1VvlQhwLNurNp0bXUZkfq1mCrXTjAbMQTZxHt3nPmbN8gwj2S+DyoWmiC6LhcRAFAwKwgg4Dbyq9KQBUVMlFVwRYxTxVmNrcIthojOkv18nyA0c1JXopJfFTpawSRxaUtzzoJkaCGf8eWPKKsyClZ6MXbLhFkpVV18EIg3bJmIrtm4LAPUi70MvegDhZAmmzve9RhyOaKnqr1ukWoT8ijAIHq4IyIkpC4AKVJ4+j0qxAZTI6ZsE7KUuT4eAyRBCzDsubjvnzmwyPSCqFOBtUxQ7n2b2GyxrEKB4HTtwyDxLX/ouELuooXpKX8ajKUvMbzzUXoWOiwtj9w8FD1go3W0JrMualciEdYXwrN14pwY0c2ediXjytF3eggqdLUJ6iuFmbRamhBbbEo7aAqGGlq7WgHyem6UPGMpz1aLwD+SnMRg2uMPMfD4NMucOk+R2BYZjplJ1eScfKOwrjclE1z8U6HyQ7CD7Fc9kucZONhvviVX2q289aHyh29XZXc1t5SsdlhKaKSvw4RWZ/DeYqKxYIToFNhgXSy12W2PeeY4inv336R9tZKM9B1P2SJdCLvK9r0DTYMFoHuJD2262MysstglKte6CyJvkS/vcb7Cyf94J38JHdCiQocOBrMGbSiL3DL3Ygw9rHkrBQdKktYxlJzJjGthPGvYVJZVg2pvolU4DZmQ/PYdU3rPlNmu8+Ch1LwylPTNwVVfsuBfa2KcV6QpRIfAmqPwV7Kok22C0hFmegLzhP5W8KGC+NkS8E9FtMCl84fdPSmjDesbKPxGTVr0ccCiU6DYNXlowJVqoFCAN5SysdYqhBGOG94z4WT9+9FpZwLYoT2Fxv8+Nvo5uIjXvecnHqk9gSivKPTVXUzM8CjRCverGh7qqQBKl5i7lRJLbPtNlPtRGMzN5i9zWoAzm2EpXHhpAXRZbTRubXx0X+sBbpsuKFqmMR8pwFcFqK2Lb8/gi3scB8ETWZ8J/to8J4c7fUsaMkJFFnoMB1akZuzuAvCRdUfIOZarFdU9QmjfmO0cqwCr57fVjotAD7qLDCZEWqO7BqdrIUrEFSdyQeu9HDAxs38gGzC65hWDCTW7dskEqTWGE7UhaYo7u8BBShrGFxx2+cRdTOMri3b1z7MGzAL5hoZ0a17Pd/unz9/Z++MRajNUkJw3QlT2MDZF7f87wFciyLPq4iBsJdUIVrZsxxt20j4xgjvNBql0odl6bfBk6JECCI0XKndTxjgFbFT9MOGBkP0z6K8yc+KqDIFrKTTswoVh0vMVoS5sjJNNaolBdHbLzD5Fvssg99Bjlr1/V3rMGSUYaq3a570mj+rbPp6EYTDoazkycvhe2DjWfMIiZbHFtIiFrX4LpDtHYzwzvKR8+A2DPPDVWvYk1P44hJWpsp9LDBrOY+f+XSdN+VBaKxAMVXiF1SB6mAG230PGhJAkGyX+WLavtIEM4Ip26x3m+5p+/4DMOi5LXdExjF3gfhRTi/GE/vGxidTiZGWFR9yBkYDduB0YmIi3aWwPgkE59k4pNMfJKJTzL5lCQTTLhwlBVibwHLbdsVe5yNzdZTLU1dAvtLq1NCAjlCj9LxbKhzyJzU9Ia739kzErVDac3hQaobRBWL+aNSpo0W7Bzbconx4bkRvxS6ohVlMkp1ZBBkZoaWun83D39soFNQeE0vk3zTViDAlBdyTJyc4cI3qtj0E6F5blyDjGzL55L9+RZ+7sCA8zYLWjr4fbqnb9K4H06xb9JgdjFsVoEc5PfZ6DwcW9rD/XonDXUeAjNifyPZGTh/5OJ8WJ5ZNEdE69IsBor3CcYGqajxd0WBQQvrS8GSODnxfDSRZZPS9yL+ZRb4NQ0ryeutmfekgmF81sYQYm2lBaMsHjJCUtr+aSAncc+IkipOr4EaEgakVWhpTG6o0EKGxida4WVTIBtnQBZJ7jkEsrjRhmch9aR9aeh5KfzSA8dsZOtfjieG+plh9zNDWwFzPhOaalZbkKiNxYebMSan+qC908JcAdmpWaMzAtVZ9xc6AWhsKdOOJWGo3ognaSvdgJknfIHWCaLcBmvdoeCJgdWGoNrjH+M3XySbInghpE1SyjGM8CLWci+LWIjQh0bWz8Oumjg4t4el4Rzu2Hvf/tORYUupDx19+8Ncb4tCyifqvMEqwNglCGE6rxD4mPZA5eZ0ZVLCyt9gdTrWyMsJ63CwRnwzus0IODzC/lKppuSudJtas3AqL+mZdUWft04Gg6GYJbyI7SMShiTAr0o9mXUYP1J0Nmcv12fnBxlnV+YUGDxr9hNjc86MbE7bZen6cBua9NShG2h1YtQzJOC4pxWLoWEesGhS47Xklx5uaCtEQoga7njyczaEkBq4W/+QAjy0CBe71ZiJY3cj6kF625EBJvN2JA4wld4KWFsHQxt1vXnDNpfjP8cYFHnp9DfaUzee4oxpO7vnqEfHXcrkRNNj2LjSVNaQY7p2ro2xyzrFhuG/E5VUZlWoO+6jSVtHtX6XSuyo+0obycX8Mq7X03vcrx03JIjCmoD1VcgtxpvFTKbbd0mGVgZY85JU+MOyj/dSm7RiH3QwhRzMZg9u2b6VwgLkuUAnhnFiBqdtZAHqal4swEjLOeVA+LEGp7a7JyKvzCYh1wWF96U71OH3V8JYSv7qrqqTjZpE98Xd0gCM5BGJK/fn1+9oFko6E5ojZ7oYALnSfpdwEy7ngMpkuZRYFkjVEhHjEkJNwGSTVfSj7P/Os1GT09cFx8McegJmIu+BIRr3R1w5P7gYDRtawuwILWE8N2yme8EQ4RyupZDsp/rW19Uoo/PzVjUKrGJJuc124frFCV5BXSoDfOpxtY3yJ+SQY0OfXS8yrERt3eyOYHzpXGMuaD+RQD+nj89oIGeNyvD+NSq4lu4KlfGj+1SoKNI46lP2EwjNy5cMX8rxhB4RgyFLEoEyuYcojpKUA1Xd4WR6uCTFnPQ/piDFkVrvLEgZMqn3lqOMePb/gFruYwsHji7lxoaf+4tRJKO1SlEmB0tRTD78h1dzH0uq+3To5EKUSUchShelEIbNXYbyuQj0KbXcx9Jn8rNrUGa+BsXXoPgaFF+D4mtQfA2Kr0HxNSi+BsXXoPgaFF+D4mtQfA2Kr0HxNSi+BsXXoPgaFF+D4mtQfA2Kr0FRYYMBh5XYQYghOG6N8XeM7LVSmMOR8n+PGvk3sWyyKjzBNVoJSa49KKPP7l8eWZ7fa+zEaWin8oyQr1O+sM/RK59xJSpU7bYihoNj73D3cN+OlPtWnC/hxRWlA9iRIg9+cwXShM0O5USaGnQgLYCCMKZ3Xyb32lqj+tFqBiF/xWKaG/Y0cZq8cJk1c1Z0AmOvy6WLXTwb9UTtrhoo922T9dfBK4rYV3jPiytQ33o9aYQyZ5MfCN95g0kTsrn8rsQnsC+DIWHoMTFVYaDTn1hBYDuc8lOiOC1gXnUtm8fjTGRPcKoasN2DMtG9FUBQyn3D8cdu0CRfo+Kl2sBSPpnVuJ7zWHrcZkH0MGJZTGY2eaJx4+n8wMRsR5Cdd+QauZUKTTveaK5isbPpzZbu4pZPlDPixbVSNrx0slpMnwvpYGqUCDXbZFQpZr6IAIz08pvlZWYRmA7+WHcXMhraasHzy0ua/28vse5KF4T0gs0Oq0mkbvTda+ZkNFabu2k40LUX2vbPmP0jd0j2TQHXJF6ZecMX21L642KH0lLFi4pcygfadxQIjvs/oBYccCW+AysHe0DwS64nUQsmlYhv3aiuyxSY3q1VaDtSNLx9mBfC8fWQrxL+R6cXwuU/4cQc7qeT5uRWhH3Rjbv+nJQgCYU2WWufEQ8re4exAhfAotd9TCVhuZDm8IU2VanpQmT0ExTxRdv71XQ3sbKBdswCHZl2bRel/sswZaPgTRvnbbPIIpgtWshy04fOdKFro649oukNkuZ+a9yhvm5Et2mHqNLqqRQf5ne465SsJYURiuxG6cBlgs8hqa0UfEcWXIe2RjrGviq3CVW5hReDeSMxJjyYwXZ+PjSr3NSnjq77GYhMoGuhjvUToY511buJtCAlVDsUN8R0hQ0FprijAswl6OnJUp4Xo17NpaGNRqJUGLfN1rcM07Sd2KwS1mkfG3XC2kvmENvtSKEKMFN03OZ9R9umJhtjm3TR0SiSXrBlI5nZ5mDpr4F7SExBuwTMjE5diWLegEGyQZ/Nvpo0ZxEGUXhPeuXwPBicoykxundJ2vx8cq6ZU33o6ATLkWDNpeK0jko0X9fu69p9Xbuva/d17Z9W1+4savN17Xbmmq9r/yesa5/4unZf1+7r2n1d+796XfvU17X7unZf1+7r2n1du69r93Xtvq59f137rFXXDrf/jTSU7GLIffYT+g5Er3GVk8m5HTovnpI7cL+y5CPnW0R3lQqpYRIhbjAcE3fjxdG9itrDs3B4RgvprmofPbpPVbsmjKOs/QB5wtlcPBD8ZZeUqVErSjevyE+LFjJ6LchGPhEgGbpT0e2HJCO9bLkuiiqhcpHHyeZJKwPv8Rn8VREfDbt8lSXkoKXx8SWaj/1glmLaJAirTy2nn47mjw5V01u0+seU0zuqhJ3l9COxx3vr6cdi/r+ggvrB0QX1k0MF9YrHWxX104MV9dYR+MWW1DuafR4oqZ92lNR30mo466qp/2wk+nsW1Y9/dlH91BfV+6J6X1Tvi+p9Ub0vqvdF9ft+de+7L6r3RfW+qN4X1a99Ub0vqvdF9b6o3hfV+6J6X1Tvi+p9Ub0vqvdF9f+kRfXw/Pfv9iaq/n8cSWx62qeDwbn0tM+bHlBh3c45i+Yd+aXbXkQW7VZ5vXSl8/1t5pgpCailH5vs2kFPR1nmigkT6Qj3se0cPs6LK5N/TJcb3HLy48asemhyAoPUWD1bJVG5XGsXajNL6xmrlO43upZq5XB9m1Rb0IBTsE5XJZi3bP30wHoGHTtG3riJMunFaX1HaLZUq2xU2Uvd+xsUJlh4Q3cGJlYcLE03HKMRTAJ+xooBmefa02kjpZ54laWxrOGJmq61b4piRT68Le5xQXef8nHqWAbdjJQkSNeJLHeIgiwqgfe1I4nKhSy/J02Wq4hsN6zKpKqcUQihd9LhodwePDtOEIODVBspD5PLaWA8NDzmIWE4pVxrbvq4YR9C5Q8cqeAS3aPoT0Tnr1nmk7oPoZVwrrPFNIREP42Ft0iUvbeSzOuizY0Nx64jNZ12mbnlHu5aMDtARQrW6WqdoacENqvHDnqrSM6o5edq3O6Sfc17ovqO1woXbbSr1+JNZUG1cCo+1SHbCJTsccxS+T48KY32hjdWFBYYbn7b1N05Ob5Ro6Z1WplsimV54uiKNG+V4d1Syn7ACxFVvojsLukp3KbLD0io3MCUsf2Ohh1TiGT6opQ7INSohg5o6c3sLZRms9Zs2HPQdmqFhi6I472V1U/A6BVFqGDZmgGYEuznjowltWYfl8W2j7qKgEIoSEwqQ5hHNN5yOLelV9t46lL7rnVArw/H4i+7FGv0VVRgQNOmqlEpAVCYwZsOEjhtmMMbpJnzKRxvEPWVtR67uMW6ovVj6n7udrS2owXaddXtcCV/HchsNGNlWJqcEcbHmYsp9A2qEvqtolKYEE9Bmeaot0l92kne+kUByk6/ZRkKbsMqV3a+ZnSrB3GRVOi3oCRpMIjZVMhAA9uh8pYygoww1U32Jk+f5ZxdRnCbsRwry6J0Ua5p3byQeue+0IHwwqSbpC92XGf0ms8ds7OW93CPo89CumiFLvbb4D/fC8iiqskptP+vEQEkB9X15UdQS0pdw6KuBs1qLbeo0n/fUqSsbbCqJ9vaxGlbDpph9xYR6K/aJSSPompM1N4P4bEEuhX5Sl7DIDBh88Tf5Dmi7b6SIqvFCM8NDzgrppY3UJf44FJhL/Ev9IeGTS5nQvkHr7tngsgXcA5iWCpFZLk2FVGcEsIX2WVNryLcP6sVBZyuDU6ic9nlWJUOFKG+4CkQoEu325s+aT9CCajEcpoDDCnKJemyrWVJO47RkP/i5pJSRf2KBiM50BXcDsynqrh4SwgWUvjpb6iXkKNSzbk5pROEg2sxz4kuwwr+h1odKkd9OE4f/qd7m1Biv2KJ7dokvI9dsjfCiNYqYdXBnN93wnvVkqR1WlNEt6oRoQB20PnUa6yzl3BDrQDSC3IWSzt4ncKByhsulS9lqlEdsb7B5Zd5sMtREQU1L/mqNd/m1DBSrxKKSNWg2B6WFzjclzKIJdaUfFwm5bbWu9FegTR48PHlrtR4GuKTHB1Vh4E4gjSwhkebJE96rQEg0CxEmyoHbkuCG2IsvLtQfNj7/wqViTip0d9O3rvoBv5TRt1xEqb37OvRZDg/eaJBwPJiJ1DM0IfWwi9iyUjKrRGqEJpwrQEs+FgYJcDk6ERvVpFfp6sdG9QGPpJK0JI4RhcWu34b3ZqoeeTbc0taS7YlEnaHrETQ9DLQ3TOBuSGvLfMNPrIC0Ap9Q+yKiBtEVurQRfNQwcJZpZZ3M0LbmRkZLdQrgQQnghws/ig8/Od0K28JoXforSx4Kzm64zqmLDyJ/2kwNI+Jb3jdwInb3dZ88dtkgyyffAQdJnjx+g/IPAjHyMwm1COJSnJHnIVTypMkRkupPdKvsvrRogzOfrWqHwXRtRCjG0n2JsffmNIeOMwCP0mBaXKK7WBCJekmNBXSsPZnEBAhhEzLi1tC/zPP04SpYk2HWTAOXlPcVFAxqlT9kIQxZKrYHmHOt4sECGewLZO+tK6WxS6LUUwsEpBaLAu1W92KhbiOg6k2vytQARWRiS4MkVFLR4k4X0ldJ5yTbjhOQFVekbvJsPEdo9gj8HkR7Rc37COgZBL70NCxEaZ1O+3Cvi6AbMQQSPWK3AUZXLdl8SHJW9NpvVxZx35r5BqYKS/SVDRyU1jrz4FIFToMTOlgbY87LPFf/3lUXOK//tMdmFiarINFVBj9kguIWfULvmTUD7q5ydgQKT5Ub5xuyJ1SJ9ndV+3x90ZRj1VhleojuAZmlKUf4LKDJ1YFutaBkJHIVWgkkzvmdLotGPaHOREDT+mPdDWYz/6+XEU5JY6gPcmEoFu/Lb9Fghs56JmYMs1NuAkfisP4EG6kNM+1bW/s732iJwQAMt9b8s4oYoP5xeD8vsVso4FZyja/X8E7/BOG1WXuLkQ7jx7m0cM8ephHD/PoYZ+GHuZCZPToYR497J8fPcyJm+fRwzx6mEcP8+hh/0roYU4YRY8e5tHDPHqYRw/z6GEePcyjh3n0MIEeRlBZTfSwmbKzGvhhGhCn04EAfyOPXAAcm5ZgVSQLvmZVYrtxjVMukws7LKCsn+2uBHFWJTrtR6CMCGMIb8SeuAh7DX9CTwnQZ0VRI4LKNiCPIe2xTJl2YpRN7oVRNjwbjM+kWdqJUjZ41EApE7tlApQRtlM4bWM7OcHKQgeS0/2wmc73o4AJbKb9MGCds+iCBENQpUvjB9E8puDucnefCA12fhAaDMjXRtPiPzZhj8497JGHPfKwRx72yMMeedgjD3t0sI7Gwx552CMPe+Rhjzzs0YFqGg975GGPPOzR4UPhYY887JFapoc98rBHHvbIwx552CMPe+RhjzzskYc98rBHHvbIwx552KOGFuhhjzzskTvtzMMeedgjD3vkYY887JGHPfKwRx72yMMeedgjD3vkYY887JGHPfKwR78I2KPh4OKEErYpuxq9CC/J6bYHq+BlVKUYKqMQV4+cdBw04UCgFVnRzonukMYwHKnigVGj5FMId5VGX6MkSHLtfB599uT8kZU2f41XoJHao0xGJJp84XCYY+SsjVMTYBegfHR4xHD3yH03VCvWoEUKvECrWQJn56ZupVy604Y7mUtlzNIIiSdhp9yoH8eWT1j8ivhNN5ymy8gsIt+4WSapa+adznxyCutYydCqJml6em3306+DV4gGQ5qAusqVmOvJDD7mbEqixXfeYJ3eApgeY+WgvmNgqAhyIzxLj4mpiuxG+hNnV7C3kAJwIIAKmFddI1ehEoUzEXoFA9XYLniJrXIwgCHd8OwsSPJ1JHR5Zdhi4ed1uhQczaWTPRSrSg9loU05ipTGjxtP5wd1NyuL1i51dY3cQt+gHZclji33up1IrHLtWwnlDMIiogZlw6kuAcr0uZDZuQ3HeQNgDYO0y0RWr8gSCTO8YOKO6coZy0pFRkMXlxnF2CalxiDqcZRPRXS+e90d3jCqD3QKv+1zNS2kHZJ9U4AijPkGeSORvZUxFRc7lJaq2KbIpXygfUeB4Eie4JAG3IjvoqoCdUnkDruexDgz5ZOwq1W5SA4kjgoXwcO8EJrZQ75K+B+d/lBX8imdJV7OBswHzMmGfempys8/JyVIQuFJqnXCrdYk2HVFGbuw6HUfyw9ZLqR5w4/GVMVoMYoD5aAUxVl26nDTBcy6BiaBLTAL3IYTo+iArPFqYKxpP2FbgbMIZosW06J/Zoe7tDHeHtFMpZW+mta4bdPFIaq0Ei3Fh/kdvMgmCr4QRiiyG5VAVCb4HJLaQn1xFF53pLqQjrEPWG1CwGohaGyNqtDwYNH0+fnQBFZTnzoaagr0K1Cs4v61UMf6iVDHuiDWRkJ/k0K1Q3EbwdLRw7iN7gjzb1lk0kaS+H28jS4NbTQS6JS4bba+ZeT1tbE0FEYK7WMDmlKnGDvEdrvMSlXnqdC55v1n7RB8k43BMCuKD8LDKVKIlw38DJuDZbIr3ENiCjqf0gQR0OBH5g0YJBt0wO2DQXPaEkThg7ZEOL8Y3RsFbX4+OdfMqT50dE3/SLDmUnFaB/iZh1L1UKoeStVDqXoo1U+DUnXhqMGahGDqgk6DPz0N4jJiByKmtYj8qR7HZSIFryr2S5lWeo+6oU3Hg7GUquFnSS81FV9xoxjbb2i+rfxLZKsG9oN9c6uc1darOrZM/n8zJcFKpqMb+0gIQH1Nsf/FGd5qnJk9E+ssYTDoZRoJHahAe7EDJ4gKNJoAezfYfX6I3YeD6fl0ZPD7vbRbmGcmmRj4fOohgz1k8L8kZPDMQwZ7yGAPGewhg//VIYPnHjLYQwZ7yGAPGewhgz1ksIcM9pDBTshgGxnYgUl7EB/YjUQbjg8i0Y4eHUKibXy7C38W1/enJCqzu8D8vRFhPBZ3dn4QdzYkUN+JNkPFj/jbpBvStxeo55iQIFuyIQe0DUIeR2L4xGzMDtH7rvF8MBg11/hTG0iXVjmataGL++IpDKRu+gbvzBprH83bQMK9QLwtFA2btX4ORZDpJoNDTDe+P8GmM/i/NlPgV1Tq03vK30piPoE/eQRij0DsEYg9AvETj0DsEYhN28ojEB8LaeERiD0CsUcg9gjEHoH4ALCFRyD2CMQegfjwofAIxB6BWC3TIxB7BGKPQOwRiD0CsUcg9gjEHoHYIxB7BGL5kEcg9gjEHoHYIxB7BOInHoHYIxB7BGKPQOwRiD0CsUcg9gjEHoHYIxB7BGKPQOwRiD0CsUcg9gjEHoGYn/EIxB6B2CMQewRij0DsEYg9ArFHIPYIxHbcwSMQewRij0DsEYg9ArFHIPYIxB6B2CMQewRij0DsEYg9ArFHIPYIxB6B2CMQewRij0DsEYg9AnFrVh6B2CMQewRij0D8T4tATCDE4dyGbK3eI2KWBtsFk0jnp4g/pxeT8RRDFEN6ZIhLvqveC7428WNBixB/fS+QNNSv/HV410xPww8MLv79J6LjOqrWRCx4KLyeDONkniynwxhxdAeL6SRcLoaj2TQ6HywmYrzhGH0hVf0ew5kVuunSpHrPJhAVwo9H4XQMmsdE6E/vt2XyPnw/eE/5OvDkyaPFRfjop/8H+Jm3rQ==','yes'),(348,'wpcf-messages','a:1:{i:1;a:0:{}}','yes'),(349,'wpcf-custom-types','a:2:{s:11:\"team-member\";a:23:{s:18:\"_toolset_edit_last\";i:1429072863;s:14:\"wpcf-post-type\";s:11:\"team-member\";s:6:\"labels\";a:12:{s:4:\"name\";s:12:\"Team Members\";s:13:\"singular_name\";s:11:\"Team Member\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:10:\"Add New %s\";s:9:\"edit_item\";s:7:\"Edit %s\";s:8:\"new_item\";s:6:\"New %s\";s:9:\"view_item\";s:7:\"View %s\";s:12:\"search_items\";s:9:\"Search %s\";s:9:\"not_found\";s:11:\"No %s found\";s:18:\"not_found_in_trash\";s:20:\"No %s found in Trash\";s:17:\"parent_item_colon\";s:11:\"Parent text\";s:9:\"all_items\";s:9:\"All items\";}s:4:\"slug\";s:11:\"team-member\";s:11:\"description\";s:27:\"Members of the ModuleQ Team\";s:4:\"icon\";s:11:\"admin-users\";s:6:\"public\";s:6:\"public\";s:13:\"menu_position\";s:0:\"\";s:9:\"menu_icon\";s:0:\"\";s:10:\"taxonomies\";a:1:{s:13:\"assigned-team\";s:1:\"1\";}s:8:\"supports\";a:1:{s:5:\"title\";s:1:\"1\";}s:7:\"rewrite\";a:6:{s:7:\"enabled\";s:1:\"1\";s:6:\"custom\";s:6:\"normal\";s:4:\"slug\";s:0:\"\";s:10:\"with_front\";s:1:\"1\";s:5:\"feeds\";s:1:\"1\";s:5:\"pages\";s:1:\"1\";}s:11:\"has_archive\";s:1:\"1\";s:12:\"show_in_menu\";s:1:\"1\";s:17:\"show_in_menu_page\";s:0:\"\";s:7:\"show_ui\";s:1:\"1\";s:18:\"publicly_queryable\";s:1:\"1\";s:12:\"hierarchical\";s:1:\"1\";s:10:\"can_export\";s:1:\"1\";s:17:\"show_in_nav_menus\";s:1:\"1\";s:17:\"query_var_enabled\";s:1:\"1\";s:9:\"query_var\";s:0:\"\";s:16:\"permalink_epmask\";s:12:\"EP_PERMALINK\";}s:11:\"news-single\";a:21:{s:18:\"_toolset_edit_last\";i:1431381543;s:14:\"wpcf-post-type\";s:11:\"news-single\";s:6:\"labels\";a:12:{s:4:\"name\";s:10:\"News Items\";s:13:\"singular_name\";s:9:\"News Item\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:10:\"Add New %s\";s:9:\"edit_item\";s:7:\"Edit %s\";s:8:\"new_item\";s:6:\"New %s\";s:9:\"view_item\";s:7:\"View %s\";s:12:\"search_items\";s:9:\"Search %s\";s:9:\"not_found\";s:11:\"No %s found\";s:18:\"not_found_in_trash\";s:20:\"No %s found in Trash\";s:17:\"parent_item_colon\";s:11:\"Parent text\";s:9:\"all_items\";s:9:\"All items\";}s:4:\"slug\";s:11:\"news-single\";s:11:\"description\";s:0:\"\";s:4:\"icon\";s:9:\"megaphone\";s:6:\"public\";s:6:\"public\";s:13:\"menu_position\";s:0:\"\";s:9:\"menu_icon\";s:0:\"\";s:8:\"supports\";a:1:{s:5:\"title\";s:1:\"1\";}s:7:\"rewrite\";a:6:{s:7:\"enabled\";s:1:\"1\";s:6:\"custom\";s:6:\"normal\";s:4:\"slug\";s:0:\"\";s:10:\"with_front\";s:1:\"1\";s:5:\"feeds\";s:1:\"1\";s:5:\"pages\";s:1:\"1\";}s:11:\"has_archive\";s:1:\"1\";s:12:\"show_in_menu\";s:1:\"1\";s:17:\"show_in_menu_page\";s:0:\"\";s:7:\"show_ui\";s:1:\"1\";s:18:\"publicly_queryable\";s:1:\"1\";s:10:\"can_export\";s:1:\"1\";s:17:\"show_in_nav_menus\";s:1:\"1\";s:17:\"query_var_enabled\";s:1:\"1\";s:9:\"query_var\";s:0:\"\";s:16:\"permalink_epmask\";s:12:\"EP_PERMALINK\";}}','yes'),(351,'wpcf_post_relationship','a:0:{}','yes'),(353,'wpcf-custom-taxonomies','a:1:{s:13:\"assigned-team\";a:15:{s:6:\"labels\";a:15:{s:4:\"name\";s:14:\"Assigned Teams\";s:13:\"singular_name\";s:13:\"Assigned Team\";s:12:\"search_items\";s:9:\"Search %s\";s:13:\"popular_items\";s:10:\"Popular %s\";s:9:\"all_items\";s:6:\"All %s\";s:11:\"parent_item\";s:9:\"Parent %s\";s:17:\"parent_item_colon\";s:10:\"Parent %s:\";s:9:\"edit_item\";s:7:\"Edit %s\";s:11:\"update_item\";s:9:\"Update %s\";s:12:\"add_new_item\";s:10:\"Add New %s\";s:13:\"new_item_name\";s:11:\"New %s Name\";s:26:\"separate_items_with_commas\";s:23:\"Separate %s with commas\";s:19:\"add_or_remove_items\";s:16:\"Add or remove %s\";s:21:\"choose_from_most_used\";s:28:\"Choose from the most used %s\";s:9:\"menu_name\";s:2:\"%s\";}s:4:\"slug\";s:13:\"assigned-team\";s:11:\"description\";s:0:\"\";s:6:\"public\";s:6:\"public\";s:8:\"supports\";a:1:{s:11:\"team-member\";i:1;}s:12:\"hierarchical\";s:12:\"hierarchical\";s:7:\"rewrite\";a:4:{s:7:\"enabled\";s:1:\"1\";s:4:\"slug\";s:0:\"\";s:10:\"with_front\";s:1:\"1\";s:12:\"hierarchical\";s:1:\"1\";}s:7:\"show_ui\";s:1:\"1\";s:17:\"show_in_nav_menus\";s:1:\"1\";s:13:\"show_tagcloud\";s:1:\"1\";s:17:\"query_var_enabled\";s:1:\"1\";s:9:\"query_var\";s:0:\"\";s:21:\"update_count_callback\";s:0:\"\";s:11:\"meta_box_cb\";a:1:{s:8:\"callback\";s:0:\"\";}s:18:\"_toolset_edit_last\";i:1429056650;}}','yes'),(362,'WPLANG','','yes'),(367,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1428978251','yes'),(368,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','a:40:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"4916\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"3078\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"3022\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"2529\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"2346\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"1892\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"1729\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"1680\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"1678\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"1676\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1612\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"1609\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1505\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:4:\"1322\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:4:\"1276\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:4:\"1175\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:4:\"1171\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:4:\"1083\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:4:\"1079\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:3:\"918\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:3:\"905\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:3:\"874\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"843\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"837\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"794\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"758\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"748\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"709\";}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";s:3:\"700\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"692\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"682\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"657\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"649\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"642\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"642\";}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";s:3:\"623\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"620\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"605\";}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"Share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";s:3:\"600\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"593\";}}','yes'),(371,'nf_convert_notifications_complete','1','yes'),(372,'nf_convert_subs_step','complete','yes'),(373,'nf_upgrade_notice','closed','yes'),(374,'nf_update_email_settings_complete','1','yes'),(375,'nf_email_fav_updated','1','yes'),(376,'nf_convert_forms_complete','1','yes'),(377,'ninja_forms_settings','a:18:{s:11:\"date_format\";s:5:\"d/m/Y\";s:15:\"currency_symbol\";s:1:\"$\";s:13:\"req_div_label\";s:80:\"Fields marked with an <span class=\"ninja-forms-req-symbol\">*</span> are required\";s:16:\"req_field_symbol\";s:18:\"<strong>*</strong>\";s:15:\"req_error_label\";s:48:\"Please ensure all required fields are completed.\";s:15:\"req_field_error\";s:24:\"This is a required field\";s:10:\"spam_error\";s:47:\"Please answer the anti-spam question correctly.\";s:14:\"honeypot_error\";s:34:\"Please leave the spam field blank.\";s:18:\"timed_submit_error\";s:31:\"Please wait to submit the form.\";s:16:\"javascript_error\";s:54:\"You cannot submit the form without Javascript enabled.\";s:13:\"invalid_email\";s:35:\"Please enter a valid email address.\";s:13:\"process_label\";s:10:\"Processing\";s:17:\"password_mismatch\";s:36:\"The passwords provided do not match.\";s:10:\"preview_id\";i:34;s:7:\"version\";s:5:\"2.9.7\";s:19:\"fix_form_email_from\";i:1;s:18:\"fix_field_reply_to\";i:1;s:22:\"version_2_2_25_rte_fix\";i:1;}','yes'),(412,'wpcf-fields','a:10:{s:17:\"team-member-image\";a:8:{s:2:\"id\";s:17:\"team-member-image\";s:4:\"slug\";s:17:\"team-member-image\";s:4:\"type\";s:5:\"image\";s:4:\"name\";s:17:\"Team Member Image\";s:11:\"description\";s:0:\"\";s:4:\"data\";a:5:{s:11:\"placeholder\";s:0:\"\";s:10:\"repetitive\";s:1:\"0\";s:8:\"validate\";a:1:{s:8:\"required\";a:3:{s:6:\"active\";s:1:\"1\";s:5:\"value\";s:4:\"true\";s:7:\"message\";s:22:\"This field is required\";}}s:19:\"conditional_display\";a:3:{s:10:\"custom_use\";s:1:\"0\";s:8:\"relation\";s:3:\"AND\";s:6:\"custom\";s:0:\"\";}s:16:\"disabled_by_type\";i:0;}s:8:\"meta_key\";s:22:\"wpcf-team-member-image\";s:9:\"meta_type\";s:8:\"postmeta\";}s:5:\"title\";a:8:{s:2:\"id\";s:5:\"title\";s:4:\"slug\";s:5:\"title\";s:4:\"type\";s:9:\"textfield\";s:4:\"name\";s:5:\"Title\";s:11:\"description\";s:0:\"\";s:4:\"data\";a:5:{s:11:\"placeholder\";s:0:\"\";s:10:\"repetitive\";s:1:\"0\";s:8:\"validate\";a:1:{s:8:\"required\";a:3:{s:6:\"active\";s:1:\"1\";s:5:\"value\";s:4:\"true\";s:7:\"message\";s:22:\"This field is required\";}}s:19:\"conditional_display\";a:3:{s:10:\"custom_use\";s:1:\"0\";s:8:\"relation\";s:3:\"AND\";s:6:\"custom\";s:0:\"\";}s:16:\"disabled_by_type\";i:0;}s:8:\"meta_key\";s:10:\"wpcf-title\";s:9:\"meta_type\";s:8:\"postmeta\";}s:8:\"linkedin\";a:8:{s:2:\"id\";s:8:\"linkedin\";s:4:\"slug\";s:8:\"linkedin\";s:4:\"type\";s:3:\"url\";s:4:\"name\";s:8:\"LinkedIn\";s:11:\"description\";s:0:\"\";s:4:\"data\";a:4:{s:11:\"placeholder\";s:0:\"\";s:10:\"repetitive\";s:1:\"0\";s:19:\"conditional_display\";a:3:{s:10:\"custom_use\";s:1:\"0\";s:8:\"relation\";s:3:\"AND\";s:6:\"custom\";s:0:\"\";}s:16:\"disabled_by_type\";i:0;}s:8:\"meta_key\";s:13:\"wpcf-linkedin\";s:9:\"meta_type\";s:8:\"postmeta\";}s:15:\"accomplishments\";a:8:{s:2:\"id\";s:15:\"accomplishments\";s:4:\"slug\";s:15:\"accomplishments\";s:4:\"type\";s:9:\"textfield\";s:4:\"name\";s:15:\"Accomplishments\";s:11:\"description\";s:0:\"\";s:4:\"data\";a:5:{s:11:\"placeholder\";s:0:\"\";s:10:\"repetitive\";s:1:\"1\";s:8:\"validate\";a:1:{s:8:\"required\";a:3:{s:6:\"active\";s:1:\"1\";s:5:\"value\";s:4:\"true\";s:7:\"message\";s:22:\"This field is required\";}}s:19:\"conditional_display\";a:3:{s:10:\"custom_use\";s:1:\"0\";s:8:\"relation\";s:3:\"AND\";s:6:\"custom\";s:0:\"\";}s:16:\"disabled_by_type\";i:0;}s:8:\"meta_key\";s:20:\"wpcf-accomplishments\";s:9:\"meta_type\";s:8:\"postmeta\";}s:10:\"page-title\";a:8:{s:2:\"id\";s:10:\"page-title\";s:4:\"slug\";s:10:\"page-title\";s:4:\"type\";s:9:\"textfield\";s:4:\"name\";s:10:\"Page Title\";s:11:\"description\";s:0:\"\";s:4:\"data\";a:4:{s:11:\"placeholder\";s:0:\"\";s:10:\"repetitive\";s:1:\"0\";s:19:\"conditional_display\";a:3:{s:10:\"custom_use\";s:1:\"0\";s:8:\"relation\";s:3:\"AND\";s:6:\"custom\";s:0:\"\";}s:16:\"disabled_by_type\";i:0;}s:8:\"meta_key\";s:15:\"wpcf-page-title\";s:9:\"meta_type\";s:8:\"postmeta\";}s:12:\"page-content\";a:8:{s:2:\"id\";s:12:\"page-content\";s:4:\"slug\";s:12:\"page-content\";s:4:\"type\";s:7:\"wysiwyg\";s:4:\"name\";s:12:\"Page Content\";s:11:\"description\";s:0:\"\";s:4:\"data\";a:2:{s:19:\"conditional_display\";a:3:{s:10:\"custom_use\";s:1:\"0\";s:8:\"relation\";s:3:\"AND\";s:6:\"custom\";s:0:\"\";}s:16:\"disabled_by_type\";i:0;}s:8:\"meta_key\";s:17:\"wpcf-page-content\";s:9:\"meta_type\";s:8:\"postmeta\";}s:14:\"news-item-date\";a:8:{s:2:\"id\";s:14:\"news-item-date\";s:4:\"slug\";s:14:\"news-item-date\";s:4:\"type\";s:4:\"date\";s:4:\"name\";s:17:\"Date of News Item\";s:11:\"description\";s:0:\"\";s:4:\"data\";a:6:{s:13:\"date_and_time\";s:4:\"date\";s:11:\"placeholder\";s:0:\"\";s:10:\"repetitive\";s:1:\"0\";s:8:\"validate\";a:2:{s:8:\"required\";a:3:{s:6:\"active\";s:1:\"1\";s:5:\"value\";s:4:\"true\";s:7:\"message\";s:22:\"This field is required\";}s:4:\"date\";a:4:{s:6:\"active\";s:1:\"1\";s:6:\"format\";s:3:\"mdy\";s:7:\"pattern\";s:12:\"check.format\";s:7:\"message\";s:25:\"Please enter a valid date\";}}s:19:\"conditional_display\";a:3:{s:10:\"custom_use\";s:1:\"0\";s:8:\"relation\";s:3:\"AND\";s:6:\"custom\";s:0:\"\";}s:16:\"disabled_by_type\";i:0;}s:8:\"meta_key\";s:19:\"wpcf-news-item-date\";s:9:\"meta_type\";s:8:\"postmeta\";}s:13:\"news-item-url\";a:8:{s:2:\"id\";s:13:\"news-item-url\";s:4:\"slug\";s:13:\"news-item-url\";s:4:\"type\";s:3:\"url\";s:4:\"name\";s:13:\"News Item URL\";s:11:\"description\";s:0:\"\";s:4:\"data\";a:5:{s:11:\"placeholder\";s:0:\"\";s:10:\"repetitive\";s:1:\"0\";s:8:\"validate\";a:2:{s:8:\"required\";a:3:{s:6:\"active\";s:1:\"1\";s:5:\"value\";s:4:\"true\";s:7:\"message\";s:22:\"This field is required\";}s:3:\"url\";a:2:{s:6:\"active\";s:1:\"1\";s:7:\"message\";s:32:\"Please enter a valid URL address\";}}s:19:\"conditional_display\";a:3:{s:10:\"custom_use\";s:1:\"0\";s:8:\"relation\";s:3:\"AND\";s:6:\"custom\";s:0:\"\";}s:16:\"disabled_by_type\";i:0;}s:8:\"meta_key\";s:18:\"wpcf-news-item-url\";s:9:\"meta_type\";s:8:\"postmeta\";}s:15:\"news-item-title\";a:8:{s:2:\"id\";s:15:\"news-item-title\";s:4:\"slug\";s:15:\"news-item-title\";s:4:\"type\";s:9:\"textfield\";s:4:\"name\";s:15:\"News Item Title\";s:11:\"description\";s:0:\"\";s:4:\"data\";a:5:{s:11:\"placeholder\";s:0:\"\";s:10:\"repetitive\";s:1:\"0\";s:8:\"validate\";a:1:{s:8:\"required\";a:3:{s:6:\"active\";s:1:\"1\";s:5:\"value\";s:4:\"true\";s:7:\"message\";s:22:\"This field is required\";}}s:19:\"conditional_display\";a:3:{s:10:\"custom_use\";s:1:\"0\";s:8:\"relation\";s:3:\"AND\";s:6:\"custom\";s:0:\"\";}s:16:\"disabled_by_type\";i:0;}s:8:\"meta_key\";s:20:\"wpcf-news-item-title\";s:9:\"meta_type\";s:8:\"postmeta\";}s:14:\"page-sub-title\";a:8:{s:2:\"id\";s:14:\"page-sub-title\";s:4:\"slug\";s:14:\"page-sub-title\";s:4:\"type\";s:9:\"textfield\";s:4:\"name\";s:13:\"Page Subtitle\";s:11:\"description\";s:0:\"\";s:4:\"data\";a:5:{s:11:\"placeholder\";s:0:\"\";s:10:\"repetitive\";s:1:\"0\";s:6:\"is_new\";s:1:\"1\";s:19:\"conditional_display\";a:3:{s:10:\"custom_use\";s:1:\"0\";s:8:\"relation\";s:3:\"AND\";s:6:\"custom\";s:0:\"\";}s:16:\"disabled_by_type\";i:0;}s:8:\"meta_key\";s:19:\"wpcf-page-sub-title\";s:9:\"meta_type\";s:8:\"postmeta\";}}','yes'),(418,'assigned-team_children','a:0:{}','yes'),(419,'_wpcf_promo_tabs','a:2:{s:8:\"selected\";i:0;s:4:\"time\";i:1431412758;}','yes'),(420,'tto_options','a:3:{s:8:\"autosort\";s:1:\"1\";s:9:\"adminsort\";s:1:\"1\";s:5:\"level\";i:8;}','yes'),(428,'_transient_timeout_feed_12510ea6725484c7332a5bb7ee24593d','1429121990','no'),(429,'_transient_feed_12510ea6725484c7332a5bb7ee24593d','a:3:{s:3:\"url\";s:58:\"http://ninjaforms.com/downloads/category/ninja-forms/feed/\";s:8:\"feed_url\";s:28:\"https://ninjaforms.com/feed/\";s:5:\"build\";s:14:\"20150325042443\";}','no'),(430,'_transient_timeout_feed_mod_12510ea6725484c7332a5bb7ee24593d','1429121990','no'),(431,'_transient_feed_mod_12510ea6725484c7332a5bb7ee24593d','1429078790','no'),(432,'_transient_timeout_feed_73cc9a6db6e7b4db72e0326fa53e29a9','1429121990','no'),(433,'_transient_feed_73cc9a6db6e7b4db72e0326fa53e29a9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Ninja Forms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ninjaforms.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"The easiest and most flexible FREE WordPress Form builder in existence!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Apr 2015 20:44:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://wordpress.org/?v=4.1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Version 2.9 – Improving User Experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ninjaforms.com/version-2-9/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"https://ninjaforms.com/version-2-9/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 Mar 2015 15:59:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:13:\"Release Notes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"2.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:11:\"Version 2.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ninjaforms.com/?p=168313\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:543:\"<p>We’re very excited to announce the release of version 2.9 of Ninja Forms! Version 2.9 has been in the works for about three months, and we can’t wait to reveal it to the world. The focus of this release is a much improved form creation experience. We’ve listened to user feedback over the past two […]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ninjaforms.com/version-2-9/\">Version 2.9 – Improving User Experience</a> appeared first on <a rel=\"nofollow\" href=\"https://ninjaforms.com\">Ninja Forms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Kevin Stover\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://ninjaforms.com/version-2-9/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"23\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Introducing Zapier for Ninja Forms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://ninjaforms.com/introducing-zapier-ninja-forms/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://ninjaforms.com/introducing-zapier-ninja-forms/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Jan 2015 14:40:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:10:\"Extensions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Zapier\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ninjaforms.com/?p=153911\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:563:\"<p>We are excited to announce the official Ninja Forms – Zapier integration. Zapier is an amazing web service that helps you save time by letting you automatically move data between 300+ of the most popular web apps. Developed by Fatcat Apps, this extension lets you set up all kinds of exciting integrations in minutes. The […]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ninjaforms.com/introducing-zapier-ninja-forms/\">Introducing Zapier for Ninja Forms</a> appeared first on <a rel=\"nofollow\" href=\"https://ninjaforms.com\">Ninja Forms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Laws\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://ninjaforms.com/introducing-zapier-ninja-forms/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Saving data and a users reasonable expectations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://ninjaforms.com/saving-data-and-a-users-reasonable-expectations/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://ninjaforms.com/saving-data-and-a-users-reasonable-expectations/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 12 Dec 2014 13:24:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:9:\"Editorial\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:4:\"Data\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:18:\"Save User Progress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"Submissions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ninjaforms.com/?p=142701\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:580:\"<p>There are just some “features” that we will never add to Ninja Forms no matter how much they are requested. It’s not because we don’t respect the needs and wants of our users. It’s because sometimes as a company you have to be concerned with not only have direct users but also indirect users. For Ninja […]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ninjaforms.com/saving-data-and-a-users-reasonable-expectations/\">Saving data and a users reasonable expectations</a> appeared first on <a rel=\"nofollow\" href=\"https://ninjaforms.com\">Ninja Forms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Laws\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://ninjaforms.com/saving-data-and-a-users-reasonable-expectations/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Create side-tabs with Multi-Part Forms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://ninjaforms.com/create-side-tabs-multi-part-forms/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://ninjaforms.com/create-side-tabs-multi-part-forms/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Nov 2014 20:24:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"CSS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:16:\"Multi-Part Forms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://ninjaforms.com/?p=131742\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:566:\"<p>This isn’t requested very often but occasionally we get a customer that wants to display their Multi-Part form in a less conventional way then just simple top breadcrumb format. The usual alternative requested is side-tabs. In this quick tutorial I wanted to share how easy this can be with just a few CSS rules. What […]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ninjaforms.com/create-side-tabs-multi-part-forms/\">Create side-tabs with Multi-Part Forms</a> appeared first on <a rel=\"nofollow\" href=\"https://ninjaforms.com\">Ninja Forms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Laws\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://ninjaforms.com/create-side-tabs-multi-part-forms/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Conditional Logic version 1.3 – Conditional Notifications\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://ninjaforms.com/conditional-notifications/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://ninjaforms.com/conditional-notifications/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Oct 2014 15:10:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:10:\"Extensions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:13:\"Release Notes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://ninjaforms.com/?p=125796\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:605:\"<p>Conditional Logic is the 3rd most popular extension available for Ninja Forms, but after today we think it’s going to get a lot more popular. We’ve worked really hard to tackle the issues that can sometimes cause users confusion, while adding some functionality that gives new power and flexibility to both users and developers. User […]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ninjaforms.com/conditional-notifications/\">Conditional Logic version 1.3 – Conditional Notifications</a> appeared first on <a rel=\"nofollow\" href=\"https://ninjaforms.com\">Ninja Forms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Laws\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://ninjaforms.com/conditional-notifications/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:36:\"\n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Ninja Forms Version 2.8 Released – Notifcations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://ninjaforms.com/ninja-forms-version-2-8-released-notifcations/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://ninjaforms.com/ninja-forms-version-2-8-released-notifcations/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 Sep 2014 15:31:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://ninjaforms.com/?p=113163\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:569:\"<p>As many of you are aware we changed the way we work on various releases. We ad had a grand vision of releasing version 3.0 with all kind of major upgrades. The problem was getting them all completed at the same time meant innovation had halted. Starting with version 2.7 we began focussing on theses […]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ninjaforms.com/ninja-forms-version-2-8-released-notifcations/\">Ninja Forms Version 2.8 Released – Notifcations</a> appeared first on <a rel=\"nofollow\" href=\"https://ninjaforms.com\">Ninja Forms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Laws\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://ninjaforms.com/ninja-forms-version-2-8-released-notifcations/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Why use Ninja Forms over another WordPress form plugin?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://ninjaforms.com/use-ninja-forms-wordpress-form-plugin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://ninjaforms.com/use-ninja-forms-wordpress-form-plugin/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Aug 2014 20:03:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Editorial\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"Ninja Forms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://ninjaforms.com/?p=101708\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:611:\"<p>We get this question every so often. Only it’s usually more like, why should I use Ninja Forms instead of plugin X. The person asking this question usually wants us to tell them why we’re better than the other guys, helping them justify their decision to use our plugin. While the question is definitely valid, it’s challenging […]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ninjaforms.com/use-ninja-forms-wordpress-form-plugin/\">Why use Ninja Forms over another WordPress form plugin?</a> appeared first on <a rel=\"nofollow\" href=\"https://ninjaforms.com\">Ninja Forms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Laws\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://ninjaforms.com/use-ninja-forms-wordpress-form-plugin/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:39:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"StudioPress Pro Theme Demos using Ninja Forms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://ninjaforms.com/studiopress-ninja-forms/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ninjaforms.com/studiopress-ninja-forms/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Jul 2014 14:11:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"StudioPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://ninjaforms.com/?p=99765\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:566:\"<p>There are certain points in the life of business or product that are obvious milestones; these landmarks are moments upon which you can look back with pride at how far you’ve come. I think it’s important to celebrate these moments and what got you there in the first place. Practically, these milestones could be anything. […]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ninjaforms.com/studiopress-ninja-forms/\">StudioPress Pro Theme Demos using Ninja Forms</a> appeared first on <a rel=\"nofollow\" href=\"https://ninjaforms.com\">Ninja Forms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Laws\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://ninjaforms.com/studiopress-ninja-forms/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:36:\"\n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Facing Reality: Changing The Way We Approach Version 3.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://ninjaforms.com/changing-approach-to-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://ninjaforms.com/changing-approach-to-3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Jul 2014 12:01:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://ninjaforms.com/?p=97070\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:589:\"<p>Last weekend, I spoke at WordCamp Manchester. My presentation revolved around some of the many mistakes I’ve made while creating Ninja Forms and Ninja Demo. I discussed taking too long to release code, support, plugin updates, and managing a development community. I think it went pretty well, and hopefully it will be on WordPress.tv in […]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ninjaforms.com/changing-approach-to-3/\">Facing Reality: Changing The Way We Approach Version 3.0</a> appeared first on <a rel=\"nofollow\" href=\"https://ninjaforms.com\">Ninja Forms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Kevin Stover\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://ninjaforms.com/changing-approach-to-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:36:\"\n \n \n \n \n \n \n\n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Compounding Errors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://ninjaforms.com/compounding-errors/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://ninjaforms.com/compounding-errors/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Jun 2014 02:35:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://ninjaforms.com/?p=93456\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:530:\"<p>I am extremely frustrated at the moment. More importantly many of our users on this website are frustrated and rightfully so. An isolated subset of our users got emails from our site that were not intended for them, but in fact were intended for us. Below is a step by step explanation of what occurred. We’ve been […]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ninjaforms.com/compounding-errors/\">Compounding Errors</a> appeared first on <a rel=\"nofollow\" href=\"https://ninjaforms.com\">Ninja Forms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Laws\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://ninjaforms.com/compounding-errors/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:28:\"https://ninjaforms.com/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:16:{s:4:\"date\";s:29:\"Wed, 15 Apr 2015 06:19:50 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:7:\"expires\";s:29:\"Thu, 19 Nov 1981 08:52:00 GMT\";s:13:\"cache-control\";s:62:\"no-store, no-cache, must-revalidate, post-check=0, pre-check=0\";s:6:\"pragma\";s:8:\"no-cache\";s:10:\"x-pingback\";s:33:\"https://ninjaforms.com/xmlrpc.php\";s:12:\"x-robots-tag\";s:14:\"noindex,follow\";s:10:\"set-cookie\";a:2:{i:0;s:44:\"PHPSESSID=svhj2htgn0uccr6f7h3snm3or6; path=/\";i:1;s:83:\"edd_items_in_cart=deleted; expires=Thu, 01-Jan-1970 00:00:01 GMT; Max-Age=0; path=/\";}s:13:\"last-modified\";s:29:\"Tue, 14 Apr 2015 20:44:22 GMT\";s:4:\"etag\";s:34:\"\"122d3f2c148be3d2d693f8e9ec08d091\"\";s:4:\"vary\";s:29:\"Accept-Encoding, X-User-Agent\";s:12:\"x-user-agent\";s:8:\"standard\";s:14:\"x-cache-config\";s:3:\"0 0\";s:14:\"x-cache-status\";s:4:\"MISS\";s:6:\"server\";s:19:\"Pagely Gateway/1.45\";}s:5:\"build\";s:14:\"20150325042443\";}','no'),(434,'_transient_timeout_feed_mod_73cc9a6db6e7b4db72e0326fa53e29a9','1429121990','no'),(435,'_transient_feed_mod_73cc9a6db6e7b4db72e0326fa53e29a9','1429078790','no'),(1520,'_site_transient_timeout_browser_d731389443c1dc79df25aeea8fbd3f27','1431671600','yes'),(1521,'_site_transient_browser_d731389443c1dc79df25aeea8fbd3f27','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:5:\"8.0.3\";s:10:\"update_url\";s:28:\"http://www.apple.com/safari/\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/safari.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/safari.png\";s:15:\"current_version\";s:1:\"5\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(1592,'rewrite_rules','a:150:{s:14:\"team-member/?$\";s:31:\"index.php?post_type=team-member\";s:44:\"team-member/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=team-member&feed=$matches[1]\";s:39:\"team-member/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=team-member&feed=$matches[1]\";s:31:\"team-member/page/([0-9]{1,})/?$\";s:49:\"index.php?post_type=team-member&paged=$matches[1]\";s:14:\"news-single/?$\";s:31:\"index.php?post_type=news-single\";s:44:\"news-single/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=news-single&feed=$matches[1]\";s:39:\"news-single/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=news-single&feed=$matches[1]\";s:31:\"news-single/page/([0-9]{1,})/?$\";s:49:\"index.php?post_type=news-single&paged=$matches[1]\";s:42:\"wp-types-group/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"wp-types-group/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"wp-types-group/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"wp-types-group/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"wp-types-group/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"wp-types-group/([^/]+)/trackback/?$\";s:41:\"index.php?wp-types-group=$matches[1]&tb=1\";s:43:\"wp-types-group/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?wp-types-group=$matches[1]&paged=$matches[2]\";s:50:\"wp-types-group/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?wp-types-group=$matches[1]&cpage=$matches[2]\";s:35:\"wp-types-group/([^/]+)(/[0-9]+)?/?$\";s:53:\"index.php?wp-types-group=$matches[1]&page=$matches[2]\";s:31:\"wp-types-group/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"wp-types-group/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"wp-types-group/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"wp-types-group/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"wp-types-group/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"wp-types-user-group/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"wp-types-user-group/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"wp-types-user-group/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"wp-types-user-group/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"wp-types-user-group/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"wp-types-user-group/([^/]+)/trackback/?$\";s:46:\"index.php?wp-types-user-group=$matches[1]&tb=1\";s:48:\"wp-types-user-group/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?wp-types-user-group=$matches[1]&paged=$matches[2]\";s:55:\"wp-types-user-group/([^/]+)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?wp-types-user-group=$matches[1]&cpage=$matches[2]\";s:40:\"wp-types-user-group/([^/]+)(/[0-9]+)?/?$\";s:58:\"index.php?wp-types-user-group=$matches[1]&page=$matches[2]\";s:36:\"wp-types-user-group/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"wp-types-user-group/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"wp-types-user-group/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"wp-types-user-group/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"wp-types-user-group/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"assigned-team/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?assigned-team=$matches[1]&feed=$matches[2]\";s:47:\"assigned-team/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?assigned-team=$matches[1]&feed=$matches[2]\";s:40:\"assigned-team/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?assigned-team=$matches[1]&paged=$matches[2]\";s:22:\"assigned-team/(.+?)/?$\";s:35:\"index.php?assigned-team=$matches[1]\";s:37:\"team-member/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"team-member/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"team-member/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"team-member/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"team-member/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"team-member/(.+?)/trackback/?$\";s:38:\"index.php?team-member=$matches[1]&tb=1\";s:50:\"team-member/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?team-member=$matches[1]&feed=$matches[2]\";s:45:\"team-member/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?team-member=$matches[1]&feed=$matches[2]\";s:38:\"team-member/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?team-member=$matches[1]&paged=$matches[2]\";s:45:\"team-member/(.+?)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?team-member=$matches[1]&cpage=$matches[2]\";s:30:\"team-member/(.+?)(/[0-9]+)?/?$\";s:50:\"index.php?team-member=$matches[1]&page=$matches[2]\";s:39:\"news-single/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"news-single/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"news-single/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"news-single/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"news-single/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"news-single/([^/]+)/trackback/?$\";s:38:\"index.php?news-single=$matches[1]&tb=1\";s:52:\"news-single/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?news-single=$matches[1]&feed=$matches[2]\";s:47:\"news-single/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?news-single=$matches[1]&feed=$matches[2]\";s:40:\"news-single/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?news-single=$matches[1]&paged=$matches[2]\";s:47:\"news-single/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?news-single=$matches[1]&cpage=$matches[2]\";s:32:\"news-single/([^/]+)(/[0-9]+)?/?$\";s:50:\"index.php?news-single=$matches[1]&page=$matches[2]\";s:28:\"news-single/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"news-single/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"news-single/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"news-single/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"news-single/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";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:34:\"nf_sub/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"nf_sub/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"nf_sub/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"nf_sub/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"nf_sub/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:27:\"nf_sub/([^/]+)/trackback/?$\";s:33:\"index.php?nf_sub=$matches[1]&tb=1\";s:35:\"nf_sub/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?nf_sub=$matches[1]&paged=$matches[2]\";s:42:\"nf_sub/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?nf_sub=$matches[1]&cpage=$matches[2]\";s:27:\"nf_sub/([^/]+)(/[0-9]+)?/?$\";s:45:\"index.php?nf_sub=$matches[1]&page=$matches[2]\";s:23:\"nf_sub/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"nf_sub/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"nf_sub/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"nf_sub/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"nf_sub/[^/]+/([^/]+)/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:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=24&cpage=$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: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]\";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:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)(/[0-9]+)?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";}','yes'),(1605,'_site_transient_timeout_available_translations','1431425805','yes'),(1606,'_site_transient_available_translations','a:55:{s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-04-01 13:21:43\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:15:41\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:19:26\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:22:\"Продължение\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:22:49\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:24:48\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:30:22\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:32:23\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Fortsæt\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:34:24\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:38:25\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-04-15 12:48:44\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:44:26\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:46:15\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:42:35\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:48:12\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:50:12\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:54:32\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 14:56:31\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:19:\"2014-09-04 19:47:01\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.0/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-27 08:55:29\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:03:17\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-04-21 06:21:33\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:08:29\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:19:\"2014-09-05 17:37:43\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.0/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:14:57\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:20:27\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.1/haz.zip\";s:3:\"iso\";a:2:{i:1;s:3:\"haz\";i:2;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-04-08 22:28:26\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"להמשיך\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:25:25\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:27:28\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Tovább\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:29:34\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-15 22:23:37\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:33:39\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:35:42\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-04-20 11:48:55\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:47:56\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ေဆာင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 15:59:41\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:02:30\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-04-16 06:38:46\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:07:08\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/ps.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ps\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"دوام\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:11:07\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:14:41\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-27 14:48:56\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:19:48\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:23:44\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:25:46\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Nadaljujte\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-04-20 08:33:09\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:30:35\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:33:33\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-27 00:00:51\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:43:10\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:45:38\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-04-10 12:55:55\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.1.1/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.1.1\";s:7:\"updated\";s:19:\"2015-03-26 16:55:15\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.1.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"4.1\";s:7:\"updated\";s:19:\"2014-12-26 02:21:02\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}}','yes'),(1647,'auto_core_update_notified','a:4:{s:4:\"type\";s:6:\"manual\";s:5:\"email\";s:18:\"[email protected]\";s:7:\"version\";s:5:\"4.2.2\";s:9:\"timestamp\";i:1431530714;}','yes'),(1665,'_transient_timeout_plugin_slugs','1431635428','no'),(1666,'_transient_plugin_slugs','a:12:{i:0;s:19:\"akismet/akismet.php\";i:1;s:45:\"taxonomy-terms-order/taxonomy-terms-order.php\";i:2;s:29:\"column-matic/column-matic.php\";i:3;s:53:\"custom-content-shortcode/custom-content-shortcode.php\";i:4;s:35:\"display-widgets/display-widgets.php\";i:5;s:33:\"duplicate-post/duplicate-post.php\";i:6;s:9:\"hello.php\";i:7;s:27:\"ninja-forms/ninja-forms.php\";i:8;s:45:\"simple-page-ordering/simple-page-ordering.php\";i:9;s:14:\"types/wpcf.php\";i:10;s:47:\"ultimate-posts-widget/ultimate-posts-widget.php\";i:11;s:53:\"velvet-blues-update-urls/velvet-blues-update-urls.php\";}','no'),(1669,'duplicate_post_copyexcerpt','1','yes'),(1670,'duplicate_post_copyattachments','0','yes'),(1671,'duplicate_post_copychildren','0','yes'),(1672,'duplicate_post_copystatus','0','yes'),(1673,'duplicate_post_taxonomies_blacklist','a:0:{}','yes'),(1674,'duplicate_post_show_row','1','yes'),(1675,'duplicate_post_show_adminbar','1','yes'),(1676,'duplicate_post_show_submitbox','1','yes'),(1677,'duplicate_post_version','2.6','yes'),(1695,'widget_sticky-posts','a:2:{i:2;a:38:{s:5:\"title\";s:7:\"Archive\";s:5:\"class\";s:0:\"\";s:10:\"title_link\";s:0:\"\";s:6:\"number\";s:1:\"5\";s:5:\"types\";s:4:\"post\";s:4:\"cats\";s:0:\"\";s:4:\"tags\";s:0:\"\";s:5:\"atcat\";b:0;s:5:\"attag\";b:0;s:12:\"show_excerpt\";b:0;s:12:\"show_content\";b:0;s:14:\"show_thumbnail\";b:0;s:9:\"show_date\";b:1;s:11:\"date_format\";s:5:\"m.d.Y\";s:10:\"show_title\";b:1;s:11:\"show_author\";b:0;s:13:\"show_comments\";b:0;s:10:\"thumb_size\";s:0:\"\";s:13:\"show_readmore\";b:1;s:14:\"excerpt_length\";s:2:\"10\";s:16:\"excerpt_readmore\";s:13:\"Read more →\";s:6:\"sticky\";s:4:\"show\";s:5:\"order\";s:4:\"DESC\";s:7:\"orderby\";s:4:\"date\";s:8:\"meta_key\";s:0:\"\";s:9:\"show_cats\";b:0;s:9:\"show_tags\";b:0;s:13:\"custom_fields\";s:0:\"\";s:8:\"template\";s:6:\"legacy\";s:15:\"template_custom\";s:0:\"\";s:12:\"before_posts\";s:0:\"\";s:11:\"after_posts\";s:0:\"\";s:10:\"dw_include\";i:1;s:9:\"dw_logged\";s:0:\"\";s:9:\"other_ids\";s:0:\"\";s:9:\"page-home\";i:1;s:11:\"page-single\";i:1;s:8:\"page-204\";i:1;}s:12:\"_multiwidget\";i:1;}','yes'),(1712,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1431670739','no'),(1713,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 May 2015 10:20:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/?v=4.3-alpha-32504\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.2.2 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2015/05/wordpress-4-2-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2015/05/wordpress-4-2-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 May 2015 02:24:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3718\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:355:\"WordPress 4.2.2 is now available. This is a critical security release for all previous versions and we strongly encourage you to update your sites immediately. Version 4.2.2 addresses two security issues: The Genericons icon font package, which is used in a number of popular themes and plugins, contained an HTML file vulnerable to a cross-site […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Samuel Sidler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3194:\"<p>WordPress 4.2.2 is now available. This is a <strong>critical security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>Version 4.2.2 addresses two security issues:</p>\n<ul>\n<li>The Genericons icon font package, which is used in a number of popular themes and plugins, contained an HTML file vulnerable to a cross-site scripting attack. All affected themes and plugins hosted on <a href=\"https://wordpress.org/\">WordPress.org</a> (including the Twenty Fifteen default theme) have been updated today by the WordPress security team to address this issue by removing this nonessential file. To help protect other Genericons usage, WordPress 4.2.2 proactively scans the wp-content directory for this HTML file and removes it. Reported by Robert Abela of <a href=\"http://netsparker.com\">Netsparker</a>.</li>\n<li>WordPress versions 4.2 and earlier are affected by a <a href=\"https://wordpress.org/news/2015/04/wordpress-4-2-1/\">critical cross-site scripting vulnerability</a>, which could enable anonymous users to compromise a site. WordPress 4.2.2 includes a comprehensive fix for this issue. Reported separately by Rice Adu and Tong Shi.</li>\n</ul>\n<p>The release also includes hardening for a potential cross-site scripting vulnerability when using the visual editor. This issue was reported by Mahadev Subedi.</p>\n<p>Our thanks to those who have practiced <a href=\"https://make.wordpress.org/core/handbook/reporting-security-vulnerabilities/\">responsible disclosure</a> of security issues.</p>\n<p>WordPress 4.2.2 also contains fixes for 13 bugs from 4.2. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.2.2\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.2?rev=32418&stop_rev=32324\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.2.2</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.2.2.</p>\n<p>Thanks to everyone who contributed to 4.2.2:</p>\n<p><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/mdawaffe\">Mike Adams</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/taka2\">taka2</a>, and <a href=\"https://profiles.wordpress.org/willstedt\">willstedt</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/05/wordpress-4-2-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 4.2.1 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2015/04/wordpress-4-2-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/news/2015/04/wordpress-4-2-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Apr 2015 18:34:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3706\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:366:\"WordPress 4.2.1 is now available. This is a critical security release for all previous versions and we strongly encourage you to update your sites immediately. A few hours ago, the WordPress team was made aware of a cross-site scripting vulnerability, which could enable commenters to compromise a site. The vulnerability was discovered by Jouko Pynnönen. […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1010:\"<p>WordPress 4.2.1 is now available. This is a <strong>critical security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>A few hours ago, the WordPress team was made aware of a cross-site scripting vulnerability, which could enable commenters to compromise a site. The vulnerability was discovered by <a href=\"http://klikki.fi/\">Jouko Pynnönen</a>.</p>\n<p>WordPress 4.2.1 has begun to roll out as an automatic background update, for sites that <a href=\"https://wordpress.org/plugins/background-update-tester/\">support</a> those.</p>\n<p>For more information, see the <a href=\"https://codex.wordpress.org/Version_4.2.1\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/log/branches/4.2?rev=32311&stop_rev=32300\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.2.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now”.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2015/04/wordpress-4-2-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 4.2 “Powell”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2015/04/powell/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2015/04/powell/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Apr 2015 18:35:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3642\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:343:\"Version 4.2 of WordPress, named “Powell” in honor of jazz pianist Bud Powell, is available for download or update in your WordPress dashboard. New features in 4.2 help you communicate and share, globally. An easier way to share content Clip it, edit it, publish it. Get familiar with the new and improved Press This. From […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:29434:\"<p>Version 4.2 of WordPress, named “Powell” in honor of jazz pianist <a href=\"https://en.wikipedia.org/wiki/Bud_Powell\">Bud Powell</a>, is available for <a href=\"https://wordpress.org/download/\">download</a> or update in your WordPress dashboard. New features in 4.2 help you communicate and share, globally.</p>\n<div id=\"v-e9kH4FzP-1\" class=\"video-player\"><embed id=\"v-e9kH4FzP-1-video\" src=\"https://v0.wordpress.com/player.swf?v=1.04&guid=e9kH4FzP&isDynamicSeeking=true\" type=\"application/x-shockwave-flash\" width=\"692\" height=\"388\" title=\"Introducing WordPress 4.2 "Powell"\" wmode=\"direct\" seamlesstabbing=\"true\" allowfullscreen=\"true\" allowscriptaccess=\"always\" overstretch=\"true\"></embed></div>\n<hr />\n<h2 style=\"text-align: center\">An easier way to share content</h2>\n<p><img class=\"alignnone size-full wp-image-3677\" src=\"https://wordpress.org/news/files/2015/04/4.2-press-this-2.jpg\" alt=\"Press This\" width=\"1000\" height=\"832\" />Clip it, edit it, publish it. Get familiar with the new and improved Press This. From the Tools menu, add Press This to your browser bookmark bar or your mobile device home screen. Once installed you can share your content with lightning speed. Sharing your favorite videos, images, and content has never been this fast or this easy.</p>\n<hr />\n<h2 style=\"text-align: center\">Extended character support</h2>\n<p><img class=\"alignnone size-full wp-image-3676\" src=\"https://wordpress.org/news/files/2015/04/4.2-characters.png\" alt=\"Character support for emoji, special characters\" width=\"1000\" height=\"832\" />Writing in WordPress, whatever your language, just got better. WordPress 4.2 supports a host of new characters out-of-the-box, including native Chinese, Japanese, and Korean characters, musical and mathematical symbols, and hieroglyphs.</p>\n<p>Don’t use any of those characters? You can still have fun — emoji are now available in WordPress! Get creative and decorate your content with <img src=\"https://s.w.org/images/core/emoji/72x72/1f499.png\" alt=\"','no'),(1714,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1431670739','no'),(1715,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1431627539','no'),(1716,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1431670739','no'),(1717,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: WPWeekly Episode 192 – Infinite Possibilities With Dan Griffiths\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://wptavern.com?p=43747&preview_id=43747\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://wptavern.com/wpweekly-episode-192-infinite-possibilities-with-dan-griffiths\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3306:\"<p>In this episode of WordPress Weekly, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I are joined by <a href=\"https://profiles.wordpress.org/section214/\">Dan Griffiths</a>, founder of <a href=\"https://section214.com/\">Section214</a>. We spend the first half of the show learning about Griffiths’ interest in technology at a young age.</p>\n<p>Once out of the military, Griffiths experienced difficulties finding a job. He discovered Easy Digital Downloads and explains how working on a ticket and creating an API led to getting a job offer from <a href=\"https://pippinsplugins.com/\">Pippin Williamson</a>. Since accepting the job offer, Griffiths has <a href=\"https://profiles.wordpress.org/section214/#content-plugins\">published 22 plugins</a> to the WordPress plugin directory and has attended several WordCamps.</p>\n<p>Later in the show, we discuss <a href=\"http://wptavern.com/dan-griffiths-launches-175k-crowdfunding-campaign-to-build-hostpress\">HostPress</a>, an open-source, extensible server control panel built on top of WordPress. He describes his motivation behind the project and why he thinks webhosts need a better solution. Near the end of the interview, Griffiths shares his thoughts on the WP REST API that will eventually be added to WordPress and what it means for the project’s future.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"http://heropress.com/heros-are-found-in-unexpected-places/\">Heroes Are Found In Unexpected Places </a><br />\n<a href=\"http://wptavern.com/wordpress-4-3-to-focus-on-mobile-experience-admin-ui-better-passwords-and-customizer-improvements\">WordPress 4.3 to Focus on Mobile Experience, Admin UI, Better Passwords, and Customizer Improvements</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/wp-rollback/\">WP Rollback</a> lets you quickly and easily rollback any theme or plugin from WordPress.org to any previous or newer version. It works just like the plugin updater, except you’re rolling backward or forward to a specific version. Be sure to read our <a href=\"http://wptavern.com/wp-rollback-provides-basic-versioning-for-wordpress-org-plugins-and-themes\">review of WP Rollback</a> on the Tavern.</p>\n<p><a href=\"https://wordpress.org/plugins/linkedin-oauth/\">Linkedin_Oauth</a> allows users to login and register into WordPress using their LinkedIn account.</p>\n<p><a href=\"https://wordpress.org/plugins/strong-password-generator/\">Strong Password Generator</a> created by <a href=\"https://profiles.wordpress.org/fjarrett/\">Frankie Jarrett</a>, encourages the use of strong passwords by helping users generate them easily.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, May 20th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #192:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 May 2015 07:19:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Matt: Wearable Gadgets\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45048\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://ma.tt/2015/05/wearable-gadgets/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:351:\"<p><a href=\"http://www.washingtonpost.com/sf/national/2015/05/09/the-revolution-will-be-digitized/\">Wearable gadgets portend vast health, research and privacy consequences</a>, the Washington Post takes on the quantified self. I’m in the medium end of this, I track pretty much everything that’s easy, but no blood / hormone tests yet.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 May 2015 05:04:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: WP Engine Rolls Out WP-CLI Support to Select Partners for Beta Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43693\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"http://wptavern.com/wp-engine-rolls-out-wp-cli-support-to-select-partners-for-beta-testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3885:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/wp-engine.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/11/wp-engine.jpg?resize=1025%2C427\" alt=\"wp-engine\" class=\"aligncenter size-full wp-image-34106\" /></a></p>\n<p><a href=\"http://wpengine.com/\" target=\"_blank\">WP Engine</a> is currently beta testing <a href=\"http://wp-cli.org/\" target=\"_blank\">WP-CLI</a> support with approximately 200 select partners. Those who serve clients that host with the company are eager to see it rolled out to more customers, as WP-CLI has become an indispensable part of many WordPress developers’ workflow.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p lang=\"en\" dir=\"ltr\">WP-CLI on <a href=\"https://twitter.com/wpengine\">@wpengine</a>! From the entire WordPress Community, THANK YOU!!!!!</p>\n<p>— Brad Williams (@williamsba) <a href=\"https://twitter.com/williamsba/status/598526319253663744\">May 13, 2015</a></p></blockquote>\n<p></p>\n<p>“We find that with technical products it’s often better to roll out to development partners who we have a prior working relationship with, to get candid feedback from highly technical folks, and thus build a better product before rolling to a wider audience,” founder <a href=\"http://blog.asmartbear.com/\" target=\"_blank\">Jason Cohen</a> told the Tavern.</p>\n<p>There is no set timeframe for beta, but Cohen said that the plan is to offer WP-CLI support to all customers on all plans.</p>\n<p>“Our timeframe for exiting beta is like one of the rules of Fight Club: ‘The beta goes on for as long as it has to,\'” he said. “If everything is smooth and few issues arise, we can roll faster, but if we find things we want to fix, it will take longer. <span class=\"pullquote alignleft\">The main thing is to release high quality product, not to release it as quickly as possible.</span>”</p>\n<p>Many other hosting companies that cater to WordPress customers, such as Bluehost, SiteGround, and Site5, have had <a href=\"http://wptavern.com/hosting-companies-that-have-wp-cli-pre-installed\" target=\"_blank\">WP-CLI pre-installed</a> for years, which makes it curious that WP Engine has taken so long to add support for it. Cohen says that it’s trickier when you plan to offer it to all customers.</p>\n<blockquote><p>Some of our competitors offer WP-CLI only on dedicated plans, not on shared plans, whereas we offer it on all plans. An example of why it’s tricker: there are security implications (e.g. when running system commands outside of the PHP sandbox, which many WP-CLI commands do) in a multi-tenant system that are less of a concern in a dedicated system. We wanted to take the time to get all that right.</p></blockquote>\n<p>Cohen said that it wasn’t hard to come to the decision to support WP-CLI but WP Engine has been concurrently working on launching other technical tools. Most recently, the company has been focusing on polishing <a href=\"http://wptavern.com/wp-engine-partners-with-10up-to-launch-enterprise-hhvm-wordpress-hosting-platform\" target=\"_blank\">Mercury</a>, its enterprise HHVM hosting platform, which launched last year.</p>\n<p>“We’ve been building and releasing features that no one else has,” Cohen said. “So, sometimes we’re first-out with a feature, and sometimes not. That seems natural in a market with a dozen good competitors, all innovating in the space.”</p>\n<p>Development partners who have been granted access to WP-CLI during the beta period can find a <a href=\"http://wpengine.com/support/known-issues-in-wp-cli-in-user-portal/\" target=\"_blank\">list of known issues</a> in the WP Engine documentation, which includes a list of commands that are currently not supported. Documentation will be updated throughout the beta period to reflect progress on issues reported by testers.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 May 2015 23:51:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: WP Rollback Provides Basic Versioning for WordPress.org Plugins and Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43696\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"http://wptavern.com/wp-rollback-provides-basic-versioning-for-wordpress-org-plugins-and-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4615:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/undo-button.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/undo-button.jpg?resize=1025%2C506\" alt=\"The undo key from a computer keyboard\" class=\"size-full wp-image-43721\" /></a>The undo key from a computer keyboard\n<p>Despite the recent proliferation of plugins that add git-based version control to WordPress, your average user does not require a full-blown version control system as part of regular site management. Developers can certainly benefit from tools like <a href=\"http://wptavern.com/free-revisr-plugin-offers-git-management-for-wordpress\" target=\"_blank\">Revisr</a> and <a href=\"http://wptavern.com/gitium-provides-automatic-git-version-control-and-deployment-for-wordpress-plugins-and-themes\" target=\"_blank\">Gitium</a> for managing projects with Git, but the vast majority of WordPress users are more likely to benefit from a simple “undo” button for mistakes or bad updates.</p>\n<p><a href=\"https://wordpress.org/plugins/wp-rollback/\" target=\"_blank\">WP Rollback</a> is a new plugin that brings the concept of an “undo” button to updates for plugins and themes hosted on WordPress.org. It allows users to easily rollback to any previous (or newer) version without the hassle of manually downloading files.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/wp-rollback.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/wp-rollback.jpg?resize=925%2C228\" alt=\"wp-rollback\" class=\"aligncenter size-full wp-image-43711\" /></a></p>\n<p>Clicking the Rollback link will take the user to a screen where he can select from a list of previous versions or update to newer ones.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/wp-rollback-versions-screen.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/wp-rollback-versions-screen.jpg?resize=576%2C437\" alt=\"wp-rollback-versions-screen\" class=\"aligncenter size-full wp-image-43712\" /></a></p>\n<p>WP Rollback uses WordPress’ native plugin updater to revert to previous versions.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wp-rollback-update.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wp-rollback-update.jpg?resize=556%2C304\" alt=\"wp-rollback-update\" class=\"aligncenter size-full wp-image-43714\" /></a></p>\n<p>While using older versions of themes/plugins is not generally encouraged, there are times when it’s unavoidable. For example, some plugin authors routinely push out buggy updates, seemingly without having run any tests on them, and then rely on their users to discover and report the problems. It can sometimes be 24 – 72 hours before the author has the chance to push out a fix to the buggy update. WP Rollback allows users to quickly revert to the previous working version of the plugin.</p>\n<p>As themes hosted on WordPress.org <a href=\"http://wptavern.com/do-wordpress-org-themes-need-a-changelog\" target=\"_blank\">do not yet have change logs</a>, there may be times when a user updates to a new version of a theme where the author has made some major changes to the markup and/or styles. Without a changelog, the user has no idea what is included in the update or how it might impact a child theme or plugin’s output. WP Rollback gives you the ability to test a theme update and quickly rollback if necessary until you’ve had the chance to get your site ready.</p>\n<p>Most WordPress users do not have a development environment in place for putting software updates to the test before rolling them out. They simply expect updates to work, but there will always be those rare instances of unforeseen conflicts and bugs. Having WP Rollback in place should help users to be less wary about taking updates, since they know they can easily rollback if something goes wrong.</p>\n<p><a href=\"https://wordimpress.com/\" target=\"_blank\">WordImpress</a>, the folks behind WP Rollback as well as the new <a href=\"http://wptavern.com/give-a-new-free-donations-plugin-for-wordpress\" target=\"_blank\">Give plugin</a>, encourages users to backup their sites before performing plugin/theme updates or reverts. Ideally, you would test any changes in a development environment first to ensure that everything works as planned. <a href=\"https://wordpress.org/plugins/wp-rollback/\" target=\"_blank\">WP Rollback</a> is available for free on WordPress.org and <a href=\"https://github.com/WordImpress/WP-Rollback/wiki\" target=\"_blank\">documentation can be found on GitHub</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 May 2015 19:34:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: Advanced Hindsight\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45039\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://ma.tt/2015/05/advanced-hindsight/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:612:\"<blockquote><p>Beginning with the 2015 academic year, the Center for Advanced Hindsight (CAH) at Duke University will invite promising startups to join its behavioral lab and leverage academic research in their business models. The Center is housed within the Social Science Research Institute at Duke University and is led by Professor Dan Ariely, Professor of Psychology and Behavioral Economics at Duke University.</p></blockquote>\n<p><a href=\"http://danariely.com/2015/05/08/announcing-cah-startup-lab/\">This is a pretty awesome opportunity for entrepreneurs</a>, I hope a reader of this blog pursues it.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 May 2015 04:19:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WPTavern: Major Changes to WordPress.org Guidelines Should Have a Request for Comments Time Period\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43595\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"http://wptavern.com/major-wordpress-org-guideline-changes-should-have-a-request-for-comments-time-period\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7603:\"<p>For the last three years, the <a href=\"https://make.wordpress.org/themes/\">WordPress Theme Review Team</a> has tried to encourage theme authors to adopt the Theme Customizer. In April, the decision was made by the TRT to no longer encourage, but <a href=\"https://make.wordpress.org/themes/2015/04/22/details-on-the-new-theme-settings-customizer-guideline/\">require</a> all theme options to be in the customizer. Although the decision was three years in the making, the community didn’t have an opportunity to provide feedback until <strong>after</strong> the requirement was put in place.</p>\n<h2>The Timeline</h2>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/EstimatedReadingTimeFeaturedImage.png\"><img class=\"size-full wp-image-25719\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/07/EstimatedReadingTimeFeaturedImage.png?resize=639%2C200\" alt=\"Estimated Reading Time Featured Image\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/eyesplash/8467316141/\">Eyesplash – let’s feel the heat</a> – <a href=\"http://creativecommons.org/licenses/by-nc-nd/2.0/\">cc</a>\n<p>Those who follow the official <a href=\"https://make.wordpress.org/themes/\">TRT blog</a> likely saw the writing on the wall. With the <a href=\"https://wordpress.org/news/2012/06/green/\">release of WordPress 3.4</a> in 2012, which introduced the theme customizer, the TRT held discussions on <a href=\"https://make.wordpress.org/themes/2012/05/08/proposed-wordpress-3-4-guidelines-revisions/\">proposed changes</a> to the theme review guidelines. One of the proposed changes <strong>recommended</strong> theme options be incorporated into the theme customizer. Of particular interest is <a href=\"https://make.wordpress.org/themes/2012/05/08/proposed-wordpress-3-4-guidelines-revisions/#comment-19516\">a conversation</a> between Justin Tadlock and Chip Bennett on whether or not the customizer should be recommended so early.</p>\n<p>In November of 2014, the team <a href=\"https://make.wordpress.org/themes/2014/11/04/todays-meeting-agenda-ive-gone-back-all-comments/\">held a meeting</a> to discuss modifications to the theme review guidelines. Up until this point, theme authors were allowed to create theme options in one of three ways, Theme Customizer, Settings API, or with custom options pages using the Theme Mods API.</p>\n<p>During the meeting, <a href=\"https://wordpress.slack.com/archives/themereview/p1415124589001969\">Tadlock suggested</a> that the team should <strong>strongly recommend</strong> theme authors to use the customizer. Members in attendance agreed and the theme review guidelines changed to <a href=\"https://make.wordpress.org/themes/2014/04/03/wordpress-3-9-guidelines-revision-proposal-round-2/\">strongly recommend</a> theme options be placed into the customizer.</p>\n<p>A few days after the meeting, Tadlock published a post asking <a href=\"https://make.wordpress.org/themes/2014/11/11/how-do-we-solve-the-theme-options-problem/\">how do we solve the theme options problem</a>? He highlights the lack of educational resources on the customizer as one of the major culprits of its slow adoption.</p>\n<blockquote><p>One of the things I’ve always hoped the TRT would become is more of an educational team. I firmly believe that if we didn’t have to spend so much time dealing with theme options, we could spend more time on educating in other areas of the dev/design.</p>\n<p>I’m writing this post because I believe this to be the biggest hangup with themes today. It’s the hardest part of the review process. It’s also one of the most critical because theme options means potential security issues.</p></blockquote>\n<p>The post opened up a dialogue to discuss ways of dealing with several issues related to getting developers to adopt and use the customizer. Bennett <a href=\"https://make.wordpress.org/themes/2014/11/24/understanding-the-apis-related-to-theme-options/\">published a post a few days later</a> that explained APIs related to theme options. It was later followed up by Tadlock with a post on <a href=\"https://make.wordpress.org/themes/2014/11/26/customizer-theme-mods-api-or-settings-api/\">choosing Theme Mods API or Settings API</a>.</p>\n<h2>The Vote</h2>\n<p>Fast forward to April 2015, the team <a href=\"https://wordpress.slack.com/archives/themereview/p1429639190005379\">held a meeting</a> and unanimously agreed to require theme authors to place theme options into the customizer. A day later, <a href=\"https://make.wordpress.org/themes/2015/04/22/details-on-the-new-theme-settings-customizer-guideline/\">Tadlock explained</a> why the change was made and how the team came to its decision.</p>\n<blockquote><p>First, I want to say that the team did not take this decision lightly nor did we make it quickly. In fact, this has been an ongoing discussion for nearly 3 years (since the customizer was first introduced in core). Many of us had originally hoped that we could take a more organic approach to this and allow theme authors to naturally make the switch on their own given enough time.</p></blockquote>\n<p>The decision created a <a href=\"http://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options#comments\">passionate, lengthy conversation</a> with several people chiming in <em>after the fact</em> on WP Tavern.</p>\n<h2>A Request for Comments Period</h2>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/03/FutureOfCommentingFeaturedImage.png\"><img class=\"size-full wp-image-18515\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/03/FutureOfCommentingFeaturedImage.png?resize=638%2C200\" alt=\"Future Of Commenting Featured Image\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/marcwathieu/2945514734/\">Marc Wathieu</a> – <a href=\"http://creativecommons.org/licenses/by-nc/2.0/\">cc</a>\n<p>On the TRT blog, there are several blog posts that encourage feedback, especially on guideline proposals. In this instance however, feedback, concerns, and criticism weren’t encouraged until after the decision was made.</p>\n<p>The TRT usually <a href=\"https://make.wordpress.org/themes/2015/04/13/weekly-meeting-agenda-this-week-weve-got-our-2/\">publishes an agenda</a> that highlights what topics will be discussed during the meeting. An agenda was published for the April 14th meeting but not for the April 21st meeting. This means only those in attendance were able to voice an opinion and vote on the issue, as there was no advance notice.</p>\n<p>I understand the team has discussed this change for the last three years, but I would like to have seen a request for comments period for at least a month on the TRT blog.</p>\n<p>This way, people could comment on the decision before it was implemented. The team could have controlled the conversation, provided a more accessible way of participating in the discussion versus Slack, and heard legitimate concerns from theme developers.</p>\n<p>I hope major changes like this in the future are addressed in a way where the public can be more involved. The notion that concerned parties should have been in Slack during the meeting to voice concerns before the decision was made is unacceptable. People have things to do and while I think Slack is easier to use than IRC, a blog post with a comment form is accessible to a lot more people.</p>\n<p>An RFC period doesn’t make sense for a lot of what takes place in the world of WordPress development but a change that affects current, past, and future themes in the directory is a great example of where it does makes sense.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 May 2015 22:10:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: Customizer Theme Resizer Plugin Offers Live Previews of Your Site on Mobile Devices\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43599\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"http://wptavern.com/customizer-theme-resizer-plugin-offers-live-previews-of-your-site-on-mobile-devices\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3729:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/customizer-theme-resizer.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/customizer-theme-resizer.jpg?resize=650%2C300\" alt=\"customizer-theme-resizer\" class=\"aligncenter size-full wp-image-43646\" /></a></p>\n<p>Contributors on the <a href=\"http://wptavern.com/wordpress-4-3-to-focus-on-mobile-experience-admin-ui-better-passwords-and-customizer-improvements\" target=\"_blank\">upcoming WordPress 4.3 release</a> are moving full speed ahead with plans to improve the experience of using the customizer. They’re also exploring ways to re-architect it to make way for feature plugins that would bring in additional functionality.</p>\n<p>WordPress core contributors have continually demonstrated a commitment to improving the customizer to make it better for everyone, and the Theme Developer Handbook was recently <a href=\"http://wptavern.com/wordpress-theme-developer-handbook-updated-with-comprehensive-guide-to-the-customizer-api\" target=\"_blank\">updated with a comprehensive guide to using the Customizer API</a>. Plugin developers are also finding new ways to <a href=\"https://wordpress.org/plugins/tags/customizer\" target=\"_blank\">extend the customizer</a> to support the increasing number of users who depend on it for live previews.</p>\n<p><a href=\"https://wordpress.org/plugins/customizer-theme-resizer/\" target=\"_blank\">Customizer Theme Resizer</a> is a new plugin that is immensely useful for previewing your site on various mobile devices while adjusting options in the customizer. The plugin was created by Japanese web developer <a href=\"https://profiles.wordpress.org/webnist/\" target=\"_blank\">Tatsuki Ohta</a>, who has 10 other extensions listed in the official directory. It allows you to review your design for responsiveness without having to leave the customizer panel.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/customizer-theme-resizer-screenshot.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/customizer-theme-resizer-screenshot.jpg?resize=905%2C561\" alt=\"customizer-theme-resizer-screenshot\" class=\"aligncenter size-full wp-image-43648\" /></a></p>\n<p>Customizer Theme Resizer offers nine preset mobile phone/tablet display options, or you can manually add your own screen dimensions. You can also easily switch between portrait or landscape mode.</p>\n<p>The plugin works seamlessly within the customizer, so you can set it to iPhone 6, for example, and live preview any of your design choices on that device. This is especially helpful when uploading a site logo or a header image if you want to see how those images resize down for devices. It keeps you from having to go back and forth while making adjustments and testing responsiveness on your phone or simulator.</p>\n<p>I tested the plugin and found that it works as advertised. You can see a quick overview of how it works in the video below:</p>\n<p><span class=\"embed-youtube\"></span></p>\n<p>As a result of the WordPress.org Theme Review Team’s decision to <a href=\"http://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options\" target=\"_blank\">enforce the use of the customizer for theme options</a>, more themes will be moving to support the customizer ahead of the deadline to comply. The Customizer Theme Resizer plugin is a handy tool to use in conjunction with any theme that supports the customizer. Install the <a href=\"https://wordpress.org/plugins/customizer-theme-resizer/\" target=\"_blank\">Customizer Theme Resizer</a> plugin from WordPress.org the next time you want to live preview the mobile-friendliness of your design adjustments.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 May 2015 21:52:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: 3 Big Things that Will Happen to WordPress in the Near Future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43611\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://wptavern.com/3-big-things-that-will-happen-to-wordpress-in-the-near-future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6711:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/petersuhm.jpeg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/petersuhm.jpeg?resize=150%2C150\" alt=\"petersuhm\" class=\"alignright size-thumbnail wp-image-43613\" /></a>This opinion piece was contributed by guest author <a href=\"https://twitter.com/petersuhm\" target=\"_blank\">Peter Suhm</a>. Peter is a web developer from the Land of the Danes. He is the creator of <a href=\"https://wppusher.com/\" target=\"_blank\">WP Pusher</a> and a huge travel addict, bringing his work along with him as he goes.<br />\n </p>\n<hr />\n<h3>Yet another WordPress prophecy</h3>\n<p>Okay, I admit that the title of this post is a bit risky. Honestly, it should probably have been “3 Big Things That I Wholeheartedly Hope Will Happen To WordPress In The Not Too Distant Future”. That being said, I am optimistic by nature, and I actually think these three ideas are realistic scenarios. So in all modesty, and without further ado, here is my take on some of the next big things to happen in the WordPress world in the near future.</p>\n<h1>WordPress Will Have Dependency Management</h1>\n<p>There is no question about it. WordPress needs some sort of dependency management mechanism. We have seen all other fragments of the PHP community, and other languages too, adopt the use of dependency managers. Most likely, WordPress will adopt <a href=\"https://getcomposer.org/\" target=\"_blank\">Composer</a> in some form, either out-of-the-box or by configuration.</p>\n<h3>What is a dependency manager?</h3>\n<p>A dependency manager is a software tool that can resolve and manage the dependencies (other libraries) that a given library requires. In PHP we have Composer. Each PHP library that supports Composer will have a defined set of dependencies that it depends on. The role of Composer is to fetch all these dependencies and make sure they are all compatible with each other.</p>\n<h3>… and why does WordPress need one?</h3>\n<p>WordPress needs one so we do not have to reinvent the wheel every time we want to make a new plugin or theme. Every time we write code for WordPress when we could have used one of the existing PHP packages out there, we are essentially wasting our time. Allowing the use of third-party dependencies allows for much more rapid development and better security. So many security issues in WordPress plugins are the same ones showing up again and again.</p>\n<h3>What does this mean for you?</h3>\n<p>In the short run, for plugin developers, WordPress adopting a dependency manager will mean a huge opportunity for making WordPress specific plugins for all the existing PHP libraries out there. When this happens, we will see hundreds, if not thousands, of plugins that will just be WordPress wrappers around existing libraries. Some of these plugins will end up becoming very popular. So be ready if you are an upcoming plugin author!</p>\n<p>WordPress developers will probably also have to deal with some sort of frontend dependency manager, since, with the <a href=\"http://wp-api.org/\" target=\"_blank\">WP REST API</a>, a lot of things will be revolutionized on the frontend side of things. We will touch more on that in the next section.</p>\n<h1>WordPress Will Be “Just” a Backend</h1>\n<p>This is not my idea, but I am certain this is the way we are moving. With the WP REST API in core, WordPress will essentially be a backend, complete with user management and so forth, for your API-based web application. Themes are going to be JavaScript based and will communicate with WordPress through the API. Plugins will stay mainly PHP, with a dash of JavaScript, just as the backend itself will.</p>\n<p>I believe that a main reason for WordPress’ widespread success is the dashboard. It is extremely user friendly and intuitive. Add to that how simple and easy it is to add 3rd party plugins and themes and you have a winner. Extending core is also really trivial because of all the actions and filters that WordPress has built in. There is no way that the WP REST API is going to change this. It is simply adding an extra layer for frontend developers, and most likely, radically changing how we work with theming.</p>\n<p>A few years ago, I worked as a full time Ruby on Rails developer. For one project, we needed some kind of CMS to manage the content of our Rails app. One of the developers (a hardcore Ruby guy) suggested using the WordPress dashboard as a backend and just build a simple API around it. We never ended up doing that, but imagine how easy that would be to implement had the API been around at the time.</p>\n<h3>What does this mean for you?</h3>\n<p>If you are a WordPress theme developer, this means that in the future you will probably not be a WordPress developer any more. You will “just” be a theme developer. You better up those JavaScript skills before this happens.</p>\n<h1>WordPress Will Become More Decoupled</h1>\n<p>As a result of all this, WordPress will become a lot more decoupled. Obviously, the biggest cut will be between the backend (dashboard and plugins) and the front end (themes). It is also easy to imagine, with an adaptation of Composer, that core itself will become a lot more decoupled. Maybe similar to how the Laravel framework is split up into the Illuminate packages (now we will have to define what “near future” means, though).</p>\n<p>As already mentioned, the main component will be the dashboard. Plugins makes sense to keep as a part of the dashboard, but in the future, they might look more like WordPress-specific Composer packages. It makes sense to keep all this in PHP – of course with a bit of JavaScript here and there.</p>\n<p>Another thing to consider is that if Composer is adopted in the near future, that would naturally mean an upgrade of the minimum required PHP version. That will probably happen very soon, anyways. We might see some sort of frontend plugins as well, but these will be JavaScript and be managed through a frontend dependency management tool.</p>\n<h3>What does this mean for you?</h3>\n<p>This means that if you are a WordPress plugin developer, you can keep writing good old PHP code. No need to jump straight over to NodeJS, yet, but if you are a theme developer, you might want to keep an eye on what those guys are up to.</p>\n<p>It also means that WordPress is going to be much more decoupled and customizable. You will be able to pick the parts you need and skip the rest. If you need something different, you will most likely be able to find an existing PHP package that can do the job. Sounds good, right?</p>\n<p>These are my 5 cents. I am curious to hear what you think. Where is WordPress headed?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 May 2015 18:15:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"WPTavern: BuddyPress 2015 Survey Shows Increase in English-Speaking Communities and Commercial Theme Usage\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43531\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"http://wptavern.com/buddypress-2015-survey-shows-increase-in-english-speaking-communities-and-commercial-theme-usage\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6558:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/2015-bp-survey-results.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/2015-bp-survey-results.jpg?resize=1025%2C576\" alt=\"2015-bp-survey-results\" class=\"aligncenter size-full wp-image-43580\" /></a></p>\n<p>The <a href=\"https://buddypress.org/2015/05/2015-buddypress-survey-results/\" target=\"_blank\">BuddyPress 2015 survey results</a> are now available. This year’s survey did not have the same community penetration as <a href=\"http://wptavern.com/7-surprising-results-from-the-2013-buddypress-codex-survey\" target=\"_blank\">2013</a> and <a href=\"https://buddypress.org/2014/03/2014-buddypress-survey-results/\" target=\"_blank\">2014</a>, with 37.5% fewer respondents, but the information is still valuable for gauging how and where people are using the plugin. Volunteers collected feedback from 211 participants in 42 different countries.</p>\n<p>Feedback this year shows a few significant shifts from previous years, especially when it comes to languages used on BuddyPress sites. The top three languages in 2015 are English (69.23%), French (10.26%), and German (7.69%). In <a href=\"http://wptavern.com/7-surprising-results-from-the-2013-buddypress-codex-survey\" target=\"_blank\">2013</a>, language usage was fairly evenly divided between English (56%) and non-English sites.</p>\n<p>On the surface, the language results seem to indicate a shrinking international community, but it may be due to the fact that the survey lost participants from 20 countries captured the previous year.</p>\n<h3>Commercial BuddyPress Themes are on the Rise</h3>\n<p>Results indicate that 34% of community managers and developers surveyed are building BuddyPress sites with commercial WordPress themes that offer custom BP CSS and/or template modifications. That number is up from 26% the previous year, likely due to more BuddyPress themes entering the market.</p>\n<p>Accessing BuddyPress sites via mobile is also slowly on the rise with 63% of respondents reporting that they’ve used a smartphone to access their sites. It’s no surprise that the survey shows mobile responsiveness is one of the most important factors in theme selection.</p>\n<p>Other preferred BuddyPress theme features include compatibility with the latest BP version and a light/fresh design. This preference may be due to kinds of sites that users are building, which remain fairly unchanged from previous years:</p>\n<ul>\n<li>Generic (26.32%)</li>\n<li>Academic (23.31%)</li>\n<li>Artistic (12.03%)</li>\n<li>Sports (11.65%)</li>\n<li>Gaming (10.53%)</li>\n<li>Scientific (8.27%)</li>\n<li>Religious (6.77%)</li>\n<li>Travel (0.75%)</li>\n<li>Health (0.38%)</li>\n</ul>\n<h3>Extended Profiles and Activity Streams Remain the Most Used BuddyPress Components</h3>\n<p>Results show that the most used BuddyPress components are Extended Profiles (71.13%) and Activity Streams (66.49%), followed by User Groups (57.22%). Although Profiles and Activity remain dominant, they are waning slightly from the previous year while Groups are increasing in popularity.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/bp-components-usage.png\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/bp-components-usage.png?resize=1025%2C881\" alt=\"bp-components-usage\" class=\"aligncenter size-full wp-image-43575\" /></a></p>\n<p>Surprisingly, Friend Connections, which are often associated with social networks, rank quite low on the list of components, trailing Messaging, Notifications, and Account Settings. Site Tracking, a feature used most often with multisite, ranks dead last among components that are always activated at just 8.25%.</p>\n<p>If you take a look at the features on track for <a href=\"http://wptavern.com/buddypress-2-3-beta-1-is-ready-for-testing\" target=\"_blank\">BuddyPress 2.3</a>, the direction of development seems to be trending toward improving the components that users are mostly likely to activate. Last year’s major performance improvements <a href=\"http://wptavern.com/buddypress-2-0-ramps-up-performance-reduces-footprint-by-up-to-75\" target=\"_blank\">reduced BuddyPress’ footprint by up to 75%</a> in many places, especially for sites that rely on activity and member directories.</p>\n<p>The recent additions of the <a href=\"http://wptavern.com/buddypress-2-2-spumoni-released-featuring-new-member-type-api\" target=\"_blank\">Member Types API</a> and upcoming <a href=\"http://wptavern.com/buddypress-2-3-will-improve-avatar-uploads-with-the-new-bp-attachments-api\" target=\"_blank\">Attachments API</a> greatly improve the extensibility of components that BuddyPress site administrators are most frequently using. The survey results confirm that BP core development is being shaped by community feedback and overall the software is improving for those that are actively using it.</p>\n<p>The anonymous comments on the survey provide some critical feedback that indicate it may be time for BuddyPress contributors to reconsider how the software is presented to the world. One respondent feels that the tagline “social networking in a box” is inaccurate, given recent developments in other social networking software:</p>\n<blockquote><p>BuddyPress is some distance behind the features people now expect of modern social networks. OK for school, or small intranet purposes, but to call it ‘social networking in a box’ is slightly stretching reality.</p></blockquote>\n<p>BuddyPress also continues to be somewhat daunting for beginners. Developers can be sold on its extensibility, but your average user trying to set up a social network will have a sharp learning curve when it comes to adding features beyond what is offered in BP core. That frustration, when it comes to extending the software, seems to make its way into users’ opinions of BuddyPress in general.</p>\n<blockquote><p>I’ve been trying to learn BuddyPress for about a year. Setup is super easy. Mods are always a pain. I understand this has to do with community support. Everybody wants answers. Few pitch in to help.</p></blockquote>\n<p>This year’s survey results and user feedback provide BuddyPress core contributors and volunteers with some important ideas to consider for shaping both development and community support in the future. The full results of the survey are <a href=\"https://mercime.github.io/BuddyPress-2015-survey-results/\" target=\"_blank\">available on GitHub</a> with a more detailed breakdown and charts for each question.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 May 2015 19:31:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Matt: New Yorker on Marc Andreessen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45044\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://ma.tt/2015/05/new-yorker-on-marc-andreessen/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:371:\"<p>Tad Friend has a <a href=\"http://www.newyorker.com/magazine/2015/05/18/tomorrows-advance-man\">great New Yorker profile of Marc Andreessen</a>, one of my favorite people to debate and talk to (though it happens all too rarely). Check out <a href=\"http://pmarcasays.golaun.ch/\">Pmarca Says</a> if you want to catch up on some of his recent thinking from tweetstorms.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 May 2015 15:56:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: Gazette: A Free WordPress Magazine Theme from Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43501\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wptavern.com/gazette-a-free-wordpress-magazine-theme-from-automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3367:\"<p><a href=\"https://theme.wordpress.com/themes/gazette/\" target=\"_blank\">Gazette</a> is a new WordPress magazine theme from the folks at Automattic, designed by <a href=\"http://thomasguillot.com/2015/05/07/new-theme-gazette/\" target=\"_blank\">Thomas Guillot</a>. Since the majority of themes produced for WordPress.com are well-suited to single author blogs, Gazette’s fine-tuned focus on digital publications is a welcome addition to the collection.</p>\n<p>Magazine themes are generally few and far between, because they have to be designed for a constant flow of content with a homepage that allows the reader to quickly scan multiple featured stories. Gazette takes a minimalist approach to the magazine style in that it isn’t cluttered with skinny columns of varying widths, obtrusive advertising slots, etc. It could easily be used for a personal blog or photography site.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/gazette-homepage.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/gazette-homepage.jpg?resize=1025%2C906\" alt=\"gazette-homepage\" class=\"aligncenter size-full wp-image-43507\" /></a></p>\n<p>As you scroll down the page, the sticky navigation/search bar pins the menu to the top for easy access. Gazette makes a strong impression with fullscreen featured images that display above post and page titles. The content area has been decluttered for readability with post meta pulled out into a separate column.</p>\n<p>Gazette supports image, gallery, video, and link post formats. The theme includes two optional widget areas (the right sidebar and footer), and two custom menus. With Jetpack active, Gazette adds an option to upload your site logo. The plugin also manages the featured content display, along with the related posts functionality seen in the <a href=\"https://gazettedemo.wordpress.com/\" target=\"_blank\">live demo</a>.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/gazette-author-bio.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/gazette-author-bio.jpg?resize=300%2C282\" alt=\"gazette-author-bio\" class=\"alignright size-medium wp-image-43552\" /></a>Gazette includes a handful of layout and content options in the customizer:</p>\n<ul>\n<li>Display header image on blog index only</li>\n<li>Show author bio on the sidebar of single posts</li>\n<li>Display content in the footer, i.e. basic HTML, links, et.</li>\n</ul>\n<p>Gazette is responsive and maintains its striking visual appeal and readability on mobile devices. The design is similar to popular mobile news apps that display posts with titles overlayed on featured images.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/gazette-responsive.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/gazette-responsive.jpg?resize=560%2C222\" alt=\"gazette-responsive\" class=\"aligncenter size-full wp-image-43508\" /></a></p>\n<p>Check out the <a href=\"https://gazettedemo.wordpress.com/\" target=\"_blank\">live demo</a> on WordPress.com to see Gazette in action. The theme is not yet available on WordPress.org but should be soon. In the meantime, the zip file for self-hosted sites can be downloaded from the sidebar of the <a href=\"https://theme.wordpress.com/themes/gazette/\" target=\"_blank\">Gazette theme page</a> on WordPress.com.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 May 2015 06:30:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Matt: Undercity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45042\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://ma.tt/2015/05/undercity/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:190:\"<p>A great video going underneath the streets of New York, Ninja Turtle Style:</p>\n<p><span class=\"embed-youtube\"></span></p>\n<p>Hat tip: <a href=\"http://dentedreality.com.au/\">Beau</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 May 2015 15:47:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: Hint Water Founder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45037\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://ma.tt/2015/05/hint-water/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:585:\"<blockquote><p>When Kara Goldin started putting fruit in her water 10 years ago, she had no idea that she had stumbled upon a business idea that would eventually lead to the creation of a new category in the beverage industry, grow to a 40 million dollar company, and help her lose over 25 pounds in the process.</p></blockquote>\n<p>Cool interview with <a href=\"http://www.huffingtonpost.com/anjali-varma/mompreneur-spotlight-foun_b_7198902.html\">Kara Goldin, the founder of Hint Water</a>, which I drink 3-4 of a day and is also an <a href=\"http://audrey.co/\">Audrey</a> company.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 May 2015 03:42:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Post Status: The trojan Emoji\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=12600\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://poststatus.com/the-trojan-emoji/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5500:\"<p>Andrew Nacin just spoke at <a href=\"http://loopconf.io\">Loopconf</a> about the nature of a critical software bug.</p>\n<p></p>\n<h3>No strict mode on WordPress databases</h3>\n<p>At a base level, the problems originated in that WordPress did not enable strict mode for MySQL. If <code>STRICT_ALL_TABLES</code> has been enabled, the security vulnerability that was addressed in WordPress 4.2 would not exist.</p>\n<p>Without strict mode, MySQL allows more flexible inputs, and doesn’t require the same level of precision in what it allows. For example, a long username would just truncate to the maximum allowed characters, versus be rejected.</p>\n<p>Since MySQL can do strange things without strict mode enabled, there are obscure but significant ways for hackers to take advantage.</p>\n<h3>Defining the scope of a vulnerability</h3>\n<p>A vulnerability was disclosed to the WordPress security team about two years ago. At its core, the method for forcing MySQL truncation was by using four-byte characters, and then using tricks to store nefarious code in the database.</p>\n<p>Nacin used an example of inserting two comments in the database with single quotes and attached four-byte characters. MySQL would truncate the four-byte characters on databases using UTF8 (and don’t allow four-byte characters), and a hacker could utilize the truncated comment (or any other field, really) to add a second comment to finish the exploitation.</p>\n<p>The initial vulnerability was fixed in 3.6.1. In 2014, an <a href=\"https://cedricvb.be/post/wordpress-stored-xss-vulnerability-4-1-2/\">new disclosure came in from Cedric Van Bochhaven</a> to note that there was still a vulnerability under particular circumstances.</p>\n<p>After months of work and “tens of thousands of lines of code” for rewrites and tests, the team realized that they needed to check inputs to the database at a base level of WordPress.</p>\n<p>In WordPress 4.2, approximately 1,000 lines of code were inserted into wpdb.php under the guise of Emoji support, but were really for fixing this vulnerability.</p>\n<p><img class=\"aligncenter size-full wp-image-12604\" src=\"https://poststatus.com/wp-content/uploads/2015/05/utf8mb4.png\" alt=\"utf8mb4\" width=\"751\" height=\"520\" /></p>\n<p>The original report identified three requirements for the site to be exposed:</p>\n<ol>\n<li>MySQL truncating everything after a four-byte character</li>\n<li>It’s not exposed when utf8mb4 is enabled</li>\n<li>It’s theme dependent</li>\n</ol>\n<p>It turned out that really only part of number one needed to be true. They discovered, “this could affect any two fields that would be rendered anywhere near each other.”</p>\n<p>Between 11 default database tables and hundreds of fields, basically all parts of WordPress were vulnerable, and core itself also “extensively” relied on non-strict mode functionality.</p>\n<p>Furthermore, they realized that even three-byte characters could cause truncation, if they aren’t valid upon insertion.</p>\n<p>So of the requirements from the original report, most were not actually required.</p>\n<p><img class=\"aligncenter size-full wp-image-12606\" src=\"https://poststatus.com/wp-content/uploads/2015/05/utf8mb4-notreally.png\" alt=\"utf8mb4-notreally\" width=\"745\" height=\"517\" /></p>\n<blockquote><p>“We’re deeper and deeper and deeper into this hole, and we have no idea how to get out.”</p></blockquote>\n<p>The team went back to a discussion from the 3.6.1 vulnerability fix, that does what Nacin calls “preflight checks” that checks many layers of WordPress to ensure allowed data is being inserted.</p>\n<p>Checking allowed character sets was not only on the database and table level, but also on columns and fields. Furthermore, the client, the connection, and the server can have their own character sets.</p>\n<p>Nacin defines the method for checking as both using a scalpel and a sledgehammer.</p>\n<blockquote><p>We need this to work two different ways: with a scalpel via <code>update()</code>, <code>replace()</code>, <code>insert()</code>, and <code>delete()</code>, and with a sledgehammer via write queries via <code>query()</code>.</p></blockquote>\n<h3>Trojan Emoji</h3>\n<p>The code has been in trunk since January, months before the release of 4.2. But it was there under the guise of Emoji support, as “noone had any idea what it did because it was 1,000 lines of the database abstraction layer to just remove invalid characters.”</p>\n<p>Because of how opaque the vulnerability and the corresponding fix were, the team was able to spend a very long time working on and fixing the issue, all without exposing the vulnerability to the general public.</p>\n<p>When 23.9% of the internet uses WordPress, security becomes an even more enormous challenge than in other software. There was an easy fix for this all along: strict mode on MySQL.</p>\n<p>However, it would’ve broken “everything.” Alternatively, exposing a vulnerability to the public without a fix that doesn’t break websites makes the vulnerability that much more powerful. It takes a ridiculous effort for the WordPress core team and security team to ensure practical solutions to keep the WordPress software secure and reliable for millions of users.</p>\n<p>By the way, if you ever find a vulnerability in WordPress or you get really excited about problems like these, you can email [email protected] to get involved.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 May 2015 20:18:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Matt: Where Does Weight Go?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45034\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"http://ma.tt/2015/05/where-does-weight-go/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:156:\"<p><a href=\"http://mitchkirby.com/2015/04/21/where-does-weight-go/\">When You Lose Weight, Where Does it Go?</a> I’ll be honest that I had no idea.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 May 2015 13:10:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: Slot Machine Tech\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45031\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://ma.tt/2015/05/slot-machine-tech/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:469:\"<p>The Verge: <a href=\"http://www.theverge.com/2015/5/6/8544303/casino-slot-machine-gambling-addiction-psychology-mobile-games\">Slot machines perfected addictive gaming. Now, tech wants their tricks</a>. Includes information from one of my favorite authors <a href=\"http://www.nirandfar.com/\">Nir Eyal</a>, who also <a href=\"http://wordpress.tv/2012/09/03/nir-eyal-automatic-customers-how-to-design-user-habits/\">spoke at WordCamp San Francisco a few years ago</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 May 2015 06:55:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Post Status: How to create better, more accessible WordPress themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=12536\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://poststatus.com/how-to-create-accessible-wordpress-themes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23972:\"<p>This is not the ultimate guide for accessibility. You will not be an accessibility expert after reading this, not even a ninja! But I’d like to share what I have learned about accessibility in WordPress Themes. Hopefully that’ll help someone to build more accessible themes, and we can share ideas of how to make the web better place for all of us.</p>\n<p>I’ve learned most of my knowledge from <a href=\"https://www.joedolson.com/\">Joe Dolson</a> and <a href=\"http://davidakennedy.com/\">David A. Kennedy</a>. They both contribute to the <a href=\"http://make.wordpress.org/accessibility/\">WordPress Accessibility Team</a> and have been kindly answering my questions on Github and Twitter. Our goal is to understand the basics of accessibility and how we can prepare our themes to receive the official <a href=\"https://wordpress.org/themes/tags/accessibility-ready/\">accessibility-ready</a> tag.</p>\n<h3>What is accessibility and why should we care?</h3>\n<p>Web <strong>accessibility means that people can browse the web</strong>, with or without disabilities, using any device they might have. In this article, I mostly concentrate on people with disabilities including visual, auditory, physical, speech, cognitive, and neurological disabilities. We can improve our sites and help such people use, navigate, and interact with them.</p>\n<p><a href=\"https://twitter.com/viljamis\">Viljami Salminen</a> talks about different input methods and performance in his article called <a href=\"http://viljamis.com/blog/2015/the-many-faces-of-the-web/\">The Many Faces of the Web</a>.</p>\n<blockquote><p>On a bigger scale, I mean things like making our websites accessible to everyone. Making them work with different input methods like touch, mouse, keyboard or voice. Making them load and perform fast. Providing everyone access to this vast network of connected things. And if we don’t strive for all of this, what’s the point of working on the web?</p></blockquote>\n<p>If nothing else, you should care about the <a href=\"https://www.youtube.com/watch?v=cpbbuaIA3Ds\">money</a>! <a href=\"https://twitter.com/brad_frost\">Brad Frost</a> nails it in his article about <a href=\"http://bradfrost.com/blog/post/accessibility-and-low-powered-devices/\">accessibility and low-powered devices</a>.</p>\n<blockquote><p>“Do you want to reach more customers?” the answer is always yes. When I ask them “Do you want your experience to load blazingly fast?” the answer is always yes. Both accessibility and performance are invisible aspects of an experience and should be considered even if they aren’t explicit goals of the project.</p>\n<p>There it is. Make efforts to make Web experiences accessible and performant; make money.</p></blockquote>\n<p>Let’s start with the <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/\">required</a> parts of the puzzle.</p>\n<h3>.screen-reader-text for hiding text</h3>\n<p>Using <code>.screen-reader-text</code> is actually not required but I’ll use it in several examples. WordPress uses the CSS class <code>.screen-reader-text</code> to handle any HTML output that is <a href=\"https://make.wordpress.org/accessibility/2015/02/09/hiding-text-for-screen-readers-with-wordpress-core/\">targeted at screen readers</a>. The purpose of screen-reader targeted text is to provide <strong>additional context</strong> for links, document structure, or form fields. This is helpful for whoever is using screen readers when browsing the web.</p>\n<p>Since WordPress 4.2, the <code>.screen-reader-text</code> class is used in front-end code also, not just back-end. For example <a href=\"https://codex.wordpress.org/Function_Reference/comments_popup_link\">comments_popup_link()</a> can output something like this by default:</p>\n<p><code>4 Comments<span class=\"screen-reader-text\"> on My article about accessibility</span></code></p>\n<p>Did you notice the <code>.screen-reader-text</code> class? The text <em>on My article about accessibility</em> is supposed to be hidden on screen but readable for screen readers. This provides additional information about what <em>4 Comments</em> stands for and which article we’re talking about.</p>\n<p>If you don’t have .screen-reader-text in your theme’s style.css that’s okay too. Then all users in this scenario would see the entire text (<em>4 Comments on My article about accessibility</em>), but nothing is broken. Naturally there is a plugin for <a href=\"https://wordpress.org/plugins/screen-reader-text-theme-support/\">adding support for .screen-reader-text</a> as well.</p>\n<h4>Add .screen-reader-text in your theme’s style.css</h4>\n<p>The following snippet is the recommended method for adding a screen-reader class in your theme’s styles at the moment. You can also follow <a href=\"https://github.com/Automattic/_s\">the Underscores theme</a> for this and other recommended methods.</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>You can style the <code>:focus</code> styles differently but this a solid start.</p>\n<h3>Headings and headings hierarchy structure</h3>\n<p>Headings are important way to navigate your site. They are the first step most screen reader users take when they start to navigate your site. And regular users can also browse the a website more easily when there are structured headings.</p>\n<p>But headings and heading hierarchy structure can be challenging, I certainly have had <a href=\"https://github.com/samikeijonen/kuorinka/issues/18\">issues with headings</a> in my personal experience. Should we use just one H1 element on each page? Can there be more than one H1? What about other headings: H2, H3 and so on?</p>\n<p>With the acceptance of HTML5 standards, there can be more than one H1 on each page, but it’s important to be consistent with your headings hierarchy. Here is example of my blog page headings structure:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>And again for single posts:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>The problem is that the headings hierarchy breaks if a user enters H1 in the article text or mixes headings in the wrong way. Plugins that output markup may also mess with the hierarchy.</p>\n<p>Read more detail info about <a href=\"https://www.joedolson.com/2014/11/headings-hierarchy-problem/\">heading hierarchy structure</a> and be consistent in your theme. And as a writer, think about the hierarchy structure of your theme and try not to break it. <img src=\"https://poststatus.com/wp-includes/images/smilies/simple-smile.png\" alt=\":)\" class=\"wp-smiley\" /></p>\n<h3>ARIA landmark roles</h3>\n<p>Aria landmark roles programmatically identify sections of a page. This helps navigate to various sections of a page for assistive technology users.</p>\n<p>These are the most common roles:</p>\n<ul>\n<li>header: <code>role=\"banner\"</code></li>\n<li>main content: <code>role=\"main\"</code></li>\n<li>sidebars: <code>role=\"complementary\"</code></li>\n<li>footer: <code>role=\"contentinfo\"</code></li>\n<li>search form: <code>role=\"search\"</code></li>\n<li>navigation menus: <code>role=\"navigation\"</code></li>\n</ul>\n<p>If the same role appears more than once on a page, you should provide an ARIA label for that role:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>Try not to use too many ARIA landmark roles. Otherwise it wouldn’t be helpful for screen reader users to navigate your site. Ten to fifteen roles is probably a good rule of thumb as a maximum limit.</p>\n<p>Here is a simple example for how your HTML structure could look with ARIA roles:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>An the screenshot from <a href=\"http://accessibility.oit.ncsu.edu/tools/aria-landmark-inspector/\">Aria landmark inspector</a> website:</p>\n<p><a href=\"https://poststatus.com/wp-content/uploads/2015/05/aria-landmark.png\"><img class=\"aligncenter size-large wp-image-12538\" src=\"https://poststatus.com/wp-content/uploads/2015/05/aria-landmark-752x526.png\" alt=\"Aria Landmarks\" width=\"752\" height=\"526\" /></a></p>\n<h3>Link text</h3>\n<p>Imagine your blog archive using ten <em>Read More…</em> links. That’s not very helpful for screen reader users browsing trough your links. In general, avoid repetitive non-contextual text strings.</p>\n<h4>Using the_content() function</h4>\n<p>By default <a href=\"https://codex.wordpress.org/Function_Reference/the_content\"><code>the_content()</code></a> function outputs <em>more&hellip;</em> text when using <!–more–> in post content. Fortunately, you can change this output using the function’s first parameter: <code>$more_link_text</code>. It’s recommended to use the post title for additional context:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>This will output <code>Read more <span class=\"screen-reader-text\">My Article Name</span></code>, not just the repetitive <em>Read More</em>. Note that we’re using class <code>screen-reader-text</code> again, which means that the post title can be hidden (if theme supports it), but screen readers will still read it.</p>\n<h4>Using the_excerpt() function</h4>\n<p>By default <a href=\"https://codex.wordpress.org/Function_Reference/the_excerpt\">the_excerpt()</a> function adds <code>[...]</code> to the end of the excerpt. We can replace with something similar to what we used in <code>the_content</code> example, using the <code>excerpt_more</code> filter.</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>That’s more like it. You can change the HTML structure, but you get the general idea how we added post title after the default text.</p>\n<h4>Descriptive link text</h4>\n<p>Try to be descriptive when using link text, and bare urls should not be used as link anchor text.</p>\n<p>Bad example:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>Good example:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<h3>Controls</h3>\n<p>Let links be links, buttons be buttons, divs be divs, spans be spans to ensure native keyboard accessibility and interaction with a screen reader. Article <a href=\"http://www.karlgroves.com/2013/05/14/links-are-not-buttons-neither-are-divs-and-spans/\">links are not buttons. Neither are divs and spans</a>.</p>\n<p>All controls must also have text to indicate the nature of the control, but it too can be hidden inside the <code>.screen-reader-class</code>.</p>\n<p>For example, when toggling a menu, the control should be a button, not a link, div or span.</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>You can always style the button using CSS. Many theme developers add a font icon indicating the menu, like the commonly named “hamburger menu.” This is a bad way of adding the font icon:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>Font icons alone don’t have any meaning for screen readers. In general <a href=\"http://thomasbyttebier.be/blog/the-best-icon-is-a-text-label\">the best icon is a text label</a>.</p>\n<p>Instead you could do this:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>Then add the icon font using a pseudo element, such as <code>#nav-toggle::before</code>.</p>\n<p>You can also use the icon font and <code>.screen-reader-text</code> together.</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>Sighted users will see only the hamburger icon, and screen reader users will now understand that this control is for the menu.</p>\n<h3>Keyboard navigation</h3>\n<p><a href=\"http://themeshaper.com/\">On ThemeShaper</a>, there is fantastic article about <a href=\"http://themeshaper.com/2015/03/12/keyboard-accessibility/\">keyboard accessibility</a>. In short, <strong>users must be able to navigate your site using only a keyboard</strong>. For example people who are blind or have motor disabilities use the keyboard almost exclusively.</p>\n<p>I’d like to challenge you to put your mouse away for a while and test your own website. Can you navigate through links, dropdown menu and form controls using the tab and shift + tab keys? Enter can be used to activate links, buttons, or other interactive elements.</p>\n<h4>:focus is important</h4>\n<p>Note that only links, buttons and form fields can be focused on by default. That’s why I keep noting that we should let links be links and buttons be buttons. Don’t try to replace them with divs or spans. Users should see and elements should have visual effects to notate their state when they navigate your site using a keyboard. This is where :focus steps in.</p>\n<p>This is a poor implementation:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>That disables outline style for all links! This is much better:</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>Now users have a visual effect — a dotted line around the link — on links when focused. You can style the thin dotted to something else, but do not disable it. Remember that you can of course style buttons using CSS also, for example to change the background on :focus.</p>\n<p>Make sure that colors are not your only method of conveying important information. That will help color blind people to see visual effects.</p>\n<h4>Dropdown menus and keyboard accessibility</h4>\n<p>Have you tried accessing your submenus in a dropdown menu using only keyboard? If you can’t successfully do so, let’s see what we can do about that, starting with the current <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/#keyboard-navigation\">guidelines for navigation menus</a>.</p>\n<ul>\n<li>Fails: Dropdown navigation menus are hidden using <code>display:none;</code> and brought into view on <code>:hover</code></li>\n<li>Passes: Dropdown navigation menus are hidden using <code>position: absolute;</code> and brought into view on <code>:hover </code>and <code>:focus</code>, and are navigable using the <code>tab</code> key</li>\n<li>Better: Dropdown navigation menus are hidden using position: absolute; and brought into view on <code>:hover</code>, <code>:focus</code>, and are navigable using either the <code>tab</code> key or by using the keyboard arrow keys.</li>\n</ul>\n<p>Once again, the <a href=\"http://underscores.me/\">Underscores</a> theme has a good example of dropdown menu markup which is navigable using the <code>tab</code> key. I’ll hope there will be support for arrow keys in near future. I personally use <a href=\"http://responsive-nav.com/\">Responsive Nav</a> as a starting point for accessible, responsive menus.</p>\n<p>We need some Javascript magic for enabling keyboard support for dropdown menus. For reference, checkout this <a href=\"https://github.com/Automattic/_s/blob/master/js/navigation.js\">navigation.js file</a>. This is the basic idea:</p>\n<ul>\n<li>Each time a menu link is focused or blurred, set or remove the <code>.focus</code> class on the menu link. This is done with the <code>toggleFocus()</code> function.</li>\n<li>Add class <code>.focus</code> your stylesheet, where you have <code>:hover</code> styles for the menu.</li>\n<li>You can now navigate your menu and submenus using the <code>tab</code> and <code>Shift + tab</code> key!</li>\n</ul>\n<p>There are some other aspects we should consider for more accessible dropdown menus:</p>\n<ul>\n<li>Use ARIA markup like aria-haspopup=”true” in menu items that have submenus.</li>\n<li>What about touch devices? Have you tried accessing submenus using iPad when menu is in “Desktop” mode? I believe touch support is also coming to the Underscores theme.</li>\n</ul>\n<p>There could be another in-depth article for creating accessible, responsive menus so I’ll move on.</p>\n<h3>Contrasts</h3>\n<p>Color contrast is something we might have to compromise on in our design. We need to provide enough contrast between text and background colors so that it can be read by people with moderately low vision. There are many beautiful themes out there that use for example light grey colors but might not pass the <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/#contrasts\">guideline for color contrast</a>.</p>\n<blockquote><p>Theme authors MUST ensure that all background/foreground color contrasts for plain content text are within the level AA contrast ratio (4.5:1) specified in the Web Content Accessibility Guidelines (WCAG) 2.0 for color luminosity.</p></blockquote>\n<p>I test color contrast using Joe Dolson’s <a href=\"https://www.joedolson.com/tools/color-contrast.php\">tester tool</a>. Accessibility doesn’t make your site ugly or boring, that’s always you. <img src=\"https://poststatus.com/wp-includes/images/smilies/simple-smile.png\" alt=\":)\" class=\"wp-smiley\" /> But it does set some preconditions we need to follow. Aaron Jorbin also has a great <a href=\"https://wordpress.tv/2014/07/01/aaron-jorbin-color-theory-for-web-developers/\">talk on color theory and accessibility</a> from WordCamp Chicago 2014.</p>\n<h3>Skip links</h3>\n<p>A website’s primary content is usually not at the top of the page. There can be dropdown menus, header sidebars, search forms or other information before the main content. For keyboard and screen reader users it’s annoying to navigate this extra content over and over again before arriving at the main content. That’s why themes must have skip links, which help to navigate directly to content. The skip link is usually added in the header.php file after the body or first div tag.</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>Make sure the link is one of the first items on the page and visible when keyboard focus moves to the link. We already did that when we added .screen-reader-text class in our stylesheet.</p>\n<p>Also move focus to the main content area of the page when skip link is activated. I believe there is still a bug in WebKit-based browsers that prevents focus being moved, but once again, <a href=\"https://github.com/Automattic/_s/blob/master/js/skip-link-focus-fix.js\">the Underscores theme has you covered</a> offering a good example.</p>\n<h3>Forms</h3>\n<p>WordPress default comment and search forms are accessible-ready, but be careful if you tweak them. I have made mistakes doing so in the past.</p>\n<p>Hiding the search button using <code>.search-submit { display: none; }</code>. <strong>Do not use this CSS if you want the content to be read by a screen reader.</strong></p>\n<p>A better option is the filter <a href=\"https://codex.wordpress.org/Function_Reference/get_search_form\">get_search_form</a>, and add our now familiar <code>.screen-reader-text</code> class to the search form’s submit button.</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>If you use a custom <code>searchform.php</code> in your theme, remember to keep appropriate field labels and do not use only a font icon as the submit button.</p>\n<a href=\"https://gist.github.com/bee3e380c614542776de\" target=\"_blank\"><em>View this code snippet on GitHub.</em></a>\n<p>In short from <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/#forms\">the guidelines</a>:</p>\n<blockquote>\n<ul>\n<li>Use form controls that have explicitly associated <code><label></code> elements.</li>\n<li>Create feedback mechanisms (such as via AJAX) that expose responses to screen readers. Look at techniques with ARIA for further information.</li>\n</ul>\n</blockquote>\n<p>Also keep an eye on a <a href=\"https://github.com/wpaccessibility/a11ythemepatterns\">collection of patterns</a> for creating accessible-ready WordPress themes. Like <a href=\"https://github.com/wpaccessibility/a11ythemepatterns/tree/master/comment-form-with-js-aria\">an accessible comment</a> form powered by JavaScript and ARIA.</p>\n<h3>Images and alternative text</h3>\n<p>As a user I’ve failed to add alternative (alt attribute) text to my content images, at least good ones. I promise to improve! You see, blind people of course can’t see your content images. Computers and screen readers can’t determine what the image presents. That’s why there is alt attribute and <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/#images\">guidelines for images</a>.</p>\n<ul>\n<li>If there are images in template markup, like features images, they must utilize the alt attribute. Or provide the end user to enter alt text.</li>\n<li>All decorative images should be added via CSS versus inline. Examples of decorative images are lines for style or background images.</li>\n<li>Note that sometimes an empty alt=”” is <a href=\"http://webaim.org/techniques/alttext/\">the best choice</a>.</li>\n</ul>\n<h3>Media</h3>\n<p>Sliders and carousels must not auto start by default. The same goes for videos and audios. This is mostly plugin territory, but it’s good to mention, especially as the broader web is more and more often auto-playing this content.</p>\n<h3>Not allowed</h3>\n<p>There are couple of things that are <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/#not-allowed\">not allowed</a>.</p>\n<blockquote>\n<ul>\n<li>Any positive tabindex attribute. Negative or zero value tabindex is allowed in specific circumstances (assessed on a case-by-case basis).</li>\n<li>The inclusion of the accesskey attribute.</li>\n<li>Spawning new windows or tabs without warning the user.</li>\n</ul>\n</blockquote>\n<h3>Build accessibility-ready themes</h3>\n<p>We have gone through the <a href=\"https://make.wordpress.org/themes/handbook/review/accessibility/required/\">required guidelines</a> for getting the official <a href=\"https://wordpress.org/themes/tags/accessibility-ready/\">accessibility-ready</a> tag in our themes when we submit them to the WordPress theme repository. It wasn’t that bad was it!</p>\n<p>I challenge you to build an accessibility-ready theme when you start your next project. Or look into your current site and start with small steps, like adding better support for keyboard users. I hope this article will help you do that. Let me know in the comments if there are mistakes in the article, you have questions, or you have ideas for part two.</p>\n<p>It doesn’t matter are you building themes for customers, commercial themes for marketplaces or free themes for WordPress.org. We can all improve our skills and create more accessible websites.</p>\n<hr />\n<p><em>About the author: <a href=\"https://poststatus.com/profiles/sami-keijonen/\">Sami Keijonen</a> is a teacher who likes to learn about the web, WordPress, and life. He runs <a href=\"https://foxland.fi/\">Foxland Themes</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 May 2015 18:59:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sami Keijonen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: CampPress: A 2-3 Day Social Experience for Geeks and Creatives\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43466\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://wptavern.com/camppress-a-2-3-day-social-experience-for-geeks-and-creatives\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2591:\"<p>I attend WordCamps on a regular basis and have often joked with attendees as well as organizers that there should be a WordCamp where people camp out. GoDaddy’s WordPress evangelist, Mendel Kurland, is taking it upon himself to turn the joke into reality. He’s in the preliminary stage of <a href=\"https://mendel.me/articles/news/the-hunt-for-a-camppress-venue-is-officially-on/\">planning CampPress</a>.</p>\n<p>CampPress is a 2-3 day social experience for geeks and creatives to disconnect from technology to focus on community and creativity. The event is an adult geek summer camp infused with <a href=\"http://burningman.org/culture/philosophical-center/10-principles/\" target=\"_blank\">burning man values</a> and is not affiliated with GoDaddy. I asked Kurland what his inspiration is to organize such an event.</p>\n<p>“As creative professionals, sometimes we forget to disconnect. CampPress is inspired by the simpler lives we lived as kids, where social interactions and creativity were the hallmarks of great growth experiences. Traditional conferences are incredible at transferring knowledge and skills and creating personal connections. CampPress is about deepening connections between participants and strengthening bonds that encourage collaboration within the community.”</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/CabinCampCampbell.jpg\"><img class=\"size-full wp-image-43469\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/CabinCampCampbell.jpg?resize=1024%2C683\" alt=\"Camp Campbell is a Possible Venue\" /></a>Camp Campbell is a Possible Venue\n<p>Some items will be provided, including, food staples for breakfast, lunch, and dinner along with a preparation area, space to camp, a cabin or RV hookup depending on the final location, and ice for beer. CampPress will also have a Pit of Creativity. Information on what the pit of creativity is for will be published on the official CampPress site at a later date.</p>\n<p>If you’re interested in attending, volunteering, or simply want to stay updated on the event’s progress, <a href=\"http://eepurl.com/blHmE9\">sign up</a> to the updates list. Based on initial reactions in the comments, people are excited to see such an event take place.</p>\n<p>I would love to camp out for a few days with members of the WordPress community and disconnect from technology at the same time. Let us know in the comments if you’re interested in attending such an event. Also, give us your suggestions for venues you think would be a good fit for CampPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 May 2015 16:59:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: TGM Plugin Activation Library Publishes Roadmap for Version 3.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43432\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://wptavern.com/tgm-plugin-activation-library-publishes-roadmap-for-version-3-0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5704:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/domino.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/domino.jpg?resize=1020%2C484\" alt=\"photo credit: domino - (license)\" class=\"size-full wp-image-43493\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/31059504@N08/6803420982\">domino</a> – <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>This week contributors on the <a href=\"http://tgmpluginactivation.com/\" target=\"_blank\">TGM Plugin Activation</a> (TGMPA) library published a roadmap for the future of the project. TGMPA is widely used by WordPress developers to require and recommend plugins for themes (and other plugins). The library is recommended by Themeforest, CodeCanyon, and the WordPress.org Theme Review Team as an alternative to bundling everything in one theme/plugin.</p>\n<p><a href=\"https://gamajo.com/\" target=\"_blank\">Gary Jones</a> is leading the upcoming 2.5 release, expected in May, with help from fellow lead developer <a href=\"http://twitter.com/jrf_nl\" target=\"_blank\">Juliette Reinders Folmer</a>, to whom he credits most of the recent activity on the project. This release will add support for installing from a GitHub repo source, separate menu items out from under the Appearance menu, add Travis CI support, improve accessibility, and fix a number of bugs.</p>\n<h3>The Future of the TGM Plugin Activation Library</h3>\n<p>The project’s contributors are also planning ahead for this summer’s 3.0 release, which Folmer will lead. This release will be a major turning point for TGMPA and will essentially constitute a complete rewrite.</p>\n<p>The <a href=\"https://github.com/TGMPA/TGM-Plugin-Activation/issues/394\" target=\"_blank\">roadmap for 3.0</a> includes several ambitious items that will likely affect the way developers integrate TGMPA into their projects:</p>\n<ul>\n<li>Multisite compatibility</li>\n<li>Fix conflicting UI messages for usage in themes / plugins</li>\n<li>Improved UI by having the admin page always in the same location</li>\n<li>Updatability of TGMPA independently of the plugin/theme which ships it</li>\n<li>Show dependencies more clearly</li>\n</ul>\n<p>This plan includes an architectural change that would allow for the integration of the <a href=\"https://wordpress.org/plugins/plugin-dependencies/\" target=\"_blank\">Plugin Dependencies</a> (PD) plugin to provide UI for dependency management and cascading deactivation if dependencies are not met.</p>\n<p>According to Jones, the eventual goal is to turn TGMPA into a plugin that can be added to the WordPress.org repository for easier updating:</p>\n<blockquote><p>Some of the logic in the rewrite will be handled by the Plugin Dependencies plugin, and TGMPA itself will be turned into a plugin and added to the WPORG repo so that it can be updated automatically. The TGMPA library will then consist of a bootstrap file, the TGMPA plugin (as a zip) and the PD plugin (as a zip). The bootstrap file will then check if the TGMPA + PD plugins are installed, and if not, install them from the embedded zips.</p></blockquote>\n<p>TGMPA contributors are currently in discussion with representatives from WordPress.org about the possibility of allowing their planned plugin in the official directory. As the plugin has not yet been produced and submitted, it’s still too early to know the outcome of the decision.</p>\n<p>“If we can’t go onto the WordPress.org repo, then we’ll be looking at simply hosting the plugin version on GitHub, and use some (if needed) of the GitHub Updater plugin (or similar) code within the bootstrap file to pull the latest tag from GitHub instead,” Jones said.</p>\n<p>One of the main focuses for version 3.0 is to allow different plugins and themes to use TGMPA without the concern of compatibilities resulting from plugin A including 2.4.1, for example, and plugin B including 2.5.0.</p>\n<p>“The v3 setup should also be able to handle instances of v2 gracefully, and the v2 branch may have a 2.6 release to make the logic for that easier,” Jones said.</p>\n<p>After version 3.0 is released, the project will contain multiple repositories – one for the standard plugin, and one that uses Grunt to pull in files from the plugin repository and zips them up next to the bootstrap file. In anticipation of these changes, contributors have moved the current repository into a new GitHub organization at: <a href=\"https://github.com/TGMPA\" target=\"_blank\">https://github.com/TGMPA</a>.</p>\n<p>As TGMPA does not currently track its usage, it’s difficult to nail down exact numbers for how many theme/plugin developers these changes will impact.</p>\n<p>“I have no idea what sort of numbers of products this entails,” Jones said. “But there is a non-trivial amount of usage that requires us to step up the game in order to provide the exceptional functionality other developers can rely on.”</p>\n<p>TGMPA is a critical tool that many developers in the WordPress ecosystem depend on for managing plugin requirements and recommendations. As theme development continues to move in the direction of separating theme and plugin functionality, TGMPA will play an important role in serving developers who want to structure their projects according to WordPress best practices.</p>\n<p>Getting the new TGMPA plugin included in the WordPress.org plugin directory would be a big win for the project, as it would allow users to update more easily in the future. You can <a href=\"https://twitter.com/tgmpa\" target=\"_blank\">follow TGMPA on Twitter</a> for all the latest news as the team moves into development for version 3.0.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 May 2015 16:35:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WPTavern: BuddyPress 2.3 Beta 1 is Ready for Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43440\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wptavern.com/buddypress-2-3-beta-1-is-ready-for-testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2493:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/03/bp-featured.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/03/bp-featured.png?resize=800%2C390\" alt=\"bp-featured\" class=\"aligncenter size-full wp-image-18726\" /></a></p>\n<p>BuddyPress <a href=\"https://buddypress.org/2015/05/buddypress-2-3-0-beta-1/\" target=\"_blank\">2.3 beta 1</a> is now available. Project lead John James Jacoby encouraged site administrators and BP plugin/theme developers to jump in and test the new features.</p>\n<p>One of the highlights in the upcoming release is the new <a href=\"http://wptavern.com/buddypress-2-3-will-improve-avatar-uploads-with-the-new-bp-attachments-api\" target=\"_blank\">Attachments API</a>, which makes it possible for developers to create components that manage uploads. You can see this API in action alongside the newly improved <a href=\"https://buddypress.trac.wordpress.org/ticket/6290/\" target=\"_blank\">avatar upload UI</a>, revamped to include drag-and-drop upload and support for device cameras.</p>\n<p>This release will also ship with <a href=\"http://wptavern.com/buddypress-2-3-will-introduce-companion-stylesheets-for-wordpress-default-themes\" target=\"_blank\">companion stylesheets for WordPress’ latest default themes</a>, Twenty Fifteen and Twenty Fourteen. These stylesheets provide a broad sweep on BP elements to harmonize the appearance of the plugin with the default themes and could use more testing and feedback from the community.</p>\n<p>Jacoby noted a few other important items to test in 2.3 beta 1, including:</p>\n<ul>\n<li><a href=\"https://buddypress.trac.wordpress.org/ticket/6177/\" target=\"_blank\">Blog Post Activity</a> generates better looking excerpts when posts contain images or other embedded media content</li>\n<li><a href=\"https://buddypress.trac.wordpress.org/ticket/6331/\" target=\"_blank\">Star Private Messages</a> allows for improved marking of important inbox messages</li>\n<li>The Member Types API now supports <a href=\"https://buddypress.trac.wordpress.org/ticket/6286\" target=\"_blank\">member-type-specific directories</a></li>\n<li>Continued object and query cache enhancements</li>\n</ul>\n<p>BuddyPress developers and community managers have plenty of time to test their themes and plugins against the upcoming 2.3 release. A release candidate is scheduled for the week of May 12th. The official release is expected to drop May 26th, shortly before the BuddyCamp that will take place at WordCamp Miami 2015.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 May 2015 15:31:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: WPWeekly Episode 191 – Proven Guilty by a Washing Machine\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://wptavern.com?p=43443&preview_id=43443\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wptavern.com/wpweekly-episode-191-proven-guilty-by-a-washing-machine\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2901:\"<p>On this episode of WordPress Weekly, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I discuss the news of the week. We inform you of the recent security vulnerability discovered in Jetpack and the Twenty Fifteen theme. We also discuss a new crowdfunding campaign to create a server manager built on top of WordPress called HostPress.</p>\n<p>I shared a personal story of a bad habit I’ve developed in the last two years that’s decreased my reading comprehension. Last but not least, Marcus tells a story from a conference he recently attended where the technology inside of a washing machine contained the evidence needed to convict a murderer.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"http://wptavern.com/xss-vulnerability-in-jetpack-and-the-twenty-fifteen-default-theme-affects-millions-of-wordpress-users\">XSS Vulnerability in Jetpack and the Twenty Fifteen Default Theme Affects Millions of WordPress Users</a><br />\n<a href=\"http://wptavern.com/wordpress-com-suspends-theme-submissions-from-new-sellers\">WordPress.com Suspends Theme Submissions from New Sellers</a><br />\n<a href=\"http://wptavern.com/dan-griffiths-launches-175k-crowdfunding-campaign-to-build-hostpress\">Dan Griffiths Launches $175K Crowdfunding Campaign to Build HostPress</a><br />\n<a href=\"http://wptavern.com/new-plugin-reorders-the-wordpress-admin-menu-using-drag-and-drop\">New Plugin Reorders the WordPress Admin Menu Using Drag-and-Drop</a><br />\n<a href=\"https://jeffc.wordpress.com/2015/05/05/why-am-i-in-a-hurry-to-do-everything/\">Why am I in a Hurry to do Everything?</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/hamburger-menu/\">Hamburger Menu</a> is a side menu that you can add to your site that will be viewed on mobile devices or you can use it to completely replace the main menu on a site.</p>\n<p><a href=\"https://wordpress.org/plugins/rest-console-embed/\">REST Console embed</a> provides a shortcode to embed a REST API console into a page or post. It’s based on Automattic’s WordPress.com console.</p>\n<p><a href=\"https://wordpress.org/plugins/plugin-auditor/\">Plugin Auditor</a> records details of who installed and activated each plugin on your website and why.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, May 6th 9:30 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #191:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 May 2015 14:45:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: Decades are Short\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45029\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://ma.tt/2015/05/decades-are-short/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:352:\"<p>Sam Altman of YCombinator wrote a great post on the occasion of his thirtieth birthday, <a href=\"http://blog.samaltman.com/the-days-are-long-but-the-decades-are-short\">The days are long but the decades are short</a>. There’s a lot of subtlety and nuance in each point, so even if you’ve read it already it’s worth another pass.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 May 2015 04:05:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"WPTavern: XSS Vulnerability in Jetpack and the Twenty Fifteen Default Theme Affects Millions of WordPress Users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43415\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"http://wptavern.com/xss-vulnerability-in-jetpack-and-the-twenty-fifteen-default-theme-affects-millions-of-wordpress-users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3045:\"<p><a href=\"https://wordpress.org/plugins/jetpack/changelog/\">Jetpack</a> and the <a href=\"https://wordpress.org/themes/twentyfifteen/\">Twenty Fifteen</a> default theme have been updated after a DOM-based Cross-Site Scripting (XSS) vulnerability was discovered. <a href=\"https://blog.sucuri.net/2015/05/jetpack-and-twentyfifteen-vulnerable-to-dom-based-xss-millions-of-wordpress-websites-affected-millions-of-wordpress-websites-affected.html\">According to Sucuri</a>, any plugin or theme that uses <a href=\"http://genericons.com/\">Genericons</a> is vulnerable due to an insecure file included within the package.</p>\n<p>Genericons ships with a file called example.html which is vulnerable to attack from the Document Object Model level or DOM for short. The <a href=\"https://www.owasp.org/index.php/Main_Page\">Open Web Application Security Project</a> defines a DOM based attack as:</p>\n<blockquote><p>DOM Based <a class=\"mw-redirect\" title=\"XSS\" href=\"https://www.owasp.org/index.php/XSS\"> XSS</a> (or as it is called in some texts, ‘type-0 XSS’) is an XSS attack wherein the attack payload is executed as a result of modifying the DOM ‘environment’ in the victim’s browser used by the original client side script, so that the client side code runs in an ‘unexpected’ manner. That is, the page itself (the HTTP response that is) does not change, but the client side code contained in the page executes differently due to the malicious modifications that have occurred in the DOM environment.</p></blockquote>\n<p>The payload for these types of attacks is executed directly in the browser. Even Sucuri’s website firewall is unable to block the attack since it never gets the chance to see it. The company however, has virtually patched the vulnerability.</p>\n<p>Sucuri worked with a number of hosting providers to identify and remove the example.html file from their servers. If you use the following webhosts, you should already be patched as of a week ago.</p>\n<ul>\n<li>GoDaddy</li>\n<li>HostPapa</li>\n<li>DreamHost</li>\n<li>ClickHost</li>\n<li>InMotion</li>\n<li>WPEngine</li>\n<li>Pagely</li>\n<li>Pressable</li>\n<li>Websynthesis</li>\n<li>Site5</li>\n<li>SiteGround</li>\n</ul>\n<p>According to Sucuri, the example.html file was used for debugging and testing purposes but was mistakenly left inside the directory after the project was packaged for production environments. This simple oversight has placed millions of sites at risk as Twenty Fifteen is a default theme that ships with WordPress.</p>\n<p>You should update the Twenty Fifteen theme and Jetpack regardless of which webhost you’re using. You should also remain vigilant and keep an eye out for additional plugin and theme updates. If possible, manually remove example.html from within the Genericons directory.</p>\n<p><em><strong>Update</strong></em></p>\n<p>WordPress 4.2.2 <a href=\"https://wordpress.org/news/2015/05/wordpress-4-2-2/\">is available</a> as a security update that addresses the Genericons issue and contains bug fixes.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 May 2015 18:56:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WPTavern: Andrew Nacin on Challenging WordPress Assumptions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=42281\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wptavern.com/andrew-nacin-on-challenging-wordpress-assumptions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1162:\"<p>WordPress lead developer <a href=\"http://nacin.com/\" target=\"_blank\">Andrew Nacin</a> spoke at the <a href=\"http://world2014.phparch.com/\" target=\"_blank\">php[world] 2014</a> conference on “Challenging Your WordPress Assumptions from 2009.” The video was recently published on YouTube and provides an excellent overview of the major ways WordPress has changed over the past six years.</p>\n<p>Nacin explores common assumptions, such as “WordPress is insecure,” “WordPress doesn’t scale,” and “WordPress is not OOP,” among others. Some of these assumptions are false, some are true, some used to be true and others are partially true. If you’re a PHP developer who is new to WordPress or curious about how it’s changed over the years, this presentation will give you a quick 30 minute overview.</p>\n<p>Check out the video embedded below to learn more about WordPress’ philosophy for building user-centered software, its commitment to maintaining backwards compatibility, and how major publishers and companies are using it in innovative ways.</p>\n<p><span class=\"embed-youtube\"></span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 May 2015 18:15:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WPTavern: Inside BuddyBoss with Michael Eisenwasser\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43380\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wptavern.com/inside-buddyboss-with-michael-eisenwasser\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8724:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/buddyboss.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/buddyboss.jpg?resize=1025%2C453\" alt=\"buddyboss\" class=\"aligncenter size-full wp-image-43387\" /></a></p>\n<p>Over the past couple years, <a href=\"http://www.buddyboss.com/\" target=\"_blank\">BuddyBoss</a> has emerged as a leader in the <a href=\"https://buddypress.org/\" target=\"_blank\">BuddyPress</a> products marketplace. Founder Michael Eisenwasser launched the business in 2010 after discovering BuddyPress while building an international job site to help online workers find employment.</p>\n<p>“BuddyPress blew me away,” Eisenwasser said. “It allowed for a sophisticated and fully customizable membership site while still benefiting from the WordPress ecosystem. We launched our online community almost overnight, and a year later 30,000 people were logging in every day and hiring each other.”</p>\n<p>BuddyBoss entered the BuddyPress ecosystem while it was still in its infancy. Eisenwasser saw an opportunity to help other entrepreneurs launch communities by creating products that solved common problems. In addition to the products, his team also offers development for custom requests.</p>\n<p>“I’ve been focusing on BuddyPress for so long now that I sometimes forget you can run WordPress without it,” he said.</p>\n<h3>Growing a Business in a Small Niche</h3>\n<p>As BuddyBoss products are targeted towards a small niche market, hiring has posed a continual challenge for Eisenwasser.</p>\n<p>“A company is only as good as its employees, and our biggest challenge has always been finding the right people to hire,” he said. “We need talented people who can move the company forward, knowing that we’re in a niche market and skilled developers who understand BuddyPress are harder to find.</p>\n<p>“It’s taken us many years to put together our current staff, and even now I still spend a considerable amount of time on hiring and training.”</p>\n<p>The BudddyBoss team is now up to 14 people who collaborate on design, development, support, and marketing. They currently serve several thousand customers, thanks to tremendous growth over the past couple of years.</p>\n<p>“Our revenue is 12.5 times larger today than it was three years ago, and most of that growth has been in the past year,” Eisenwasser said.</p>\n<p>“In the past 6 months, product revenue has grown 5 times larger due to improved product offerings, word of mouth from our customers, and better marketing. When I speak of products, I am combining themes and extensions together.</p>\n<p>“Currently we have several thousand paying customers, with an average checkout order of $130. Many customers purchase two or three products in one order, as we design our themes and plugins to work together for a unified experience,” he said.</p>\n<p>Despite the success of BuddyBoss’ themes and plugins, the company’s time is still divided 50/50 between product support and custom client work.</p>\n<p>“Custom development generates an important part of our revenue, and our product revenue is quickly catching up,” Eisenwasser said.</p>\n<p>“We actually have two teams, each equipped for development, support and maintenance. I personally manage our product team, while my business partner Tom Chedd manages our client team.</p>\n<p>“Many of our clients start as customers, and so when we develop products we’re always thinking about how our clients might use them. I think this has contributed to better products, because we actually use what we build,” he said.</p>\n<h3>Focused, Intentional Product Growth</h3>\n<p>In the early days of BuddyBoss, Eisenwasser took a job managing SongLyrics.com. Although he learned some valuable skills from the position, theme development at BuddyBoss was slow for the first few years.</p>\n<p>As product revenue has grown, BuddyBoss is looking to invest in adding more offerings to the store.</p>\n<p>“We’ve been working hard on assembling a team of talented developers who can help us build more products, however we’d rather spend a couple of months working on a theme than pushing out a bunch of themes fast,” he said.</p>\n<p>Instead of pumping up the BuddyBoss store with a proliferation of products, Eisenwasser and his team have intentionally kept the number of offerings on the smaller side. For years, their primary product was the original <a href=\"http://www.buddyboss.com/product/buddyboss-theme/\" target=\"_blank\">BuddyBoss</a> theme before adding the new <a href=\"http://www.buddyboss.com/product/boss-theme/\" target=\"_blank\">Boss</a> theme this year. Branching out into BuddyPress <a href=\"http://www.buddyboss.com/plugins/\" target=\"_blank\">plugins</a> was also a more recent development.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/boss-1100x760.jpg\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/boss-1100x760.jpg?resize=500%2C345\" alt=\"boss-1100x760\" class=\"aligncenter size-large wp-image-43398\" /></a></p>\n<p>“Designing for social networks requires a lot of thought, and we take our time considering every aspect,” Eisenwasser said.</p>\n<p>“Our customers give us all kinds of feedback about what they want, and there are many more themes coming down the road based on what we’ve learned.”</p>\n<h3>Current Landscape of the BuddyPress Theme and Plugin Market</h3>\n<p>Despite the fact that BuddyPress is now an eight-year-old plugin with a solid community of contributors supporting it, the marketplace for BP themes and plugins remains relatively small. Eisenwasser does not believe that the market is large enough to sustain a full-time theme business, but his team is working to expand its audience outside of the traditional WordPress/BuddyPress community.</p>\n<blockquote><p>BuddyPress has an active developer community and it’s been growing every year. Even if there are not enough people building on BuddyPress to sustain a larger theme business today, we can help change that. </p>\n<p>By building quality products we can improve the usability and perception of BuddyPress and encourage other people to come and join the community. <strong>There are many people building social networks every day – the question is whether or not they choose to build them within the BuddyPress ecosystem.</strong></p></blockquote>\n<p>As BuddyPress core cannot encompass all the functionality required by the many varied social networks people want to build, part of making BuddyPress more appealing is providing third-party add-ons that are compelling and reliable. BuddyBoss has started carving out a name for itself with useful plugins that extend the platform to support <a href=\"http://www.buddyboss.com/product/buddyboss-media/\" target=\"_blank\">media uploads</a>, <a href=\"http://www.buddyboss.com/product/buddypress-edit-activity/\" target=\"_blank\">activity editing</a>, <a href=\"http://www.buddyboss.com/product/buddypress-global-search/\" target=\"_blank\">global search</a>, and a Facebook-like <a href=\"http://www.buddyboss.com/product/buddyboss-wall/\" target=\"_blank\">wall</a> functionality.</p>\n<p>“We always envisioned ourselves building both themes and plugins,” Eisenwasser said. “I don’t really see a distinction. To me, we’re building solutions.</p>\n<p>“Layout issues are best solved within themes, and functionality issues are best solved by plugins. All of our products are designed to work together seamlessly, and work great with other themes and plugins too.”</p>\n<p>In the future, Eisenwasser said that BuddyBoss may open up its marketplace to third-party developers, but his primary concern is to maintain the same level of quality that customers have come to expect from BuddyBoss products.</p>\n<p>“For now, we are focusing on the theme market and bringing value / creating solutions for different niches,” he said. “We plan on evolving with the market as we grow. This could eventually require integrating with other platforms and putting more focus on other types of devices.”</p>\n<p>While there are a handful of successful BuddyPress themes on Themeforest, BuddyBoss is arguably the most dominant independent BuddyPress theme development shop at the moment. Eisenwasser’s experience indicates that the landscape of the BuddyPress product market is not yet wide open. Businesses looking to push into this space will need to produce top quality products while simultaneously tilling the soil to expand the WordPress + BuddyPress market in general.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 May 2015 17:30:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Matt: Untold Silk Road\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45025\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://ma.tt/2015/05/untold-silk-road/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:521:\"<p>This <a href=\"http://www.wired.com/2015/04/silk-road-1/\">Untold Story of Silk Road</a> is pretty amazing writing, a gripping story regardless of the genre (non-fiction, in this case). I can’t wait for the next chapter to come out on May 14. Also when reading about Ross, <a href=\"http://www.wired.com/2015/02/ross-ulbricht-didnt-create-silk-roads-dread-pirate-roberts-guy/\">it’s interesting to keep in mind Vanity Jones who was in many ways the brains behind the operation</a>, and also undiscovered.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 May 2015 06:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: Dan Griffiths Launches $175K Crowdfunding Campaign to Build HostPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43256\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"http://wptavern.com/dan-griffiths-launches-175k-crowdfunding-campaign-to-build-hostpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5350:\"<p>When it comes to hosting, there are predominately two choices to manage your account or server; <a href=\"http://www.odin.com/products/plesk/\">Plesk</a> and <a href=\"http://cpanel.com/\">cPanel</a>. Dan Griffiths wants to shake things up by adding a third choice with <a href=\"https://www.indiegogo.com/projects/hostpress-redefining-web-hosting-control-panels\">HostPress</a>. HostPress is an open-source, extensible server control panel built on top of WordPress.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/HostPressLogo.png\"><img class=\"wp-image-43267 size-large\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/HostPressLogo.png?resize=500%2C333\" alt=\"HostPress Logo\" /></a>HostPress Logo\n<p>Griffiths has started an <a href=\"https://www.indiegogo.com/projects/hostpress-redefining-web-hosting-control-panels\">Indiegogo crowdfunding campaign</a> to generate $175k. The money will be used to cover personal expenses, take care of his son, and cover the server fees and salary of an experienced server administrator for one year. cPanel and Plesk have several shortcomings, including:</p>\n<ul>\n<li>Minimum requirements</li>\n<li>Extensibility</li>\n<li>Ease of branding</li>\n<li>Sustainability</li>\n</ul>\n<p>HostPress will have a smaller footprint on servers and customers will be able to brand it with just a few lines of code. By using WordPress, the platform taps into existing development resources which will help it stay on top of security issues.</p>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/HostPressConceptImage.png\"><img class=\"size-full wp-image-43376\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/HostPressConceptImage.png?resize=620%2C467\" alt=\"HostPress Concept Image\" /></a>HostPress Concept Image\n<p>Server managers will be able to extend the platform through an API as well as plugins. HostPress will have a robust set of plugins available to the public, covering the most popular server software at the time of launch.</p>\n<h2>Market Share</h2>\n<p>According to <a href=\"http://builtwith.com/\">BuiltWith</a>, there are more than 4.1 million individual servers running active, licensed cPanel and Plesk installations. Base on this number, Griffiths calculates more than $82M is spent on control panels assuming a $20 per month price tag. Dedicated servers using cPanel, however, cost $45 per month.</p>\n<h2>Funding Specifics</h2>\n<p>The funds generated through the campaign will go to Griffiths, even if it’s not fully funded. However, if the project is fully funded, he expects to ship a beta of the product in June of 2016. He also plans to release the following:</p>\n<ul>\n<li>A modern, open-source, extensible server control panel</li>\n<li>An intuitive (and responsive) interface</li>\n<li>A fully-localized platform (HostPress speaks your language!)</li>\n<li>A platform developers can build on, including the ability to simply rebrand the panel without complex template languages.</li>\n</ul>\n<p>If the project doesn’t reach its funding goal, development will continue but at a slower pace. “The goal is to provide the Internet with an alternative to the clutter and complexity of server management. Even if we don’t become a major contender in this space, the support we do get will put pressure on the existing solutions to up their game,” Griffiths said.</p>\n<h2>Market Demand</h2>\n<p>When asked how much demand he’s witnessed in the hosting space, he replied, “There’s constant demand for fresh blood in the control panel space. Just take a look at a few of the cPanel/Plesk discussions online and you’ll see a lot of people complaining about their various flaws, or looking for a good alternative. In fact, there have been a number of other attempts made over the years, but none have gained traction due to one fatal flaw. They’re all written by engineers, so while the underlying functionality is solid, the interface always sucks.”</p>\n<p>If there is high demand from webhosts and server managers for a solution that’s better than Plesk or cPanel, Griffiths should have no problem reaching his funding goal. To find out what major webhosting companies think of the campaign and if they’ll financially contribute, I contacted GoDaddy and InMotion hosting. Both companies did not respond to my inquiries, despite multiple efforts to contact them.</p>\n<h2>Largest WordPress Crowdfunding Campaign on Record</h2>\n<p>Griffiths isn’t a stranger to the WordPress community’s generosity. Near the end of 2014, he started a <a href=\"http://wptavern.com/wordpress-community-pulls-together-to-help-a-member-in-need\">crowdfunding campaign</a> to raise $2,500. He ended up with nearly three times that amount. In this case however, it’s a product and $175k is a lot of money. If successful, it will be the largest WordPress crowdfunding campaign on record, dwarfing <a href=\"http://wptavern.com/buddypress-bbpress-and-glotpress-development-campaign-is-now-fully-funded\">John James Jacoby’s campaign</a> by $125k.</p>\n<p>HostPress looks like it could be an interesting product but without the financial aid of companies with large pockets, I don’t see how the campaign will reach its funding goal. Let us know your reactions to the campaign in the comments.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 May 2015 22:16:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: New Plugin Reorders the WordPress Admin Menu Using Drag-and-Drop\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43236\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wptavern.com/new-plugin-reorders-the-wordpress-admin-menu-using-drag-and-drop\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3626:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/reorder-admin-menu.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/reorder-admin-menu.png?resize=1025%2C482\" alt=\"reorder-admin-menu\" class=\"aligncenter size-full wp-image-43336\" /></a></p>\n<p>Every WordPress administrator has different needs when navigating the admin. For example, one may require frequent access to the Posts menu and rarely touch the Appearance menu. Another admininistrator may have a certain custom post type that is accessed more frequently than any other menu item.</p>\n<p>In some cases plugin developers take their liberties placing their menu items at the very top of the admin. Jetpack is a prime example of a plugin that assumes preeminence above Posts, Media, Comments, and other more frequently used publishing items.</p>\n<p><a href=\"https://wordpress.org/plugins/admin-menu-manager/\" target=\"_blank\">Admin Menu Manager</a> is a new plugin that allows you to take control of the admin and order menu items to suit your workflow. The plugin, created by <a href=\"https://spinpress.com/\" target=\"_blank\">Pascal Birchler</a> and the folks at <a href=\"http://required.ch/\" target=\"_blank\">required+</a>, adds a simple drag-and-drop interface for decluttering and reordering menu items.</p>\n<p></p>\n<p>As you can see in the demo, Admin Menu Manager allows you to drag menu items from top level to a sub-menu or pull sub-menus out to top level for easier access. The plugin is unobtrusive and doesn’t require its own settings page.</p>\n<p>“I got the idea for this particular plugin when I stumbled upon a similar one that used a drag and drop interface just for reordering menu items,” Birchler said. After searching for other comparable solutions for the admin, he decided to take it one step further and produce a proof-of-concept. The result was a useful new plugin.</p>\n<p>“I learned that such side projects are great for adapting new technologies and digging deeper into WordPress,” he said. “This is already my third plugin leveraging Backbone.js in my first three months working at required+. Before that I had no idea how to use this library.</p>\n<p>“Also, I now know that the WordPress admin menu can be quite a mess. I mean, there aren’t even unit tests for it. I’ll see how I can change that in core.”</p>\n<p>Birchler said he counts himself lucky that his employer offers him time to work on open source projects. Before he started at required+, the company had no plugins listed on WordPress.org. Now they are up to five after polishing up a few that were lying dormant on GitHub for awhile.</p>\n<p>Version 1 of Admin Menu Manager is <a href=\"https://wordpress.org/plugins/admin-menu-manager/\" target=\"_blank\">now available on WordPress.org</a> and the team is working on adding the following features to version 2:</p>\n<ul>\n<li>Completely remove (and restore) menu items</li>\n<li>Edit existing menu items and their icons</li>\n<li>Add custom items to the admin menu</li>\n</ul>\n<p>In its current state, the plugin is a good option for re-arranging the admin to suit a client’s needs or for simply getting Jetpack and other less-frequently used menus out of your way.</p>\n<p>New users often complain about how confusing the WordPress admin can be, especially when many active plugins are adding their own top-level menus. With the features promised in version 2, <a href=\"https://wordpress.org/plugins/admin-menu-manager/\" target=\"_blank\">Admin Menu Manager</a> has the potential to become a solid tool for decluttering the admin.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 May 2015 21:11:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: Themekraft’s Difficult Experience Switching to the WordPress Theme Customizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43297\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://wptavern.com/themekrafts-difficult-experience-switching-to-the-customizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7022:\"<p>Sven Lehnert, CEO of <a href=\"http://themekraft.com/\">Themekraft</a>, published <a href=\"http://themekraft.com/what-it-means-for-us-and-others-to-follow-the-theme-review-guidelines/\">his company’s experience</a> migrating from a custom theme options page to the theme customizer. He describes how difficult it was to move between the two and how it caused user frustration.</p>\n<p>“I’m sorry for the trouble some users are experiencing. We receive positive as well as frustrated feedback and I understand how users feel this way,” Lehnert said.</p>\n<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/CustomThemeOptionsPage.png\"><img class=\"size-full wp-image-43339\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/CustomThemeOptionsPage.png?resize=1025%2C493\" alt=\"Custom Theme Options Page\" /></a>Custom Theme Options Page\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/CustomizerThemeOptions.png\"><img class=\"size-full wp-image-43338\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/CustomizerThemeOptions.png?resize=1025%2C515\" alt=\"Using the Customizer\" /></a>Using the Customizer\n<p>Themekraft is migrating to the customizer because of <a href=\"http://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options\">a new requirement</a> that forces themes hosted in the <a href=\"https://wordpress.org/themes/\">WordPress theme directory</a> to use it to build theme options. The requirement has sparked controversy and with 175 comments, is the most discussed article in Tavern history.</p>\n<h2>Consequences of Doing the Right Thing</h2>\n<p>Although Themekraft believes the requirement is the right decision, it’s come at the price of losing users. Lehnert expressed frustration that doing the right thing has caused users to jump ship, “I think it’s really frustrating, that our choice to use the customizer to create better themes has made users switch to a different theme. Our decision to use the customizer has pushed users to Themeforest.</p>\n<p>A lot of users have told us they moved to Themeforest and gave up on themes hosted on WordPress.org. To them, Themeforest does the job of WordPress.org and WordPress.org themes are outdated with limited functionality.”</p>\n<p>Two to three years ago I would have agreed with the opinion that themes in the WordPress theme directory leave a lot to be desired. I’ve read enough <a href=\"http://wptavern.com/tag/free-wordpress-themes\">reviews of great looking free themes</a> that I’ve nearly erased this mindset. I used to discourage users from browsing for themes on the directory, now I encourage them.</p>\n<h2>The Educational Problem</h2>\n<a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/ChalkboardLearning.png\"><img class=\"size-full wp-image-30030\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/09/ChalkboardLearning.png?resize=640%2C250\" alt=\"Chalkboard Learning\" /></a>photo credit: <a href=\"https://www.flickr.com/photos/signifying/582602054/\">Clint Gardner</a> – <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a>\n<p>For years, the WordPress community has <a href=\"https://managewp.com/themes-design-plugins-functionality\">discussed and educated</a> users on why it’s important to separate presentation from functionality. Lehnert thinks it’s something normal users can’t understand, “They want to buy solutions and base their purchasing decisions from a graphical point of view. The separation from design and functionality is not understandable for the normal user.”</p>\n<p>In a <a href=\"http://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options#comment-67849\">recent comment on the Tavern</a>, Chip Bennett explains his perspective on the educational part of the problem, “You are absolutely right that the wider (i.e. more than just the developers/insiders/one-percenters) have a very long way to go to educate those users.</p>\n<p>The reality is that, for far too long, commercial Theme developers attempted to add ‘value’ to their Themes by creating Theme+Plugin combinations.”</p>\n<p>There’s been some movement on this front with some theme authors <a href=\"http://wptavern.com/why-wordpress-theme-developers-are-moving-functionality-into-plugins\">moving theme functionality back into plugins</a>.</p>\n<p>Part of the problem is explaining the difference between themes and plugins. If you ask 10 WordPress developers where the line is drawn, you’d likely get at least five different answers. Since plugins can do everything a theme can do, it can easily become a never-ending debate between presentation and functionality.</p>\n<h2>The Balancing Act</h2>\n<p>Creating a WordPress product that balances user and developer needs is tricky. The main impetus for requiring the theme customizer is to provide a standardized experience between all the themes hosted in the directory. It will also help the Theme Review Team review themes more efficiently.</p>\n<p>Lehnert trusts the Theme Review Team’s decision but feels the change is geared towards developers. “I really believe in the WordPress community and I trust there will be a solution to the problem some day. At the moment however, the theme review guidelines only make sense from a developer’s perspective.”</p>\n<p>He suggests that the WordPress theme directory add support for <a href=\"http://wptavern.com/up-to-the-community-to-improve-theme-demo-data\">better theme previews</a> with customizer access. This way, users can see how flexible and customizable a theme is.</p>\n<h2>Food for Thought</h2>\n<p>Based on Lehnert’s experience, there is a perception problem between WordPress.org hosted themes and those on Themeforest. It will be interesting to see if other theme authors and companies have a similar experience when they make the switch.</p>\n<p>It was disheartening to read this statement by Lehnert, “In the case of a theme business, staying outside of the community is easier!” Developers and users have at least one thing in common, they don’t like change, especially when it comes to requirements or guidelines. Developers have always had two choices:</p>\n<ol>\n<li>Abide by the requirements and guidelines to have a plugin or theme hosted on WordPress.org</li>\n<li>Do things on your own terms through your site and GitHub</li>\n</ol>\n<p>Outside of WordPress.org, it’s the wild west. You can use whatever custom options page or framework you want without anyone telling you what to do.</p>\n<p>Theme developers and companies are going to experience growing pains meeting the new requirement, but I think users of themes hosted on WordPress.org will be better off in the long run. They’ll know what to expect thanks to a standardized interface and eventually get used to interacting with the customizer.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 May 2015 20:45:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: BuddyPress 2.3 Will Introduce Companion Stylesheets for WordPress Default Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43120\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"http://wptavern.com/buddypress-2-3-will-introduce-companion-stylesheets-for-wordpress-default-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4909:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/01/wp-bp.jpg\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/01/wp-bp.jpg?resize=1025%2C383\" alt=\"wp-bp\" class=\"aligncenter size-full wp-image-14611\" /></a></p>\n<p>Two years ago, <a href=\"http://codex.buddypress.org/developer/releases/version-1-7/\" target=\"_blank\">BuddyPress 1.7</a> introduced WordPress theme compatibility, which meant that sites no longer required a BuddyPress-specific theme in order to run the plugin. The vast majority of themes that use <a href=\"http://codex.wordpress.org/Theme_Development\" target=\"_blank\">WordPress’ standard template loading</a> should be compatible with BuddyPress.</p>\n<p>However, some themes still need a little help to make the BuddyPress UI elements more harmonious with the rest of the theme. This is the case with the WordPress default themes, which prompted BuddyPress contributors to look into creating a set of companion stylesheets to address any conflicts arising between the plugin and the themes.</p>\n<p><a href=\"https://twitter.com/hnla\" target=\"_blank\">Hugo Ashmore</a>, who is leading the task of creating supporting styles for BuddyPress when activated on the default WordPress themes, summarized the goal on the <a href=\"https://bpdevel.wordpress.com/2015/04/01/companion-styles-task-updates/\" target=\"_blank\">BP development blog</a>:</p>\n<blockquote><p>We discussed and agreed in essence that it would be nice that BP displayed at its best when activated on these default WP themes as they may well be a user’s first impression of BP and first impressions last.</p></blockquote>\n<p>As of BuddyPress 2.3, the plugin will check and enqueue an additional set of styles if either <a href=\"https://buddypress.trac.wordpress.org/ticket/6291\" target=\"_blank\">Twenty Fifteen</a> or <a href=\"https://buddypress.trac.wordpress.org/ticket/6338\" target=\"_blank\">Twenty Fourteen</a> are active on the site. The same process will be used moving forward to support new WordPress default themes as they are released.</p>\n<p>Work on the tickets for these two themes has already been committed to <a href=\"https://buddypress.trac.wordpress.org/browser/trunk\" target=\"_blank\">BP trunk</a> and is on track for inclusion in 2.3. Whereas previously you might have seen messy unordered lists and BP component UI elements in various states of disarray, the new companion stylesheets resolve many of these issues with BP in use on the default themes.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/bp-twenty-fifteen.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/bp-twenty-fifteen.png?resize=1025%2C468\" alt=\"bp-twenty-fifteen\" class=\"aligncenter size-full wp-image-43320\" /></a></p>\n<h3>A New Approach to User Account / Single Group Navigation Menus</h3>\n<p>If you take BuddyPress 2.3-alpha for a spin, you’ll notice that the companion stylesheets take a new approach to the user account and single groups navigation, with the primary object nav now displayed vertically on the left.</p>\n<p>The traditional horizontal nav often causes problems, as plugin developers can dynamically add to this menu, pushing it out to two or more rows of menu items. The vertical menus in the stylesheet eliminate the crowding that you often see in the horizontal user/group navigation.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/bp-user-account-nav.png\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/bp-user-account-nav.png?resize=1025%2C792\" alt=\"bp-user-account-nav\" class=\"aligncenter size-full wp-image-43323\" /></a></p>\n<p>In the most recent <a href=\"https://bpdevel.wordpress.com/2015/04/29/companion-styles-an-update/\" target=\"_blank\">update</a> on the task, Ashmore requests that users bear in mind it’s “less about theming every aspect as about ensuring a broad sweep on elements to ensure the majority of critical issues are addressed.”</p>\n<p>The primary goal is to make BuddyPress render in a more seamless manner in the default themes. Refined styling to tweak specific BP elements is next on the agenda. If you want to test 2.3-alpha and find that the stylesheets aren’t loading, make sure to add <code>define (\'SCRIPT_DEBUG\', true);</code> to your <em>wp-config.php</em> file if you want to run trunk directly.</p>\n<p>Contributors working on the companion stylesheet tickets <a href=\"https://bpdevel.wordpress.com/2015/04/29/companion-styles-an-update/\" target=\"_blank\">welcome feedback</a> from the community regarding the layout refactoring of the parent theme containers for the BP directories and user account screens, as well as the vertical menu approach. Testing these elements ahead of the BuddyPress 2.3 beta, expected out this week, will help contributors ship more polished stylesheets in the official release at the end of May.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 May 2015 18:30:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: WordCamp Miami 2015 to Experiment with New Tracks, Tickets Selling Out Fast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=41567\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"http://wptavern.com/wordcamp-miami-2015-to-experiment-with-new-tracks-tickets-selling-out-fast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4934:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/wcmia-2015.jpg\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/02/wcmia-2015.jpg?resize=750%2C349\" alt=\"wcmia-2015\" class=\"aligncenter size-full wp-image-39447\" /></a></p>\n<p><a href=\"https://miami.wordcamp.org/2015/\" target=\"_blank\">WordCamp Miami</a>, one of the largest and longest running WordPress events in the US, is gearing up to <a href=\"http://wptavern.com/wordcamp-miami-gears-up-for-6th-year-with-new-tracks-and-workshops-planned\" target=\"_blank\">celebrate its 6th year on May 29-31</a>. Last year the event brought together 770 attendees and tickets for 2015 are selling fast.</p>\n<p>“We have sold over 600 tickets, and we see a sell-out on the horizon,” organizer David Bisset told the Tavern. “Our workshops are already almost sold out, and soon the weekend tickets will be as well.”</p>\n<p>WordCamp Miami has adopted a strong educational focus for the event with an expanded array of workshops. On Friday, May 29, the organizers will host a BuddyCamp and a separate Front-End/Theme workshop. As <a href=\"http://wptavern.com/wordcamp-miami-kids-workshop-launches-the-next-generation-of-bloggers\" target=\"_blank\">last year’s kids workshop</a> was a success, organizers are exploring the option of adding a more advanced kids workshop that gets into coding.</p>\n<h3>New “How To” Tracks and Mini-Workshops for Developers</h3>\n<p>Bisset and his team received feedback from last year’s event indicating that attendees are interested in having more advanced developer talks. This year organizers are replacing the user track on Saturday with experimental “How To” tracks.</p>\n<p>“To my knowledge, this is the first time a WordCamp has tried something like this,” Bisset said. “This track will focus on getting things done – almost like a mini-workshop focused on one or two concepts with step by step instructions – steps you can go home that night and do hopefully on your own.” Attendees of these tracks will be able to print out “cheat sheets” of each session and bring them to the conference or refer to them when they get back home.</p>\n<p>The organizers are hand-selecting the speakers and requesting that they format their slides to be a lasting resource for users. Speakers will also move to the Happiness Bar to answer any questions in a non-rushed environment after their sessions are finished.</p>\n<p>For the first time, WordCamp Miami will add an additional developer track on Sunday, which will consist of mini-workshops. In this format, two speakers will be give presentations on a single subject (back-to-back), so attendees will get multiple perspectives on the same subject.</p>\n<p>“For example, Andrea Rennick and Jesse Petersen will start off that Sunday with a ‘Genesis Framework’ mini-workshop,” Bisset said. “Andrea will introduce the basics and concepts while Jesse afterwards will dive into more advanced topics on Genesis. There are also mini-workshops on building WordPress plugins, the WP-API, and more.”</p>\n<p>Organizers are also reaching out to other open source communities to help forge connections across different projects.</p>\n<p>“For the first time, we have a Joomla developer coming to speak on Sunday and talk about Joomla, WordPress, and open source,” Bisset said. “We have been opening our doors to local Joomla and Drupal developers so we are excited about this presentation and hope it’s the start of something bigger for the future.”</p>\n<p>WordCamp Miami is known for its excellent opportunities for networking and will maintain that aspect of the event in 2015.</p>\n<p>“Besides knowledge, networking has always been a key reason why people (local or not from the area) attend WordCamps,” Bisset said. Organizers are tailoring the after-party to be more of a “networking party” where attendees can continue their conversations from the event. Networking parties will take place on Thursday evening, Saturday night, Sunday for social breakfast, and a brief ice cream social Sunday afternoon.</p>\n<p>The new venue, Florida International University, is large enough to accommodate the 800+ attendees expected this year. All of the educational and networking opportunities during the 3.5 day event give attendees an incredible value for their tickets, especially for those who are traveling from a distance.</p>\n<p>WordCamp Miami is an event that traditionally sells out every year and Bisset expects the same for 2015. The workshops will be limited to 100-150 people and tickets are going fast. Check out the event <a href=\"https://miami.wordcamp.org/2015/\" target=\"_blank\">website</a> for more details on the schedule and available <a href=\"https://miami.wordcamp.org/2015/tickets/\" target=\"_blank\">tickets</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 May 2015 21:27:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Matt: Macbook & USB-C Review\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"http://ma.tt/2015/05/macbook-usb-c-review/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5148:\"<p><img class=\"alignright wp-image-45019\" src=\"https://ma.tt/files/2015/05/macbook-481x740.jpg\" alt=\"macbook\" width=\"266\" height=\"409\" />I’ll start by saying I’m writing this on a 12″ Macbook in space grey. The screen, weight, size, and weird keyboard have captured my heart and I’m enjoying using the machine. It has replaced a 15″ Retina Pro as my primary laptop for about 2 weeks now, with most of that being on the road.</p>\n<p>For better and worse, it’s a lot like an iPad — the size and weight feel very natural in your life, and the screen is really gorgeous. It’s also not worth plugging anything into it besides its charging cable. It feels great to open and pick up right where you left off. The speed feels more than adequate for everything I’ve thrown at it so far, though I haven’t tried video editing or photo management outside of the new Apple Photos app. If there was a perfect iPad and keybard combo, it would feel and look like the new Retina Macbook.</p>\n<p>The second thing I’ll say is I wouldn’t recommend this laptop for everybody yet. There are some trade-offs, for example I can get 5-6 hours from the battery but it’s a little shorter than I expected. It’s refreshing to have a computer that’s totally silent with no fan, and I’ve only had a heat warning once when it was sitting in hot direct sunlight for about 20 minutes. I moved into the shade because I was also wilting a bit from the direct LA sun.</p>\n<p>The main reason I’m not sure if I’d recommend this Macbook right is hopefully ephemeral: USB-C. One of the very coolest things about the new Macbook is it charges (quickly) with a new standard called USB 3.1 with a Type-C connector, which is open for anyone to use, is reversible, and I think is going to be the future <a href=\"http://ma.tt/2015/02/usb-history-and-type-c/\">as I’ve written about on this blog before</a>.</p>\n<p><img class=\"aligncenter size-medium wp-image-45021\" src=\"https://ma.tt/files/2015/05/USB-type-C-840x321.jpg\" alt=\"USB-type-C\" width=\"840\" height=\"321\" /></p>\n<p>Today, however, USB-C is bleeding edge. I actually have one other device that uses it, Google’s new Chrome Pixel laptop, but when you search on Amazon for “USB-C” there are almost no results except sketchy or not-in-stock generic things, and Apple doesn’t have any USB-C stuff in stock, even in their stores. (Perhaps related to the general stock issues <a href=\"http://ma.tt/2015/04/apple-loyalty/\">I ended up writing about last time I tried to pen this Macbook review</a>.) I was able to get a cable that had male old USB and male USB-C on Amazon, that was pretty much it. The promise of USB-C is incredible: standard cables for charging everything super-quickly, a battery pack that could charge your phone or laptop, smaller power bricks, a next-gen Thunderbolt display with one cable for all data, display, and charging. You can see and imagine a really perfect ecosystem around USB-C, but it doesn’t exist today. <a href=\"http://9to5mac.com/2015/03/11/belkin-and-google-debut-usb-c-cables-including-low-priced-ethernet-displayport-hdmi-and-micro-usb-adapters/\">Some cool stuff has been announced but isn’t coming until the summer</a>, even <a href=\"http://www.pcworld.com/article/2903292/usb-typec-peripherals-are-on-the-way-and-storage-devices-are-first-up.html\">thumb drives</a>.</p>\n<p>The problem in one sentence: it is impossible to buy a cable, from Apple or otherwise, that let’s you plug an iPhone 6+ into the Macbook. They’ve announced but not shipped (to me at least) an adapter for old USB stuff (Type-A), but the last thing I need in my life is another dongle.</p>\n<p>I thought I would miss this but in practice it has been a surmountable problem. Instead of using my laptop as a battery, I’ve been <a href=\"http://hellomerch.com/collections/wordpress/products/jetpack-battery-pack\">using a battery to recharge miscellaneous electronics on-the-go</a>, and everything else including transferring photos from phone to computer is now happening wirelessly.</p>\n<p><img class=\" wp-image-45023 alignright\" src=\"https://ma.tt/files/2015/05/apple-line-up.jpg\" alt=\"apple-line-up\" width=\"333\" height=\"214\" />I think the most perfect tech combo in the world right now might be a <a href=\"http://ma.tt/2014/10/retina-5k-mac/\">5k iMac at home</a>, an iPhone 6+ as your phone, and the Macbook as an on-the-go device. (The iPad isn’t in my must-have list anymore.) The strengths of each of these products complement each other, and as Apple gets better about the cloud with things like photos, tethering, keychain sync, and continuity it’s really becoming a pleasure to use these products together. I also have an Apple Watch in the mix, but still forming my thoughts on that one.</p>\n<p>The thing I might be most excited about is when some of the new tech in the retina Macbook around the keyboard, screen, trackpad, and battery is applied to their “Pro” series, which will probably be a bit more in my wheelhouse.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 May 2015 21:25:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"WPTavern: WordPress Theme Developer Handbook Updated with Comprehensive Guide to the Customizer API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=43238\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"http://wptavern.com/wordpress-theme-developer-handbook-updated-with-comprehensive-guide-to-the-customizer-api\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6375:\"<a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/design-studio.jpg\" rel=\"prettyphoto[43238]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/02/design-studio.jpg?resize=760%2C374\" alt=\"photo credit: Artist\'s Room - (license)\" class=\"size-full wp-image-39730\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/63191453@N00/2650862549\">Artist’s Room</a> – <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>The Theme Review Team’s controversial decision to <a href=\"http://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options\" target=\"_blank\">require the use of the Customizer API for building theme options</a> unearthed a wave of criticism and concern about the capabilities of the customizer.</p>\n<p>In response to more than <a href=\"http://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options#comments\" target=\"_blank\">150 comments</a> debating on the topic, Nick Halsey, who has worked extensively on the feature in WordPress core, stopped by to offer a few words in support of the Theme Review Team’s decision:</p>\n<blockquote><p>Many of the comments here are misinformed or unaware of both the full power of and the future importance of the Customizer. I’ve given an <a href=\"http://celloexpressions.com/blog/the-customizer-is-the-future-for-themes-and-theme-options/\" target=\"_blank\">overview of my perspective on my blog</a>, and while those views don’t directly represent the views of the WordPress project, I can say that most people working on the Customizer in core would agree with my points. Like it or not, the Customizer is here to stay, and ignoring that fact will eventually cause users to turn against you.</p></blockquote>\n<p>Halsey’s post calls for theme developers to re-examine their philosophies when it comes to building complex UI options and stop re-inventing the wheel. He believes the customizer has more creative potential than developers give it credit for.</p>\n<blockquote><p>Complaints about the amount of screen real estate available and the 300px default width show a lack of creativity and resistance for the sake of resistance to change. Start by removing all of the ads, external links, unnecessary branding, unnecessary options, and general clutter. Make your options self-explanatory – if you need a paragraph to describe what it does, it probably shouldn’t be a user-facing option. Do you still have so much UI that the experience is completely unusable? Try an outside-the-box solution, like utilizing the core media modal (header images and core media controls use it), a custom modal (theme details modal in core), or a slide-out panel (widgets in core and eventually menus in core as well).</p></blockquote>\n<p>Prior to the Theme Review Team’s decision, documentation on theme development with the Customizer API was sparse and claims about its wide range of capabilities were difficult to support.</p>\n<p>Resistance from theme developers has WordPress.org contributors scrambling to produce better documentation for using the customizer in themes. Over the weekend, Halsey created a canonical developer tutorial on the <a href=\"https://developer.wordpress.org/themes/advanced-topics/customizer-api/\" target=\"_blank\">Customizer API in the official theme developer handbook</a>.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/customizer-api-documentation.png\" rel=\"prettyphoto[43238]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/customizer-api-documentation.png?resize=1025%2C605\" alt=\"customizer-api-documentation\" class=\"aligncenter size-full wp-image-43252\" /></a></p>\n<p>This official comprehensive guide includes the following sections and provides detailed examples for each:</p>\n<ul>\n<li><a href=\"https://developer.wordpress.org/themes/advanced-topics/customizer-api/#contextual-controls-sections-and-panels\" target=\"_blank\">Contextual Controls, Sections, and Panels</a></li>\n<li><a href=\"https://developer.wordpress.org/themes/advanced-topics/customizer-api/#using-postmessage-for-improved-setting-previewing\" target=\"_blank\">Using PostMessage For Improved Setting Previewing</a></li>\n<li><a href=\"https://developer.wordpress.org/themes/advanced-topics/customizer-api/#custom-controls-sections-and-panels\" target=\"_blank\">Custom Controls, Sections, and Panels</a></li>\n<li><a href=\"https://developer.wordpress.org/themes/advanced-topics/customizer-api/#custom-setting-types\" target=\"_blank\">Custom Setting Types</a></li>\n<li><a href=\"https://developer.wordpress.org/themes/advanced-topics/customizer-api/#the-customizer-javascript-api\" target=\"_blank\">The Customizer JavaScript API</a></li>\n<li><a href=\"https://developer.wordpress.org/themes/advanced-topics/customizer-api/#javascriptunderscore-js-rendered-custom-controls\" target=\"_blank\">JavaScript/Underscore.js-Rendered Custom Controls</a></li>\n<li><a href=\"https://developer.wordpress.org/themes/advanced-topics/customizer-api/#allow-non-administrators-to-access-the-customizer\" target=\"_blank\">Allow Non-administrators to Access the Customizer</a></li>\n</ul>\n<p>Theme Review Team admin Justin Tadlock <a href=\"https://make.wordpress.org/themes/2015/04/22/details-on-the-new-theme-settings-customizer-guideline/\" target=\"_blank\">posted</a> more details clarifying the new WordPress.org guideline and included a list of additional resources for learning more about the customizer.</p>\n<p>Over the weekend, Samuel “Otto” Wood, who has written several customizer articles over the years, wrote a “<a href=\"http://ottopress.com/2015/whats-new-with-the-customizer/\" target=\"_blank\">What’s new with the Customizer</a>” tutorial that explores some of its newer features in depth, including panels, active callbacks, and customizing the customizer.</p>\n<p>With <a href=\"http://wptavern.com/wordpress-4-3-to-focus-on-mobile-experience-admin-ui-better-passwords-and-customizer-improvements\" target=\"_blank\">WordPress 4.3 blazing forward on customizer improvements</a>, now is the time for theme developers to familiarize themselves with the available documentation and tutorials in order to be ready to take full advantage of WordPress’ core-supported method of providing live previews to users.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 May 2015 16:46:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Matt: James Whitcomb Riley Poem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://ma.tt/2015/05/james-whitcomb-riley-poem/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:748:\"<p><a href=\"http://om.co/2015/05/02/loss/\">Via Om</a>, I wanted to share this poem <em>Away</em> by <a href=\"http://www.poemhunter.com/james-whitcomb-riley/poems/\">James Whitcomb Riley</a>:</p>\n<blockquote><p>I cannot say, and I will not say<br />\nThat he is dead. He is just away.<br />\nWith a cheery smile, and a wave of the hand,<br />\nHe has wandered into an unknown land<br />\nAnd left us dreaming how very fair<br />\nIt needs must be, since he lingers there.<br />\nAnd you—oh you, who the wildest yearn<br />\nFor an old-time step, and the glad return,<br />\nThink of him faring on, as dear<br />\nIn the love of There as the love of Here.<br />\nThink of him still as the same. I say,<br />\nHe is not dead—he is just away.</p></blockquote>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 03 May 2015 16:34:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Donncha: Matt’s interview in the SBP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"http://z9.io/?p=89499491\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://z9.io/2015/05/03/matts-interview-in-the-sbp/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:977:\"<p><a href=\"http://i2.wp.com/z9.io/files/2015/05/wpid-20150503_124454.jpg\"><img title=\"20150503_124454.jpg\" class=\"alignnone size-full\" alt=\"image\" src=\"http://i2.wp.com/z9.io/files/2015/05/wpid-20150503_124454.jpg?w=660\" /></a></p>\n<p>Nice to see an interview with Matt in the Sunday Business Post, but they got one thing wrong that Matt is not chilled out about!</p>\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"http://z9.io/2007/02/16/photomatts-net-interview/\" rel=\"bookmark\" title=\"Permanent Link: Photomatt\'s .net interview\">Photomatt's .net interview</a></li><li> <a href=\"http://z9.io/2003/03/24/an-interview-with-mike-davidson-of-espn-part-1/\" rel=\"bookmark\" title=\"Permanent Link: An Interview With Mike Davidson of ESPN (Part 1)\">An Interview With Mike Davidson of ESPN (Part 1)</a></li><li> <a href=\"http://z9.io/2004/07/02/more-on-bush-interview/\" rel=\"bookmark\" title=\"Permanent Link: More On Bush Interview!\">More On Bush Interview!</a></li></ul></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 03 May 2015 11:48:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Donncha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: RIP Dan, RIP Dave\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45011\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://ma.tt/2015/05/rip-dan-rip-dave/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1238:\"<p>We’ve lost two incredible souls this week: <a href=\"http://recode.net/2015/04/25/google-exec-dan-fredinburg-killed-in-nepal-earthquake/\">first Dan Fredinburg in Nepal</a> and now <a href=\"http://recode.net/2015/05/02/beloved-silicon-valley-entrepreneur-david-goldberg-dies-suddenly/\">Dave Goldberg has unexpectedly passed</a>. I encourage you to Google articles about their lives, <a href=\"http://www.businessinsider.com/the-incredible-life-of-david-goldberg-2015-5\">like this one about Dave Goldberg</a> or <a href=\"http://www.outsideonline.com/1972721/remembering-dan-fredinburg\">this on Dan</a>, because both were unique and incredible individuals. In an example of <a href=\"http://meyerweb.com/eric/thoughts/2014/12/24/inadvertent-algorithmic-cruelty/\">how software can have unintended effect on emotions</a>, I just realized I had a pending friend request on Facebook from Dan, probably years old. <img src=\"http://i1.wp.com/s.ma.tt/blog/wp-includes/images/smilies/frownie.png?w=604\" alt=\":(\" class=\"wp-smiley\" /> Going through a lot of emotions, but a good reminder that life can be fleeting and to make time for friends and those who you love, something both of these men were great at. May they both rest in peace.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 May 2015 19:46:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: Belgrade’s First WordCamp Sells Out, Plans to Double Attendees Next Year\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=42992\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"http://wptavern.com/belgrades-first-wordcamp-sells-out-plans-to-double-attendees-next-year\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5298:\"<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wcbelgrade.jpg\" rel=\"prettyphoto[42992]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wcbelgrade.jpg?resize=1025%2C505\" alt=\"photo credit: WordCamp Belgrade\" class=\"size-full wp-image-43216\" /></a>photo credit: <a href=\"http://belgrade.wordcamp.org/2015/wordcamp-belgrade-first-batch-of-photos-wcbg/\">WordCamp Belgrade</a>\n<p>Organizers of the very first WordCamp Belgrade are happy to report that the event was a smashing success. <a href=\"http://wptavern.com/a-glimpse-into-serbias-rapidly-growing-wordpress-community\" target=\"_blank\">Serbia’s rapidly growing WordPress community</a> started just two years ago with local meetups that became larger than some smaller WordCamps.</p>\n<p>“Our road from the first meetup back in April 2013 to the first WordCamp was brilliant,” organizer Milan Ivanović said. “Every WPSerbia meetup had no less than 100 people attending, with at least three speakers each.” Serbia was ready to host its first WordCamp.</p>\n<p>“We were completely sold out about 10 days before the actual event, and it was such a shame that we had to turn down around 50 people who were asking for extra tickets,” Ivanović said. “We were limited by the venue and we couldn’t take more than 180.”</p>\n<p>Attendees represented 13 different countries with the highest numbers from Serbia (73%), Macedonia, Bosnia and Herzegovina, and Croatia. Those who came from other countries were treated to Serbia’s famous hospitality with tours and local cuisine.</p>\n<p>“We dedicated some extra time for people who visited Belgrade for the first time to experience Belgrade and all of its beauties,” Ivanović said.</p>\n<p>“That is why we organized an unofficial after-after party that included a stroll through Belgrade’s main pedestrian street Knez Mihailova, a visit to Belgrade Fortress Kalemegdan, and dinner with true Serbian food and music in the most famous boem street Skadarlija.”</p>\n<a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wordcamp-belgrade-food.jpg\" rel=\"prettyphoto[42992]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wordcamp-belgrade-food.jpg?resize=1025%2C494\" alt=\"photo credit: WordCamp Belgrade\" class=\"size-full wp-image-43219\" /></a>photo credit: <a href=\"http://belgrade.wordcamp.org/2015/wordcamp-belgrade-first-batch-of-photos-wcbg/\">WordCamp Belgrade</a>\n<p>“The food was so good that I was afraid that this WordCamp wouldn’t be remembered by its talks and speakers but by the catering that all of us enjoyed,” he said.</p>\n<p>WordCamp Belgrade 2015 in numbers:</p>\n<ul>\n<li>800+ bottles of refreshment served (on the first day)</li>\n<li>500+ coffees served (on the first day)</li>\n<li>345 Tweets with <a href=\"https://twitter.com/hashtag/wcbg?src=hash\" target=\"_blank\">#wcbg</a></li>\n<li>250 Meals served</li>\n<li>180 Tickets sold</li>\n<li>61 Trello cards</li>\n<li>22 Sponsors</li>\n<li>16 Speaker Applications</li>\n<li>13 Talks / Workshops</li>\n<li>10 Speakers</li>\n<li>9 Volunteers</li>\n<li>8 Days after, all session videos published</li>\n<li>1 Awesome <a href=\"http://wptavern.com/meet-wapuujlo-official-mascot-of-wordcamp-belgrade\" target=\"_blank\">Mascot</a></li>\n</ul>\n<p>Attendees received “<a href=\"http://wptavern.com/meet-wapuujlo-official-mascot-of-wordcamp-belgrade\" target=\"_blank\">Wapuujlo</a>” magnets and stickers to commemorate the event.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/wapuujlo-magnets.jpg\" rel=\"prettyphoto[42992]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/wapuujlo-magnets.jpg?resize=1025%2C437\" alt=\"wapuujlo-magnets\" class=\"aligncenter size-full wp-image-43226\" /></a></p>\n<p>Videos from the WordCamp are already available on <a href=\"https://www.youtube.com/channel/UCNn90HubD28a63SJu07vYZg\" target=\"_blank\">WordPress Serbia’s YouTube account</a> and will soon be uploaded to WordPress.tv as well.</p>\n<p>“As soon as WordCamp Belgrade finished, the first thing I did was start plans for #wcbg2016,” Ivanović said.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wcbelgrade-organizers.jpg\" rel=\"prettyphoto[42992]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2015/05/wcbelgrade-organizers.jpg?resize=300%2C200\" alt=\"wcbelgrade-organizers\" class=\"alignright size-medium wp-image-43223\" /></a>“The biggest outcome from this event was people asking how they can help organize the next WordCamp Belgrade, offering lots of different kinds of help – from finding new sponsors to offering their organization skills.”</p>\n<p>Ivanović and the organizing team plan to at least double the size of the event next year. They are aiming for 400 attendees and two tracks of speakers.</p>\n<p>“If we manage to organize an event that size, I think that would be an awesome test and a great intro for application to organize WordCamp Europe 2017,” he said.</p>\n<p>Check out more <a href=\"http://belgrade.wordcamp.org/2015/wordcamp-belgrade-first-batch-of-photos-wcbg/\" target=\"_blank\">photos from the event</a> on the WordCamp Belgrade website.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 May 2015 21:04:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Matt: More on GMOs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=45008\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://ma.tt/2015/05/more-on-gmos/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:606:\"<blockquote><p>After writing two books on the science of climate change, I decided I could no longer continue taking a pro-science position on global warming and an anti-science position on G.M.O.s.</p></blockquote>\n<p>Mark Lynas writes <a href=\"http://www.nytimes.com/2015/04/25/opinion/sunday/how-i-got-converted-to-gmo-food.html\">How I Got Converted to G.M.O. Food</a>, particularly how GMOs impact the places where crops are needed the most. If you’re looking for a catch-up <a href=\"http://ma.tt/2014/03/whole-foods-and-psuedoscience/\">check out this link collection on ma.tt last year</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 May 2015 18:43:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: WordPress.com Suspends Theme Submissions from New Sellers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=42345\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wptavern.com/wordpress-com-suspends-theme-submissions-from-new-sellers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5419:\"<p>In March 2014, <a href=\"http://wptavern.com/wordpress-com-formally-opens-its-marketplace-to-theme-developers\" target=\"_blank\">WordPress.com opened its marketplace to new theme authors</a>. Prior to that time, new sellers were added via invitation only. A year ago there were only 300 themes available to WordPress.com users, but after having the marketplace open to new authors that count is up to 345.</p>\n<p>Recently the <a href=\"https://theme.wordpress.com/join/\" target=\"_blank\">submission form disappeared from the site</a> with a message that WordPress.com would be keeping it temporarily closed in order to add new features that make the process easier.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/new-themes-wordpresscom.png\" rel=\"prettyphoto[42345]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2015/05/new-themes-wordpresscom.png?resize=1025%2C736\" alt=\"new-themes-wordpresscom\" class=\"aligncenter size-full wp-image-43187\" /></a></p>\n<p><a href=\"https://array.is/\" target=\"_blank\">Array</a> founder Mike McAlister recently published an <a href=\"https://array.is/a-year-in-review/\" target=\"_blank\">article</a> that detailed his experience selling on the WordPress.com marketplace. One of the main drawbacks was the lack of efficiency in handling the queue for new theme submissions.</p>\n<blockquote><p>The review process on WordPress.com is long. I’m not talking about weeks long, I’m talking about months long. Each Array theme review has taken at least a month, usually longer. Our latest theme for WP.com, Camera, took four months from the day I submitted it to the day it was released.</p></blockquote>\n<p>In addition to painfully long queues, theme authors have also been disappointed with WordPress.com’s recent lack of promotion for commercial themes. These factors contributed to McAlister’s decision to focus on promoting his products through more efficient distribution channels and <a href=\"http://wptavern.com/array-returns-to-themeforest-after-disappointing-experiences-selling-on-creative-market-and-wordpress-com\" target=\"_blank\">return to Themeforest</a>.</p>\n<p>In April, WordPress.com theme author Sami Keijonen <a href=\"https://foxland.fi/toivo-was-not-approved-in-wordpress-com/\" target=\"_blank\">posted about his recent difficulties with the marketplace</a> after noticing that WordPress.com removed the submission form for new authors. He summarized some of the sources of confusion for commercial theme authors:</p>\n<blockquote>\n<ul>\n<li>WordPress.com basically stopped marketing commercial themes. (However, they do tweet about new themes.)</li>\n<li>We have a private blog for themers but other than that, there isn’t any conversation between developers or WordPress.com staff. They did send a enquiry a while ago so that might help.</li>\n<li>The review process takes months for commercial themes.</li>\n<li>They seem to want really simple themes with simple design decisions. That’s fine by me but isn’t that kind of “forcing” the end user to like certain types of themes if they don’t have any options?</li>\n<li>I would have wanted more accessibility-ready themes in WordPress.com like mine, but it seems that isn’t priority.</li>\n</ul>\n</blockquote>\n<p>I contacted Automattic to find out why the submission form has been removed and when authors can expect for it to be re-opened. The company’s official statement indicates that opening up the marketplace was a temporary experiment and that there is no ETA for relaunching it.</p>\n<blockquote><p>It’s important to note that current WordPress.com sellers can submit new themes for possible launch. We’re not closed for new theme submission. We experimented with a public form for themes from new shops last year, and we had a ton of great submissions from theme shops around the world. We took it down last fall while we worked on getting ahead of all the new theme reviews that it created. We’ll put it up again but we don’t have an exact date in mind. We do still reach out to new shops with great themes. We’re always excited to find awesome theme shops.</p></blockquote>\n<p>The company’s statement regarding the change in marketing clarifies that it is looking for new strategies to promote commercial themes.</p>\n<blockquote><p>We may not do blog posts any more, but we haven’t stopped marketing premium themes. They’re featured prominently on <a href=\"https://wordpress.com/themes\" target=\"_blank\">wordpress.com/themes</a> and as part of our <a href=\"https://store.wordpress.com/plans/\" target=\"_blank\">Business Plan</a>. Plus, we’re exploring more ways to put premium themes in front of users.</p>\n<p>In the future, premium theme shops can expect better feedback around the themes they submit, quicker launches, and more communication in general from the WordPress.com Theme Team. We’re excited about what we can continue to do for the world of themes with our sellers’ help.</p></blockquote>\n<p>Automattic has no set time frame for launching these improvements, but it should be reassuring for commercial theme authors to know that the company is tackling the inefficiency that was bogging down the system. For the time being, new commercial theme authors looking to submit products to the marketplace are out of luck, but Automattic may decide to open it up again to continue the experiment in the future.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 May 2015 18:11:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Akismet: April 2015 Stats Roundup\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1839\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://blog.akismet.com/2015/05/01/april-2015-stats-roundup/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2934:\"<p>April turned out to be a slow month in Akismetland. The highest number of spam comments we saw come in this month on a given day was about 177 million. The total amount of spam we saw come through this month is 23% less than last month, and 33% less than April of last year.</p>\n<p>Here’s a chart showing the number of spam and ham comments we saw come through each day this month:</p>\n<p><img class=\"alignnone size-large wp-image-1840\" src=\"https://akismet.files.wordpress.com/2015/05/akismet-spam-and-ham-stats-april-2015.png?w=700&h=438\" alt=\"graph of akismet spam and ham daily stats April 2015\" /></p>\n<div id=\"attachment_1841\" class=\"wp-caption alignright\"><img class=\"size-medium wp-image-1841\" src=\"https://akismet.files.wordpress.com/2015/05/time_machine.jpg?w=300&h=252\" alt=\"This image, .Time Machine. by Sachin Sandhu, is licensed under CC BY 2.0\" width=\"300\" height=\"252\" /><p class=\"wp-caption-text\">This image, <a href=\"https://www.flickr.com/photos/sachin_sandhu/2711789618\">.Time Machine.</a> by <a href=\"https://www.flickr.com/photos/sachin_sandhu/\">Sachin Sandhu</a>, is licensed under <a href=\"https://creativecommons.org/licenses/by/2.0/\">CC BY 2.0</a></p></div>\n<p>The total number of spam comments this month is <strong>4,167,247,500</strong> – just over four billion, which is still a big number even though it’s a slow month ','no'),(1718,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1431670739','no'),(1719,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1431627539','no'),(1720,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1431670740','no'),(1721,'_transient_feed_b9388c83948825c1edaef0d856b7b109','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:117:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 May 2015 17:56:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"23862@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Your WordPress, Streamlined.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Tim Moore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2141@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"15@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"WordPress SEO by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"8321@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast's WordPress SEO plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WooCommerce - excelling eCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29860@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Google Analytics Dashboard for WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Mar 2013 17:07:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"50539@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Displays Google Analytics reports and real-time statistics in your WordPress Dashboard. Inserts the latest tracking code in every page of your site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Alin Marcu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"753@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"18101@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Wordfence Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2011 03:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29832@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"Wordfence Security is a free enterprise class security and performance plugin that makes your site up to 50 times faster and more secure.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Wordfence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Google Analytics by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2316@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"Track your WordPress site easily with the latest tracking codes and lots added data for search result pages and error pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"TinyMCE Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/plugins/tinymce-advanced/#post-2082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2007 15:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2082@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Enables the advanced features of TinyMCE, the WordPress WYSIWYG editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"MailChimp for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/mailchimp-for-wp/#post-54377\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Jun 2013 17:32:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"54377@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"The best MailChimp plugin to get more email subscribers. Easily add MailChimp sign-up forms and sign-up checkboxes to your WordPress site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Danny van Kooten\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"UpdraftPlus Backup and Restoration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/updraftplus/#post-38058\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 May 2012 15:14:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"38058@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Anderson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"WPtouch Mobile Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wordpress.org/plugins/wptouch/#post-5468\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 May 2008 04:58:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"5468@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Make your WordPress website mobile-friendly with just a few clicks.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"BraveNewCode Inc.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Photo Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/photo-gallery/#post-63299\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Jan 2014 15:58:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"63299@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:143:\"Photo Gallery is an advanced plugin with a list of tools and options for adding and editing images for different views. It is fully responsive.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"webdorado\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"132@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Arne Brachhold\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Duplicator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/duplicator/#post-26607\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 May 2011 12:15:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"26607@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Duplicate, clone, backup, move and transfer an entire site from one location to another.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Cory Lamle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Broken Link Checker\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/broken-link-checker/#post-2441\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Oct 2007 21:35:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2441@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Janis Elsts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Captcha by BestWebSoft\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/captcha/#post-26129\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Apr 2011 05:53:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"26129@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"This plugin allows you to implement super security captcha form into web forms.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"bestwebsoft\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Fast Secure Contact Form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/plugins/si-contact-form/#post-12636\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Aug 2009 01:20:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"12636@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"An easy and powerful form builder that lets your visitors send you email. Blocks all automated spammers. No templates to mess with.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mike Challis\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Page Builder by SiteOrigin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/siteorigin-panels/#post-51888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Apr 2013 10:36:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"51888@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WP Super Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/wp-super-cache/#post-2572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Nov 2007 11:40:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2572@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"A very fast caching engine for WordPress that produces static html files.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Donncha O Caoimh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Disable Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/disable-comments/#post-26907\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 May 2011 04:42:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"26907@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Samir Shah\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"1169@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 12 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"EWWW Image Optimizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/ewww-image-optimizer/#post-38780\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Jun 2012 19:30:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"38780@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"Reduce file sizes for images in WordPress including NextGEN, GRAND FlAGallery and more using lossless/lossy methods and image format conversion.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"nosilver4u\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Advanced Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Mar 2011 04:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"25254@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Customise WordPress with powerful, professional and intuitive fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"elliotcondon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WP User Avatar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/wp-user-avatar/#post-48017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 12 Jan 2013 05:17:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"48017@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Use any image from your WordPress Media Library as a custom user avatar. Add your own Default Avatar.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Bangbay Siboliban\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"ManageWP Worker\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wordpress.org/plugins/worker/#post-24528\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Feb 2011 13:06:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"24528@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"ManageWP is the ultimate WordPress productivity tool, allowing you to efficiently manage your websites.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Vladimir Prelovac\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Contact Form by BestWebSoft\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/plugins/contact-form-plugin/#post-26890\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 May 2011 07:34:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"26890@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Add Contact Form to your WordPress website.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"bestwebsoft\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Share Buttons by AddToAny\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/plugins/add-to-any/#post-498\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 17 Mar 2007 23:08:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"498@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:142:\"Share buttons for WordPress including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp and many more.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"micropat\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:46:\"https://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 14 May 2015 18:19:00 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:7:\"expires\";s:29:\"Thu, 14 May 2015 18:31:28 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Thu, 14 May 2015 17:56:28 +0000\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20150325042443\";}','no'),(1722,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1431670740','no'),(1723,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1431627540','no'),(1724,'_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51','1431670740','no'),(1725,'_transient_dash_4077549d03da2e451c8b5f002294ff51','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2015/05/wordpress-4-2-2/\'>WordPress 4.2.2 Security and Maintenance Release</a> <span class=\"rss-date\">May 7, 2015</span><div class=\"rssSummary\">WordPress 4.2.2 is now available. This is a critical security release for all previous versions and we strongly encourage you to update your sites immediately. Version 4.2.2 addresses two security issues: The Genericons icon font package, which is used in a number of popular themes and plugins, contained an HTML file vulnerable to a cross-site […]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wptavern.com/wpweekly-episode-192-infinite-possibilities-with-dan-griffiths\'>WPTavern: WPWeekly Episode 192 – Infinite Possibilities With Dan Griffiths</a></li><li><a class=\'rsswidget\' href=\'http://ma.tt/2015/05/wearable-gadgets/\'>Matt: Wearable Gadgets</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/wp-engine-rolls-out-wp-cli-support-to-select-partners-for-beta-testing\'>WPTavern: WP Engine Rolls Out WP-CLI Support to Select Partners for Beta Testing</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\'dashboard-news-plugin\'><span>Popular Plugin:</span> <a href=\'https://wordpress.org/plugins/wp-user-avatar/\' class=\'dashboard-news-plugin-link\'>WP User Avatar</a> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=wp-user-avatar&_wpnonce=61cb1da7ae&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'WP User Avatar\'>Install</a>)</span></li></ul></div>','no'),(1726,'category_children','a:0:{}','yes'),(1737,'_site_transient_timeout_theme_roots','1431634337','yes'),(1738,'_site_transient_theme_roots','a:5:{s:26:\"eddiemachado-bones-22dbfcb\";s:7:\"/themes\";s:7:\"moduleq\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";}','yes'),(1739,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1431632537;s:7:\"checked\";a:5:{s:26:\"eddiemachado-bones-22dbfcb\";s:3:\"1.7\";s:7:\"moduleq\";s:3:\"1.0\";s:13:\"twentyfifteen\";s:3:\"1.0\";s:14:\"twentyfourteen\";s:3:\"1.3\";s:14:\"twentythirteen\";s:3:\"1.4\";}s:8:\"response\";a:3:{s:13:\"twentyfifteen\";a:4:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.1.2.zip\";}s:14:\"twentyfourteen\";a:4:{s:5:\"theme\";s:14:\"twentyfourteen\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentyfourteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentyfourteen.1.4.zip\";}s:14:\"twentythirteen\";a:4:{s:5:\"theme\";s:14:\"twentythirteen\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentythirteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentythirteen.1.5.zip\";}}s:12:\"translations\";a:0:{}}','yes'),(1740,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1431632537;s:8:\"response\";a:4:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"3.1.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.1.1.zip\";}s:29:\"column-matic/column-matic.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"29593\";s:4:\"slug\";s:12:\"column-matic\";s:6:\"plugin\";s:29:\"column-matic/column-matic.php\";s:11:\"new_version\";s:5:\"1.3.3\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/column-matic/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/column-matic.1.3.3.zip\";s:14:\"upgrade_notice\";s:24:\"updated for WordPres 4.1\";}s:27:\"ninja-forms/ninja-forms.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"27901\";s:4:\"slug\";s:11:\"ninja-forms\";s:6:\"plugin\";s:27:\"ninja-forms/ninja-forms.php\";s:11:\"new_version\";s:6:\"2.9.11\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/ninja-forms/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/ninja-forms.2.9.11.zip\";}s:14:\"types/wpcf.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"24557\";s:4:\"slug\";s:5:\"types\";s:6:\"plugin\";s:14:\"types/wpcf.php\";s:11:\"new_version\";s:7:\"1.6.6.4\";s:3:\"url\";s:36:\"https://wordpress.org/plugins/types/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/types.1.6.6.4.zip\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:45:\"taxonomy-terms-order/taxonomy-terms-order.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"23884\";s:4:\"slug\";s:20:\"taxonomy-terms-order\";s:6:\"plugin\";s:45:\"taxonomy-terms-order/taxonomy-terms-order.php\";s:11:\"new_version\";s:5:\"1.4.1\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/taxonomy-terms-order/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/taxonomy-terms-order.zip\";}s:53:\"custom-content-shortcode/custom-content-shortcode.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"43822\";s:4:\"slug\";s:24:\"custom-content-shortcode\";s:6:\"plugin\";s:53:\"custom-content-shortcode/custom-content-shortcode.php\";s:11:\"new_version\";s:5:\"2.1.9\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/custom-content-shortcode/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/custom-content-shortcode.2.1.9.zip\";}s:35:\"display-widgets/display-widgets.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"10109\";s:4:\"slug\";s:15:\"display-widgets\";s:6:\"plugin\";s:35:\"display-widgets/display-widgets.php\";s:11:\"new_version\";s:4:\"2.03\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/display-widgets/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/display-widgets.2.03.zip\";}s:33:\"duplicate-post/duplicate-post.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:4:\"1295\";s:4:\"slug\";s:14:\"duplicate-post\";s:6:\"plugin\";s:33:\"duplicate-post/duplicate-post.php\";s:11:\"new_version\";s:3:\"2.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-post/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/duplicate-post.2.6.zip\";s:14:\"upgrade_notice\";s:90:\"PHP 5.4 (Strict Standards) compatible + Fixed possible XSS and SQL injections + other bugs\";}s:9:\"hello.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"3564\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";}s:45:\"simple-page-ordering/simple-page-ordering.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"16828\";s:4:\"slug\";s:20:\"simple-page-ordering\";s:6:\"plugin\";s:45:\"simple-page-ordering/simple-page-ordering.php\";s:11:\"new_version\";s:5:\"2.2.4\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/simple-page-ordering/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/simple-page-ordering.2.2.4.zip\";}s:47:\"ultimate-posts-widget/ultimate-posts-widget.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"31287\";s:4:\"slug\";s:21:\"ultimate-posts-widget\";s:6:\"plugin\";s:47:\"ultimate-posts-widget/ultimate-posts-widget.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/ultimate-posts-widget/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/ultimate-posts-widget.2.0.3.zip\";}s:53:\"velvet-blues-update-urls/velvet-blues-update-urls.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"4884\";s:4:\"slug\";s:24:\"velvet-blues-update-urls\";s:6:\"plugin\";s:53:\"velvet-blues-update-urls/velvet-blues-update-urls.php\";s:11:\"new_version\";s:5:\"3.2.3\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/velvet-blues-update-urls/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/velvet-blues-update-urls.3.2.3.zip\";}}}','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) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB AUTO_INCREMENT=674 DEFAULT CHARSET=utf8;
/*!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 (4,5,'_edit_last','1'),(5,5,'_wp_page_template','page-company.php'),(6,5,'_edit_lock','1431627590:1'),(7,7,'_edit_last','1'),(8,7,'_wp_page_template','page-nosidebar.php'),(9,7,'_edit_lock','1431409927:1'),(10,9,'_edit_last','1'),(11,9,'_wp_page_template','page-support.php'),(12,9,'_edit_lock','1431665783:1'),(13,11,'_menu_item_type','post_type'),(14,11,'_menu_item_menu_item_parent','0'),(15,11,'_menu_item_object_id','9'),(16,11,'_menu_item_object','page'),(17,11,'_menu_item_target',''),(18,11,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(19,11,'_menu_item_xfn',''),(20,11,'_menu_item_url',''),(22,12,'_menu_item_type','post_type'),(23,12,'_menu_item_menu_item_parent','0'),(24,12,'_menu_item_object_id','7'),(25,12,'_menu_item_object','page'),(26,12,'_menu_item_target',''),(27,12,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28,12,'_menu_item_xfn',''),(29,12,'_menu_item_url',''),(31,13,'_menu_item_type','post_type'),(32,13,'_menu_item_menu_item_parent','0'),(33,13,'_menu_item_object_id','5'),(34,13,'_menu_item_object','page'),(35,13,'_menu_item_target',''),(36,13,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(37,13,'_menu_item_xfn',''),(38,13,'_menu_item_url',''),(76,18,'_menu_item_type','post_type'),(77,18,'_menu_item_menu_item_parent','0'),(78,18,'_menu_item_object_id','5'),(79,18,'_menu_item_object','page'),(80,18,'_menu_item_target',''),(81,18,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(82,18,'_menu_item_xfn',''),(83,18,'_menu_item_url',''),(85,19,'_menu_item_type','post_type'),(86,19,'_menu_item_menu_item_parent','0'),(87,19,'_menu_item_object_id','9'),(88,19,'_menu_item_object','page'),(89,19,'_menu_item_target',''),(90,19,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(91,19,'_menu_item_xfn',''),(92,19,'_menu_item_url',''),(103,21,'_menu_item_type','custom'),(104,21,'_menu_item_menu_item_parent','0'),(105,21,'_menu_item_object_id','21'),(106,21,'_menu_item_object','custom'),(107,21,'_menu_item_target','_blank'),(108,21,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(109,21,'_menu_item_xfn',''),(110,21,'_menu_item_url','https://twitter.com/moduleQ'),(112,22,'_menu_item_type','custom'),(113,22,'_menu_item_menu_item_parent','0'),(114,22,'_menu_item_object_id','22'),(115,22,'_menu_item_object','custom'),(116,22,'_menu_item_target','_blank'),(117,22,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(118,22,'_menu_item_xfn',''),(119,22,'_menu_item_url','https://www.linkedin.com/company/2708312?trk=tyah&trkInfo=clickedVertical%3Acompany%2Cidx%3A1-1-1%2CtarId%3A1429033159210%2Ctas%3Amoduleq'),(121,23,'_menu_item_type','custom'),(122,23,'_menu_item_menu_item_parent','0'),(123,23,'_menu_item_object_id','23'),(124,23,'_menu_item_object','custom'),(125,23,'_menu_item_target','_blank'),(126,23,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(127,23,'_menu_item_xfn',''),(128,23,'_menu_item_url','https://www.facebook.com/pages/ModuleQ/111268418984871?fref=ts'),(130,24,'_edit_last','1'),(131,24,'_wp_page_template','default'),(132,24,'_edit_lock','1428951755:1'),(133,28,'_wp_attached_file','2015/04/modq-support-buttons-pdf.png'),(134,28,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:395;s:6:\"height\";i:99;s:4:\"file\";s:36:\"2015/04/modq-support-buttons-pdf.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;}}'),(135,29,'_wp_attached_file','2015/04/modq-support-buttons-video.png'),(136,29,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:395;s:6:\"height\";i:99;s:4:\"file\";s:38:\"2015/04/modq-support-buttons-video.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;}}'),(137,30,'_wp_attached_file','2015/04/img_bio11.jpg'),(138,30,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:438;s:6:\"height\";i:407;s:4:\"file\";s:21:\"2015/04/img_bio11.jpg\";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;}}'),(139,38,'_wp_types_group_filters_association','any'),(140,38,'_wp_types_group_fields',',team-member-image,title,linkedin,accomplishments,'),(141,38,'_wp_types_group_post_types',',team-member,'),(142,38,'_wp_types_group_terms','all'),(143,38,'_wp_types_group_admin_styles',''),(144,38,'_wp_types_group_templates','all'),(145,38,'_wpcf_conditional_display','a:3:{s:10:\"custom_use\";s:1:\"0\";s:8:\"relation\";s:3:\"AND\";s:6:\"custom\";s:0:\"\";}'),(146,40,'_edit_last','1'),(147,40,'_edit_lock','1429161196:1'),(148,41,'_wp_attached_file','2015/04/img_bio_allen_miner.png'),(149,41,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:303;s:6:\"height\";i:281;s:4:\"file\";s:31:\"2015/04/img_bio_allen_miner.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;}}'),(150,42,'_wp_attached_file','2015/04/img_bio_davd_brunner1.png'),(151,42,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:303;s:6:\"height\";i:281;s:4:\"file\";s:33:\"2015/04/img_bio_davd_brunner1.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;}}'),(152,43,'_wp_attached_file','2015/04/img_bio_ethan_bernstein.png'),(153,43,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:301;s:6:\"height\";i:279;s:4:\"file\";s:35:\"2015/04/img_bio_ethan_bernstein.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;}}'),(154,44,'_wp_attached_file','2015/04/img_bio_john_dillon.png'),(155,44,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:305;s:6:\"height\";i:281;s:4:\"file\";s:31:\"2015/04/img_bio_john_dillon.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;}}'),(156,45,'_wp_attached_file','2015/04/img_bio_marco_iansiti.png'),(157,45,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:303;s:6:\"height\";i:281;s:4:\"file\";s:33:\"2015/04/img_bio_marco_iansiti.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;}}'),(158,46,'_wp_attached_file','2015/04/img_bio_pete_hartigan.png'),(159,46,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:302;s:6:\"height\";i:281;s:4:\"file\";s:33:\"2015/04/img_bio_pete_hartigan.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;}}'),(160,47,'_wp_attached_file','2015/04/img_bio_sherry_harmon.png'),(161,47,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:303;s:6:\"height\";i:281;s:4:\"file\";s:33:\"2015/04/img_bio_sherry_harmon.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;}}'),(162,48,'_wp_attached_file','2015/04/img_bio_varouzhan_ebrahimian.png'),(163,48,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:301;s:6:\"height\";i:280;s:4:\"file\";s:40:\"2015/04/img_bio_varouzhan_ebrahimian.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;}}'),(169,40,'_wpcf-accomplishments-sort-order','a:2:{i:0;i:259;i:1;i:260;}'),(175,52,'_edit_last','1'),(176,52,'_edit_lock','1429162208:1'),(181,52,'_wpcf-accomplishments-sort-order','a:2:{i:0;i:310;i:1;i:311;}'),(182,53,'_edit_last','1'),(183,53,'_edit_lock','1429161281:1'),(188,53,'_wpcf-accomplishments-sort-order','a:2:{i:0;i:269;i:1;i:270;}'),(193,54,'_edit_last','1'),(194,54,'_edit_lock','1429161293:1'),(199,54,'_wpcf-accomplishments-sort-order','a:2:{i:0;i:274;i:1;i:275;}'),(208,55,'_edit_last','1'),(209,55,'_edit_lock','1429161316:1'),(214,55,'_wpcf-accomplishments-sort-order','a:2:{i:0;i:279;i:1;i:280;}'),(215,56,'_edit_last','1'),(216,56,'_edit_lock','1429161995:1'),(221,56,'_wpcf-accomplishments-sort-order','a:2:{i:0;i:305;i:1;i:306;}'),(222,57,'_edit_last','1'),(223,57,'_edit_lock','1431554994:1'),(229,57,'_wpcf-accomplishments-sort-order','a:3:{i:0;i:608;i:1;i:609;i:2;i:610;}'),(230,58,'_edit_last','1'),(231,58,'_edit_lock','1431555038:1'),(236,58,'_wpcf-accomplishments-sort-order','a:2:{i:0;i:616;i:1;i:617;}'),(237,34,'_edit_lock','1429078483:1'),(238,34,'_edit_last','1'),(239,34,'_wp_page_template','default'),(240,71,'_form_id','5'),(241,71,'_seq_num','1'),(242,71,'_action','submit'),(243,71,'_field_6','Sophia Shoemaker'),(244,71,'_field_8','[email protected]'),(245,71,'_field_7',''),(246,71,'_sub_id','71'),(247,96,'_wp_attached_file','2015/04/signup-success_03.png'),(248,96,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:623;s:6:\"height\";i:638;s:4:\"file\";s:29:\"2015/04/signup-success_03.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;}}'),(249,97,'_form_id','5'),(250,97,'_seq_num','2'),(251,97,'_action','submit'),(252,97,'_field_6','sophia shoemaker'),(253,97,'_field_8','[email protected]'),(254,97,'_field_7',''),(255,97,'_sub_id','97'),(256,40,'wpcf-team-member-image','http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/img_bio_davd_brunner1.png'),(257,40,'wpcf-title','Founder & CEO'),(258,40,'wpcf-linkedin','https://www.linkedin.com/profile/view?id=1520887&authType=NAME_SEARCH&authToken=Ubtg&locale=en_US&srchid=170601901412645131064&srchindex=1&srchtotal=107&trk=vsrp_people_res_name&trkInfo=VSRPsearchId%3A170601901412645131064%2CVSRPtargetId%3A1520887%2CVSRPcmpt%3Aprimary'),(259,40,'wpcf-accomplishments','PhD Information, Technology & Management - Harvard University'),(260,40,'wpcf-accomplishments','BS Computer Science - Stanford University'),(266,53,'wpcf-team-member-image','http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/img_bio_varouzhan_ebrahimian.png'),(267,53,'wpcf-title','CTO'),(268,53,'wpcf-linkedin','https://www.linkedin.com/profile/view?id=1153017&authType=NAME_SEARCH&authToken=edhQ&locale=en_US&trk=tyah&trkInfo=clickedVertical%3Amynetwork%2Cidx%3A1-1-1%2CtarId%3A1429129854879%2Ctas%3Avarouzhan'),(269,53,'wpcf-accomplishments','CTO, RivalWatch (acquired by Hale Global)'),(270,53,'wpcf-accomplishments','Director of Software, Oracle'),(271,54,'wpcf-team-member-image','http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/img_bio_allen_miner.png'),(272,54,'wpcf-title','Chairman'),(273,54,'wpcf-linkedin','https://www.linkedin.com/profile/view?id=7230169&authType=NAME_SEARCH&authToken=ibf0&locale=en_US&srchid=170601901429129976766&srchindex=1&srchtotal=6&trk=vsrp_people_res_name&trkInfo=VSRPsearchId%3A170601901429129976766%2CVSRPtargetId%3A7230169%2CVSRPcmpt%3Aprimary%2CVSRPnm%3Atrue'),(274,54,'wpcf-accomplishments','Founder, Oracle Japan'),(275,54,'wpcf-accomplishments','Founder, Salesforce.com Japan'),(276,55,'wpcf-team-member-image','http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/img_bio_marco_iansiti.png'),(277,55,'wpcf-title','Director'),(278,55,'wpcf-linkedin','https://www.linkedin.com/profile/view?id=312360&authType=NAME_SEARCH&authToken=f3np&locale=en_US&trk=tyah&trkInfo=clickedVertical%3Amynetwork%2Cidx%3A1-1-1%2CtarId%3A1429130023822%2Ctas%3Amarco+ia'),(279,55,'wpcf-accomplishments','Professor & Unit Head, Technology & Operations Management - HBS'),(280,55,'wpcf-accomplishments','Co-founder & Director, Model N (NASDAQ: MODN)'),(302,56,'wpcf-team-member-image','http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/img_bio_ethan_bernstein.png'),(303,56,'wpcf-title','Director'),(304,56,'wpcf-linkedin','https://www.linkedin.com/profile/view?id=465188&authType=NAME_SEARCH&authToken=b4Sf&locale=en_US&trk=tyah&trkInfo=clickedVertical%3Amynetwork%2Cidx%3A2-1-2%2CtarId%3A1429130108140%2Ctas%3Aeth'),(305,56,'wpcf-accomplishments','Assistant Professor, HBS'),(306,56,'wpcf-accomplishments','Author, <a href=\"https://hbr.org/2014/10/the-transparency-trap/ar/1\" target=\"_blank\">\"The Transparency Trap\"</a> Harvard Business Review'),(307,52,'wpcf-team-member-image','http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/img_bio_sherry_harmon.png'),(308,52,'wpcf-title','CRO'),(309,52,'wpcf-linkedin','https://www.linkedin.com/profile/view?id=4597590&authType=NAME_SEARCH&authToken=zBji&locale=en_US&srchid=170601901429129751090&srchindex=1&srchtotal=35&trk=vsrp_people_res_name&trkInfo=VSRPsearchId%3A170601901429129751090%2CVSRPtargetId%3A4597590%2CVSRPcmpt%3Aprimary%2CVSRPnm%3Atrue'),(310,52,'wpcf-accomplishments','Experienced in GTM strategies and execution for B2B SaaS apps'),(311,52,'wpcf-accomplishments','Four IPOs & two acquisitions including SupportSoft and WebEx'),(312,100,'_form_id','5'),(313,100,'_seq_num','3'),(314,100,'_action','submit'),(315,100,'_field_6','sarah davis'),(316,100,'_field_8','[email protected]'),(317,100,'_field_7',''),(318,100,'_sub_id','100'),(319,101,'_wp_attached_file','2015/04/modq-thankyou.gif'),(320,101,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:629;s:6:\"height\";i:643;s:4:\"file\";s:25:\"2015/04/modq-thankyou.gif\";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;}}'),(321,102,'_form_id','5'),(322,102,'_seq_num','4'),(323,102,'_action','submit'),(324,102,'_field_6','Sophia Shoemaker'),(325,102,'_field_8','[email protected]'),(326,102,'_field_7',''),(327,102,'_sub_id','102'),(328,104,'_form_id','5'),(329,104,'_seq_num','5'),(330,104,'_action','submit'),(331,104,'_field_9','<p style="text-align: center;width:105%">Please enter your name and work email address to<br/> reserve a space in our early release program. We'll be in touch as<br/> soon as an invitation becomes available.</p>'),(332,104,'_field_6','sarah davis'),(333,104,'_field_8','[email protected]'),(334,104,'_field_7',''),(335,104,'_sub_id','104'),(336,105,'_menu_item_type','post_type'),(337,105,'_menu_item_menu_item_parent','0'),(338,105,'_menu_item_object_id','7'),(339,105,'_menu_item_object','page'),(340,105,'_menu_item_target',''),(341,105,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(342,105,'_menu_item_xfn',''),(343,105,'_menu_item_url',''),(345,106,'_form_id','5'),(346,106,'_seq_num','6'),(347,106,'_action','submit'),(348,106,'_field_9','<p style="text-align: center;width:105%">Please enter your name and work email address to<br/> reserve a space in our early release program. We'll be in touch as<br/> soon as an invitation becomes available.</p>'),(349,106,'_field_6','sarah davis'),(350,106,'_field_8','[email protected]'),(351,106,'_field_7',''),(352,106,'_sub_id','106'),(353,115,'_edit_last','1'),(354,115,'_wp_page_template','default'),(355,115,'_edit_lock','1431033129:1'),(365,118,'_menu_item_type','post_type'),(366,118,'_menu_item_menu_item_parent','0'),(367,118,'_menu_item_object_id','115'),(368,118,'_menu_item_object','page'),(369,118,'_menu_item_target',''),(370,118,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(371,118,'_menu_item_xfn',''),(372,118,'_menu_item_url',''),(374,119,'_form_id','5'),(375,119,'_seq_num','7'),(376,119,'_action','submit'),(377,119,'_field_9','<p style="text-align: center;width:105%">Please enter your name and work email address to<br/> reserve a space in our early release program. We'll be in touch as<br/> soon as an invitation becomes available.</p>'),(378,119,'_field_6','sarah davis'),(379,119,'_field_8','[email protected]'),(380,119,'_field_7',''),(381,119,'_sub_id','119'),(382,120,'_form_id','5'),(383,120,'_seq_num','8'),(384,120,'_action','submit'),(385,120,'_field_9','<p style="text-align: center;width:105%">Please enter your name and work email address to<br/> reserve a space in our early release program. We'll be in touch as<br/> soon as an invitation becomes available.</p>'),(386,120,'_field_6','sarah davis'),(387,120,'_field_8','[email protected]'),(388,120,'_field_7',''),(389,120,'_sub_id','120'),(390,122,'_edit_last','1'),(391,122,'_edit_lock','1430433896:1'),(392,123,'_wp_attached_file','2015/04/fred_amoroso_03.png'),(393,123,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:301;s:6:\"height\";i:279;s:4:\"file\";s:27:\"2015/04/fred_amoroso_03.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;}}'),(399,122,'_wpcf-accomplishments-sort-order','a:3:{i:0;i:409;i:1;i:410;i:2;i:411;}'),(406,122,'wpcf-team-member-image','http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/fred_amoroso_03.png'),(407,122,'wpcf-title','Senior Advisor'),(408,122,'wpcf-linkedin','https://www.linkedin.com/profile/view?id=133609188&authType=NAME_SEARCH&authToken=Se3G&locale=en_US&srchid=170601901429130356268&srchindex=1&srchtotal=4&trk=vsrp_people_res_name&trkInfo=VSRPsearchId%3A170601901429130356268%2CVSRPtargetId%3A133609188%2CVSRPcmpt%3Aprimary%2CVSRPnm%3Atrue'),(409,122,'wpcf-accomplishments','Chairman, Yahoo (2012 - 2013)'),(410,122,'wpcf-accomplishments','President & CEO, Rovi (2005 - 2011)'),(411,122,'wpcf-accomplishments','President & CEO, Crossworld Software (1999 - 2002)'),(412,125,'_form_id','5'),(413,125,'_seq_num','9'),(414,125,'_action','submit'),(415,125,'_field_9','<p style="text-align: center;width:105%">Please enter your name and work email address to<br/> reserve a space in our early release program. We'll be in touch as<br/> soon as an invitation becomes available.</p>'),(416,125,'_field_6','sarah davis'),(417,125,'_field_8','[email protected]'),(418,125,'_field_7',''),(419,125,'_sub_id','125'),(424,176,'_edit_last','1'),(425,176,'_wp_page_template','default'),(426,176,'_edit_lock','1431387022:1'),(427,178,'_edit_last','1'),(428,178,'_wp_page_template','default'),(429,178,'_edit_lock','1431412706:1'),(431,180,'_form_id','5'),(432,180,'_seq_num','10'),(433,180,'_action','submit'),(434,180,'_field_9','<p style="text-align: center;width:105%">Please enter your name and work email address to reserve a space in our early release program. We'll be in touch as soon as an invitation becomes available.</p>'),(435,180,'_field_6','sarah'),(436,180,'_field_8','[email protected]'),(437,180,'_field_7',''),(438,180,'_sub_id','180'),(439,38,'_wp_old_slug','about-page-fields'),(440,38,'_toolset_edit_last','1431378971'),(441,181,'_wp_types_group_filters_association','any'),(442,181,'_wp_types_group_fields',',page-title,page-sub-title,page-content,'),(443,181,'_wp_types_group_post_types',',page,'),(444,181,'_wp_types_group_terms','all'),(445,181,'_wp_types_group_admin_styles',''),(446,181,'_wp_types_group_templates','all'),(447,181,'_wpcf_conditional_display','a:3:{s:10:\"custom_use\";s:1:\"0\";s:8:\"relation\";s:3:\"AND\";s:6:\"custom\";s:0:\"\";}'),(455,186,'_wp_types_group_filters_association','any'),(456,186,'_wp_types_group_fields',',news-item-date,news-item-url,'),(457,186,'_wp_types_group_post_types',',news-single,'),(458,186,'_wp_types_group_terms','all'),(459,186,'_wp_types_group_admin_styles',''),(460,186,'_wp_types_group_templates','all'),(461,186,'_wpcf_conditional_display','a:3:{s:10:\"custom_use\";s:1:\"0\";s:8:\"relation\";s:3:\"AND\";s:6:\"custom\";s:0:\"\";}'),(462,186,'_toolset_edit_last','1431386954'),(463,188,'_edit_last','1'),(466,188,'wpcf-news-item-title','Former Salesforce.com CEO John Dillon Joins ModuleQ Advisory Board'),(467,188,'_edit_lock','1431381778:1'),(470,188,'_wp_old_slug','auto-draft'),(471,188,'wpcf-news-item-date','1430956800'),(472,188,'wpcf-news-item-url','http://www.prnewswire.com/news-releases/former-salesforcecom-ceo-john-dillon-joins-moduleq-advisory-board-300028661.html'),(473,189,'_edit_last','1'),(474,189,'_edit_lock','1431385838:1'),(475,189,'wpcf-news-item-date','1426809600'),(476,189,'wpcf-news-item-url','http://www.prnewswire.com/news-releases/moduleq-adds-industry-veterans-sherry-harmon-and-lee-cooper-300053862.html'),(477,190,'_edit_last','1'),(478,190,'_edit_lock','1431385883:1'),(479,190,'wpcf-news-item-date','1430092800'),(480,190,'wpcf-news-item-url','http://www.prnewswire.com/news-releases/fred-amoroso-joins-moduleq-advisory-board-300072450.html'),(481,191,'_edit_last','1'),(482,191,'wpcf-news-item-date','1382486400'),(483,191,'wpcf-news-item-url','https://www.youtube.com/watch?v=mOLWtCG3Yxc'),(484,191,'_edit_lock','1431386338:1'),(485,176,'wpcf-page-title','News'),(486,192,'_wp_attached_file','2015/05/thankyou_03.png'),(487,192,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:626;s:6:\"height\";i:640;s:4:\"file\";s:23:\"2015/05/thankyou_03.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;}}'),(489,194,'_form_id','5'),(490,194,'_seq_num','11'),(491,194,'_action','submit'),(492,194,'_field_9','<p style="text-align: center;width:105%">Please enter your name and work email address to reserve a space in our early release program. We'll be in touch as soon as an invitation becomes available.</p>'),(493,194,'_field_6','Sophia Shoemaker'),(494,194,'_field_8','[email protected]'),(495,194,'_field_7',''),(496,194,'_sub_id','194'),(497,7,'wpcf-page-content','[ninja_forms id=5]'),(498,195,'_menu_item_type','post_type'),(499,195,'_menu_item_menu_item_parent','0'),(500,195,'_menu_item_object_id','178'),(501,195,'_menu_item_object','page'),(502,195,'_menu_item_target',''),(503,195,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(504,195,'_menu_item_xfn',''),(505,195,'_menu_item_url',''),(507,196,'_menu_item_type','post_type'),(508,196,'_menu_item_menu_item_parent','0'),(509,196,'_menu_item_object_id','176'),(510,196,'_menu_item_object','page'),(511,196,'_menu_item_target',''),(512,196,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(513,196,'_menu_item_xfn',''),(514,196,'_menu_item_url',''),(516,197,'_menu_item_type','post_type'),(517,197,'_menu_item_menu_item_parent','0'),(518,197,'_menu_item_object_id','9'),(519,197,'_menu_item_object','page'),(520,197,'_menu_item_target',''),(521,197,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(522,197,'_menu_item_xfn',''),(523,197,'_menu_item_url',''),(524,197,'_menu_item_orphaned','1431411262'),(525,198,'_menu_item_type','post_type'),(526,198,'_menu_item_menu_item_parent','0'),(527,198,'_menu_item_object_id','178'),(528,198,'_menu_item_object','page'),(529,198,'_menu_item_target',''),(530,198,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(531,198,'_menu_item_xfn',''),(532,198,'_menu_item_url',''),(534,199,'_menu_item_type','post_type'),(535,199,'_menu_item_menu_item_parent','0'),(536,199,'_menu_item_object_id','176'),(537,199,'_menu_item_object','page'),(538,199,'_menu_item_target',''),(539,199,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(540,199,'_menu_item_xfn',''),(541,199,'_menu_item_url',''),(546,181,'_toolset_edit_last','1431412809'),(547,178,'wpcf-page-title','Contact Us'),(548,178,'wpcf-page-sub-title','What\'s on your mind? We appreciate your interest in Rev and we\'d love to hear from you.'),(549,178,'wpcf-page-content','[ninja_forms id=1]'),(550,200,'_form_id','5'),(551,200,'_seq_num','12'),(552,200,'_action','submit'),(553,200,'_field_9','<h1 style="text-align: center;">Sign Up For Rev</h1>\r\n\r\n<p style="text-align: center;width:105%">Please enter your name and work email address to reserve a space in our early release program. We'll be in touch as soon as an invitation becomes available.</p>'),(554,200,'_field_6','sarah'),(555,200,'_field_8','[email protected]'),(556,200,'_field_7',''),(557,200,'_sub_id','200'),(558,201,'_wp_attached_file','2015/05/RevQuickStart.pdf'),(559,202,'_wp_attached_file','2015/05/The-ModuleQ-Story1.mp3'),(560,202,'_wp_attachment_metadata','a:19:{s:10:\"dataformat\";s:3:\"mp3\";s:8:\"channels\";i:2;s:11:\"sample_rate\";i:44100;s:7:\"bitrate\";i:128000;s:11:\"channelmode\";s:12:\"joint stereo\";s:12:\"bitrate_mode\";s:3:\"cbr\";s:8:\"lossless\";b:0;s:15:\"encoder_options\";s:6:\"CBR128\";s:17:\"compression_ratio\";d:0.090702947845804988;s:10:\"fileformat\";s:3:\"mp3\";s:8:\"filesize\";i:3570669;s:9:\"mime_type\";s:10:\"audio/mpeg\";s:6:\"length\";i:219;s:16:\"length_formatted\";s:4:\"3:39\";s:5:\"title\";s:17:\"The ModuleQ Story\";s:4:\"year\";s:4:\"2015\";s:10:\"encoded_by\";s:31:\"Hindenburg Journalist 1.26.1936\";s:6:\"artist\";s:0:\"\";s:5:\"album\";s:0:\"\";}'),(562,203,'_wp_attached_file','2015/05/podcast.png'),(563,203,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:263;s:6:\"height\";i:75;s:4:\"file\";s:19:\"2015/05/podcast.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;}}'),(578,204,'_edit_last','1'),(579,204,'_wp_page_template','default'),(580,204,'_edit_lock','1431537730:1'),(581,1,'_edit_lock','1431537741:1'),(582,206,'_edit_lock','1431539185:1'),(583,206,'_dp_original','1'),(584,207,'_edit_lock','1431539163:1'),(585,207,'_dp_original','1'),(586,207,'_edit_last','1'),(588,206,'_edit_last','1'),(590,210,'_menu_item_type','post_type'),(591,210,'_menu_item_menu_item_parent','0'),(592,210,'_menu_item_object_id','204'),(593,210,'_menu_item_object','page'),(594,210,'_menu_item_target',''),(595,210,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(596,210,'_menu_item_xfn',''),(597,210,'_menu_item_url',''),(601,211,'_wp_attached_file','2015/05/img_bio_john_dillon.png'),(602,211,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:303;s:6:\"height\";i:281;s:4:\"file\";s:31:\"2015/05/img_bio_john_dillon.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;}}'),(605,57,'wpcf-team-member-image','http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/img_bio_john_dillon.png'),(606,57,'wpcf-title','Senior Advisor'),(607,57,'wpcf-linkedin','https://www.linkedin.com/profile/view?id=31803071&authType=NAME_SEARCH&authToken=uwNv&locale=en_US&trk=tyah&trkInfo=clickedVertical%3Amynetwork%2Cidx%3A1-1-1%2CtarId%3A1429130196996%2Ctas%3Ajohn+dillon'),(608,57,'wpcf-accomplishments','CEO, Engine Yard (2009-2014)'),(609,57,'wpcf-accomplishments','CEO, Salesforce.com (1999 - 2001)'),(610,57,'wpcf-accomplishments','CEO, Hyperion Solutions (1993 - 1999)'),(611,212,'_wp_attached_file','2015/05/pete_hartigan_03.png'),(612,212,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:303;s:6:\"height\";i:281;s:4:\"file\";s:28:\"2015/05/pete_hartigan_03.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;}}'),(613,58,'wpcf-team-member-image','http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/pete_hartigan_03.png'),(614,58,'wpcf-title','Senior Advisor'),(615,58,'wpcf-linkedin','https://www.linkedin.com/profile/view?id=71429&authType=NAME_SEARCH&authToken=Bfs5&locale=en_US&trk=tyah&trkInfo=clickedVertical%3Amynetwork%2Cidx%3A1-1-1%2CtarId%3A1429130251529%2Ctas%3Apete+hartigan'),(616,58,'wpcf-accomplishments','CEO & Founder, Trusted Ventures Trusted Ventures, LLS'),(617,58,'wpcf-accomplishments','Chief Community Office, SoFI'),(619,213,'_menu_item_type','post_type'),(620,213,'_menu_item_menu_item_parent','0'),(621,213,'_menu_item_object_id','115'),(622,213,'_menu_item_object','page'),(623,213,'_menu_item_target',''),(624,213,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(625,213,'_menu_item_xfn',''),(626,213,'_menu_item_url',''),(628,214,'_form_id','5'),(629,214,'_seq_num','13'),(630,214,'_action','submit'),(631,214,'_field_9','<h1 style="text-align: center;font-weight:600;color:#56f538;">Sign Up For Rev</h1> <p style="text-align: center;width:105%">Please enter your name and work email address to reserve a space in our early release program. We'll be in touch as soon as an invitation becomes available.</p>'),(632,214,'_field_6','Sarah'),(633,214,'_field_8','[email protected]'),(634,214,'_field_7',''),(635,214,'_sub_id','214'),(636,215,'_wp_attached_file','2015/05/The-ModuleQ-Story.mp3'),(637,215,'_wp_attachment_metadata','a:19:{s:10:\"dataformat\";s:3:\"mp3\";s:8:\"channels\";i:2;s:11:\"sample_rate\";i:44100;s:7:\"bitrate\";i:128000;s:11:\"channelmode\";s:12:\"joint stereo\";s:12:\"bitrate_mode\";s:3:\"cbr\";s:8:\"lossless\";b:0;s:15:\"encoder_options\";s:6:\"CBR128\";s:17:\"compression_ratio\";d:0.090702947845804988;s:10:\"fileformat\";s:3:\"mp3\";s:8:\"filesize\";i:3570669;s:9:\"mime_type\";s:10:\"audio/mpeg\";s:6:\"length\";i:219;s:16:\"length_formatted\";s:4:\"3:39\";s:5:\"title\";s:17:\"The ModuleQ Story\";s:4:\"year\";s:4:\"2015\";s:10:\"encoded_by\";s:31:\"Hindenburg Journalist 1.26.1936\";s:6:\"artist\";s:0:\"\";s:5:\"album\";s:0:\"\";}'),(638,5,'wpcf-page-title','The Engine That Powers Rev: ModuleQ'),(639,5,'wpcf-page-content','<p style=\"text-align: center;\">The mobile revolution has spread to the enterprise. By bringing their\r\nsupercomputer smartphones to work, professionals are usurping\r\npowers traditionally held by corporate IT departments. Mobile apps grant\r\naccess to dozens of data streams capturing almost every aspect of\r\npersonal and professional life. The data deluge has surged far beyond\r\nthe capacity of humans to monitor, interpret and respond optimally.\r\nMobile professionals need <strong>smarter tools.</strong></p>\r\n \r\n<p style=\"text-align: center;\">ModuleQ develops <strong>Predictive Personal Organizers:</strong> mobile apps that\r\nstreamline and accelerate workflow for on-the-go professionals.\r\nThese apps are powered by the ModuleQ Engine, a cloud-based\r\ncommunication platform that integrates with important personal and\r\nprofessional data streams such as email, social media, and\r\nenterprise workflow systems. The ModuleQ Engine incorporates\r\n<strong>Priority Empathy,</strong> ModuleQ’s proprietary technology for\r\nmodeling user priorities. Priority Empathy enables the ModuleQ Engine\r\nto extract relevant information and generate actionable suggestions.</p>\r\n \r\n<p style=\"text-align: center;\">The ModuleQ Engine supports professional work across diverse industries\r\nand functions, while Predictive Personal Organizers are tailored to\r\nspecific work styles. We are starting with <strong>Rev, a mobile-first sales enablement</strong>\r\napp for frontline sales professionals who want to work smarter while on the go.</p>\r\n \r\n<p style=\"text-align: center;\"><strong>Learn more about ModuleQ from the Founder & CEO, David Brunner.</strong></p>\r\n<p style=\"text-align: center; margin-top: 25px;\"><a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/The-ModuleQ-Story.mp3\" target=\"_blank\"><img class=\"aligncenter wp-image-203 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/podcast.png\" alt=\"podcast\" width=\"263\" height=\"75\" /></a></p>'),(640,216,'_edit_last','1'),(641,216,'_edit_lock','1431633503:1'),(649,225,'_menu_item_type','post_type'),(650,225,'_menu_item_menu_item_parent','0'),(651,225,'_menu_item_object_id','204'),(652,225,'_menu_item_object','page'),(653,225,'_menu_item_target',''),(654,225,'_menu_item_classes','a:1:{i:0;s:11:\"mobile_only\";}'),(655,225,'_menu_item_xfn',''),(656,225,'_menu_item_url',''),(658,206,'_wp_trash_meta_status','publish'),(659,206,'_wp_trash_meta_time','1431642766'),(660,207,'_wp_trash_meta_status','publish'),(661,207,'_wp_trash_meta_time','1431642766'),(662,1,'_wp_trash_meta_status','publish'),(663,1,'_wp_trash_meta_time','1431642766'),(664,1,'_wp_trash_meta_comments_status','a:1:{i:1;s:1:\"1\";}'),(665,227,'_form_id','5'),(666,227,'_seq_num','14'),(667,227,'_action','submit'),(668,227,'_field_9','<h1 style="text-align: center;font-weight:600;color:#56f538;">Sign Up For Rev</h1> <p style="text-align: center;width:105%">Please enter your name and work email address to reserve a space in our early release program. We'll be in touch as soon as an invitation becomes available.</p>'),(669,227,'_field_6','sarah'),(670,227,'_field_8','[email protected]'),(671,227,'_field_7',''),(672,227,'_sub_id','227'),(673,9,'wpcf-page-content','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<strong>Welcome to Rev. The mobile app that helps you\r\nkeep deals on track no matter where you are.</strong>\r\n<p style=\"margin-top: 75px;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/RevQuickStart.pdf\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>');
/*!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 NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(20) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text 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 NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`),
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=228 DEFAULT CHARSET=utf8;
/*!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-03-25 06:16:46','2015-03-25 06:16:46','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!','','trash','open','open','','hello-world','','','2015-05-14 22:32:46','2015-05-14 22:32:46','',0,'http://dev.sophiashoemaker.com/moduleq/?p=1',0,'post','',1),(5,1,'2015-04-13 18:55:54','2015-04-13 18:55:54','','Company','','publish','open','open','','company','','','2015-05-14 18:22:10','2015-05-14 18:22:10','',0,'http://dev.sophiashoemaker.com/moduleq/?page_id=5',0,'page','',0),(6,1,'2015-04-13 18:55:54','2015-04-13 18:55:54','','About','','inherit','open','open','','5-revision-v1','','','2015-04-13 18:55:54','2015-04-13 18:55:54','',5,'http://dev.sophiashoemaker.com/moduleq/?p=6',0,'revision','',0),(7,1,'2015-04-13 18:56:10','2015-04-13 18:56:10','','Sign Up','','publish','open','open','','sign-up','','','2015-05-12 05:54:29','2015-05-12 05:54:29','',0,'http://dev.sophiashoemaker.com/moduleq/?page_id=7',0,'page','',0),(8,1,'2015-04-13 18:56:10','2015-04-13 18:56:10','','Sign Up','','inherit','open','open','','7-revision-v1','','','2015-04-13 18:56:10','2015-04-13 18:56:10','',7,'http://dev.sophiashoemaker.com/moduleq/?p=8',0,'revision','',0),(9,1,'2015-04-13 18:56:43','2015-04-13 18:56:43','','Support','','publish','open','open','','support','','','2015-05-15 04:56:22','2015-05-15 04:56:22','',0,'http://dev.sophiashoemaker.com/moduleq/?page_id=9',0,'page','',0),(10,1,'2015-04-13 18:56:43','2015-04-13 18:56:43','','Support','','inherit','open','open','','9-revision-v1','','','2015-04-13 18:56:43','2015-04-13 18:56:43','',9,'http://dev.sophiashoemaker.com/moduleq/?p=10',0,'revision','',0),(11,1,'2015-04-13 18:57:59','2015-04-13 18:57:59',' ','','','publish','open','open','','11','','','2015-05-14 22:32:21','2015-05-14 22:32:21','',0,'http://dev.sophiashoemaker.com/moduleq/?p=11',4,'nav_menu_item','',0),(12,1,'2015-04-13 18:57:59','2015-04-13 18:57:59',' ','','','publish','open','open','','12','','','2015-05-14 22:32:21','2015-05-14 22:32:21','',0,'http://dev.sophiashoemaker.com/moduleq/?p=12',5,'nav_menu_item','',0),(13,1,'2015-04-13 18:57:59','2015-04-13 18:57:59',' ','','','publish','open','open','','13','','','2015-05-14 22:32:21','2015-05-14 22:32:21','',0,'http://dev.sophiashoemaker.com/moduleq/?p=13',2,'nav_menu_item','',0),(18,1,'2015-04-13 19:01:10','2015-04-13 19:01:10',' ','','','publish','open','open','','18','','','2015-05-14 05:07:44','2015-05-14 05:07:44','',0,'http://dev.sophiashoemaker.com/moduleq/?p=18',2,'nav_menu_item','',0),(19,1,'2015-04-13 19:01:10','2015-04-13 19:01:10',' ','','','publish','open','open','','19','','','2015-05-14 05:07:44','2015-05-14 05:07:44','',0,'http://dev.sophiashoemaker.com/moduleq/?p=19',4,'nav_menu_item','',0),(21,1,'2015-04-13 19:01:41','2015-04-13 19:01:41','','<i class=\"fa fa-lg fa-twitter\"></i>','','publish','open','open','','21','','','2015-05-14 05:07:44','2015-05-14 05:07:44','',0,'http://dev.sophiashoemaker.com/moduleq/?p=21',8,'nav_menu_item','',0),(22,1,'2015-04-13 19:01:41','2015-04-13 19:01:41','','<i class=\"fa fa-lg fa-linkedin\"></i>','','publish','open','open','','22','','','2015-05-14 05:07:44','2015-05-14 05:07:44','',0,'http://dev.sophiashoemaker.com/moduleq/?p=22',9,'nav_menu_item','',0),(23,1,'2015-04-13 19:01:41','2015-04-13 19:01:41','','<i class=\"fa fa-lg fa-facebook\"></i>','','publish','open','open','','23','','','2015-05-14 05:07:44','2015-05-14 05:07:44','',0,'http://dev.sophiashoemaker.com/moduleq/?p=23',10,'nav_menu_item','',0),(24,1,'2015-04-13 19:04:54','2015-04-13 19:04:54','','Home','','publish','open','open','','home','','','2015-04-13 19:04:54','2015-04-13 19:04:54','',0,'http://dev.sophiashoemaker.com/moduleq/?page_id=24',0,'page','',0),(25,1,'2015-04-13 19:04:54','2015-04-13 19:04:54','','Home','','inherit','open','open','','24-revision-v1','','','2015-04-13 19:04:54','2015-04-13 19:04:54','',24,'http://dev.sophiashoemaker.com/moduleq/?p=25',0,'revision','',0),(28,1,'2015-04-13 20:20:00','2015-04-13 20:20:00','','modq-support-buttons-pdf','','inherit','open','open','','modq-support-buttons-pdf','','','2015-04-13 21:10:32','2015-04-13 21:10:32','',9,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png',0,'attachment','image/png',0),(29,1,'2015-04-13 20:20:08','2015-04-13 20:20:08','','modq-support-buttons-video','','inherit','open','open','','modq-support-buttons-video','','','2015-04-13 21:10:41','2015-04-13 21:10:41','',9,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png',0,'attachment','image/png',0),(30,1,'2015-04-13 20:37:35','2015-04-13 20:37:35','','img_bio1','','inherit','open','open','','img_bio1','','','2015-04-13 20:37:35','2015-04-13 20:37:35','',0,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/img_bio11.jpg',0,'attachment','image/jpeg',0),(31,1,'2015-05-07 06:41:00','2015-05-07 06:41:00','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\n<strong> keep deals on track no matter where you are.</strong></p>\n \n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\nIt will show you how to sign up and enter basic info about deals you\'re\nworking on. You\'ll be up and zooming in no time.</p>\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\n<h2 style=\"font-size:35px;text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\n<p style=\"text-align: center;font-size:24px;\">Contact Lee or Michelle at <a style=\"font-weight:400;color:#000;border-bottom:1px solid #d1d1d1\" href=\"mailto:[email protected]\">[email protected]</a></p>\n<div style=\"width:60%;margin:60px auto 0px auto;font-size:24px;\">\n[column-group]\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\n<p style=\"text-align: center;margin-top:20px;margin-bottom:-10px;\">Lee</p>\n<p style=\"text-align: center;\">Engine Tuner</p>\n[/column]\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\n<p style=\"text-align: center;margin-top:20px;margin-bottom:-10px;\">Michelle</p>\n<p style=\"text-align: center;\">Pit Crew Coach</p>\n[/column]\n[/column-group]\n</div>','Support','','inherit','open','open','','9-autosave-v1','','','2015-05-07 06:41:00','2015-05-07 06:41:00','',9,'http://dev.sophiashoemaker.com/moduleq/9-autosave-v1/',0,'revision','',0),(32,1,'2015-04-13 21:13:50','2015-04-13 21:13:50','<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\" size-full wp-image-28 alignleft\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a><a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\" size-full wp-image-29 alignright\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\nIf you like to skim info, download this PDF guide. It includes written instructions and screenshots.','Welcome to ModuleQ Support','','inherit','open','open','','9-revision-v1','','','2015-04-13 21:13:50','2015-04-13 21:13:50','',9,'http://dev.sophiashoemaker.com/moduleq/9-revision-v1/',0,'revision','',0),(33,1,'2015-04-13 21:16:20','2015-04-13 21:16:20','<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\" size-full wp-image-28 alignleft\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a><a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\" size-full wp-image-29 alignright\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n\r\nWelcome to ModuleQ Support\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\nIf you like to skim info, download this PDF guide. It includes written instructions and screenshots.','Support','','inherit','open','open','','9-revision-v1','','','2015-04-13 21:16:20','2015-04-13 21:16:20','',9,'http://dev.sophiashoemaker.com/moduleq/9-revision-v1/',0,'revision','',0),(34,1,'2015-04-15 06:13:08','0000-00-00 00:00:00','This is a preview of how this form will appear on your website','ninja_forms_preview_page','','draft','open','open','','','','','2015-04-15 06:13:08','2015-04-15 06:13:08','',0,'http://moduleq.sophiashoemaker.com/?page_id=34',0,'page','',0),(35,1,'2015-04-13 23:33:45','2015-04-13 23:33:45','<p style=\"text-align: center;\">Welcome to Module Q Support\r\n\r\n</p>\r\n\r\n<pre><code>[column-group]\r\n [column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>[/column]\r\n [column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>[/column]\r\n[/column-group]</code></pre>\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','Support','','inherit','open','open','','9-revision-v1','','','2015-04-13 23:33:45','2015-04-13 23:33:45','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(36,1,'2015-04-13 23:48:41','2015-04-13 23:48:41','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<pre><code>[column-group]\r\n [column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>[/column]\r\n [column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>[/column]\r\n[/column-group]</code></pre>\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ','Support','','inherit','open','open','','9-revision-v1','','','2015-04-13 23:48:41','2015-04-13 23:48:41','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(37,1,'2015-04-14 00:18:18','2015-04-14 00:18:18','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n[column-group]\r\n [column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>[/column]\r\n [column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>[/column]\r\n[/column-group]','Support','','inherit','open','open','','9-revision-v1','','','2015-04-14 00:18:18','2015-04-14 00:18:18','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(38,1,'2015-04-15 00:12:53','2015-04-15 00:12:53','','Team Member Fields','','publish','open','open','','team-member-fields','','','2015-05-11 21:16:11','2015-05-11 21:16:11','',0,'http://moduleq.sophiashoemaker.com/wp-types-group/about-page-fields/',0,'wp-types-group','',0),(40,1,'2015-04-15 00:15:57','2015-04-15 00:15:57','','David Brunner','','publish','closed','closed','','david-brunner','','','2015-04-16 05:15:08','2015-04-16 05:15:08','',0,'http://moduleq.sophiashoemaker.com/?post_type=team-member&p=40',3,'team-member','',0),(41,1,'2015-04-15 00:14:28','2015-04-15 00:14:28','','img_bio_allen_miner','','inherit','open','open','','img_bio_allen_miner','','','2015-04-15 00:14:28','2015-04-15 00:14:28','',0,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/img_bio_allen_miner.png',0,'attachment','image/png',0),(42,1,'2015-04-15 00:14:29','2015-04-15 00:14:29','','img_bio_davd_brunner','','inherit','open','open','','img_bio_davd_brunner','','','2015-04-15 00:14:29','2015-04-15 00:14:29','',0,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/img_bio_davd_brunner1.png',0,'attachment','image/png',0),(43,1,'2015-04-15 00:14:30','2015-04-15 00:14:30','','img_bio_ethan_bernstein','','inherit','open','open','','img_bio_ethan_bernstein','','','2015-04-15 00:14:30','2015-04-15 00:14:30','',0,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/img_bio_ethan_bernstein.png',0,'attachment','image/png',0),(44,1,'2015-04-15 00:14:30','2015-04-15 00:14:30','','img_bio_john_dillon','','inherit','open','open','','img_bio_john_dillon','','','2015-04-15 00:14:30','2015-04-15 00:14:30','',0,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/img_bio_john_dillon.png',0,'attachment','image/png',0),(45,1,'2015-04-15 00:14:31','2015-04-15 00:14:31','','img_bio_marco_iansiti','','inherit','open','open','','img_bio_marco_iansiti','','','2015-04-15 00:14:31','2015-04-15 00:14:31','',0,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/img_bio_marco_iansiti.png',0,'attachment','image/png',0),(46,1,'2015-04-15 00:14:32','2015-04-15 00:14:32','','img_bio_pete_hartigan','','inherit','open','open','','img_bio_pete_hartigan','','','2015-04-15 00:14:32','2015-04-15 00:14:32','',0,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/img_bio_pete_hartigan.png',0,'attachment','image/png',0),(47,1,'2015-04-15 00:14:32','2015-04-15 00:14:32','','img_bio_sherry_harmon','','inherit','open','open','','img_bio_sherry_harmon','','','2015-04-15 00:14:32','2015-04-15 00:14:32','',0,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/img_bio_sherry_harmon.png',0,'attachment','image/png',0),(48,1,'2015-04-15 00:14:33','2015-04-15 00:14:33','','img_bio_varouzhan_ebrahimian','','inherit','open','open','','img_bio_varouzhan_ebrahimian','','','2015-04-15 00:14:33','2015-04-15 00:14:33','',0,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/img_bio_varouzhan_ebrahimian.png',0,'attachment','image/png',0),(50,1,'2015-05-06 23:10:15','2015-05-06 23:10:15','<h1 style=\"text-align: center; font-weight: 600;\"><span style=\"color: #56f538;\">The Engine That Powers Rev: ModuleQ</span></h1>\n<p style=\"text-align: center;\">The mobile revolution has spread to the enterprise. By bringing their\nsupercomputer smartphones to work, professionals are usurping\npowers traditionally held by corporate IT departments. Mobile apps grant\naccess to dozens of data streams capturing almost every aspect of\npersonal and professional life. The data deluge has surged far beyond\nthe capacity of humans to monitor, interpret and respond optimally.\nMobile professionals need <strong>smarter tools.</strong></p>\n \n<p style=\"text-align: center;\">ModuleQ develops <strong>Predictive Personal Organizers:</strong> mobile apps that\nstreamline and accelerate workflow for on-the-go professionals.\nThese apps are powered by the ModuleQ Engine, a cloud-based\ncommunication platform that integrates with important personal and\nprofessional data streams such as email, social media, and\nenterprise workflow systems. The ModuleQ Engine incorporates\n<strong>Priority Empathy,</strong> ModuleQ’s proprietary technology for\nmodeling user priorities. Priority Empathy enables the ModuleQ Engine\nto extract relevant information and generate actionable suggestions.</p>\n \n<p style=\"text-align: center;\">The ModuleQ Engine supports professional work across diverse industries\nand functions, while Predictive Personal Organizers are tailored to\nspecific work styles. We are starting with <strong>Rev, a mobile-first sales enablement</strong>\napp for frontline sales professionals who want to work smarter while on the go.</p>\n \n<p style=\"text-align: center;\"><strong>Learn more about ModuleQ from the Founder & CEO, David Brunner.</strong></p>','Company','','inherit','open','open','','5-autosave-v1','','','2015-05-06 23:10:15','2015-05-06 23:10:15','',5,'http://moduleq.sophiashoemaker.com/5-autosave-v1/',0,'revision','',0),(51,1,'2015-04-15 00:30:42','2015-04-15 00:30:42','<h1 style=\"text-align: center;\">New Subhead Goes Here</h1>\r\nNew text for this page will be written soon. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam a dolor non quam condimentum malesuada. Fusce viverra dictum eleifend. Donec sit amet feugiat leo. Etiam et vehicula lacus. Quisque in ligula vel sem dictum vulputate ac quis massa. Suspendisse at mi dui.','About','','inherit','open','open','','5-revision-v1','','','2015-04-15 00:30:42','2015-04-15 00:30:42','',5,'http://moduleq.sophiashoemaker.com/5-revision-v1/',0,'revision','',0),(52,1,'2015-04-15 00:31:57','2015-04-15 00:31:57','','Sherry Harmon','','publish','closed','closed','','sherry-harmon','','','2015-04-16 05:31:03','2015-04-16 05:31:03','',0,'http://moduleq.sophiashoemaker.com/?post_type=team-member&p=52',2,'team-member','',0),(53,1,'2015-04-15 00:33:01','2015-04-15 00:33:01','','Varouzhan Ebrahimian','','publish','closed','closed','','varouzhan-ebrahimian','','','2015-04-16 05:16:48','2015-04-16 05:16:48','',0,'http://moduleq.sophiashoemaker.com/?post_type=team-member&p=53',1,'team-member','',0),(54,1,'2015-04-15 00:37:28','2015-04-15 00:37:28','','Allen Miner','','publish','closed','closed','','allen-miner','','','2015-04-16 05:17:14','2015-04-16 05:17:14','',0,'http://moduleq.sophiashoemaker.com/?post_type=team-member&p=54',6,'team-member','',0),(55,1,'2015-04-15 04:50:03','2015-04-15 04:50:03','','Marco Iansiti','','publish','closed','closed','','marco-iansiti','','','2015-04-16 05:17:37','2015-04-16 05:17:37','',0,'http://moduleq.sophiashoemaker.com/?post_type=team-member&p=55',5,'team-member','',0),(56,1,'2015-04-15 04:51:43','2015-04-15 04:51:43','','Ethan Bernstein','','publish','closed','closed','','ethan-bernstein','','','2015-04-16 05:28:32','2015-04-16 05:28:32','',0,'http://moduleq.sophiashoemaker.com/?post_type=team-member&p=56',4,'team-member','',0),(57,1,'2015-04-15 04:53:07','2015-04-15 04:53:07','','John Dillon','','publish','closed','closed','','john-dillon','','','2015-05-13 21:54:13','2015-05-13 21:54:13','',0,'http://moduleq.sophiashoemaker.com/?post_type=team-member&p=57',8,'team-member','',0),(58,1,'2015-04-15 04:54:10','2015-04-15 04:54:10','','Pete Hartigan','','publish','closed','closed','','pete-hartigan','','','2015-05-13 22:10:37','2015-05-13 22:10:37','',0,'http://moduleq.sophiashoemaker.com/?post_type=team-member&p=58',7,'team-member','',0),(60,1,'2015-04-15 05:25:41','2015-04-15 05:25:41','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n[column-group]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<p>If you like to skim info, download this PDF guide. It includes written instructions and screenshots.</p>\r\n\r\n[/column]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n<p>If you want a visual walk through, watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n<hr/>\r\n<h3>For Further Assistance</h3>\r\n<p>If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 05:25:41','2015-04-15 05:25:41','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(61,1,'2015-04-15 05:30:06','2015-04-15 05:30:06','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"text-align: center;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\nIf you like to skim info, download this PDF guide. It includes written instructions and screenshots.\r\n\r\n[/column]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n\r\nIf you want a visual walk through, watch this quick 3 minute video\r\n\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h3>For Further Assistance</h3>\r\nIf you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 05:30:06','2015-04-15 05:30:06','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(62,1,'2015-04-15 05:31:02','2015-04-15 05:31:02','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"text-align: center;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\nIf you like to skim info, download this PDF guide. It includes written instructions and screenshots.\r\n\r\n[/column]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n\r\nIf you want a visual walk through, watch this quick 3 minute video\r\n\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 05:31:02','2015-04-15 05:31:02','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(63,1,'2015-04-15 05:33:08','2015-04-15 05:33:08','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"text-align: center;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\nIf you like to skim info, download this PDF guide. It includes written instructions and screenshots.\r\n\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n\r\nIf you want a visual walk through, watch this quick 3 minute video\r\n\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 05:33:08','2015-04-15 05:33:08','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(64,1,'2015-04-15 05:35:33','2015-04-15 05:35:33','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"text-align: center;margin-top:20px;margin-bottom:40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\nIf you like to skim info, download this PDF guide. It includes written instructions and screenshots.\r\n\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n\r\nIf you want a visual walk through, watch this quick 3 minute video\r\n\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 05:35:33','2015-04-15 05:35:33','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(65,1,'2015-04-15 05:52:08','2015-04-15 05:52:08','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"text-align: center; margin-top: 20px; margin-bottom: 40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n<p style=\"width:50%;margin:auto;\">If you like to skim info, download this PDF guide. It includes written instructions and screenshots.</p>\r\n\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n\r\n<p style=\"width:50%;margin:auto;\">If you want a visual walk through, watch this quick 3 minute video</p>\r\n\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center;width:50%;margin:auto;line-height:1.3em\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 05:52:08','2015-04-15 05:52:08','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(66,1,'2015-04-15 06:08:43','2015-04-15 06:08:43','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"text-align: center; margin-top: 20px; margin-bottom: 40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n<h2 style=\"width:70%;margin-left:20px;\">If you like to skim info, download this PDF guide. It includes written instructions and screenshots.</h2>\r\n\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n\r\n<h2 style=\"width:70%;margin-left:20px;\">If you want a visual walk through, watch this quick 3 minute video</h2>\r\n\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center;width:50%;margin:auto;line-height:1.3em\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 06:08:43','2015-04-15 06:08:43','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(67,1,'2015-04-15 06:09:34','2015-04-15 06:09:34','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"text-align: center; margin-top: 20px; margin-bottom: 40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n<h2 style=\"line-height:2em;width:70%;margin-left:20px;margin-top:15px;\">If you like to skim info, download this PDF guide. It includes written instructions and screenshots.</h2>\r\n\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n\r\n<h2 style=\"line-height:2em;width:70%;margin-left:20px;margin-top:15px;\">If you want a visual walk through, watch this quick 3 minute video</h2>\r\n\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center;width:50%;margin:auto;line-height:1.3em\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 06:09:34','2015-04-15 06:09:34','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(68,1,'2015-04-15 06:10:12','2015-04-15 06:10:12','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<h2 style=\"text-align: center; margin-top: 20px; margin-bottom: 40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</h2>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n<h2 style=\"line-height:2em;width:70%;margin-left:20px;margin-top:15px;\">If you like to skim info, download this PDF guide. It includes written instructions and screenshots.</h2>\r\n\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n\r\n<h2 style=\"line-height:2em;width:70%;margin-left:20px;margin-top:15px;\">If you want a visual walk through, watch this quick 3 minute video</h2>\r\n\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center;width:50%;margin:auto;line-height:1.3em\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 06:10:12','2015-04-15 06:10:12','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(69,1,'2015-04-15 06:13:08','2015-04-15 06:13:08','This is a preview of how this form will appear on your website','ninja_forms_preview_page','','inherit','open','open','','34-revision-v1','','','2015-04-15 06:13:08','2015-04-15 06:13:08','',34,'http://moduleq.sophiashoemaker.com/34-revision-v1/',0,'revision','',0),(70,1,'2015-04-15 06:18:07','2015-04-15 06:18:07','[ninja_forms id=5]','Sign Up','','inherit','open','open','','7-revision-v1','','','2015-04-15 06:18:07','2015-04-15 06:18:07','',7,'http://moduleq.sophiashoemaker.com/7-revision-v1/',0,'revision','',0),(71,1,'2015-04-15 06:18:21','2015-04-15 06:18:21','','','','publish','open','open','','71','','','2015-04-15 06:18:21','2015-04-15 06:18:21','',0,'http://moduleq.sophiashoemaker.com/nf_sub/71/',0,'nf_sub','',0),(72,1,'2015-04-15 06:21:08','2015-04-15 06:21:08','<h1 style=\"text-align: center;\">Sign Up For ModuleQ</h1>\nPlease enter your name and work email address to reserve a space in our early release program.\n\n[ninja_forms id=5]','Sign Up','','inherit','open','open','','7-autosave-v1','','','2015-04-15 06:21:08','2015-04-15 06:21:08','',7,'http://moduleq.sophiashoemaker.com/7-autosave-v1/',0,'revision','',0),(73,1,'2015-04-15 06:21:36','2015-04-15 06:21:36','<h1 style=\"text-align: center;\">Sign Up For ModuleQ</h1>\r\n<p style=\"text-align: center;\">Please enter your name and work email address to reserve a space in our early release program. We\'ll be in touch as soon as an invitation becomes available.</p>\r\n[ninja_forms id=5]','Sign Up','','inherit','open','open','','7-revision-v1','','','2015-04-15 06:21:36','2015-04-15 06:21:36','',7,'http://moduleq.sophiashoemaker.com/7-revision-v1/',0,'revision','',0),(74,1,'2015-04-15 16:34:00','2015-04-15 16:34:00','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"text-align: center; margin-top: 20px; margin-bottom: 40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"line-height: 2em; width: 70%; margin-left: 20px; margin-top: 15px;\">If you like to skim info, download this PDF guide. It includes written instructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"line-height: 2em; width: 70%; margin-left: 20px; margin-top: 15px;\">If you want a visual walk through, watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 50%; margin: auto; line-height: 1.3em;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 16:34:00','2015-04-15 16:34:00','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(75,1,'2015-04-15 16:34:40','2015-04-15 16:34:40','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"text-align: center; margin-top: 20px; margin-bottom: 40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"line-height: 2em; width: 70%; margin-left: 20px; margin-top: 15px; text-align: left;\">If you like to skim info, download this PDF guide. It includes written instructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"line-height: 2em; width: 70%; margin-left: 20px; margin-top: 15px; text-align: left;\">If you want a visual walk through, watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 50%; margin: auto; line-height: 1.3em;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 16:34:40','2015-04-15 16:34:40','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(76,1,'2015-04-15 16:52:57','2015-04-15 16:52:57','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p margin-top: 20px; margin-bottom: 40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"margin-left: 20px; margin-top: 15px; text-align: left;\">If you like to skim info, download this PDF guide. It includes written instructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"margin-left: 20px; margin-top: 15px; text-align: left;\">If you want a visual walk through, watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 60%;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 16:52:57','2015-04-15 16:52:57','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(77,1,'2015-04-15 16:54:14','2015-04-15 16:54:14','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p>Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"line-height: 2em; width: 70%; margin-left: 20px; margin-top: 15px; text-align: left;\">If you like to skim info, download this PDF guide. It includes written instructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"line-height: 2em; width: 70%; margin-left: 20px; margin-top: 15px; text-align: left;\">If you want a visual walk through, watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 50%; margin: auto; line-height: 1.3em;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 16:54:14','2015-04-15 16:54:14','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(78,1,'2015-04-15 16:54:45','2015-04-15 16:54:45','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"margin-top:20px; margin-bottom:40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"line-height: 2em; width: 70%; margin-left: 20px; margin-top: 15px; text-align: left;\">If you like to skim info, download this PDF guide. It includes written instructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"line-height: 2em; width: 70%; margin-left: 20px; margin-top: 15px; text-align: left;\">If you want a visual walk through, watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 50%; margin: auto; line-height: 1.3em;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 16:54:45','2015-04-15 16:54:45','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(79,1,'2015-04-15 16:56:05','2015-04-15 16:56:05','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"margin-top:20px; margin-bottom:40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"margin-left: 50px; margin-top: 15px; text-align: left;\">If you like to skim info, download this PDF guide. It includes written instructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"margin-left: 50px; margin-top: 15px; text-align: left;\">If you want a visual walk through, watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 50%; margin: auto; line-height: 1.3em;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 16:56:05','2015-04-15 16:56:05','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(80,1,'2015-04-15 16:56:52','2015-04-15 16:56:52','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"margin-top:20px; margin-bottom:40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"margin-left: 50px; margin-top: 15px; text-align: left;\">If you like to skim info, download this PDF guide. It includes written <br/>instructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"margin-left: 50px; margin-top: 15px; text-align: left;\">If you want a visual walk through, watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 50%; margin: auto; line-height: 1.3em;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 16:56:52','2015-04-15 16:56:52','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(81,1,'2015-04-15 16:57:11','2015-04-15 16:57:11','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"margin-top:20px; margin-bottom:40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"margin-left: 50px; margin-top: 15px; text-align: left;\">If you like to skim info, download this PDF guide. It includes written instructions<br/> and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"margin-left: 50px; margin-top: 15px; text-align: left;\">If you want a visual walk through, watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 50%; margin: auto; line-height: 1.3em;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 16:57:11','2015-04-15 16:57:11','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(82,1,'2015-04-15 16:58:30','2015-04-15 16:58:30','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"margin-top:20px; margin-bottom:40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"margin-left: 50px; margin-top: 15px; text-align: left;\">If you like to skim info, download this PDF guide. It includes written <br/>instructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"margin-left: 50px; margin-top: 15px; text-align: left;\">If you want a visual walk through, watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 50%; margin: auto; line-height: 1.3em;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 16:58:30','2015-04-15 16:58:30','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(83,1,'2015-04-15 16:59:02','2015-04-15 16:59:02','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"margin-top:20px; margin-bottom:40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"margin-left: 50px; margin-top: 15px; text-align: left;\">If you like to skim info, download <br/>this PDF guide. It includes written <br/>instructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"margin-left: 50px; margin-top: 15px; text-align: left;\">If you want a visual walk through, watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 50%; margin: auto; line-height: 1.3em;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 16:59:02','2015-04-15 16:59:02','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(84,1,'2015-04-15 16:59:36','2015-04-15 16:59:36','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"margin-top:20px; margin-bottom:40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"width:90%;margin-left: 50px; margin-top: 15px; text-align: left;\">If you like to skim info, download <br/>this PDF guide. It includes written <br/>instructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"margin-left: 50px; margin-top: 15px; text-align: left;\">If you want a visual walk through, watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 50%; margin: auto; line-height: 1.3em;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 16:59:36','2015-04-15 16:59:36','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(85,1,'2015-04-15 17:00:09','2015-04-15 17:00:09','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"margin-top:20px; margin-bottom:40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"margin-left: 60px; margin-top: 15px; text-align: left;\">If you like to skim info, download <br/>this PDF guide. It includes written <br/>instructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"margin-left: 50px; margin-top: 15px; text-align: left;\">If you want a visual walk through, watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 50%; margin: auto; line-height: 1.3em;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 17:00:09','2015-04-15 17:00:09','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(86,1,'2015-04-15 17:07:30','2015-04-15 17:07:30','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"margin-top:20px; margin-bottom:40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone size-full wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"margin-left: 60px; margin-top: 15px; text-align: left;\">If you like to skim info, download <br/>this PDF guide. It includes written <br/>instructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone size-full wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"395\" height=\"99\" /></a>\r\n<p style=\"margin-left: 50px; margin-top: 15px; text-align: left;\">If you want a visual walk through,<br/> watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 50%; margin: auto; line-height: 1.3em;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 17:07:30','2015-04-15 17:07:30','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(87,1,'2015-04-15 17:09:51','2015-04-15 17:09:51','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\nLearn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.\r\n\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"340\" height=\"85\" /></a>\r\n<p style=\"margin-left: 20px; margin-top: 15px; text-align: left;\">If you like to skim info, download this PDF guide. It includes written instructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"345\" height=\"86\" /></a>\r\n<p style=\"margin-left: 20px; margin-top: 15px; text-align: left;\">If you want a visual walk through, watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 60%;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 17:09:51','2015-04-15 17:09:51','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(88,1,'2015-04-15 17:11:51','2015-04-15 17:11:51','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\nLearn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.\r\n\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"370\" height=\"93\" /></a>\r\n<p style=\"margin-left: 45px; margin-top: 15px; text-align: left;\">If you like to skim info, download this PDF guide. It includes written instructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"370\" height=\"93\" /></a>\r\n<p style=\"margin-left: 45px; margin-top: 15px; text-align: left;\">If you want a visual walk through, watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 60%;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 17:11:51','2015-04-15 17:11:51','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(89,1,'2015-04-15 17:13:06','2015-04-15 17:13:06','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\nLearn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.\r\n\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"370\" height=\"93\" /></a>\r\n<p style=\"margin-left: 45px; margin-top: 15px; text-align: left;\">If you like to skim info, download this PDF guide. It includes written instructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"370\" height=\"93\" /></a>\r\n<p style=\"margin-left: 45px; margin-top: 15px; text-align: left;\">If you want a visual walk through, <br/>watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 60%;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 17:13:06','2015-04-15 17:13:06','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(90,1,'2015-04-15 17:13:16','2015-04-15 17:13:16','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\nLearn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.\r\n\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"370\" height=\"93\" /></a>\r\n<p style=\"margin-left: 55px; margin-top: 15px; text-align: left;\">If you like to skim info, download this PDF guide. It includes written instructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"370\" height=\"93\" /></a>\r\n<p style=\"margin-left: 55px; margin-top: 15px; text-align: left;\">If you want a visual walk through, <br/>watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 60%;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 17:13:16','2015-04-15 17:13:16','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(91,1,'2015-04-15 17:13:54','2015-04-15 17:13:54','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\nLearn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.\r\n\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"370\" height=\"93\" /></a>\r\n<p style=\"margin-left: 55px; margin-top: 15px; text-align: left;\">If you like to skim info, download<br/> this PDF guide. It includes written <br/>instructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"370\" height=\"93\" /></a>\r\n<p style=\"margin-left: 55px; margin-top: 15px; text-align: left;\">If you want a visual walk through, <br/>watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 60%;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 17:13:54','2015-04-15 17:13:54','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(92,1,'2015-04-15 17:14:32','2015-04-15 17:14:32','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"margin-top:20px; margin-bottom:40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"370\" height=\"93\" /></a>\r\n<p style=\"margin-left: 55px; margin-top: 15px; text-align: left;\">If you like to skim info, download<br/> this PDF guide. It includes written <br/>instructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"370\" height=\"93\" /></a>\r\n<p style=\"margin-left: 55px; margin-top: 15px; text-align: left;\">If you want a visual walk through, <br/>watch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 60%;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 17:14:32','2015-04-15 17:14:32','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(93,1,'2015-04-15 17:15:11','2015-04-15 17:15:11','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"margin-top: 20px; margin-bottom: 40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"345\" height=\"86\" /></a>\r\n<p style=\"margin-left: 55px; margin-top: 15px; text-align: left;\">If you like to skim info, download\r\nthis PDF guide. It includes written\r\ninstructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"345\" height=\"86\" /></a>\r\n<p style=\"margin-left: 55px; margin-top: 15px; text-align: left;\">If you want a visual walk through,\r\nwatch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 60%;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 17:15:11','2015-04-15 17:15:11','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(94,1,'2015-04-15 17:15:32','2015-04-15 17:15:32','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"margin-top: 20px; margin-bottom: 40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"345\" height=\"86\" /></a>\r\n<p style=\"margin-left: 75px; margin-top: 15px; text-align: left;\">If you like to skim info, download\r\nthis PDF guide. It includes written\r\ninstructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"345\" height=\"86\" /></a>\r\n<p style=\"margin-left: 75px; margin-top: 15px; text-align: left;\">If you want a visual walk through,\r\nwatch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 60%;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 17:15:32','2015-04-15 17:15:32','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(95,1,'2015-04-15 17:16:24','2015-04-15 17:16:24','<h1 style=\"text-align: center;\">Welcome to Module Q Support</h1>\r\n<p style=\"margin-top: 20px; margin-bottom: 40px;\">Learn how to get the most out of MAV with our Quick Start PDF or Quick Start Video.</p>\r\n[column-group]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"alignnone wp-image-28\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"345\" height=\"86\" /></a>\r\n<p style=\"margin-left: 75px; margin-top: 15px; text-align: left;\">If you like to skim info, download\r\nthis PDF guide. It includes written\r\ninstructions and screenshots.</p>\r\n[/column]\r\n[column]\r\n\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\"><img class=\"alignnone wp-image-29\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-video.png\" alt=\"modq-support-buttons-video\" width=\"345\" height=\"86\" /></a>\r\n<p style=\"margin-left: 75px; margin-top: 15px; text-align: left;\">If you want a visual walk through,\r\nwatch this quick 3 minute video</p>\r\n[/column]\r\n[/column-group]\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;font-weight:100;margin-bottom:40px\">For Further Assistance</h2>\r\n<p style=\"text-align: center; width: 60%;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-04-15 17:16:24','2015-04-15 17:16:24','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(96,1,'2015-04-15 17:28:03','2015-04-15 17:28:03','','signup-success_03','','inherit','open','open','','signup-success_03','','','2015-04-15 17:28:03','2015-04-15 17:28:03','',0,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/signup-success_03.png',0,'attachment','image/png',0),(97,1,'2015-04-15 17:30:21','2015-04-15 17:30:21','','','','publish','open','open','','97','','','2015-04-15 17:30:21','2015-04-15 17:30:21','',0,'http://moduleq.sophiashoemaker.com/nf_sub/97/',0,'nf_sub','',0),(99,1,'2015-04-16 18:10:06','2015-04-16 18:10:06','<h1 style=\"text-align: center;\">Sign Up For ModuleQ</h1>\r\n<p style=\"text-align: center;width:55%\">Please enter your name and work email address to reserve a space in our early release program. We\'ll be in touch as soon as an invitation becomes available.</p>\r\n[ninja_forms id=5]','Sign Up','','inherit','open','open','','7-revision-v1','','','2015-04-16 18:10:06','2015-04-16 18:10:06','',7,'http://moduleq.sophiashoemaker.com/7-revision-v1/',0,'revision','',0),(100,0,'2015-04-16 18:50:25','2015-04-16 18:50:25','','','','publish','open','open','','100','','','2015-04-16 18:50:25','2015-04-16 18:50:25','',0,'http://moduleq.sophiashoemaker.com/nf_sub/100/',0,'nf_sub','',0),(101,1,'2015-04-16 21:29:04','2015-04-16 21:29:04','','modq-thankyou','','inherit','open','open','','modq-thankyou','','','2015-04-16 21:29:04','2015-04-16 21:29:04','',0,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-thankyou.gif',0,'attachment','image/gif',0),(102,1,'2015-04-16 21:31:22','2015-04-16 21:31:22','','','','publish','open','open','','102','','','2015-04-16 21:31:22','2015-04-16 21:31:22','',0,'http://moduleq.sophiashoemaker.com/nf_sub/102/',0,'nf_sub','',0),(103,1,'2015-04-16 22:02:39','2015-04-16 22:02:39','<h1 style=\"text-align: center;\">Sign Up For ModuleQ</h1>\r\n\r\n[ninja_forms id=5]','Sign Up','','inherit','open','open','','7-revision-v1','','','2015-04-16 22:02:39','2015-04-16 22:02:39','',7,'http://moduleq.sophiashoemaker.com/7-revision-v1/',0,'revision','',0),(104,0,'2015-04-16 22:22:35','2015-04-16 22:22:35','','','','publish','open','open','','104','','','2015-04-16 22:22:35','2015-04-16 22:22:35','',0,'http://moduleq.sophiashoemaker.com/nf_sub/104/',0,'nf_sub','',0),(105,1,'2015-04-17 03:54:33','2015-04-17 03:54:33',' ','','','publish','open','open','','105','','','2015-05-14 05:07:44','2015-05-14 05:07:44','',0,'http://moduleq.sophiashoemaker.com/?p=105',5,'nav_menu_item','',0),(106,0,'2015-04-17 18:54:05','2015-04-17 18:54:05','','','','publish','open','open','','106','','','2015-04-17 18:54:05','2015-04-17 18:54:05','',0,'http://moduleq.sophiashoemaker.com/nf_sub/106/',0,'nf_sub','',0),(107,1,'2015-04-23 04:16:48','2015-04-23 04:16:48','<h1 style=\"text-align: center;\">New Subhead Goes Here</h1>\r\n<p style=\"text-align: center;\">Winning technologies not only restructure our work, they do it in ways that enhance our strengths. From the potter\'s wheel to 3D CAD systems, intelligent restructurings create new possibilities. We call this measure of intelligence the Modularity Quotient — the inspiration for our company name.</p>\r\n<p style=\"text-align: center;\">Rev is ModuleQ\'s solution to solve work challenges in the complex and often cumbersome processes that sales professionals have to manage. Adapting our technology to complement their work was a natural place to focus.</p>','About','','inherit','open','open','','5-revision-v1','','','2015-04-23 04:16:48','2015-04-23 04:16:48','',5,'http://moduleq.sophiashoemaker.com/5-revision-v1/',0,'revision','',0),(108,1,'2015-04-23 04:17:26','2015-04-23 04:17:26','<h1 style=\"text-align: center;\">People and Technology</h1>\r\n<p style=\"text-align: center;\">Winning technologies not only restructure our work, they do it in ways that enhance our strengths. From the potter\'s wheel to 3D CAD systems, intelligent restructurings create new possibilities. We call this measure of intelligence the Modularity Quotient — the inspiration for our company name.</p>\r\n<p style=\"text-align: center;\">Rev is ModuleQ\'s solution to solve work challenges in the complex and often cumbersome processes that sales professionals have to manage. Adapting our technology to complement their work was a natural place to focus.</p>','About','','inherit','open','open','','5-revision-v1','','','2015-04-23 04:17:26','2015-04-23 04:17:26','',5,'http://moduleq.sophiashoemaker.com/5-revision-v1/',0,'revision','',0),(109,1,'2015-04-23 04:18:30','2015-04-23 04:18:30','<h1 style=\"text-align: center;\">People and Technology</h1>\r\n<p style=\"text-align: center;\">Winning technologies not only restructure our work, they do it in ways that enhance our strengths. From the potter\'s wheel to 3D CAD systems, intelligent restructurings create new possibilities. We call this measure of intelligence the <a href=\"http://www.davidjamesbrunner.org/modularity-quotient\" target=\"_blank\">Modularity Quotient</a> — the inspiration for our company name.</p>\r\n<p style=\"text-align: center;\">Rev is ModuleQ\'s solution to solve work challenges in the complex and often cumbersome processes that sales professionals have to manage. Adapting our technology to complement their work was a natural place to focus.</p>','About','','inherit','open','open','','5-revision-v1','','','2015-04-23 04:18:30','2015-04-23 04:18:30','',5,'http://moduleq.sophiashoemaker.com/5-revision-v1/',0,'revision','',0),(110,1,'2015-04-23 04:22:32','2015-04-23 04:22:32','<h1 style=\"text-align: center;\">People and Technology</h1>\r\n<p style=\"text-align: center;\">Winning technologies not only restructure our work, they do it in ways that enhance our strengths. From the potter\'s wheel to 3D CAD systems, intelligent restructurings create new possibilities. We call this measure of intelligence the <a href=\"http://www.davidjamesbrunner.org/modularity-quotient\" target=\"_blank\">Modularity Quotient</a> — the inspiration for our company name.</p>\r\n<p style=\"text-align: center;\">Rev is ModuleQ\'s solution to solve work challenges in the complex and often cumbersome processes that sales professionals have to manage. Adapting our technology to complement their work was a natural place to focus.</p>','Company','','inherit','open','open','','5-revision-v1','','','2015-04-23 04:22:32','2015-04-23 04:22:32','',5,'http://moduleq.sophiashoemaker.com/5-revision-v1/',0,'revision','',0),(111,1,'2015-04-23 04:22:38','2015-04-23 04:22:38','<h1 style=\"text-align: center;\">People and Technology</h1>\r\n<p style=\"text-align: center;\">Winning technologies not only restructure our work, they do it in ways that enhance our strengths. From the potter\'s wheel to 3D CAD systems, intelligent restructurings create new possibilities. We call this measure of intelligence the <a href=\"http://www.davidjamesbrunner.org/modularity-quotient\" target=\"_blank\">Modularity Quotient</a> — the inspiration for our company name.</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\">Rev is ModuleQ\'s solution to solve work challenges in the complex and often cumbersome processes that sales professionals have to manage. Adapting our technology to complement their work was a natural place to focus.</p>','Company','','inherit','open','open','','5-revision-v1','','','2015-04-23 04:22:38','2015-04-23 04:22:38','',5,'http://moduleq.sophiashoemaker.com/5-revision-v1/',0,'revision','',0),(112,1,'2015-04-23 04:23:47','2015-04-23 04:23:47','<h1 style=\"text-align: center;\">People and Technology</h1>\r\n<p style=\"text-align: center;\">Winning technologies not only restructure our work, they do it in ways that enhance our strengths. From the potter\'s wheel to 3D CAD systems, intelligent restructurings create new possibilities. We call this measure of intelligence the <a href=\"http://www.davidjamesbrunner.org/modularity-quotient\" target=\"_blank\">Modularity Quotient</a> — the inspiration for our company name.</p>\r\n<br/><br/>\r\n<p style=\"text-align: center;\">Rev is ModuleQ\'s solution to solve work challenges in the complex and often cumbersome processes that sales professionals have to manage. Adapting our technology to complement their work was a natural place to focus.</p>','Company','','inherit','open','open','','5-revision-v1','','','2015-04-23 04:23:47','2015-04-23 04:23:47','',5,'http://moduleq.sophiashoemaker.com/5-revision-v1/',0,'revision','',0),(113,1,'2015-04-23 04:24:00','2015-04-23 04:24:00','<h1 style=\"text-align: center;\">People and Technology</h1>\r\n<p style=\"text-align: center;\">Winning technologies not only restructure our work, they do it in ways that enhance our strengths. From the potter\'s wheel to 3D CAD systems, intelligent restructurings create new possibilities. We call this measure of intelligence the <a href=\"http://www.davidjamesbrunner.org/modularity-quotient\" target=\"_blank\">Modularity Quotient</a> — the inspiration for our company name.</p>\r\n<br/>\r\n<p style=\"text-align: center;\">Rev is ModuleQ\'s solution to solve work challenges in the complex and often cumbersome processes that sales professionals have to manage. Adapting our technology to complement their work was a natural place to focus.</p>','Company','','inherit','open','open','','5-revision-v1','','','2015-04-23 04:24:00','2015-04-23 04:24:00','',5,'http://moduleq.sophiashoemaker.com/5-revision-v1/',0,'revision','',0),(115,1,'2015-04-27 18:42:03','2015-04-27 18:42:03','','Solution','','publish','open','open','','solution','','','2015-05-07 21:14:07','2015-05-07 21:14:07','',0,'http://moduleq.sophiashoemaker.com/?page_id=115',0,'page','',0),(116,1,'2015-04-27 18:42:03','2015-04-27 18:42:03','','Rev for Sales','','inherit','open','open','','115-revision-v1','','','2015-04-27 18:42:03','2015-04-27 18:42:03','',115,'http://moduleq.sophiashoemaker.com/115-revision-v1/',0,'revision','',0),(118,1,'2015-04-27 18:44:08','2015-04-27 18:44:08',' ','','','publish','open','open','','118','','','2015-05-14 22:32:21','2015-05-14 22:32:21','',0,'http://moduleq.sophiashoemaker.com/?p=118',1,'nav_menu_item','',0),(119,0,'2015-04-27 22:39:31','2015-04-27 22:39:31','','','','publish','open','open','','119','','','2015-04-27 22:39:31','2015-04-27 22:39:31','',0,'http://moduleq.sophiashoemaker.com/nf_sub/119/',0,'nf_sub','',0),(120,0,'2015-04-27 22:46:40','2015-04-27 22:46:40','','','','publish','open','open','','120','','','2015-04-27 22:46:40','2015-04-27 22:46:40','',0,'http://moduleq.sophiashoemaker.com/nf_sub/120/',0,'nf_sub','',0),(122,1,'2015-04-30 22:46:33','2015-04-30 22:46:33','','Fred Amoroso','','publish','closed','closed','','fred-amoroso','','','2015-04-30 22:47:16','2015-04-30 22:47:16','',0,'http://moduleq.sophiashoemaker.com/?post_type=team-member&p=122',0,'team-member','',0),(123,1,'2015-04-30 22:44:17','2015-04-30 22:44:17','','fred_amoroso_03','','inherit','open','open','','fred_amoroso_03','','','2015-04-30 22:44:17','2015-04-30 22:44:17','',0,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/fred_amoroso_03.png',0,'attachment','image/png',0),(124,1,'2015-04-30 23:33:22','2015-04-30 23:33:22','<h1 style=\"text-align: center;\">Sign Up For Rev</h1>\r\n\r\n[ninja_forms id=5]','Sign Up','','inherit','open','open','','7-revision-v1','','','2015-04-30 23:33:22','2015-04-30 23:33:22','',7,'http://moduleq.sophiashoemaker.com/7-revision-v1/',0,'revision','',0),(125,0,'2015-05-01 19:50:26','2015-05-01 19:50:26','','','','publish','open','open','','125','','','2015-05-01 19:50:27','2015-05-01 19:50:27','',0,'http://moduleq.sophiashoemaker.com/nf_sub/125/',0,'nf_sub','',0),(126,1,'2015-05-06 23:10:30','2015-05-06 23:10:30','<h1 style=\"text-align: center; font-weight: 600;\"><span style=\"color: #56f538;\">The Engine That Powers Rev: ModuleQ</span></h1>\r\n<p style=\"text-align: center;\">The mobile revolution has spread to the enterprise. By bringing their\r\nsupercomputer smartphones to work, professionals are usurping\r\npowers traditionally held by corporate IT departments. Mobile apps grant\r\naccess to dozens of data streams capturing almost every aspect of\r\npersonal and professional life. The data deluge has surged far beyond\r\nthe capacity of humans to monitor, interpret and respond optimally.\r\nMobile professionals need <strong>smarter tools.</strong></p>\r\n \r\n<p style=\"text-align: center;\">ModuleQ develops <strong>Predictive Personal Organizers:</strong> mobile apps that\r\nstreamline and accelerate workflow for on-the-go professionals.\r\nThese apps are powered by the ModuleQ Engine, a cloud-based\r\ncommunication platform that integrates with important personal and\r\nprofessional data streams such as email, social media, and\r\nenterprise workflow systems. The ModuleQ Engine incorporates\r\n<strong>Priority Empathy,</strong> ModuleQ’s proprietary technology for\r\nmodeling user priorities. Priority Empathy enables the ModuleQ Engine\r\nto extract relevant information and generate actionable suggestions.</p>\r\n \r\n<p style=\"text-align: center;\">The ModuleQ Engine supports professional work across diverse industries\r\nand functions, while Predictive Personal Organizers are tailored to\r\nspecific work styles. We are starting with <strong>Rev, a mobile-first sales enablement</strong>\r\napp for frontline sales professionals who want to work smarter while on the go.</p>\r\n \r\n<p style=\"text-align: center;\"><strong>Learn more about ModuleQ from the Founder & CEO, David Brunner.</strong></p>','Company','','inherit','open','open','','5-revision-v1','','','2015-05-06 23:10:30','2015-05-06 23:10:30','',5,'http://moduleq.sophiashoemaker.com/5-revision-v1/',0,'revision','',0),(127,1,'2015-05-06 23:56:27','2015-05-06 23:56:27','<h1 style=\"text-align: center;\"><span style=\"color: #56f538;\">Let\'s Roll!</span></h1>\r\n<p style=\"margin-top: 20px; margin-bottom: 40px; text-align: center;\">Welcome to Rev. The mobile app that helps you keep deals on track no matter where you are.</p>\r\n<p style=\"margin-top: 20px; margin-bottom: 40px; text-align: center;\">To get started, download the Quick Start PDF below. It will show you how to sign up and enter basic info about deals your working on. You’ll be up and zooming in no time.</p>\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\" wp-image-28 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"345\" height=\"86\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center; width: 60%;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-06 23:56:27','2015-05-06 23:56:27','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(128,1,'2015-05-06 23:58:45','2015-05-06 23:58:45','<h1 style=\"text-align: center;\"><span style=\"color: #56f538;\">Let\'s Roll!</span></h1>\r\n<p text-align: center;\">Welcome to Rev. The mobile app that helps you <br/>keep deals on track no matter where you are.</p>\r\n<p text-align: center;\">To get started, download the Quick Start PDF below. <br/>It will show you how to sign up and enter basic info about deals you\'re <br/>working on. You\'ll be up and zooming in no time.</p>\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\" wp-image-28 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"345\" height=\"86\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center; width: 60%;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-06 23:58:45','2015-05-06 23:58:45','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(129,1,'2015-05-07 00:00:32','2015-05-07 00:00:32','<h1 style=\"text-align: center;\"><span style=\"color: #56f538;\">Let\'s Roll!</span></h1>\r\n<p style=\"text-align: center;\">Welcome to Rev. The mobile app that helps you\r\nkeep deals on track no matter where you are.</p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\" wp-image-28 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"345\" height=\"86\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center; width: 60%;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 00:00:32','2015-05-07 00:00:32','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(130,1,'2015-05-07 05:36:39','2015-05-07 05:36:39','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\">Welcome to Rev. The mobile app that helps you\r\nkeep deals on track no matter where you are.</p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\" wp-image-28 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"345\" height=\"86\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center; width: 60%;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 05:36:39','2015-05-07 05:36:39','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(131,1,'2015-05-07 05:36:56','2015-05-07 05:36:56','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\">Welcome to Rev. The mobile app that helps you\r\nkeep deals on track no matter where you are.</p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<p style=\"text-align: center;\"></p>\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\" wp-image-28 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"345\" height=\"86\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center; width: 60%;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 05:36:56','2015-05-07 05:36:56','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(132,1,'2015-05-07 05:37:07','2015-05-07 05:37:07','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\">Welcome to Rev. The mobile app that helps you\r\nkeep deals on track no matter where you are.</p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"></p>\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\" wp-image-28 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"345\" height=\"86\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center; width: 60%;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 05:37:07','2015-05-07 05:37:07','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(133,1,'2015-05-07 05:37:39','2015-05-07 05:37:39','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\">Welcome to Rev. The mobile app that helps you\r\nkeep deals on track no matter where you are.</p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center; width: 60%;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 05:37:39','2015-05-07 05:37:39','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(134,1,'2015-05-07 05:40:38','2015-05-07 05:40:38','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">The Engine That Powers Rev: ModuleQ</span></strong></h1>\r\n<p style=\"text-align: center;\">The mobile revolution has spread to the enterprise. By bringing their\r\nsupercomputer smartphones to work, professionals are usurping\r\npowers traditionally held by corporate IT departments. Mobile apps grant\r\naccess to dozens of data streams capturing almost every aspect of\r\npersonal and professional life. The data deluge has surged far beyond\r\nthe capacity of humans to monitor, interpret and respond optimally.\r\nMobile professionals need <strong>smarter tools.</strong></p>\r\n \r\n<p style=\"text-align: center;\">ModuleQ develops <strong>Predictive Personal Organizers:</strong> mobile apps that\r\nstreamline and accelerate workflow for on-the-go professionals.\r\nThese apps are powered by the ModuleQ Engine, a cloud-based\r\ncommunication platform that integrates with important personal and\r\nprofessional data streams such as email, social media, and\r\nenterprise workflow systems. The ModuleQ Engine incorporates\r\n<strong>Priority Empathy,</strong> ModuleQ’s proprietary technology for\r\nmodeling user priorities. Priority Empathy enables the ModuleQ Engine\r\nto extract relevant information and generate actionable suggestions.</p>\r\n \r\n<p style=\"text-align: center;\">The ModuleQ Engine supports professional work across diverse industries\r\nand functions, while Predictive Personal Organizers are tailored to\r\nspecific work styles. We are starting with <strong>Rev, a mobile-first sales enablement</strong>\r\napp for frontline sales professionals who want to work smarter while on the go.</p>\r\n \r\n<p style=\"text-align: center;\"><strong>Learn more about ModuleQ from the Founder & CEO, David Brunner.</strong></p>','Company','','inherit','open','open','','5-revision-v1','','','2015-05-07 05:40:38','2015-05-07 05:40:38','',5,'http://moduleq.sophiashoemaker.com/5-revision-v1/',0,'revision','',0),(135,1,'2015-05-07 05:40:59','2015-05-07 05:40:59','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center; width: 60%;\">If you are a people person or just need to chat about your experience, contact Lee or Michelle at [email protected]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 05:40:59','2015-05-07 05:40:59','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(136,1,'2015-05-07 05:42:34','2015-05-07 05:42:34','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 05:42:34','2015-05-07 05:42:34','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(137,1,'2015-05-07 05:46:23','2015-05-07 05:46:23','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" style=\"margin-top:50px\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 05:46:23','2015-05-07 05:46:23','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(138,1,'2015-05-07 05:46:38','2015-05-07 05:46:38','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" style=\"display:block;margin-top:50px\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 05:46:38','2015-05-07 05:46:38','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(139,1,'2015-05-07 05:47:13','2015-05-07 05:47:13','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" style=\"display:block;margin-top:55px\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 05:47:13','2015-05-07 05:47:13','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(140,1,'2015-05-07 05:47:46','2015-05-07 05:47:46','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" style=\"display:block;margin-top:55px;margin-bottom:175px;\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 05:47:46','2015-05-07 05:47:46','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(143,1,'2015-05-07 05:53:50','2015-05-07 05:53:50','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>\r\n\r\n<pre><code>[column-group]\r\n [column]This is my first column[/column]\r\n [column]This is my second column[/column]\r\n[/column-group]</code></pre>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 05:53:50','2015-05-07 05:53:50','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(144,1,'2015-05-07 05:55:11','2015-05-07 05:55:11','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>\r\n\r\n<pre><code>[column-group]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\"alignnone size-full wp-image-141\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a>[/column]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\"alignnone size-full wp-image-142\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a>[/column]\r\n[/column-group]</code></pre>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 05:55:11','2015-05-07 05:55:11','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(145,1,'2015-05-07 05:56:20','2015-05-07 05:56:20','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>\r\n\r\n[column-group]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\"alignnone size-full wp-image-141\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a>[/column]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\"alignnone size-full wp-image-142\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a>[/column]\r\n[/column-group]>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 05:56:20','2015-05-07 05:56:20','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(146,1,'2015-05-07 05:56:38','2015-05-07 05:56:38','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>\r\n\r\n[column-group]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\"alignnone size-full wp-image-141\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a>[/column]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\"alignnone size-full wp-image-142\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a>[/column]\r\n[/column-group]','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 05:56:38','2015-05-07 05:56:38','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(147,1,'2015-05-07 05:59:48','2015-05-07 05:59:48','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>\r\n\r\n<div style=\"width:50%;margin:0px auto\">[column-group]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\"alignnone size-full wp-image-141\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a>[/column]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\"alignnone size-full wp-image-142\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a>[/column]\r\n[/column-group]</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 05:59:48','2015-05-07 05:59:48','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(148,1,'2015-05-07 06:01:00','2015-05-07 06:01:00','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>\r\n\r\n<div style=\"width:50%;margin:65px auto 0px auto;\">[column-group]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\"alignnone size-full wp-image-141\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a>[/column]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\"alignnone size-full wp-image-142\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a>[/column]\r\n[/column-group]</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:01:00','2015-05-07 06:01:00','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(149,1,'2015-05-07 06:01:50','2015-05-07 06:01:50','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>\r\n\r\n<div style=\"width: 50%; margin: 65px auto 0px auto;\">[column-group]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\"alignnone size-full wp-image-141\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></div>\r\n<div style=\"width: 50%; margin: 65px auto 0px auto;\">Lee</div>\r\n<div style=\"width: 50%; margin: 65px auto 0px auto;\">Engine Tuner</div>\r\n<div style=\"width: 50%; margin: 65px auto 0px auto;\">[/column]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\"alignnone size-full wp-image-142\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></div>\r\n<div style=\"width: 50%; margin: 65px auto 0px auto;\">Michelle</div>\r\n<div style=\"width: 50%; margin: 65px auto 0px auto;\">Pit Crew Coach</div>\r\n<div style=\"width: 50%; margin: 65px auto 0px auto;\">[/column]\r\n[/column-group]</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:01:50','2015-05-07 06:01:50','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(150,1,'2015-05-07 06:02:08','2015-05-07 06:02:08','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>\r\n\r\n<div style=\"width: 50%; margin: 65px auto 0px auto;\">[column-group]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\"alignnone size-full wp-image-141\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></div>\r\n<div style=\"width: 50%; margin: 65px auto 0px; text-align: center;\">Lee</div>\r\n<div style=\"width: 50%; margin: 65px auto 0px; text-align: center;\">Engine Tuner</div>\r\n<div style=\"width: 50%; margin: 65px auto 0px; text-align: center;\">[/column]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\"alignnone size-full wp-image-142\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></div>\r\n<div style=\"width: 50%; margin: 65px auto 0px; text-align: center;\">Michelle</div>\r\n<div style=\"width: 50%; margin: 65px auto 0px; text-align: center;\">Pit Crew Coach</div>\r\n<div style=\"width: 50%; margin: 65px auto 0px auto;\">[/column]\r\n[/column-group]</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:02:08','2015-05-07 06:02:08','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(151,1,'2015-05-07 06:04:40','2015-05-07 06:04:40','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>\r\n\r\n<p style=\"width: 50%; margin: 65px auto 0px auto;\">[column-group]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\"alignnone size-full wp-image-141\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></div>\r\n<p style=\"text-align:center\">Lee\r\nEngine Tuner</p>\r\n[/column]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\"alignnone size-full wp-image-142\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a>\r\n<p style=\"text-align: center;\">Michelle\r\nPit Crew Coach</p>\r\n[/column]\r\n[/column-group]</p>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:04:40','2015-05-07 06:04:40','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(152,1,'2015-05-07 06:05:08','2015-05-07 06:05:08','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>\r\n\r\n[column-group]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\"alignnone size-full wp-image-141\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></div>\r\n<p style=\"text-align:center\">Lee\r\nEngine Tuner</p>\r\n[/column]\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\"alignnone size-full wp-image-142\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a>\r\n<p style=\"text-align: center;\">Michelle\r\nPit Crew Coach</p>\r\n[/column]\r\n[/column-group]','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:05:08','2015-05-07 06:05:08','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(153,1,'2015-05-07 06:06:48','2015-05-07 06:06:48','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>\r\n[column-group][column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\"alignnone size-full wp-image-141\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a>Lee <span style=\"text-align: center; line-height: 1.5;\">Engine Tuner</span>[/column]\r\n\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\"alignnone size-full wp-image-142\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a>Michelle<span style=\"text-align: center; line-height: 1.5;\">Pit Crew Coach</span>[/column] <span style=\"line-height: 1.5;\">[/column-group]</span>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:06:48','2015-05-07 06:06:48','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(154,1,'2015-05-07 06:09:28','2015-05-07 06:09:28','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>\r\n[column-group]\r\n\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\"alignnone size-full wp-image-141\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a>Lee <span style=\"text-align: center; line-height: 1.5;\">Engine Tuner</span>[/column]\r\n\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\"alignnone size-full wp-image-142\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a>Michelle<span style=\"text-align: center; line-height: 1.5;\">Pit Crew Coach</span>[/column]\r\n\r\n[/column-group]','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:09:28','2015-05-07 06:09:28','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(155,1,'2015-05-07 06:10:20','2015-05-07 06:10:20','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>\r\n[column-group]\r\n\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\"alignnone size-full wp-image-141\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a>\r\n<p style=\"text-align: center;\">Lee</p>\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Engine Tuner</span>[/column]</p>\r\n[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\"alignnone size-full wp-image-142\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a>Michelle<span style=\"text-align: center; line-height: 1.5;\">Pit Crew Coach</span>[/column]\r\n\r\n[/column-group]','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:10:20','2015-05-07 06:10:20','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(156,1,'2015-05-07 06:11:20','2015-05-07 06:11:20','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>\r\n[column-group]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;\">Lee</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Engine Tuner</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;\">Michelle</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Pit Crew Coach</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n[/column-group]','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:11:20','2015-05-07 06:11:20','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(157,1,'2015-05-07 06:13:17','2015-05-07 06:13:17','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>\r\n<div style=\"width:60%\">\r\n[column-group]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;\">Lee</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Engine Tuner</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;\">Michelle</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Pit Crew Coach</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n[/column-group]\r\n</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:13:17','2015-05-07 06:13:17','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(158,1,'2015-05-07 06:13:49','2015-05-07 06:13:49','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a href=\"mailto:[email protected]\">[email protected]</a></p>\r\n<div style=\"width:60%;margin:0px auto;\">\r\n[column-group]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;\">Lee</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Engine Tuner</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;\">Michelle</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Pit Crew Coach</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n[/column-group]\r\n</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:13:49','2015-05-07 06:13:49','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(159,1,'2015-05-07 06:15:52','2015-05-07 06:15:52','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a style=\"border-bottom:1px solid #d1d1d1\" href=\"mailto:[email protected]\">[email protected]</a></p>\r\n<div style=\"width:60%;margin:0px auto;\">\r\n[column-group]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;\">Lee</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Engine Tuner</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;\">Michelle</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Pit Crew Coach</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n[/column-group]\r\n</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:15:52','2015-05-07 06:15:52','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(160,1,'2015-05-07 06:16:25','2015-05-07 06:16:25','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a style=\"color:#000;border-bottom:1px solid #d1d1d1\" href=\"mailto:[email protected]\">[email protected]</a></p>\r\n<div style=\"width:60%;margin:0px auto;\">\r\n[column-group]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;\">Lee</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Engine Tuner</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;\">Michelle</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Pit Crew Coach</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n[/column-group]\r\n</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:16:25','2015-05-07 06:16:25','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(161,1,'2015-05-07 06:16:45','2015-05-07 06:16:45','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a style=\"font-weight:400;color:#000;border-bottom:1px solid #d1d1d1\" href=\"mailto:[email protected]\">[email protected]</a></p>\r\n<div style=\"width:60%;margin:0px auto;\">\r\n[column-group]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;\">Lee</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Engine Tuner</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;\">Michelle</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Pit Crew Coach</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n[/column-group]\r\n</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:16:45','2015-05-07 06:16:45','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(162,1,'2015-05-07 06:19:59','2015-05-07 06:19:59','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a style=\"font-weight:400;color:#000;border-bottom:1px solid #d1d1d1\" href=\"mailto:[email protected]\">[email protected]</a></p>\r\n<div style=\"width:60%;margin:60px auto 0px auto;\">\r\n[column-group]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;\">Lee</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Engine Tuner</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;\">Michelle</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Pit Crew Coach</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n[/column-group]\r\n</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:19:59','2015-05-07 06:19:59','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(163,1,'2015-05-07 06:20:49','2015-05-07 06:20:49','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n\r\n \r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a style=\"font-weight:400;color:#000;border-bottom:1px solid #d1d1d1\" href=\"mailto:[email protected]\">[email protected]</a></p>\r\n<div style=\"width:60%;margin:60px auto 0px auto;\">\r\n[column-group]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:25px;\">Lee</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Engine Tuner</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:25px;\">Michelle</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Pit Crew Coach</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n[/column-group]\r\n</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:20:49','2015-05-07 06:20:49','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(164,1,'2015-05-07 06:27:04','2015-05-07 06:27:04','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a style=\"font-weight:400;color:#000;border-bottom:1px solid #d1d1d1\" href=\"mailto:[email protected]\">[email protected]</a></p>\r\n<div style=\"width:60%;margin:60px auto 0px auto;\">\r\n[column-group]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:25px;\">Lee</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Engine Tuner</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:25px;\">Michelle</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Pit Crew Coach</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n[/column-group]\r\n</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:27:04','2015-05-07 06:27:04','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(165,1,'2015-05-07 06:32:31','2015-05-07 06:32:31','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a style=\"font-weight:400;color:#000;border-bottom:1px solid #d1d1d1\" href=\"mailto:[email protected]\">[email protected]</a></p>\r\n<div style=\"width:60%;margin:60px auto 0px auto;\">\r\n[column-group]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:25px;margin-bottom:-10px;\">Lee</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Engine Tuner</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:25px;margin-bottom:-10px;\">Michelle</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Pit Crew Coach</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n[/column-group]\r\n</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:32:31','2015-05-07 06:32:31','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(166,1,'2015-05-07 06:33:12','2015-05-07 06:33:12','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a style=\"font-weight:400;color:#000;border-bottom:1px solid #d1d1d1\" href=\"mailto:[email protected]\">[email protected]</a></p>\r\n<div style=\"width:60%;margin:60px auto 0px auto;\">\r\n[column-group]\r\n<p style=\"text-align: center;font-size:24px;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:25px;margin-bottom:-10px;\">Lee</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Engine Tuner</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:25px;margin-bottom:-10px;\">Michelle</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Pit Crew Coach</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n[/column-group]\r\n</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:33:12','2015-05-07 06:33:12','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(167,1,'2015-05-07 06:34:03','2015-05-07 06:34:03','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a style=\"font-weight:400;color:#000;border-bottom:1px solid #d1d1d1\" href=\"mailto:[email protected]\">[email protected]</a></p>\r\n<div style=\"width:60%;margin:60px auto 0px auto;font-size:24px;\">\r\n[column-group]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:25px;margin-bottom:-10px;\">Lee</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Engine Tuner</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:25px;margin-bottom:-10px;\">Michelle</p>\r\n<p style=\"text-align: center;\"><span style=\"text-align: center; line-height: 1.5;\">Pit Crew Coach</span></p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n[/column-group]\r\n</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:34:03','2015-05-07 06:34:03','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(168,1,'2015-05-07 06:35:07','2015-05-07 06:35:07','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a style=\"font-weight:400;color:#000;border-bottom:1px solid #d1d1d1\" href=\"mailto:[email protected]\">[email protected]</a></p>\r\n<div style=\"width:60%;margin:60px auto 0px auto;font-size:24px;\">\r\n[column-group]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:25px;margin-bottom:-10px;\">Lee</p>\r\n<p style=\"text-align: center;\">Engine Tuner</p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:25px;margin-bottom:-10px;\">Michelle</p>\r\n<p style=\"text-align: center;\">Pit Crew Coach</p>\r\n<p style=\"text-align: center;\">[/column]</p>\r\n[/column-group]\r\n</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:35:07','2015-05-07 06:35:07','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(169,1,'2015-05-07 06:36:37','2015-05-07 06:36:37','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;\">Contact Lee or Michelle at <a style=\"font-weight:400;color:#000;border-bottom:1px solid #d1d1d1\" href=\"mailto:[email protected]\">[email protected]</a></p>\r\n<div style=\"width:60%;margin:60px auto 0px auto;font-size:24px;\">\r\n[column-group]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;font-size:24px;margin-top:25px;margin-bottom:-10px;\">Lee</p>\r\n<p style=\"text-align: center;font-size:24px;\">Engine Tuner</p>\r\n[/column]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:25px;margin-bottom:-10px;font-size:24px;\">Michelle</p>\r\n<p style=\"text-align: center;font-size:24px;\">Pit Crew Coach</p>\r\n[/column]\r\n[/column-group]\r\n</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:36:37','2015-05-07 06:36:37','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(170,1,'2015-05-07 06:38:26','2015-05-07 06:38:26','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<h2 style=\"text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;font-size:24px;\">Contact Lee or Michelle at <a style=\"font-weight:400;color:#000;border-bottom:1px solid #d1d1d1\" href=\"mailto:[email protected]\">[email protected]</a></p>\r\n<div style=\"width:60%;margin:60px auto 0px auto;font-size:24px;\">\r\n[column-group]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;font-size:24px;margin-top:20px;margin-bottom:-10px;\">Lee</p>\r\n<p style=\"text-align: center;font-size:24px;\">Engine Tuner</p>\r\n[/column]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:20px;margin-bottom:-10px;font-size:24px;\">Michelle</p>\r\n<p style=\"text-align: center;font-size:24px;\">Pit Crew Coach</p>\r\n[/column]\r\n[/column-group]\r\n</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:38:26','2015-05-07 06:38:26','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(171,1,'2015-05-07 06:38:58','2015-05-07 06:38:58','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<h2 style=\"font-size:35px;text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;font-size:24px;\">Contact Lee or Michelle at <a style=\"font-weight:400;color:#000;border-bottom:1px solid #d1d1d1\" href=\"mailto:[email protected]\">[email protected]</a></p>\r\n<div style=\"width:60%;margin:60px auto 0px auto;font-size:24px;\">\r\n[column-group]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;font-size:24px;margin-top:20px;margin-bottom:-10px;\">Lee</p>\r\n<p style=\"text-align: center;font-size:24px;\">Engine Tuner</p>\r\n[/column]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:20px;margin-bottom:-10px;font-size:24px;\">Michelle</p>\r\n<p style=\"text-align: center;font-size:24px;\">Pit Crew Coach</p>\r\n[/column]\r\n[/column-group]\r\n</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:38:58','2015-05-07 06:38:58','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(172,1,'2015-05-07 06:41:01','2015-05-07 06:41:01','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<h2 style=\"font-size:35px;text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;font-size:24px;\">Contact Lee or Michelle at <a style=\"font-weight:400;color:#000;border-bottom:1px solid #d1d1d1\" href=\"mailto:[email protected]\">[email protected]</a></p>\r\n<div style=\"width:60%;margin:60px auto 0px auto;font-size:24px;\">\r\n[column-group]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:20px;margin-bottom:-10px;\">Lee</p>\r\n<p style=\"text-align: center;\">Engine Tuner</p>\r\n[/column]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:20px;margin-bottom:-10px;\">Michelle</p>\r\n<p style=\"text-align: center;\">Pit Crew Coach</p>\r\n[/column]\r\n[/column-group]\r\n</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 06:41:01','2015-05-07 06:41:01','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(173,1,'2015-05-07 19:32:22','2015-05-07 19:32:22','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<h2 style=\"font-size:35px;text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center;font-size:24px;\">Contact Lee or Michelle at <a style=\"font-weight:400;color:#000;border-bottom:1px solid #d1d1d1\" href=\"mailto:[email protected]\">[email protected]</a></p>\r\n<div style=\"width:60%;margin:60px auto 0px auto;font-size:24px;\">\r\n[column-group]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:20px;margin-bottom:-10px;\">Lee</p>\r\n<p style=\"text-align: center;\">Engine Tuner</p>\r\n[/column]\r\n<p style=\"text-align: center;\">[column]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 aligncenter\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a></p>\r\n<p style=\"text-align: center;margin-top:20px;margin-bottom:-10px;\">Michelle</p>\r\n<p style=\"text-align: center;\">Pit Crew Coach</p>\r\n[/column]\r\n[end_columns]\r\n</div>','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 19:32:22','2015-05-07 19:32:22','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(174,1,'2015-05-07 21:07:46','2015-05-07 21:07:46','<h1 style=\"text-align: center;\"><strong><span style=\"color: #56f538;\">Let\'s Roll!</span></strong></h1>\r\n<p style=\"text-align: center;\"><strong>Welcome to Rev. The mobile app that helps you</strong>\r\n<strong> keep deals on track no matter where you are.</strong></p>\r\n \r\n<p style=\"text-align: center;\">To get started, download the Quick Start PDF below.\r\nIt will show you how to sign up and enter basic info about deals you\'re\r\nworking on. You\'ll be up and zooming in no time.</p>\r\n<a style=\"display: block; margin-top: 55px; margin-bottom: 175px;\" href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\"><img class=\"aligncenter wp-image-28 size-full\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/04/modq-support-buttons-pdf.png\" alt=\"modq-support-buttons-pdf\" width=\"395\" height=\"99\" /></a>\r\n<h2 style=\"font-size: 35px; text-align: center; font-weight: 100; margin-bottom: 40px;\">Anything We Can Help You With?</h2>\r\n<p style=\"text-align: center; font-size: 24px;\">Contact Lee or Michelle at <a style=\"font-weight: 400; color: #000; border-bottom: 1px solid #d1d1d1;\" href=\"mailto:[email protected]\">[email protected]</a></p>\r\n[column class=\"support_people\"]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\"><img class=\" size-full wp-image-141 alignnone\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_03.png\" alt=\"support_03\" width=\"200\" height=\"202\" /></a><p style=\"text-align: center;\">Lee</p><p style=\"text-align: center;\">Engine Tuner</p>[/column][column class=\"support_people\"]<a href=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\"><img class=\" size-full wp-image-142 alignnone\" src=\"http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/support_06.png\" alt=\"support_06\" width=\"200\" height=\"202\" /></a><p style=\"text-align: center;\">Michelle</p><p style=\"text-align: center;\">Pit Crew Coach</p>\r\n[/column][end_columns]','Support','','inherit','open','open','','9-revision-v1','','','2015-05-07 21:07:46','2015-05-07 21:07:46','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(175,1,'2015-05-07 21:14:07','2015-05-07 21:14:07','','Solution','','inherit','open','open','','115-revision-v1','','','2015-05-07 21:14:07','2015-05-07 21:14:07','',115,'http://moduleq.sophiashoemaker.com/115-revision-v1/',0,'revision','',0),(176,1,'2015-05-07 21:15:35','2015-05-07 21:15:35','','News','','publish','open','open','','news','','','2015-05-11 23:29:26','2015-05-11 23:29:26','',0,'http://moduleq.sophiashoemaker.com/?page_id=176',0,'page','',0),(177,1,'2015-05-07 21:15:35','2015-05-07 21:15:35','','News','','inherit','open','open','','176-revision-v1','','','2015-05-07 21:15:35','2015-05-07 21:15:35','',176,'http://moduleq.sophiashoemaker.com/176-revision-v1/',0,'revision','',0),(178,1,'2015-05-07 21:16:12','2015-05-07 21:16:12','','Contact','','publish','open','open','','contact','','','2015-05-12 06:40:46','2015-05-12 06:40:46','',0,'http://moduleq.sophiashoemaker.com/?page_id=178',0,'page','',0),(179,1,'2015-05-07 21:16:12','2015-05-07 21:16:12','','Contact','','inherit','open','open','','178-revision-v1','','','2015-05-07 21:16:12','2015-05-07 21:16:12','',178,'http://moduleq.sophiashoemaker.com/178-revision-v1/',0,'revision','',0),(180,0,'2015-05-08 17:17:51','2015-05-08 17:17:51','','','','publish','open','open','','180','','','2015-05-08 17:17:51','2015-05-08 17:17:51','',0,'http://moduleq.sophiashoemaker.com/nf_sub/180/',0,'nf_sub','',0),(181,1,'2015-05-11 21:16:52','2015-05-11 21:16:52','','Page Fields','','publish','open','open','','page-fields','','','2015-05-12 06:40:09','2015-05-12 06:40:09','',0,'http://moduleq.sophiashoemaker.com/wp-types-group/page-fields/',0,'wp-types-group','',0),(182,1,'2015-05-11 21:17:33','2015-05-11 21:17:33','<h1 style=\"text-align: center;\"></h1>\r\n<p style=\"text-align: center;\">The mobile revolution has spread to the enterprise. By bringing their\r\nsupercomputer smartphones to work, professionals are usurping\r\npowers traditionally held by corporate IT departments. Mobile apps grant\r\naccess to dozens of data streams capturing almost every aspect of\r\npersonal and professional life. The data deluge has surged far beyond\r\nthe capacity of humans to monitor, interpret and respond optimally.\r\nMobile professionals need <strong>smarter tools.</strong></p>\r\n \r\n<p style=\"text-align: center;\">ModuleQ develops <strong>Predictive Personal Organizers:</strong> mobile apps that\r\nstreamline and accelerate workflow for on-the-go professionals.\r\nThese apps are powered by the ModuleQ Engine, a cloud-based\r\ncommunication platform that integrates with important personal and\r\nprofessional data streams such as email, social media, and\r\nenterprise workflow systems. The ModuleQ Engine incorporates\r\n<strong>Priority Empathy,</strong> ModuleQ’s proprietary technology for\r\nmodeling user priorities. Priority Empathy enables the ModuleQ Engine\r\nto extract relevant information and generate actionable suggestions.</p>\r\n \r\n<p style=\"text-align: center;\">The ModuleQ Engine supports professional work across diverse industries\r\nand functions, while Predictive Personal Organizers are tailored to\r\nspecific work styles. We are starting with <strong>Rev, a mobile-first sales enablement</strong>\r\napp for frontline sales professionals who want to work smarter while on the go.</p>\r\n \r\n<p style=\"text-align: center;\"><strong>Learn more about ModuleQ from the Founder & CEO, David Brunner.</strong></p>','Company','','inherit','open','open','','5-revision-v1','','','2015-05-11 21:17:33','2015-05-11 21:17:33','',5,'http://moduleq.sophiashoemaker.com/5-revision-v1/',0,'revision','',0),(183,1,'2015-05-11 21:17:44','2015-05-11 21:17:44','','Company','','inherit','open','open','','5-revision-v1','','','2015-05-11 21:17:44','2015-05-11 21:17:44','',5,'http://moduleq.sophiashoemaker.com/5-revision-v1/',0,'revision','',0),(184,1,'2015-05-11 21:19:13','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2015-05-11 21:19:13','0000-00-00 00:00:00','',0,'http://moduleq.sophiashoemaker.com/?p=184',0,'post','',0),(185,1,'2015-05-11 21:19:54','2015-05-11 21:19:54','','Support','','inherit','open','open','','9-revision-v1','','','2015-05-11 21:19:54','2015-05-11 21:19:54','',9,'http://moduleq.sophiashoemaker.com/9-revision-v1/',0,'revision','',0),(186,1,'2015-05-11 21:47:34','2015-05-11 21:47:34','','News Items Fields','','publish','open','open','','news-items-fields','','','2015-05-11 23:29:14','2015-05-11 23:29:14','',0,'http://moduleq.sophiashoemaker.com/wp-types-group/news-items-fields/',0,'wp-types-group','',0),(187,1,'2015-05-11 21:50:07','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2015-05-11 21:50:07','0000-00-00 00:00:00','',0,'http://moduleq.sophiashoemaker.com/?post_type=news-single&p=187',0,'news-single','',0),(188,1,'2015-05-11 21:52:21','2015-05-11 21:52:21','','Former Salesforce.com CEO John Dillon Joins ModuleQ Advisory Board','','publish','closed','closed','','former-salesforce-com-ceo-john-dillon-joins-moduleq-advisory-board','','','2015-05-11 22:00:44','2015-05-11 22:00:44','',0,'http://moduleq.sophiashoemaker.com/?post_type=news-single&p=188',0,'news-single','',0),(189,1,'2015-05-11 23:12:44','2015-05-11 23:12:44','','ModuleQ Adds Industry Veterans Sherry Harmon and Lee Cooper','','publish','closed','closed','','moduleq-adds-industry-veterans-sherry-harmon-and-lee-cooper','','','2015-05-11 23:12:44','2015-05-11 23:12:44','',0,'http://moduleq.sophiashoemaker.com/?post_type=news-single&p=189',0,'news-single','',0),(190,1,'2015-05-11 23:13:40','2015-05-11 23:13:40','','Fred Amoroso Joins ModuleQ Advisory Board','','publish','closed','closed','','fred-amoroso-joins-moduleq-advisory-board','','','2015-05-11 23:13:40','2015-05-11 23:13:40','',0,'http://moduleq.sophiashoemaker.com/?post_type=news-single&p=190',0,'news-single','',0),(191,1,'2015-05-11 23:20:50','2015-05-11 23:20:50','','H|B|S: New Venture Competition','','publish','closed','closed','','hbs-new-venture-competition','','','2015-05-11 23:20:50','2015-05-11 23:20:50','',0,'http://moduleq.sophiashoemaker.com/?post_type=news-single&p=191',0,'news-single','',0),(192,1,'2015-05-12 05:50:36','2015-05-12 05:50:36','','thankyou_03','','inherit','open','open','','thankyou_03','','','2015-05-12 05:50:36','2015-05-12 05:50:36','',0,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/thankyou_03.png',0,'attachment','image/png',0),(193,1,'2015-05-12 05:53:36','2015-05-12 05:53:36','','Sign Up','','inherit','open','open','','7-revision-v1','','','2015-05-12 05:53:36','2015-05-12 05:53:36','',7,'http://moduleq.sophiashoemaker.com/7-revision-v1/',0,'revision','',0),(194,1,'2015-05-12 05:54:04','2015-05-12 05:54:04','','','','publish','open','open','','194','','','2015-05-12 05:54:04','2015-05-12 05:54:04','',0,'http://moduleq.sophiashoemaker.com/nf_sub/194/',0,'nf_sub','',0),(195,1,'2015-05-12 06:16:19','2015-05-12 06:16:19',' ','','','publish','open','open','','195','','','2015-05-14 05:07:44','2015-05-14 05:07:44','',0,'http://moduleq.sophiashoemaker.com/?p=195',6,'nav_menu_item','',0),(196,1,'2015-05-12 06:16:19','2015-05-12 06:16:19',' ','','','publish','open','open','','196','','','2015-05-14 05:07:44','2015-05-14 05:07:44','',0,'http://moduleq.sophiashoemaker.com/?p=196',3,'nav_menu_item','',0),(197,1,'2015-05-12 06:14:22','0000-00-00 00:00:00',' ','','','draft','open','open','','','','','2015-05-12 06:14:22','0000-00-00 00:00:00','',0,'http://moduleq.sophiashoemaker.com/?p=197',1,'nav_menu_item','',0),(198,1,'2015-05-12 06:16:47','2015-05-12 06:16:47',' ','','','publish','open','open','','198','','','2015-05-14 22:32:21','2015-05-14 22:32:21','',0,'http://moduleq.sophiashoemaker.com/?p=198',6,'nav_menu_item','',0),(199,1,'2015-05-12 06:16:47','2015-05-12 06:16:47',' ','','','publish','open','open','','199','','','2015-05-14 22:32:21','2015-05-14 22:32:21','',0,'http://moduleq.sophiashoemaker.com/?p=199',3,'nav_menu_item','',0),(200,0,'2015-05-12 14:59:24','2015-05-12 14:59:24','','','','publish','open','open','','200','','','2015-05-12 14:59:24','2015-05-12 14:59:24','',0,'http://moduleq.sophiashoemaker.com/nf_sub/200/',0,'nf_sub','',0),(201,1,'2015-05-12 15:24:41','2015-05-12 15:24:41','','RevQuickStart','','inherit','open','open','','revquickstart','','','2015-05-12 15:24:41','2015-05-12 15:24:41','',0,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/RevQuickStart.pdf',0,'attachment','application/pdf',0),(202,1,'2015-05-12 16:19:49','2015-05-12 16:19:49','\"The ModuleQ Story\". Released: 2015.','The ModuleQ Story','','inherit','open','open','','the-moduleq-story','','','2015-05-12 16:32:49','2015-05-12 16:32:49','',0,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/The-ModuleQ-Story1.mp3',0,'attachment','audio/mpeg',0),(203,1,'2015-05-12 16:31:49','2015-05-12 16:31:49','','podcast','','inherit','open','open','','podcast','','','2015-05-12 16:32:16','2015-05-12 16:32:16','',5,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/podcast.png',0,'attachment','image/png',0),(204,1,'2015-05-13 17:24:30','2015-05-13 17:24:30','','Blog','','publish','open','open','','blog','','','2015-05-13 17:24:30','2015-05-13 17:24:30','',0,'http://moduleq.sophiashoemaker.com/?page_id=204',0,'page','',0),(205,1,'2015-05-13 17:24:30','2015-05-13 17:24:30','','Blog','','inherit','open','open','','204-revision-v1','','','2015-05-13 17:24:30','2015-05-13 17:24:30','',204,'http://moduleq.sophiashoemaker.com/204-revision-v1/',0,'revision','',0),(206,1,'2015-05-13 17:48:43','2015-05-13 17:48:43','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce quis turpis ac odio ullamcorper volutpat non eu metus. In imperdiet nulla ac congue suscipit. Praesent dignissim tortor ultricies, maximus mi vel, efficitur erat. Nullam dapibus et massa venenatis ornare. Aliquam non augue placerat leo tincidunt scelerisque id et est. In dui eros, mattis eu bibendum nec, luctus quis purus. Praesent condimentum, ipsum eget cursus tincidunt, orci lorem hendrerit quam, vel gravida diam nibh ut erat. Etiam blandit diam a interdum porta. Mauris porta ultricies metus, vitae ultrices neque. Nulla facilisi. Ut blandit aliquet augue ut congue. Nam ac mollis enim, efficitur bibendum lorem. Interdum et malesuada fames ac ante ipsum primis in faucibus.\r\n\r\nIn feugiat mi sed venenatis dictum. Vivamus non orci dolor. Nullam malesuada eleifend lobortis. Fusce mattis interdum magna, id pulvinar ex facilisis et. Curabitur nunc augue, efficitur in odio pretium, viverra tincidunt massa. Etiam justo risus, lobortis a sollicitudin in, placerat ac mauris. Nulla finibus mauris at magna auctor bibendum eget at sem. Vestibulum at turpis in enim laoreet tristique a at purus. Maecenas sit amet orci elementum, ornare sem ut, venenatis eros. Etiam et lorem vitae ante mollis ullamcorper. Suspendisse rutrum mi ligula, nec mattis lorem efficitur blandit. Vivamus ultrices at eros non varius. Curabitur nec lacus velit. Vestibulum vestibulum urna ligula, id dignissim turpis bibendum ut. Donec vitae magna quam. Fusce eget faucibus felis, non ultricies lorem.\r\n\r\nMaecenas velit lorem, sagittis ut pretium vitae, semper a ante. Duis fringilla ut leo sed scelerisque. Nam in tortor sed eros ultricies finibus at commodo ex. Praesent tempor venenatis risus, sit amet commodo sem mattis quis. Donec consectetur in dolor ac varius. Pellentesque consequat erat ut finibus sollicitudin. Pellentesque eleifend at eros eu pellentesque. Praesent congue maximus dui. Aliquam non sem est. Praesent non molestie justo. Aliquam viverra magna eget volutpat mattis. Integer malesuada luctus metus, id tincidunt diam gravida quis. In ultrices interdum viverra. Nunc maximus ac tellus id congue. Morbi leo magna, dictum in orci ut, rhoncus condimentum nulla.','CRM is a Drag','','trash','open','open','','crm-is-a-drag','','','2015-05-14 22:32:46','2015-05-14 22:32:46','',0,'http://moduleq.sophiashoemaker.com/?p=206',0,'post','',0),(207,1,'2015-05-13 17:48:07','2015-05-13 17:48:07','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce quis turpis ac odio ullamcorper volutpat non eu metus. In imperdiet nulla ac congue suscipit. Praesent dignissim tortor ultricies, maximus mi vel, efficitur erat. Nullam dapibus et massa venenatis ornare. Aliquam non augue placerat leo tincidunt scelerisque id et est. In dui eros, mattis eu bibendum nec, luctus quis purus. Praesent condimentum, ipsum eget cursus tincidunt, orci lorem hendrerit quam, vel gravida diam nibh ut erat. Etiam blandit diam a interdum porta. Mauris porta ultricies metus, vitae ultrices neque. Nulla facilisi. Ut blandit aliquet augue ut congue. Nam ac mollis enim, efficitur bibendum lorem. Interdum et malesuada fames ac ante ipsum primis in faucibus.\r\n\r\nIn feugiat mi sed venenatis dictum. Vivamus non orci dolor. Nullam malesuada eleifend lobortis. Fusce mattis interdum magna, id pulvinar ex facilisis et. Curabitur nunc augue, efficitur in odio pretium, viverra tincidunt massa. Etiam justo risus, lobortis a sollicitudin in, placerat ac mauris. Nulla finibus mauris at magna auctor bibendum eget at sem. Vestibulum at turpis in enim laoreet tristique a at purus. Maecenas sit amet orci elementum, ornare sem ut, venenatis eros. Etiam et lorem vitae ante mollis ullamcorper. Suspendisse rutrum mi ligula, nec mattis lorem efficitur blandit. Vivamus ultrices at eros non varius. Curabitur nec lacus velit. Vestibulum vestibulum urna ligula, id dignissim turpis bibendum ut. Donec vitae magna quam. Fusce eget faucibus felis, non ultricies lorem.\r\n\r\nMaecenas velit lorem, sagittis ut pretium vitae, semper a ante. Duis fringilla ut leo sed scelerisque. Nam in tortor sed eros ultricies finibus at commodo ex. Praesent tempor venenatis risus, sit amet commodo sem mattis quis. Donec consectetur in dolor ac varius. Pellentesque consequat erat ut finibus sollicitudin. Pellentesque eleifend at eros eu pellentesque. Praesent congue maximus dui. Aliquam non sem est. Praesent non molestie justo. Aliquam viverra magna eget volutpat mattis. Integer malesuada luctus metus, id tincidunt diam gravida quis. In ultrices interdum viverra. Nunc maximus ac tellus id congue. Morbi leo magna, dictum in orci ut, rhoncus condimentum nulla.','This is my second blog post','','trash','open','open','','this-is-my-second-blog-post','','','2015-05-14 22:32:46','2015-05-14 22:32:46','',0,'http://moduleq.sophiashoemaker.com/?p=207',0,'post','',0),(208,1,'2015-05-13 17:48:07','2015-05-13 17:48:07','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce quis turpis ac odio ullamcorper volutpat non eu metus. In imperdiet nulla ac congue suscipit. Praesent dignissim tortor ultricies, maximus mi vel, efficitur erat. Nullam dapibus et massa venenatis ornare. Aliquam non augue placerat leo tincidunt scelerisque id et est. In dui eros, mattis eu bibendum nec, luctus quis purus. Praesent condimentum, ipsum eget cursus tincidunt, orci lorem hendrerit quam, vel gravida diam nibh ut erat. Etiam blandit diam a interdum porta. Mauris porta ultricies metus, vitae ultrices neque. Nulla facilisi. Ut blandit aliquet augue ut congue. Nam ac mollis enim, efficitur bibendum lorem. Interdum et malesuada fames ac ante ipsum primis in faucibus.\r\n\r\nIn feugiat mi sed venenatis dictum. Vivamus non orci dolor. Nullam malesuada eleifend lobortis. Fusce mattis interdum magna, id pulvinar ex facilisis et. Curabitur nunc augue, efficitur in odio pretium, viverra tincidunt massa. Etiam justo risus, lobortis a sollicitudin in, placerat ac mauris. Nulla finibus mauris at magna auctor bibendum eget at sem. Vestibulum at turpis in enim laoreet tristique a at purus. Maecenas sit amet orci elementum, ornare sem ut, venenatis eros. Etiam et lorem vitae ante mollis ullamcorper. Suspendisse rutrum mi ligula, nec mattis lorem efficitur blandit. Vivamus ultrices at eros non varius. Curabitur nec lacus velit. Vestibulum vestibulum urna ligula, id dignissim turpis bibendum ut. Donec vitae magna quam. Fusce eget faucibus felis, non ultricies lorem.\r\n\r\nMaecenas velit lorem, sagittis ut pretium vitae, semper a ante. Duis fringilla ut leo sed scelerisque. Nam in tortor sed eros ultricies finibus at commodo ex. Praesent tempor venenatis risus, sit amet commodo sem mattis quis. Donec consectetur in dolor ac varius. Pellentesque consequat erat ut finibus sollicitudin. Pellentesque eleifend at eros eu pellentesque. Praesent congue maximus dui. Aliquam non sem est. Praesent non molestie justo. Aliquam viverra magna eget volutpat mattis. Integer malesuada luctus metus, id tincidunt diam gravida quis. In ultrices interdum viverra. Nunc maximus ac tellus id congue. Morbi leo magna, dictum in orci ut, rhoncus condimentum nulla.','This is my second blog post','','inherit','open','open','','207-revision-v1','','','2015-05-13 17:48:07','2015-05-13 17:48:07','',207,'http://moduleq.sophiashoemaker.com/207-revision-v1/',0,'revision','',0),(209,1,'2015-05-13 17:48:43','2015-05-13 17:48:43','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce quis turpis ac odio ullamcorper volutpat non eu metus. In imperdiet nulla ac congue suscipit. Praesent dignissim tortor ultricies, maximus mi vel, efficitur erat. Nullam dapibus et massa venenatis ornare. Aliquam non augue placerat leo tincidunt scelerisque id et est. In dui eros, mattis eu bibendum nec, luctus quis purus. Praesent condimentum, ipsum eget cursus tincidunt, orci lorem hendrerit quam, vel gravida diam nibh ut erat. Etiam blandit diam a interdum porta. Mauris porta ultricies metus, vitae ultrices neque. Nulla facilisi. Ut blandit aliquet augue ut congue. Nam ac mollis enim, efficitur bibendum lorem. Interdum et malesuada fames ac ante ipsum primis in faucibus.\r\n\r\nIn feugiat mi sed venenatis dictum. Vivamus non orci dolor. Nullam malesuada eleifend lobortis. Fusce mattis interdum magna, id pulvinar ex facilisis et. Curabitur nunc augue, efficitur in odio pretium, viverra tincidunt massa. Etiam justo risus, lobortis a sollicitudin in, placerat ac mauris. Nulla finibus mauris at magna auctor bibendum eget at sem. Vestibulum at turpis in enim laoreet tristique a at purus. Maecenas sit amet orci elementum, ornare sem ut, venenatis eros. Etiam et lorem vitae ante mollis ullamcorper. Suspendisse rutrum mi ligula, nec mattis lorem efficitur blandit. Vivamus ultrices at eros non varius. Curabitur nec lacus velit. Vestibulum vestibulum urna ligula, id dignissim turpis bibendum ut. Donec vitae magna quam. Fusce eget faucibus felis, non ultricies lorem.\r\n\r\nMaecenas velit lorem, sagittis ut pretium vitae, semper a ante. Duis fringilla ut leo sed scelerisque. Nam in tortor sed eros ultricies finibus at commodo ex. Praesent tempor venenatis risus, sit amet commodo sem mattis quis. Donec consectetur in dolor ac varius. Pellentesque consequat erat ut finibus sollicitudin. Pellentesque eleifend at eros eu pellentesque. Praesent congue maximus dui. Aliquam non sem est. Praesent non molestie justo. Aliquam viverra magna eget volutpat mattis. Integer malesuada luctus metus, id tincidunt diam gravida quis. In ultrices interdum viverra. Nunc maximus ac tellus id congue. Morbi leo magna, dictum in orci ut, rhoncus condimentum nulla.','CRM is a Drag','','inherit','open','open','','206-revision-v1','','','2015-05-13 17:48:43','2015-05-13 17:48:43','',206,'http://moduleq.sophiashoemaker.com/206-revision-v1/',0,'revision','',0),(210,1,'2015-05-13 20:33:43','2015-05-13 20:33:43',' ','','','publish','open','open','','210','','','2015-05-14 05:07:44','2015-05-14 05:07:44','',0,'http://moduleq.sophiashoemaker.com/?p=210',7,'nav_menu_item','',0),(211,1,'2015-05-13 21:49:34','2015-05-13 21:49:34','','img_bio_john_dillon','','inherit','open','open','','img_bio_john_dillon-2','','','2015-05-13 21:49:34','2015-05-13 21:49:34','',0,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/img_bio_john_dillon.png',0,'attachment','image/png',0),(212,1,'2015-05-13 22:10:26','2015-05-13 22:10:26','','pete_hartigan_03','','inherit','open','open','','pete_hartigan_03','','','2015-05-13 22:10:26','2015-05-13 22:10:26','',0,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/pete_hartigan_03.png',0,'attachment','image/png',0),(213,1,'2015-05-14 05:07:44','2015-05-14 05:07:44',' ','','','publish','open','open','','213','','','2015-05-14 05:07:44','2015-05-14 05:07:44','',0,'http://moduleq.sophiashoemaker.com/?p=213',1,'nav_menu_item','',0),(214,0,'2015-05-14 14:50:38','2015-05-14 14:50:38','','','','publish','open','open','','214','','','2015-05-14 14:50:38','2015-05-14 14:50:38','',0,'http://moduleq.sophiashoemaker.com/nf_sub/214/',0,'nf_sub','',0),(215,1,'2015-05-14 18:20:30','2015-05-14 18:20:30','\"The ModuleQ Story\". Released: 2015.','The ModuleQ Story','','inherit','open','open','','the-moduleq-story-2','','','2015-05-14 18:21:17','2015-05-14 18:21:17','',0,'http://moduleq.sophiashoemaker.com/wp-content/uploads/2015/05/The-ModuleQ-Story.mp3',0,'attachment','audio/mpeg',0),(216,1,'2015-05-14 18:25:06','2015-05-14 18:25:06','<h3><strong>Then</strong></h3>\r\nDid you know that the structure for goals and sales steps was formulated in the late 1800’s? NCR introduced a sales model that changed the profession and we still map to it. This process focused on the customer’s needs, not on the product. It was a script that moved the customer through that value identification. You know what I am talking about. Discovery, Value Definition, Proposal, Contract and Close are the kinds of sales processes that your company tracks in the CRM solution.\r\n\r\nThe words may differ for your organization’s sales process but there are steps that determine the percentage to close and your job is to take the customer through this process. There is value in determining stage for your company as this enables them to forecast accurately.\r\n<h3><strong>Now</strong></h3>\r\nIn 2015, your customer starts the conversation having done their research, with a clear understanding of what their problem and the solutions available. The customer is equipped with information about competition, pricing and an understanding what your customers think of your products. . The customer arrives with questions and requests defined. You need understand where they are and what they need so you can matter to your customer.\r\n\r\nTo add to the challenge, your customer has shopped online as a consumer, likes the experience and wants you to supply the same level of value. They are looking to you to make the exchange easy, provide insight and keep the conversation productive. Forcing them through the sales steps isn’t going to work.\r\n\r\nIn 1990 many experts predicted the death of the salesman. The argument was that the adoption of the Internet would make sales obsolete. This turned out to be far from true. With the speed to market of new disruptive solutions and technology coupled with the ability to reach specific markets Sales Professionals who can face the evolved customer and add value are in great demand.\r\n\r\n<h3><strong>You are the expert in your arena that can personalize your solution to your customer. This can be done in person, on the phone or by email. Change the method for the media.</strong></h3>\r\n<ul>\r\n <li>So the motto is not to skip the sales steps but to understand where they are. Try asking, “How can I help you?” Yeah, that’s very THEN but it is NOW. Then determine what else the customer might require so you can add value beyond what they find online.</li>\r\n <li>Know your solution arena and show that you care about the customer experience by making recommendations. How often has an enthusiastic waiter convinced you to try something they like?</li>\r\n <li>Make commitments to deliver information and keep them. You are the voice of your organization and what you do speaks to what a customer can expect of the relationship.</li>\r\n <li>Give without expecting anything back. Understand what your customer needs to make this buying relationship successful. It may be personal or it may come down to keeping his job.</li>\r\n <li>Be appropriate and respectful but if you are not pushing the edges of the box, the customer is not learning. Help them explore by having a set of questions at the ready that help you learn what will delight them. You will need to tailor the inquiry and you only have a few minutes to get them into a conversation.</li>\r\n <li>Don’t waste their time. Keep communications short. Deliver what they asked for first. Have you ever tried putting the price at the beginning of the proposal and saying that the following pages cover what is included? It changes the conversation because now you can talk about value.</li>\r\n</ul>\r\nThink about the stereotypical experience of visiting a car dealership to buy a car and how it makes you feel. When you walk in you have a good idea of what you want and what you need to learn.\r\n\r\nSince your customer has changed you will need all of the help you can get to keep up. Sales Professionals need a new set of tools to assist with customer insight, setting priorities and managing critical communications. With solutions that alert you to next steps, you are less likely to miss commitments. Now you can enter into strategic social conversations and track relationships through your pipeline. Most companies support BYO so go out and get the mobile apps that can help you compete.\r\n\r\nThe race is on. Let’s roll!\r\n\r\nSherry Harmon, CRO, ModuleQ, www.moduleQ.com\r\n\r\nRev powered by ModuleQ\r\n\r\nKeep Closing.','The evolution of your customer – Why Sales Professionals are more relevant than ever.','','publish','open','open','','the-evolution-of-your-customer','','','2015-05-14 18:36:59','2015-05-14 18:36:59','',0,'http://moduleq.sophiashoemaker.com/?p=216',0,'post','',0),(217,1,'2015-05-14 18:25:06','2015-05-14 18:25:06','Then\r\n\r\nDid you know that the structure for goals and sales steps was formulated in the late 1800’s? NCR introduced a sales model that changed the profession and we still map to it. This process focused on the customer’s needs, not on the product. It was a script that moved the customer through that value identification. You know what I am talking about. Discovery, Value Definition, Proposal, Contract and Close are the kinds of sales processes that your company tracks in the CRM solution.\r\n\r\nThe words may differ for your organization’s sales process but there are steps that determine the percentage to close and your job is to take the customer through this process. There is value in determining stage for your company as this enables them to forecast accurately.\r\n\r\nNow\r\n\r\nIn 2015, your customer starts the conversation having done their research, with a clear understanding of what their problem and the solutions available. The customer is equipped with information about competition, pricing and an understanding what your customers think of your products. . The customer arrives with questions and requests defined. You need understand where they are and what they need so you can matter to your customer.\r\n\r\nTo add to the challenge, your customer has shopped online as a consumer, likes the experience and wants you to supply the same level of value. They are looking to you to make the exchange easy, provide insight and keep the conversation productive. Forcing them through the sales steps isn’t going to work.\r\n\r\nIn 1990 many experts predicted the death of the salesman. The argument was that the adoption of the Internet would make sales obsolete. This turned out to be far from true. With the speed to market of new disruptive solutions and technology coupled with the ability to reach specific markets Sales Professionals who can face the evolved customer and add value are in great demand.\r\n\r\nYou are the expert in your arena that can personalize your solution to your customer. This can be done in person, on the phone or by email. Change the method for the media. (semibold)\r\n\r\nSo the motto is not to skip the sales steps but to understand where they are. Try asking, “How can I help you?” Yeah, that’s very THEN but it is NOW. Then determine what else the customer might require so you can add value beyond what they find online.\r\nKnow your solution arena and show that you care about the customer experience by making recommendations. How often has an enthusiastic waiter convinced you to try something they like?\r\nMake commitments to deliver information and keep them. You are the voice of your organization and what you do speaks to what a customer can expect of the relationship.\r\nGive without expecting anything back. Understand what your customer needs to make this buying relationship successful. It may be personal or it may come down to keeping his job.\r\nBe appropriate and respectful but if you are not pushing the edges of the box, the customer is not learning. Help them explore by having a set of questions at the ready that help you learn what will delight them. You will need to tailor the inquiry and you only have a few minutes to get them into a conversation.\r\nDon’t waste their time. Keep communications short. Deliver what they asked for first. Have you ever tried putting the price at the beginning of the proposal and saying that the following pages cover what is included? It changes the conversation because now you can talk about value.\r\nThink about the stereotypical experience of visiting a car dealership to buy a car and how it makes you feel. When you walk in you have a good idea of what you want and what you need to learn.\r\n\r\nSince your customer has changed you will need all of the help you can get to keep up. Sales Professionals need a new set of tools to assist with customer insight, setting priorities and managing critical communications. With solutions that alert you to next steps, you are less likely to miss commitments. Now you can enter into strategic social conversations and track relationships through your pipeline. Most companies support BYO so go out and get the mobile apps that can help you compete.\r\n\r\nThe race is on. Let’s roll!\r\n\r\nSherry Harmon, CRO, ModuleQ, www.moduleQ.com\r\n\r\nRev powered by ModuleQ\r\n\r\nKeep Closing.','The evolution of your customer – Why Sales Professionals are more relevant than ever.','','inherit','open','open','','216-revision-v1','','','2015-05-14 18:25:06','2015-05-14 18:25:06','',216,'http://moduleq.sophiashoemaker.com/216-revision-v1/',0,'revision','',0),(218,1,'2015-05-14 18:26:08','2015-05-14 18:26:08','<strong>Then</strong>\n\nDid you know that the structure for goals and sales steps was formulated in the late 1800’s? NCR introduced a sales model that changed the profession and we still map to it. This process focused on the customer’s needs, not on the product. It was a script that moved the customer through that value identification. You know what I am talking about. Discovery, Value Definition, Proposal, Contract and Close are the kinds of sales processes that your company tracks in the CRM solution.\n\nThe words may differ for your organization’s sales process but there are steps that determine the percentage to close and your job is to take the customer through this process. There is value in determining stage for your company as this enables them to forecast accurately.\n\n<strong>Now</strong>\n\nIn 2015, your customer starts the conversation having done their research, with a clear understanding of what their problem and the solutions available. The customer is equipped with information about competition, pricing and an understanding what your customers think of your products. . The customer arrives with questions and requests defined. You need understand where they are and what they need so you can matter to your customer.\n\nTo add to the challenge, your customer has shopped online as a consumer, likes the experience and wants you to supply the same level of value. They are looking to you to make the exchange easy, provide insight and keep the conversation productive. Forcing them through the sales steps isn’t going to work.\n\nIn 1990 many experts predicted the death of the salesman. The argument was that the adoption of the Internet would make sales obsolete. This turned out to be far from true. With the speed to market of new disruptive solutions and technology coupled with the ability to reach specific markets Sales Professionals who can face the evolved customer and add value are in great demand.\n\n<strong>You are the expert in your arena that can personalize your solution to your customer. This can be done in person, on the phone or by email. Change the method for the media.</strong>\n\nSo the motto is not to skip the sales steps but to understand where they are. Try asking, “How can I help you?” Yeah, that’s very THEN but it is NOW. Then determine what else the customer might require so you can add value beyond what they find online.\nKnow your solution arena and show that you care about the customer experience by making recommendations. How often has an enthusiastic waiter convinced you to try something they like?\nMake commitments to deliver information and keep them. You are the voice of your organization and what you do speaks to what a customer can expect of the relationship.\nGive without expecting anything back. Understand what your customer needs to make this buying relationship successful. It may be personal or it may come down to keeping his job.\nBe appropriate and respectful but if you are not pushing the edges of the box, the customer is not learning. Help them explore by having a set of questions at the ready that help you learn what will delight them. You will need to tailor the inquiry and you only have a few minutes to get them into a conversation.\nDon’t waste their time. Keep communications short. Deliver what they asked for first. Have you ever tried putting the price at the beginning of the proposal and saying that the following pages cover what is included? It changes the conversation because now you can talk about value.\nThink about the stereotypical experience of visiting a car dealership to buy a car and how it makes you feel. When you walk in you have a good idea of what you want and what you need to learn.\n\nSince your customer has changed you will need all of the help you can get to keep up. Sales Professionals need a new set of tools to assist with customer insight, setting priorities and managing critical communications. With solutions that alert you to next steps, you are less likely to miss commitments. Now you can enter into strategic social conversations and track relationships through your pipeline. Most companies support BYO so go out and get the mobile apps that can help you compete.\n\nThe race is on. Let’s roll!\n\nSherry Harmon, CRO, ModuleQ, www.moduleQ.com\n\nRev powered by ModuleQ\n\nKeep Closing.','The evolution of your customer – Why Sales Professionals are more relevant than ever.','','inherit','open','open','','216-autosave-v1','','','2015-05-14 18:26:08','2015-05-14 18:26:08','',216,'http://moduleq.sophiashoemaker.com/216-autosave-v1/',0,'revision','',0),(219,1,'2015-05-14 18:27:25','2015-05-14 18:27:25','<strong>Then</strong>\r\n\r\nDid you know that the structure for goals and sales steps was formulated in the late 1800’s? NCR introduced a sales model that changed the profession and we still map to it. This process focused on the customer’s needs, not on the product. It was a script that moved the customer through that value identification. You know what I am talking about. Discovery, Value Definition, Proposal, Contract and Close are the kinds of sales processes that your company tracks in the CRM solution.\r\n\r\nThe words may differ for your organization’s sales process but there are steps that determine the percentage to close and your job is to take the customer through this process. There is value in determining stage for your company as this enables them to forecast accurately.\r\n\r\n<strong>Now</strong>\r\n\r\nIn 2015, your customer starts the conversation having done their research, with a clear understanding of what their problem and the solutions available. The customer is equipped with information about competition, pricing and an understanding what your customers think of your products. . The customer arrives with questions and requests defined. You need understand where they are and what they need so you can matter to your customer.\r\n\r\nTo add to the challenge, your customer has shopped online as a consumer, likes the experience and wants you to supply the same level of value. They are looking to you to make the exchange easy, provide insight and keep the conversation productive. Forcing them through the sales steps isn’t going to work.\r\n\r\nIn 1990 many experts predicted the death of the salesman. The argument was that the adoption of the Internet would make sales obsolete. This turned out to be far from true. With the speed to market of new disruptive solutions and technology coupled with the ability to reach specific markets Sales Professionals who can face the evolved customer and add value are in great demand.\r\n\r\n<strong>You are the expert in your arena that can personalize your solution to your customer. This can be done in person, on the phone or by email. Change the method for the media.</strong>\r\n<ul>\r\n <li>So the motto is not to skip the sales steps but to understand where they are. Try asking, “How can I help you?” Yeah, that’s very THEN but it is NOW. Then determine what else the customer might require so you can add value beyond what they find online.</li>\r\n <li>Know your solution arena and show that you care about the customer experience by making recommendations. How often has an enthusiastic waiter convinced you to try something they like?</li>\r\n <li>Make commitments to deliver information and keep them. You are the voice of your organization and what you do speaks to what a customer can expect of the relationship.</li>\r\n <li>Give without expecting anything back. Understand what your customer needs to make this buying relationship successful. It may be personal or it may come down to keeping his job.</li>\r\n <li>Be appropriate and respectful but if you are not pushing the edges of the box, the customer is not learning. Help them explore by having a set of questions at the ready that help you learn what will delight them. You will need to tailor the inquiry and you only have a few minutes to get them into a conversation.</li>\r\n <li>Don’t waste their time. Keep communications short. Deliver what they asked for first. Have you ever tried putting the price at the beginning of the proposal and saying that the following pages cover what is included? It changes the conversation because now you can talk about value.</li>\r\n <li>Think about the stereotypical experience of visiting a car dealership to buy a car and how it makes you feel. When you walk in you have a good idea of what you want and what you need to learn.</li>\r\n</ul>\r\nSince your customer has changed you will need all of the help you can get to keep up. Sales Professionals need a new set of tools to assist with customer insight, setting priorities and managing critical communications. With solutions that alert you to next steps, you are less likely to miss commitments. Now you can enter into strategic social conversations and track relationships through your pipeline. Most companies support BYO so go out and get the mobile apps that can help you compete.\r\n\r\nThe race is on. Let’s roll!\r\n\r\nSherry Harmon, CRO, ModuleQ, www.moduleQ.com\r\n\r\nRev powered by ModuleQ\r\n\r\nKeep Closing.','The evolution of your customer – Why Sales Professionals are more relevant than ever.','','inherit','open','open','','216-revision-v1','','','2015-05-14 18:27:25','2015-05-14 18:27:25','',216,'http://moduleq.sophiashoemaker.com/216-revision-v1/',0,'revision','',0),(220,1,'2015-05-14 18:27:59','2015-05-14 18:27:59','<strong>Then</strong>\r\n\r\nDid you know that the structure for goals and sales steps was formulated in the late 1800’s? NCR introduced a sales model that changed the profession and we still map to it. This process focused on the customer’s needs, not on the product. It was a script that moved the customer through that value identification. You know what I am talking about. Discovery, Value Definition, Proposal, Contract and Close are the kinds of sales processes that your company tracks in the CRM solution.\r\n\r\nThe words may differ for your organization’s sales process but there are steps that determine the percentage to close and your job is to take the customer through this process. There is value in determining stage for your company as this enables them to forecast accurately.\r\n\r\n<strong>Now</strong>\r\n\r\nIn 2015, your customer starts the conversation having done their research, with a clear understanding of what their problem and the solutions available. The customer is equipped with information about competition, pricing and an understanding what your customers think of your products. . The customer arrives with questions and requests defined. You need understand where they are and what they need so you can matter to your customer.\r\n\r\nTo add to the challenge, your customer has shopped online as a consumer, likes the experience and wants you to supply the same level of value. They are looking to you to make the exchange easy, provide insight and keep the conversation productive. Forcing them through the sales steps isn’t going to work.\r\n\r\nIn 1990 many experts predicted the death of the salesman. The argument was that the adoption of the Internet would make sales obsolete. This turned out to be far from true. With the speed to market of new disruptive solutions and technology coupled with the ability to reach specific markets Sales Professionals who can face the evolved customer and add value are in great demand.\r\n\r\n<strong>You are the expert in your arena that can personalize your solution to your customer. This can be done in person, on the phone or by email. Change the method for the media.</strong>\r\n<ul>\r\n <li>So the motto is not to skip the sales steps but to understand where they are. Try asking, “How can I help you?” Yeah, that’s very THEN but it is NOW. Then determine what else the customer might require so you can add value beyond what they find online.</li>\r\n <li>Know your solution arena and show that you care about the customer experience by making recommendations. How often has an enthusiastic waiter convinced you to try something they like?</li>\r\n <li>Make commitments to deliver information and keep them. You are the voice of your organization and what you do speaks to what a customer can expect of the relationship.</li>\r\n <li>Give without expecting anything back. Understand what your customer needs to make this buying relationship successful. It may be personal or it may come down to keeping his job.</li>\r\n <li>Be appropriate and respectful but if you are not pushing the edges of the box, the customer is not learning. Help them explore by having a set of questions at the ready that help you learn what will delight them. You will need to tailor the inquiry and you only have a few minutes to get them into a conversation.</li>\r\n <li>Don’t waste their time. Keep communications short. Deliver what they asked for first. Have you ever tried putting the price at the beginning of the proposal and saying that the following pages cover what is included? It changes the conversation because now you can talk about value.</li>\r\n</ul>\r\nThink about the stereotypical experience of visiting a car dealership to buy a car and how it makes you feel. When you walk in you have a good idea of what you want and what you need to learn.\r\n\r\nSince your customer has changed you will need all of the help you can get to keep up. Sales Professionals need a new set of tools to assist with customer insight, setting priorities and managing critical communications. With solutions that alert you to next steps, you are less likely to miss commitments. Now you can enter into strategic social conversations and track relationships through your pipeline. Most companies support BYO so go out and get the mobile apps that can help you compete.\r\n\r\nThe race is on. Let’s roll!\r\n\r\nSherry Harmon, CRO, ModuleQ, www.moduleQ.com\r\n\r\nRev powered by ModuleQ\r\n\r\nKeep Closing.','The evolution of your customer – Why Sales Professionals are more relevant than ever.','','inherit','open','open','','216-revision-v1','','','2015-05-14 18:27:59','2015-05-14 18:27:59','',216,'http://moduleq.sophiashoemaker.com/216-revision-v1/',0,'revision','',0),(221,1,'2015-05-14 18:30:17','2015-05-14 18:30:17','<h3><strong>Then</strong></h3>\r\nDid you know that the structure for goals and sales steps was formulated in the late 1800’s? NCR introduced a sales model that changed the profession and we still map to it. This process focused on the customer’s needs, not on the product. It was a script that moved the customer through that value identification. You know what I am talking about. Discovery, Value Definition, Proposal, Contract and Close are the kinds of sales processes that your company tracks in the CRM solution.\r\n\r\nThe words may differ for your organization’s sales process but there are steps that determine the percentage to close and your job is to take the customer through this process. There is value in determining stage for your company as this enables them to forecast accurately.\r\n<h3><strong>Now</strong></h3>\r\nIn 2015, your customer starts the conversation having done their research, with a clear understanding of what their problem and the solutions available. The customer is equipped with information about competition, pricing and an understanding what your customers think of your products. . The customer arrives with questions and requests defined. You need understand where they are and what they need so you can matter to your customer.\r\n\r\nTo add to the challenge, your customer has shopped online as a consumer, likes the experience and wants you to supply the same level of value. They are looking to you to make the exchange easy, provide insight and keep the conversation productive. Forcing them through the sales steps isn’t going to work.\r\n\r\nIn 1990 many experts predicted the death of the salesman. The argument was that the adoption of the Internet would make sales obsolete. This turned out to be far from true. With the speed to market of new disruptive solutions and technology coupled with the ability to reach specific markets Sales Professionals who can face the evolved customer and add value are in great demand.\r\n<h3><strong>You are the expert in your arena that can personalize your solution to your customer. This can be done in person, on the phone or by email. Change the method for the media.</strong></h3>\r\n<ul>\r\n <li>So the motto is not to skip the sales steps but to understand where they are. Try asking, “How can I help you?” Yeah, that’s very THEN but it is NOW. Then determine what else the customer might require so you can add value beyond what they find online.</li>\r\n <li>Know your solution arena and show that you care about the customer experience by making recommendations. How often has an enthusiastic waiter convinced you to try something they like?</li>\r\n <li>Make commitments to deliver information and keep them. You are the voice of your organization and what you do speaks to what a customer can expect of the relationship.</li>\r\n <li>Give without expecting anything back. Understand what your customer needs to make this buying relationship successful. It may be personal or it may come down to keeping his job.</li>\r\n <li>Be appropriate and respectful but if you are not pushing the edges of the box, the customer is not learning. Help them explore by having a set of questions at the ready that help you learn what will delight them. You will need to tailor the inquiry and you only have a few minutes to get them into a conversation.</li>\r\n <li>Don’t waste their time. Keep communications short. Deliver what they asked for first. Have you ever tried putting the price at the beginning of the proposal and saying that the following pages cover what is included? It changes the conversation because now you can talk about value.</li>\r\n</ul>\r\nThink about the stereotypical experience of visiting a car dealership to buy a car and how it makes you feel. When you walk in you have a good idea of what you want and what you need to learn.\r\n\r\nSince your customer has changed you will need all of the help you can get to keep up. Sales Professionals need a new set of tools to assist with customer insight, setting priorities and managing critical communications. With solutions that alert you to next steps, you are less likely to miss commitments. Now you can enter into strategic social conversations and track relationships through your pipeline. Most companies support BYO so go out and get the mobile apps that can help you compete.\r\n\r\nThe race is on. Let’s roll!\r\n\r\nSherry Harmon, CRO, ModuleQ, www.moduleQ.com\r\n\r\nRev powered by ModuleQ\r\n\r\nKeep Closing.','The evolution of your customer – Why Sales Professionals are more relevant than ever.','','inherit','open','open','','216-revision-v1','','','2015-05-14 18:30:17','2015-05-14 18:30:17','',216,'http://moduleq.sophiashoemaker.com/216-revision-v1/',0,'revision','',0),(222,1,'2015-05-14 18:30:46','2015-05-14 18:30:46','<h3><strong>Then</strong></h3>\r\nDid you know that the structure for goals and sales steps was formulated in the late 1800’s? NCR introduced a sales model that changed the profession and we still map to it. This process focused on the customer’s needs, not on the product. It was a script that moved the customer through that value identification. You know what I am talking about. Discovery, Value Definition, Proposal, Contract and Close are the kinds of sales processes that your company tracks in the CRM solution.\r\n\r\nThe words may differ for your organization’s sales process but there are steps that determine the percentage to close and your job is to take the customer through this process. There is value in determining stage for your company as this enables them to forecast accurately.\r\n<h3><strong>Now</strong></h3>\r\nIn 2015, your customer starts the conversation having done their research, with a clear understanding of what their problem and the solutions available. The customer is equipped with information about competition, pricing and an understanding what your customers think of your products. . The customer arrives with questions and requests defined. You need understand where they are and what they need so you can matter to your customer.\r\n\r\nTo add to the challenge, your customer has shopped online as a consumer, likes the experience and wants you to supply the same level of value. They are looking to you to make the exchange easy, provide insight and keep the conversation productive. Forcing them through the sales steps isn’t going to work.\r\n\r\nIn 1990 many experts predicted the death of the salesman. The argument was that the adoption of the Internet would make sales obsolete. This turned out to be far from true. With the speed to market of new disruptive solutions and technology coupled with the ability to reach specific markets Sales Professionals who can face the evolved customer and add value are in great demand.\r\n\r\n \r\n<h3><strong>You are the expert in your arena that can personalize your solution to your customer. This can be done in person, on the phone or by email. Change the method for the media.</strong></h3>\r\n<ul>\r\n <li>So the motto is not to skip the sales steps but to understand where they are. Try asking, “How can I help you?” Yeah, that’s very THEN but it is NOW. Then determine what else the customer might require so you can add value beyond what they find online.</li>\r\n <li>Know your solution arena and show that you care about the customer experience by making recommendations. How often has an enthusiastic waiter convinced you to try something they like?</li>\r\n <li>Make commitments to deliver information and keep them. You are the voice of your organization and what you do speaks to what a customer can expect of the relationship.</li>\r\n <li>Give without expecting anything back. Understand what your customer needs to make this buying relationship successful. It may be personal or it may come down to keeping his job.</li>\r\n <li>Be appropriate and respectful but if you are not pushing the edges of the box, the customer is not learning. Help them explore by having a set of questions at the ready that help you learn what will delight them. You will need to tailor the inquiry and you only have a few minutes to get them into a conversation.</li>\r\n <li>Don’t waste their time. Keep communications short. Deliver what they asked for first. Have you ever tried putting the price at the beginning of the proposal and saying that the following pages cover what is included? It changes the conversation because now you can talk about value.</li>\r\n</ul>\r\nThink about the stereotypical experience of visiting a car dealership to buy a car and how it makes you feel. When you walk in you have a good idea of what you want and what you need to learn.\r\n\r\nSince your customer has changed you will need all of the help you can get to keep up. Sales Professionals need a new set of tools to assist with customer insight, setting priorities and managing critical communications. With solutions that alert you to next steps, you are less likely to miss commitments. Now you can enter into strategic social conversations and track relationships through your pipeline. Most companies support BYO so go out and get the mobile apps that can help you compete.\r\n\r\nThe race is on. Let’s roll!\r\n\r\nSherry Harmon, CRO, ModuleQ, www.moduleQ.com\r\n\r\nRev powered by ModuleQ\r\n\r\nKeep Closing.','The evolution of your customer – Why Sales Professionals are more relevant than ever.','','inherit','open','open','','216-revision-v1','','','2015-05-14 18:30:46','2015-05-14 18:30:46','',216,'http://moduleq.sophiashoemaker.com/216-revision-v1/',0,'revision','',0),(223,1,'2015-05-14 18:31:02','2015-05-14 18:31:02','<h3><strong>Then</strong></h3>\r\nDid you know that the structure for goals and sales steps was formulated in the late 1800’s? NCR introduced a sales model that changed the profession and we still map to it. This process focused on the customer’s needs, not on the product. It was a script that moved the customer through that value identification. You know what I am talking about. Discovery, Value Definition, Proposal, Contract and Close are the kinds of sales processes that your company tracks in the CRM solution.\r\n\r\nThe words may differ for your organization’s sales process but there are steps that determine the percentage to close and your job is to take the customer through this process. There is value in determining stage for your company as this enables them to forecast accurately.\r\n<h3><strong>Now</strong></h3>\r\nIn 2015, your customer starts the conversation having done their research, with a clear understanding of what their problem and the solutions available. The customer is equipped with information about competition, pricing and an understanding what your customers think of your products. . The customer arrives with questions and requests defined. You need understand where they are and what they need so you can matter to your customer.\r\n\r\nTo add to the challenge, your customer has shopped online as a consumer, likes the experience and wants you to supply the same level of value. They are looking to you to make the exchange easy, provide insight and keep the conversation productive. Forcing them through the sales steps isn’t going to work.\r\n\r\nIn 1990 many experts predicted the death of the salesman. The argument was that the adoption of the Internet would make sales obsolete. This turned out to be far from true. With the speed to market of new disruptive solutions and technology coupled with the ability to reach specific markets Sales Professionals who can face the evolved customer and add value are in great demand.\r\n\r\n<strong>You are the expert in your arena that can personalize your solution to your customer. This can be done in person, on the phone or by email. Change the method for the media.</strong>\r\n<ul>\r\n <li>So the motto is not to skip the sales steps but to understand where they are. Try asking, “How can I help you?” Yeah, that’s very THEN but it is NOW. Then determine what else the customer might require so you can add value beyond what they find online.</li>\r\n <li>Know your solution arena and show that you care about the customer experience by making recommendations. How often has an enthusiastic waiter convinced you to try something they like?</li>\r\n <li>Make commitments to deliver information and keep them. You are the voice of your organization and what you do speaks to what a customer can expect of the relationship.</li>\r\n <li>Give without expecting anything back. Understand what your customer needs to make this buying relationship successful. It may be personal or it may come down to keeping his job.</li>\r\n <li>Be appropriate and respectful but if you are not pushing the edges of the box, the customer is not learning. Help them explore by having a set of questions at the ready that help you learn what will delight them. You will need to tailor the inquiry and you only have a few minutes to get them into a conversation.</li>\r\n <li>Don’t waste their time. Keep communications short. Deliver what they asked for first. Have you ever tried putting the price at the beginning of the proposal and saying that the following pages cover what is included? It changes the conversation because now you can talk about value.</li>\r\n</ul>\r\nThink about the stereotypical experience of visiting a car dealership to buy a car and how it makes you feel. When you walk in you have a good idea of what you want and what you need to learn.\r\n\r\nSince your customer has changed you will need all of the help you can get to keep up. Sales Professionals need a new set of tools to assist with customer insight, setting priorities and managing critical communications. With solutions that alert you to next steps, you are less likely to miss commitments. Now you can enter into strategic social conversations and track relationships through your pipeline. Most companies support BYO so go out and get the mobile apps that can help you compete.\r\n\r\nThe race is on. Let’s roll!\r\n\r\nSherry Harmon, CRO, ModuleQ, www.moduleQ.com\r\n\r\nRev powered by ModuleQ\r\n\r\nKeep Closing.','The evolution of your customer – Why Sales Professionals are more relevant than ever.','','inherit','open','open','','216-revision-v1','','','2015-05-14 18:31:02','2015-05-14 18:31:02','',216,'http://moduleq.sophiashoemaker.com/216-revision-v1/',0,'revision','',0),(224,1,'2015-05-14 18:36:59','2015-05-14 18:36:59','<h3><strong>Then</strong></h3>\r\nDid you know that the structure for goals and sales steps was formulated in the late 1800’s? NCR introduced a sales model that changed the profession and we still map to it. This process focused on the customer’s needs, not on the product. It was a script that moved the customer through that value identification. You know what I am talking about. Discovery, Value Definition, Proposal, Contract and Close are the kinds of sales processes that your company tracks in the CRM solution.\r\n\r\nThe words may differ for your organization’s sales process but there are steps that determine the percentage to close and your job is to take the customer through this process. There is value in determining stage for your company as this enables them to forecast accurately.\r\n<h3><strong>Now</strong></h3>\r\nIn 2015, your customer starts the conversation having done their research, with a clear understanding of what their problem and the solutions available. The customer is equipped with information about competition, pricing and an understanding what your customers think of your products. . The customer arrives with questions and requests defined. You need understand where they are and what they need so you can matter to your customer.\r\n\r\nTo add to the challenge, your customer has shopped online as a consumer, likes the experience and wants you to supply the same level of value. They are looking to you to make the exchange easy, provide insight and keep the conversation productive. Forcing them through the sales steps isn’t going to work.\r\n\r\nIn 1990 many experts predicted the death of the salesman. The argument was that the adoption of the Internet would make sales obsolete. This turned out to be far from true. With the speed to market of new disruptive solutions and technology coupled with the ability to reach specific markets Sales Professionals who can face the evolved customer and add value are in great demand.\r\n\r\n<h3><strong>You are the expert in your arena that can personalize your solution to your customer. This can be done in person, on the phone or by email. Change the method for the media.</strong></h3>\r\n<ul>\r\n <li>So the motto is not to skip the sales steps but to understand where they are. Try asking, “How can I help you?” Yeah, that’s very THEN but it is NOW. Then determine what else the customer might require so you can add value beyond what they find online.</li>\r\n <li>Know your solution arena and show that you care about the customer experience by making recommendations. How often has an enthusiastic waiter convinced you to try something they like?</li>\r\n <li>Make commitments to deliver information and keep them. You are the voice of your organization and what you do speaks to what a customer can expect of the relationship.</li>\r\n <li>Give without expecting anything back. Understand what your customer needs to make this buying relationship successful. It may be personal or it may come down to keeping his job.</li>\r\n <li>Be appropriate and respectful but if you are not pushing the edges of the box, the customer is not learning. Help them explore by having a set of questions at the ready that help you learn what will delight them. You will need to tailor the inquiry and you only have a few minutes to get them into a conversation.</li>\r\n <li>Don’t waste their time. Keep communications short. Deliver what they asked for first. Have you ever tried putting the price at the beginning of the proposal and saying that the following pages cover what is included? It changes the conversation because now you can talk about value.</li>\r\n</ul>\r\nThink about the stereotypical experience of visiting a car dealership to buy a car and how it makes you feel. When you walk in you have a good idea of what you want and what you need to learn.\r\n\r\nSince your customer has changed you will need all of the help you can get to keep up. Sales Professionals need a new set of tools to assist with customer insight, setting priorities and managing critical communications. With solutions that alert you to next steps, you are less likely to miss commitments. Now you can enter into strategic social conversations and track relationships through your pipeline. Most companies support BYO so go out and get the mobile apps that can help you compete.\r\n\r\nThe race is on. Let’s roll!\r\n\r\nSherry Harmon, CRO, ModuleQ, www.moduleQ.com\r\n\r\nRev powered by ModuleQ\r\n\r\nKeep Closing.','The evolution of your customer – Why Sales Professionals are more relevant than ever.','','inherit','open','open','','216-revision-v1','','','2015-05-14 18:36:59','2015-05-14 18:36:59','',216,'http://moduleq.sophiashoemaker.com/216-revision-v1/',0,'revision','',0),(225,1,'2015-05-14 22:32:21','2015-05-14 22:32:21',' ','','','publish','open','open','','225','','','2015-05-14 22:32:21','2015-05-14 22:32:21','',0,'http://moduleq.sophiashoemaker.com/?p=225',7,'nav_menu_item','',0),(226,1,'2015-05-14 22:32:46','2015-05-14 22:32:46','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!','','inherit','open','open','','1-revision-v1','','','2015-05-14 22:32:46','2015-05-14 22:32:46','',1,'http://moduleq.sophiashoemaker.com/1-revision-v1/',0,'revision','',0),(227,0,'2015-05-15 04:54:54','2015-05-15 04:54:54','','','','publish','open','open','','227','','','2015-05-15 04:54:54','2015-05-15 04:54:54','',0,'http://moduleq.sophiashoemaker.com/nf_sub/227/',0,'nf_sub','',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=utf8;
/*!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),(11,2,0),(12,2,0),(13,2,0),(18,3,0),(19,3,0),(21,3,0),(22,3,0),(23,3,0),(40,4,0),(52,4,0),(53,4,0),(54,5,0),(55,5,0),(56,5,0),(57,6,0),(58,6,0),(105,3,0),(118,2,0),(122,6,0),(195,3,0),(196,3,0),(198,2,0),(199,2,0),(206,1,0),(207,1,0),(210,3,0),(213,3,0),(216,1,0),(225,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) NOT NULL DEFAULT '',
`description` longtext 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=7 DEFAULT CHARSET=utf8;
/*!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,7),(3,3,'nav_menu','',0,10),(4,4,'assigned-team','',0,3),(5,5,'assigned-team','',0,3),(6,6,'assigned-team','',0,3);
/*!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) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
`term_order` int(4) DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`),
KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*!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,0),(2,'Header Menu','header-menu',0,0),(3,'Footer Menu','footer-menu',0,0),(4,'Executive Management','executive-management',0,1),(5,'Board of Directors','board-of-directors',0,2),(6,'Advisors','advisors',0,3);
/*!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) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8;
/*!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','moduleq'),(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,'default_password_nag','1'),(14,1,'show_welcome_panel','1'),(15,1,'session_tokens','a:2:{s:64:\"4b04cb2952dbd934fd9f83f23cbf4619d1d3f661c87808c4b3e9b60020d11586\";a:4:{s:10:\"expiration\";i:1431710313;s:2:\"ip\";s:13:\"70.89.146.106\";s:2:\"ua\";s:118:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18\";s:5:\"login\";i:1431537513;}s:64:\"60bbc187044f450cab15572e603a9b5d93de6a8d9a7dd7714daa687a38d6c628\";a:4:{s:10:\"expiration\";i:1431752804;s:2:\"ip\";s:13:\"70.89.146.106\";s:2:\"ua\";s:118:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18\";s:5:\"login\";i:1431580004;}}'),(16,1,'wp_dashboard_quick_press_last_post_id','184'),(17,1,'managenav-menuscolumnshidden','a:2:{i:0;s:3:\"xfn\";i:1;s:11:\"description\";}'),(18,1,'metaboxhidden_nav-menus','a:2:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";}'),(19,1,'nav_menu_recently_edited','2'),(20,1,'wp_types-modal','0'),(21,1,'wp_user-settings','libraryContent=browse&post_dfw=off&editor=tinymce&hidetb=1&posts_list_mode=list&advImgDetails=show&wplink=1&uploader=1'),(22,1,'wp_user-settings-time','1431665778'),(23,1,'wpcf-group-form-toggle','a:3:{i:38;a:1:{s:17:\"fieldset-linkedin\";i:1;}i:186;a:3:{s:24:\"fieldset-news-item-title\";i:1;s:23:\"fieldset-news-item-date\";i:1;s:22:\"fieldset-news-item-url\";i:1;}i:181;a:1:{s:19:\"fieldset-page-title\";i:1;}}'),(24,1,'manageedit-nf_subcolumnshidden','a:0:{}'),(28,1,'closedpostboxes_page','a:0:{}'),(29,1,'metaboxhidden_page','a:6:{i:0;s:12:\"revisionsdiv\";i:1;s:10:\"postcustom\";i:2;s:16:\"commentstatusdiv\";i:3;s:11:\"commentsdiv\";i:4;s:7:\"slugdiv\";i:5;s:9:\"authordiv\";}');
/*!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) NOT NULL DEFAULT '',
`user_pass` varchar(64) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(60) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!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,'moduleq','$P$BwySV1bvfg0MTu9g28ee4d.JSBOABD0','moduleq','[email protected]','','2015-03-25 06:16:46','$P$B2.18W2CFCr03i2T1u5c6rk3tTuyDE.',0,'moduleq');
/*!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-05-15 4:57:16